修复超管展示问题
This commit is contained in:
@@ -284,7 +284,15 @@ let currParams = {};
|
||||
export default {
|
||||
name: "ClanAdminView",
|
||||
setup() {
|
||||
return {};
|
||||
function showText(obj) {
|
||||
let text = unescape($(obj).prop('title'));
|
||||
$("#tipMsg").text(text);
|
||||
$("#tipModal").modal('show');
|
||||
}
|
||||
window.showText = showText;
|
||||
return {
|
||||
showText
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.$nextTick(function () {
|
||||
@@ -446,7 +454,7 @@ export default {
|
||||
<td hidden="hidden" class="superUid" style="text-align: center;">${res.uid}</td>
|
||||
<td style="text-align: center;">${res.erbanNo}</td>
|
||||
<td style="text-align: center;">${res.nick}</td>
|
||||
<td style="text-align: center;">${res.manageRoomErbanNoList}</td>
|
||||
<td style="text-align: center; width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;" title="${escape(val)}" onclick="showText(this);">${res.manageRoomErbanNoList}</td>
|
||||
<td style="text-align: center;">
|
||||
<button type="button" class="btn btn-sm btn-success opt-super-update" >编辑</button>
|
||||
<button type="button" class="btn btn-sm btn-danger opt-delete" >删除</button>
|
||||
|
Reference in New Issue
Block a user