| | |
| | | </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" |
| | |
| | | <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" /> |