From d0b163b5f1114a93b5d0f04e77a00ed8adb91894 Mon Sep 17 00:00:00 2001 From: 田源 <lastanimals@163.com> Date: 星期四, 14 十二月 2023 20:18:37 +0800 Subject: [PATCH] 整合代码 --- Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue | 78 +++++++++++++++++++++----------------- 1 files changed, 43 insertions(+), 35 deletions(-) diff --git a/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue b/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue index b9364bc..51e6949 100644 --- a/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue +++ b/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue @@ -46,15 +46,15 @@ <el-table-column v-if="tableData.length != 0" fixed label="搴忓彿" type="index" width="55"> </el-table-column> <!-- 鐢熷懡鍛ㄦ湡--> -<!-- <el-table-column v-for="(item,index) in lcstatusArray"--> -<!-- v-if=" lcstatusArray.length >= 0 && !item.hidden"--> -<!-- key="index" :show-overflow-tooltip="true" :sortable="item.sortable"--> -<!-- :width="item.width" align="center" label="鐢熷懡鍛ㄦ湡鍊�"--> -<!-- prop="lcstatus">--> -<!-- <template slot-scope="scope">--> -<!-- <span>{{ scope.row.lcstatus_text }}</span>--> -<!-- </template>--> -<!-- </el-table-column>--> + <!-- <el-table-column v-for="(item,index) in lcstatusArray"--> + <!-- v-if=" lcstatusArray.length >= 0 && !item.hidden"--> + <!-- key="index" :show-overflow-tooltip="true" :sortable="item.sortable"--> + <!-- :width="item.width" align="center" label="鐢熷懡鍛ㄦ湡鍊�"--> + <!-- prop="lcstatus">--> + <!-- <template slot-scope="scope">--> + <!-- <span>{{ scope.row.lcstatus_text }}</span>--> + <!-- </template>--> + <!-- </el-table-column>--> <!-- 缂栧彿--> <el-table-column v-for="(item, index) in CodeArray" v-if="CodeArray.length !== 0 && !item.hidden" key="index" :label="item.label" :prop="item.prop" @@ -345,7 +345,7 @@ }, // 涓绘暟鎹寜閽� masterVrBtnList: [], - fileOptions:{}, + fileOptions: {}, result: '', elapsedTime: '', }; @@ -397,7 +397,7 @@ this.tableData = newval; this.searchResults = newval this.doLayout(); - this.fileOptions= { + this.fileOptions = { ownbizOid: "0", ownbizBtm: "0", fileDocClassify: '!=processAuditSuggest', @@ -427,7 +427,8 @@ } if (_index == 0) { - this.keyWordFind = record.queryField + this.keyWordFind = record.queryField; + console.log(record) } }) this.tableHeadFindDatas = newval; @@ -591,7 +592,7 @@ func.downloadFileByBlobHandler(res); this.$message.success('涓嬭浇鎴愬姛锛岃鏌ョ湅锛�'); this.isLoading = false; - }).catch(error=>{ + }).catch(error => { this.$message.error(error); }); }, @@ -954,7 +955,6 @@ if (this.statusSelect !== 'all') { conditionMap.lcstatus = this.statusSelect; } - const res = await TableData({ templateOid: this.templateOid, codeClassifyOid: this.codeClassifyOid, @@ -962,11 +962,10 @@ limit: this.page.pageSize, conditionMap }); - this.tableData = res.data.data; this.doLayout(); } catch (error) { - // 澶勭悊閿欒 + this.$message.error(error) } finally { this.isLoading = false; } @@ -1002,38 +1001,47 @@ this.findvisible = true; }, // 楂樼骇鏌ヨ - echoContion(val) { - FindData({ - templateOid: this.templateOid, - codeClassifyOid: this.codeClassifyOid, - ...val, - }).then((res) => { + async echoContion(val) { + try { + const res = await FindData({ + templateOid: this.templateOid, + codeClassifyOid: this.codeClassifyOid, + ...val, + }); this.tableData = res.data.data; this.page.total = res.data.total - }); + } catch (error) { + + } }, //鐩镐技椤规煡璇� similarHandler() { if (this.selectRow.length <= 0) { this.$message.warning("璇烽�夋嫨涓�鏉℃暟鎹�"); - } else if (this.selectRow.length > 1) { - this.$message.warning("鍙兘閫夋嫨涓�鏉℃暟鎹�"); - } else { - this.similarVisible = true; + return; } + if (this.selectRow.length > 1) { + this.$message.warning("鍙兘閫夋嫨涓�鏉℃暟鎹�"); + return; + } + this.similarVisible = true; }, //鏁版嵁鏇存敼 DataChange() { if (this.selectRow.length <= 0) { this.$message.warning("璇烽�夋嫨涓�鏉℃暟鎹�"); - } else if (this.selectRow.length > 1) { - this.$message.warning("鍙兘閫夋嫨涓�鏉℃暟鎹�"); - } else if (this.selectRow[0].lcstatus != "Released") { - this.$message.warning("鍙湁鐘舵�佷负宸插彂甯冪殑鏁版嵁鎵嶈兘杩涜鏁版嵁鏇存敼"); - } else { - this.DataVisible = true; - this.rowOid = this.selectRow[0]['oid'] + return } + if (this.selectRow.length > 1) { + this.$message.warning("鍙兘閫夋嫨涓�鏉℃暟鎹�"); + return; + } + if (this.selectRow[0].lcstatus != "Released") { + this.$message.warning("鍙湁鐘舵�佷负宸插彂甯冪殑鏁版嵁鎵嶈兘杩涜鏁版嵁鏇存敼"); + return; + } + this.DataVisible = true; + this.rowOid = this.selectRow[0]['oid'] }, //澧炲姞淇濆瓨 AddSumbit(val) { @@ -1091,7 +1099,7 @@ this.tableData = res.data.data; this.page.total = res.data.total; }) - } finally { + } finally { this.isLoading = false; } } -- Gitblit v1.9.3