| | |
| | | <template> |
| | | <el-dialog class="gd-dialog" v-model="visible" title="查看" @closed="visible = false" width="1000px" destroy-on-close> |
| | | <div v-loading="loading"> |
| | | <el-table :data="list"> |
| | | <el-table :data="list" class="gd-dialog-table"> |
| | | <el-table-column label="线索缩略图" width="120"> |
| | | <template v-slot="{ row }"> |
| | | <el-image |
| | |
| | | <template v-slot="{ row }"> |
| | | <el-link type="primary" |
| | | @click="openDistributeDialog(row)" |
| | | :disabled="row.distributeStatus === 1 || currentRow.taskStatus !== '8'" |
| | | :disabled="!requester || (row.distributeStatus === 1 || currentRow.taskStatus !== '8')" |
| | | > |
| | | 转为事件并分发 |
| | | </el-link> |
| | |
| | | </el-table> |
| | | </div> |
| | | |
| | | <template #footer> |
| | | <!-- <template #footer> |
| | | <el-button color="#F2F3F5" @click="visible = false">关闭</el-button> |
| | | </template> |
| | | </template> --> |
| | | |
| | | <DistributeDiaLog |
| | | ref="distributeDialogRef" |
| | |
| | | import { gdTaskResultListApi } from './achievementApi' |
| | | import DistributeDiaLog from './DistributeDiaLog.vue' |
| | | |
| | | const store = useStore() |
| | | const requester = computed(() => store.state.user.userInfo?.role_id === '2014158512610869250') |
| | | const activeName = ref('all') |
| | | |
| | | const visible = defineModel() |
| | | const loading = ref(false) |
| | | const list = ref([]) |