fix:取消监听tableData 把回到顶部事件放入search 解决删除修改后也回到顶部的问题

This commit is contained in:
zhangyu
2020-11-17 09:05:43 +08:00
parent adeb7830cb
commit c4672ad61e
18 changed files with 60 additions and 84 deletions

View File

@@ -184,7 +184,7 @@
<el-dialog :visible.sync="deleteBox.show" :title="$t('alert.list.remark')" :modal-append-to-body='false' :show-close="true" width="450px" @close="closeDialog" class="nz-message">
<div class="upload-body">
<el-form ref="remarkForm" :model="deleteBox">
<el-form-item prop="remark">
<el-form-item prop="remark" :rules="[{required:true,message: $t('validate.required'), trigger: 'change'}]">
<el-input type="textarea" :placeholder="$t('alert.description')" v-model="deleteBox.remark"></el-input>
</el-form-item>
</el-form>
@@ -829,11 +829,11 @@
}
},
watch: {
tableData(){
/*tableData(){
if(this.$refs.alertListTable&&this.$refs.alertListTable.bodyWrapper){
this.$refs.alertListTable.bodyWrapper.scrollTop = 0;
}
},
},*/
showSubList(n) {
this.$bottomBoxWindow.showSubListWatch(vm, n);
},