Browse Source

任务列表子

master
zy 2 months ago
parent
commit
ed07c8e351
  1. 22
      src/views/task/index.vue

22
src/views/task/index.vue

@ -146,14 +146,20 @@
<el-table-column label="执法对象" align="center" min-width="120px">
<template #default="scope">
<el-button link type="primary" @click="dialogVisible ">
已选&nbsp;<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>&nbsp;
</el-button>&nbsp;
</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()

Loading…
Cancel
Save