From e3376657b0f8c25fd04ec1d06f424160e67e20a2 Mon Sep 17 00:00:00 2001 From: 田源 <lastanimals@163.com> Date: 星期二, 10 十二月 2024 17:21:36 +0800 Subject: [PATCH] 生命周期备选列表添加超出隐藏和提示文字&&表单定义查询模板切换不显示值问题 --- Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/formDefine/components/formDialog.vue | 16 ++++------------ 1 files changed, 4 insertions(+), 12 deletions(-) diff --git a/Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/formDefine/components/formDialog.vue b/Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/formDefine/components/formDialog.vue index ffeb762..02ed624 100644 --- a/Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/formDefine/components/formDialog.vue +++ b/Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/formDefine/components/formDialog.vue @@ -35,7 +35,7 @@ <span style="display: flex;align-items: center; margin-right: 5px;"> <p class="tableTopLabel">鏌ヨ妯℃澘鍚嶇О锛�</p> - <el-select v-model="form.itemQtName" placeholder="璇烽�夋嫨鏌ヨ妯℃澘" size="mini"> + <el-select v-model="topForm.itemQtName" placeholder="璇烽�夋嫨鏌ヨ妯℃澘" size="mini"> <el-option v-for="(item,index) in searchQtNameList" :key="index" :label="item.qtName" :value="item.qtName"></el-option> </el-select> @@ -852,7 +852,6 @@ children: 'childNodes', }, treeLoad: (node, resolve) => { - // console.log(node); const params = { 'conditionMap[dataType]': node.data.data, 'conditionMap[parentId]': node.data.data, @@ -1027,6 +1026,7 @@ ], form: {}, topForm: { + itemQtName:'', columnNumber: 8, showColumn: '3', viName: '', @@ -1065,7 +1065,6 @@ const types = ['radio', 'checkbox', 'select']; return types.includes(this.form.itemType); // 灞曠ず }, - itemStyleTypeStatus() { const types = ['hidden', 'webeditor', 'radio', 'checkbox']; return !types.includes(this.form.itemType); // 涓嶅睍绀� @@ -1245,7 +1244,6 @@ // 閫夐」琛ㄦ牸琛岀偣鍑� optionTableClick(row) { this.optionRow = row; - console.log(row); }, customOptionTableClick(row) { @@ -1289,7 +1287,6 @@ // 閫夐」鍒犻櫎 optionDeleteClickHandler(val) { - // console.log(this.optionRow); if (val === 'dialog') { this.customForm.itemKeyValueList.splice(this.customOptionRow.index,1); } else { @@ -1315,7 +1312,7 @@ this.formList = this.formList.map(item => { return { ...item, - itemField: item.text // 灏唅temField璧嬪�间负text锛屽洜涓哄繕璁扮埗缁勪欢涓轰粈涔堝湪缂栬緫鍥炲~鏃舵妸itemField璧嬪�间负text浜� + itemField: item.text // 灏唅temField閲嶆柊璧嬪�间负text锛屽洜涓哄繕璁板綋鏃跺湪鐖剁粍浠剁紪杈戝洖濉柟娉曢噷涓轰粈涔堟妸itemField璧嬪�间负text浜� }; }); const params = { @@ -1327,7 +1324,7 @@ viType: 1, // 瑙嗗浘绫诲瀷 viTypeText: "琛ㄥ崟", // 瑙嗗浘涓枃鍚嶇О prm: { - formQtName: this.form.qtName, // 鏌ヨ妯℃澘鍚嶇О + formQtName: this.topForm.itemQtName, // 鏌ヨ妯℃澘鍚嶇О showCols: this.topForm.showColumn, prmItemList: this.formList }, @@ -1427,7 +1424,6 @@ this.$message.error('璇烽�夋嫨涓�鏉℃暟鎹繘琛屼繚瀛�'); return; } - // console.log(this.customAttrRow) this.customForm.text = this.customAttrRow.id; this.customAttrVisible = false; }, @@ -1439,11 +1435,9 @@ return; } - this.formList = this.formList.map(item => item.text === this.form.text ? this.form : item ); - console.log(this.formList); this.$message.success('搴旂敤鎴愬姛'); }, @@ -1501,13 +1495,11 @@ return `${key}=${oids.join(',')}`; // 鐢� , 杩炴帴鍚屼竴绫诲瀷鐨� oid }).join('&&'); // 鏈�鍚庣敤 && 杩炴帴涓嶅悓绫诲瀷 - // console.log(resultString); if (this.authType === 'attr') { this.customForm.itemRight = resultString; } else { this.form.itemRight = resultString; } - // this.form.itemRight = resultString; this.authDialogClose(); } -- Gitblit v1.9.3