zhangwei
2 天以前 9488f2bcb346c32c64f2c4eb5814fece8726b363
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" />