From 9488f2bcb346c32c64f2c4eb5814fece8726b363 Mon Sep 17 00:00:00 2001
From: zhangwei <1504152376@qq.com>
Date: 星期四, 05 六月 2025 17:16:02 +0800
Subject: [PATCH] 点击线上地址打开页面

---
 Web/src/views/fb_p_complaints/procurementComplaint/index.vue |    8 ++++++--
 1 files changed, 6 insertions(+), 2 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..9833525 100644
--- a/Web/src/views/fb_p_complaints/procurementComplaint/index.vue
+++ b/Web/src/views/fb_p_complaints/procurementComplaint/index.vue
@@ -203,7 +203,7 @@
       </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; }"
         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"
@@ -217,7 +217,11 @@
         <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 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" />

--
Gitblit v1.9.1