From 67f7c054ae639bdf425c48309a62890b8c40809f Mon Sep 17 00:00:00 2001 From: 田源 <lastanimals@163.com> Date: 星期四, 14 十二月 2023 14:30:04 +0800 Subject: [PATCH] 优化主数据代码 --- Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue | 124 +++++++++++++++++++++-------------------- 1 files changed, 63 insertions(+), 61 deletions(-) diff --git a/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue b/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue index 01e02df..b9364bc 100644 --- a/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue +++ b/Source/UBCS-WEB/src/components/MasterCrud/VciMasterCrud.vue @@ -77,17 +77,6 @@ :width="item.width" align="center"> </el-table-column> - <!-- 鍙傜収鏁版嵁--> -<!-- <el-table-column v-for="(item,index) in referArray"--> -<!-- v-if="item.referConfig && Object.keys(item.referConfig).length > 0 && !item.hidden"--> -<!-- :key="index"--> -<!-- :label="item.title" :show-overflow-tooltip="true"--> -<!-- :sortable="item.sortable" :width="item.width" align="center"--> -<!-- :prop="item.prop">--> -<!-- <template slot-scope="scope">--> -<!-- <span>{{ scope.row[item.showField] }}</span>--> -<!-- </template>--> -<!-- </el-table-column>--> </el-table> </div> </el-row> @@ -356,15 +345,7 @@ }, // 涓绘暟鎹寜閽� masterVrBtnList: [], - fileOptions: { - ownbizOid: "0", - ownbizBtm: "0", - fileDocClassify: '!=processAuditSuggest', - fileDocClassifyName: '', - hasDownload: true, - hasUpload: true, - height: 110 - }, + fileOptions:{}, result: '', elapsedTime: '', }; @@ -416,6 +397,15 @@ this.tableData = newval; this.searchResults = newval this.doLayout(); + this.fileOptions= { + ownbizOid: "0", + ownbizBtm: "0", + fileDocClassify: '!=processAuditSuggest', + fileDocClassifyName: '', + hasDownload: true, + hasUpload: true, + height: 'auto' + } }, }, tableHeadFindData: { @@ -477,6 +467,7 @@ templateOid: { handler(newval, oldval) { this.fileOptions.ownbizOid = "0"; + this.statusSelect = 'all' }, deep: true, }, @@ -937,40 +928,48 @@ }) }, // 鎺掑簭 - sortChange(val) { - // console.log(val) - this.isLoading = true; - let order = ""; - if (val.order == "ascending") { - order = "asc"; - } else { - order = "desc"; + async sortChange(val) { + try { + this.isLoading = true; + const order = val.order == 'ascending' ? 'asc' : 'desc'; + const {data} = await TableData({ + templateOid: this.templateOid, + codeClassifyOid: this.codeClassifyOid, + order: order, + sort: val.prop, + page: this.page.currentPage, + limit: this.page.pageSize, + }); + this.data = data.data; + } finally { + this.isLoading = false; } - TableData({ - templateOid: this.templateOid, - codeClassifyOid: this.codeClassifyOid, - order: order, - sort: val.prop, - page: this.page.currentPage, - limit: this.page.pageSize, - }).then((res) => { - setTimeout(() => { - this.data = res.data.data; - this.isLoading = false; - }, 100); - }); }, //鍒嗛〉鍒锋柊 async onLoad(val) { - await TableData({ - templateOid: this.templateOid, - codeClassifyOid: this.codeClassifyOid, - page: this.page.currentPage, - limit: this.page.pageSize, - }).then((res) => { + this.isLoading = true; + + try { + let conditionMap = {}; + if (this.statusSelect !== 'all') { + conditionMap.lcstatus = this.statusSelect; + } + + const res = await TableData({ + templateOid: this.templateOid, + codeClassifyOid: this.codeClassifyOid, + page: this.page.currentPage, + limit: this.page.pageSize, + conditionMap + }); + this.tableData = res.data.data; - this.doLayout() - }); + this.doLayout(); + } catch (error) { + // 澶勭悊閿欒 + } finally { + this.isLoading = false; + } }, //澶氶�� handleSelectionChange(list) { @@ -1081,17 +1080,20 @@ //杈撳叆鍥炶溅鎼滅储 tableFindInp() { this.isLoading = true; - TableData({ - templateOid: this.templateOid, - codeClassifyOid: this.codeClassifyOid, - page: this.page.currentPage, - limit: this.page.pageSize, - ['conditionMap[' + this.keyWordFind + ']']: '*' + this.WupinFindValue + '*' - }).then(res => { - this.tableData = res.data.data; - this.page.total = res.data.total; + try { + TableData({ + templateOid: this.templateOid, + codeClassifyOid: this.codeClassifyOid, + page: this.page.currentPage, + limit: this.page.pageSize, + ['conditionMap[' + this.keyWordFind + ']']: '*' + this.WupinFindValue + '*' + }).then(res => { + this.tableData = res.data.data; + this.page.total = res.data.total; + }) + } finally { this.isLoading = false; - }) + } } } @@ -1101,7 +1103,7 @@ <style lang="scss" scoped> //鍥哄畾鍒楅珮搴� /deep/ .el-table__fixed { - height: calc(100vh - 370px) !important; + height: calc(100vh - 365px) !important; } // 婊氬姩鏉℃牱寮忎慨鏀� @@ -1139,7 +1141,7 @@ .top { overflow-y: scroll; - min-height: 55%; + min-height: 40%; } .bottom { -- Gitblit v1.9.3