From 7e2f14cc12c823dbbbeba30dbb78c201e37be064 Mon Sep 17 00:00:00 2001 From: zhangwei <1504152376@qq.com> Date: 星期三, 11 六月 2025 11:20:48 +0800 Subject: [PATCH] - --- Web/src/views/fb_p_complaints/procurementComplaint/index.vue | 14 +++++++++----- 1 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Web/src/views/fb_p_complaints/procurementComplaint/index.vue b/Web/src/views/fb_p_complaints/procurementComplaint/index.vue index 9eab2ca..8df82e6 100644 --- a/Web/src/views/fb_p_complaints/procurementComplaint/index.vue +++ b/Web/src/views/fb_p_complaints/procurementComplaint/index.vue @@ -203,13 +203,13 @@ </el-form> </el-card> <el-card class="full-table" shadow="hover" style="margin-top: 5px"> - <el-table :data="state.tableData" @selection-change="(val: any[]) => { state.selectData = val; }" + <el-table :data="state.tableData" @selection-change="(val: any[]) => { state.selectData = val; }" :default-sort="{ prop: 'decisionDate', order: 'ascending' }" style="width: 100%" v-loading="state.tableLoading" tooltip-effect="light" row-key="id" @sort-change="sortChange" border> <el-table-column type="selection" width="40" align="center" v-if="auth('procurementComplaint:batchDelete') || auth('procurementComplaint:export')" /> <el-table-column type="index" label="搴忓彿" width="55" align="center" /> - <el-table-column prop='decisionDate' label='鍐冲畾鏃ユ湡' show-overflow-tooltip /> + <el-table-column prop='decisionDate' label='鍐冲畾鏃ユ湡' show-overflow-tooltip sortable/> <el-table-column prop='projectName' label='椤圭洰鍚嶇О' show-overflow-tooltip /> <el-table-column prop='projectCode' label='椤圭洰缂栧彿' show-overflow-tooltip /> <el-table-column prop='purchaser' label='閲囪喘浜�' show-overflow-tooltip /> @@ -217,12 +217,16 @@ <el-table-column prop='complainant' label='鎶曡瘔浜�' show-overflow-tooltip /> <el-table-column prop='procurementSupervisionDepartment' label='閲囪喘鐩戠潱閮ㄩ棬' show-overflow-tooltip /> <!-- <el-table-column prop='complaints' label='鏄惁鎴愮珛' show-overflow-tooltip /> --> - <el-table-column prop='url' label='绾夸笂鍦板潃' show-overflow-tooltip /> - <el-table-column label="淇敼璁板綍" width="100" align="center" show-overflow-tooltip> + <el-table-column prop='url' label='绾夸笂鍦板潃' show-overflow-tooltip> + <template #default="{ row }"> + <el-link underline :href='row.url' target='_blank'>{{row.url}}</el-link> + </template> + </el-table-column> + <!-- <el-table-column label="淇敼璁板綍" width="100" align="center" show-overflow-tooltip> <template #default="scope"> <ModifyRecord :data="scope.row" /> </template> - </el-table-column> + </el-table-column> --> <el-table-column label="鎿嶄綔" width="140" align="center" fixed="right" show-overflow-tooltip v-if="auth('procurementComplaint:update') || auth('procurementComplaint:delete')"> <template #default="scope"> -- Gitblit v1.9.1