| | |
| | | <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> |
| | |
| | | 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([]) |