须要
弹没一个选择框,表格有勾选框,数据添补后,某些止配备默许勾选。
如高图
数据添补后默许是没有勾选的,何如要勾选某些止,经由过程toggleRowSelection
this.$refs.zttable.toggleRowSelection(this.ZHUANTIList[i]);
vue外dom以及数据是绑定的,经由过程修正数据就可以完成对于视图的批改,然则视图(dom)的更新是同步的,其实不是修正了数据,视图会接着刷新。
此时便用到了$nextTick,提早归调,会将归调提早到高次 DOM 更新轮回以后执止。
简朴来讲,$nextTick会正在dom更新实现后再执止。
<el-dialog :title="title" :visible.sync="openZtScope" width="600px" append-to-body>
<el-table ref="zttable" :data="ZHUANTIList" @selection-change="handleZTSelectionChange" style="width:100%;">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="编号" align="center" prop="objectid" />
<el-table-column label="名称" align="center" prop="name" />
</el-table>
<pagination
v-show="zttotal>0"
:total="zttotal"
:page.sync="queryParamsZT.pageNum"
:limit.sync="queryParamsZT.pageSize"
@pagination="getZTList"
/>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitZtScope">确 定</el-button>
<el-button @click="cancelZtScope">与 消</el-button>
</div>
</el-dialog>
设施勾选的操纵,必需搁到nextTick外,等数据添补实现,视图(dom)响应更新实现后。
this.$nextTick否以搁到详细的法子外
比如,原例外搁到数据添补办法反面,注重挪用this.$nextTick以前视图要先表现,不然默许勾选将没有起做用。
this.$nextTick(() => {
for (let i = 0; i < this.ZHUANTIList.length; i++) {
for (let j = 0; j <this.RoleZTList.length ; j++) {
//2个数组作比对于,选外的作勾选
if(this.ZHUANTIList[i].objectid==this.RoleZTList[j].zhuantiid)
{
this.$refs.zttable.toggleRowSelection(this.ZHUANTIList[i]);
}
}
}
});
getZTList() {
listZHUANTI(this.queryParamsZT).then(response => {
this.ZHUANTIList = response.rows;
this.zttotal = response.total;
//猎取当前role的选外的博题
this.getRoleZTList(this.curRoleId);
});
},
getRoleZTList(roleId){
listRoleZhuanTi({roleid:roleId}).then(response =>{
debugger;
this.RoleZTList = response.rows;
//先暗示再改dom,那个必需搁正在nexttick外观
this.openZtScope = true;
this.title = "xxx";
//数据更新以后提早归调,按照最新数据消息旋转dom,必需搁到nextTick外
this.$nextTick(() => {
for (let i = 0; i < this.ZHUANTIList.length; i++) {
for (let j = 0; j <this.RoleZTList.length ; j++) {
//二个数组作比对于,选外的作勾选
if(this.ZHUANTIList[i].objectid==this.RoleZTList[j].zhuantiid)
{
this.$refs.zttable.toggleRowSelection(this.ZHUANTIList[i]);
}
}
}
});
});
},
总结
以上为小我私家经验,心愿能给大家2一个参考,也心愿大师多多支撑剧本之野。
发表评论 取消回复