lzhe
2024-06-14 963a2313f4f8959715293d38f69894078150d508
src/views/console/system/meta-object-type/index.vue
@@ -199,7 +199,6 @@
            this.isAdd = true;
            var obj = Object.assign({},this.searchDataList[index],{isEdit: true});
            this.searchDataList.splice(index,1,obj);
            console.log(obj,this.searchDataList[index])
         },
         deleteTable(index) {
            this.searchDataList.splice(index,1);
@@ -236,7 +235,6 @@
            this.tableForm.enumType = this.tableForm.enumTypeZn;
            this.tableForm.id = null;
            this.tableForm.objectId = this.detailobj.objectId;
            console.log(this.tableForm,123)
            this.searchDataList.unshift(this.tableForm);
         },
         cancelTable() {
@@ -287,7 +285,6 @@
         gettableName() {
            this.$HTTP.get(`/api/blade-system/meta-object-type/detail?fId=${this.dictKey}`).then(res=> {  //物理表数据
               if(res.code == 200) {
                  console.log(this.tableNameList,res.data.tableName,'gi')
                  this.tableNameList.forEach(item=> {
                     if(res.data.tableName == item.tableName) {
                        this.refCodeList = item.tableColumns;
@@ -299,7 +296,6 @@
                  this.metaForm.code = res.data.code;
                  this.detailobj = res.data;
                  this.detailobj.objectId = res.data.fid;
                  console.log(this.detailobj,888)
               }
            })
         },