Vue开发报错问题解决
2022年7月17日大约 1 分钟约 399 字
Vue 开发报错问题解决
2.同组件新增修改出现数据查询是上一次
2022 年 7 月 5 日 09:22:16
关闭组件时清空数据,新增时最好也清空,methods 方法中可以添加该方法,下半部分 IDE 插件可能会报错,但不影响使用,也可以使用上半部分,但是效果不好。如果 tab 中有列表,有列表的那项可以设置 lazy 为 true,方法中不清空数据。
clearData(){
// this.$refs.basic.dataForm={};
// this.$refs.idsgmt.dataForm={};
// this.$refs.fcsinfsgmt.dataForm={};
// //this.$refs.mnmmbinfsgmt.dataForm={};
// this.$refs.regcap.dataForm={};
// this.$refs.sharhodinf.dataForm={};
// this.$refs.actucotrlinfsg.dataForm={};
// this.$refs.spvsgathrtyinfsgmt.dataForm={};
// // this.$refs.cotainfsgmt.dataForm={};
// this.$refs.enctfitginf.dataForm={};
// // this.$refs.enicdnrltpinf.dataForm={};
this.dataForm.id='';
this.dataForm.custId='';
this.dataForm.bssgmt={};
this.dataForm.idsgmt={};
this.dataForm.fcsinfsgmt={};
this.dataForm.regCap={};
//this.dataForm.mnmmbinfsgmt={};
this.dataForm.sharhodInf={};
this.dataForm.actucotrlinfsg={};
this.dataForm.spvsgathrtyinfsgmt={};
//this.dataForm.cotainfsgmt={};
this.dataForm.enctfitginf={};
//this.dataForm.enicdnrltpinf={};
}
1.tab 中表单也有列表,列表显示和查询问题
2022 年 7 月 4 日 14:41:48
el-tab-pane
设置lazy="true"
,否则页面在数据加载完之前渲染完毕就无法查询该 id 的数据,也不需要新增时置空this.$refs.basic.dataForm={};
<el-dialog v-model="visible" v-if="visible" :visible.sync="visible" destroy-on-close @closed="onClosed" :title="!addDisable?$t('add'):$t('update')" :close-on-click-modal="false" :close-on-press-escape="true" :fullscreen="true">
<el-tabs v-model="activeName" type="border-card" tab-position="left">
<el-tab-pane label="基本信息" name="one" :lazy="false">
<basic :dataForm="dataForm" ref="basic"/>
</el-tab-pane>
<el-tab-pane label="其它" name="two" :lazy="true">
<eibcidsgmt :dataForm="{id:dataForm.id}" ref="eibcidsgmt"/>
</el-tab-pane>
</el-tabs>
</el-dialog>
如果列表页面需要查询指定 id,在新增时不显示可以设置列表组件创建时:
created(){
if(this.dataForm.custId==''){
this.dataForm.custId='-'
}
},