|
|
|
@ -146,14 +146,20 @@
|
|
|
|
|
<el-table-column label="执法对象" align="center" min-width="120px"> |
|
|
|
|
<template #default="scope"> |
|
|
|
|
|
|
|
|
|
<el-button link type="primary" @click="dialogVisible "> |
|
|
|
|
已选 <el-Tag>{{scope.row.enterpriseIdes.length}}</el-Tag>家企业 |
|
|
|
|
</el-button> |
|
|
|
|
<el-button link type="primary" @click=" |
|
|
|
|
push({ |
|
|
|
|
path: 'create', |
|
|
|
|
query: { |
|
|
|
|
id: scope.row.id |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
"> |
|
|
|
|
<el-Tag type="success">{{scope.row.enterpriseIdes.length}}</el-Tag> 家企业 |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" align="center" min-width="120px"> |
|
|
|
|
<template #default="scope"> |
|
|
|
@ -197,6 +203,9 @@
|
|
|
|
|
|
|
|
|
|
<!-- 表单弹窗:添加/修改 --> |
|
|
|
|
<TaskInfoForm ref="formRef" @success="getList" /> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
@ -205,11 +214,10 @@ import { dateFormatter3 } from '@/utils/formatTime'
|
|
|
|
|
import download from '@/utils/download' |
|
|
|
|
import { TaskInfoApi, TaskInfoVO } from '@/api/system/taskinfo' |
|
|
|
|
import TaskInfoForm from './TaskInfoForm.vue' |
|
|
|
|
import Tag from '../ai/write/index/components/Tag.vue' |
|
|
|
|
|
|
|
|
|
/** 任务表,用于存储所有的任务信息,任务可由不同用户创建并管理。 列表 */ |
|
|
|
|
defineOptions({ name: 'TaskList' }) |
|
|
|
|
const dialogVisible = ref(false); |
|
|
|
|
|
|
|
|
|
const message = useMessage() // 消息弹窗 |
|
|
|
|
const { t } = useI18n() // 国际化 |
|
|
|
|
const { push } = useRouter() |
|
|
|
|