diff --git a/src/api/system/taglibrary/index.ts b/src/api/system/taglibrary/index.ts index 9c35da5..8bdcb13 100644 --- a/src/api/system/taglibrary/index.ts +++ b/src/api/system/taglibrary/index.ts @@ -18,6 +18,11 @@ export const TagLibraryApi = { return await request.get({ url: `/system/tag-library/page`, params }) }, + // 查询企业标签分页 + childrenList: async (id: number) => { + return await request.get({ url: `/system/tag-library/childrenList?id=`+id }) + }, + // 查询企业标签详情 getTagLibrary: async (id: any) => { return await request.get({ url: `/system/tag-library/get?id=` + id }) diff --git a/src/hooks/web/useMessage.ts b/src/hooks/web/useMessage.ts index ac2b552..6bdec45 100644 --- a/src/hooks/web/useMessage.ts +++ b/src/hooks/web/useMessage.ts @@ -67,7 +67,7 @@ export const useMessage = () => { { confirmButtonText: t('common.ok'), cancelButtonText: t('common.cancel'), - type: 'warning' + // type: 'warning' } ) }, diff --git a/src/utils/dict.ts b/src/utils/dict.ts index c8d323f..dc26f13 100644 --- a/src/utils/dict.ts +++ b/src/utils/dict.ts @@ -156,7 +156,8 @@ export enum DICT_TYPE { INFRA_CODEGEN_SCENE = 'infra_codegen_scene', INFRA_FILE_STORAGE = 'infra_file_storage', INFRA_OPERATE_TYPE = 'infra_operate_type', - + TASK_NOTICE_TIME = 'task_notice_time', + // ========== BPM 模块 ========== BPM_MODEL_TYPE = 'bpm_model_type', BPM_MODEL_FORM_TYPE = 'bpm_model_form_type', diff --git a/src/views/airqualitycollection/index.vue b/src/views/airqualitycollection/index.vue index d09af9d..4b5e15b 100644 --- a/src/views/airqualitycollection/index.vue +++ b/src/views/airqualitycollection/index.vue @@ -92,7 +92,7 @@ - + - - + + @@ -84,47 +89,27 @@ :value="dict.value" /> - - - - - - - - + + 查询 @@ -133,20 +118,15 @@ 重置 - + - + @@ -254,24 +234,20 @@ @@ -289,7 +265,7 @@ import { cloneDeep } from 'lodash-es'; import { getSimpleUserZGList } from '@/api/system/user' defineOptions({ name: 'CreateTask'}) -const formData = ref({ +const formData:any = ref({ id: undefined, title: undefined, description: undefined, @@ -310,7 +286,6 @@ const formData = ref({ tags: [], enterprises: [] as any }) -const isReadonly = ref(true) const router = useRouter() const route = useRoute() const tagView = useTagsViewStore() @@ -318,10 +293,10 @@ const formCreateRef = ref() const message = useMessage() // 消息弹窗 const formRules = reactive({ title: [{ required: true, message: '任务标题不能为空', trigger: 'blur' }], - taskTopType: [ + execCycle: [ { required: true, - message: '任务类型不能为空', + message: '任务通知时间不能为空', trigger: 'change' } ], @@ -336,8 +311,6 @@ const formRules = reactive({ }) const { query } = useRoute() const formRef = ref() // 表单 Ref` -const tagList = ref([]) -const queryFormRef = ref() // 搜索的表单 const enterprise:any = ref({ list: [] as any, queryParams: reactive({ @@ -359,6 +332,26 @@ const goBack = () => { router.go(-1); // 或 router.back() }; +const handleDeleteTask = async (type: string) => { + + try { + if (type == 'delete') { + await message.delConfirm("是否确定删除任务!", "删除任务") + await TaskInfoApi.deleteTaskInfo(formData.value.id) + + } else { + await message.delConfirm("是否确定结束任务", "结束任务") + formData.value.status = 3 + await TaskInfoApi.updateTaskInfo(formData.value) + + } + + } finally { + + } + + +} //分页 @@ -440,14 +433,10 @@ const isAllConditionsEmpty = computed(() => { !params.enterprisesName && !params.qy && !params.hy && - !params.st && - !params.wr && !params.userId ); }); - - /** 搜索按钮操作 */ const handleQuery = () => { @@ -464,7 +453,7 @@ const filterList = (list: EnterprisesVO[]) => { if (isAllConditionsEmpty.value) return enterprise_copy.value.list; // 直接返回完整列表 if (list.length > 0) { - const { enterprisesName, qy, hy, st, wr , userId } = enterprise.value.queryParams; + const { enterprisesName, qy, hy, userId } = enterprise.value.queryParams; @@ -472,19 +461,15 @@ const filterList = (list: EnterprisesVO[]) => { if (item.tagList) { // 名称匹配(模糊查询) const nameMatch = enterprisesName ? - item.enterprisesName?.toLowerCase().includes(enterprisesName.toLowerCase()) : true; + item.enterprisesName?.toLowerCase().includes(enterprisesName.toLowerCase()) : true; // 类型精确匹配 const typeMatch = qy ? item.region == qy : true; //地区精确匹配 const hyMatch = hy ? item.tagList.includes(hy) : true - const stMatch = st ? item.tagList.includes(st) : true - - const wrMatch = wr ? item.tagList.includes(wr) : true - const userIdMatch = userId ? item.userId == userId : true - return nameMatch && typeMatch && hyMatch && stMatch && wrMatch && userIdMatch; + return nameMatch && typeMatch && hyMatch && userIdMatch; } }); } @@ -533,10 +518,6 @@ const wrList:any = ref([]) stList.value = data[1].children wrList.value = data[2].children } -const defaultProps = { - label: 'tagName', // 使用 'name' 字段作为选项的标签 - children: 'children' // 如果存在子节点,则使用 'children' 字段 -} /** * 数组去重 @@ -551,7 +532,26 @@ function uniqueFunc(arr, uniId) { /** * 提交表单 */ -async function submitForm() { +async function submitForm(isAudit) { + + let title:any = '' + let content:any = '' + + if (formData.value.id) { + if (isAudit) { + title = '审核任务' + content = '是否确定审核任务?' + } else{ + title = '修改任务' + content = '是否确定修改任务?' + } + } else { + title = '发布任务' + content = '是否确定发布新的任务?' + } + + await message.delConfirm(content, title) + const validate = await unref(formRef).validate() if (validate) { //把所有数据转成 id的数组 @@ -560,7 +560,7 @@ async function submitForm() { enterprise.value.list //任务状态默认初始值1 - data.status = 1 + data.status = 0 if (enterprise.value.list.length == 0) { message.success('温馨提示:请您选择执法对象') @@ -572,6 +572,9 @@ async function submitForm() { data.enterpriseIds = enterprise.value.list.map(i=>i.id) if (data.id) { + if (isAudit) { + data.status = 1 + } TaskInfoApi.updateTaskInfo(data).then(() => { message.success('操作成功') tagView.delView(route) @@ -591,22 +594,20 @@ async function submitForm() { } } -//任务顶级标签列表 -const taskTagTopList:any = ref([]) + //任务二级标签列表 const tagChildList:any = ref([]) async function taskTopQuery() { - const params = { - tagType: 2 - } - const data = await TagLibraryApi.getTagLibraryPage(params) - taskTagTopList.value = data + const data = await TagLibraryApi.childrenList(26) + tagChildList.value = data } const showButton = ref(false) +const btnTitle = ref('发布任务') + async function init() { //执法人员列表 @@ -617,7 +618,8 @@ async function init() { taskTopQuery() if (query.id) { - + + btnTitle.value = '修改任务' showButton.value = true const res= await TaskInfoApi.getTaskInfo(query.id) @@ -625,8 +627,12 @@ async function init() { //查询标签 const tag = await TagLibraryApi.getTagLibrary(res.taskType) formData.value.taskTopType = tag.parentId - selectChild(tag.parentId) formData.value.taskType = tag.id + formData.value.taskType = tag.id + if (formData.value.execCycle) { + formData.value.execCycle = formData.value.execCycle.toString() + } + formData.value.planTime = [formData.value.startDate, formData.value.endDate] formData.value.enterprises = res.enterpriseIdes formData.value.tags = res.taskTagIdes.map((t) => t.tagId) @@ -639,11 +645,6 @@ async function init() { } } -const selectChild = (value: any) => { - const data = taskTagTopList.value.find(item=>item.id == value) - isReadonly.value = false - tagChildList.value = data.children -} function getList(data) { @@ -661,6 +662,7 @@ enterprise.value.list = [...diff, ...enterprise.value.list]; getTagList() + onMounted(() => { init() }) diff --git a/src/views/task/createEnterprise2.vue b/src/views/task/createEnterprise2.vue index 5228b0a..71f619e 100644 --- a/src/views/task/createEnterprise2.vue +++ b/src/views/task/createEnterprise2.vue @@ -46,28 +46,6 @@ - - - - - - - - - - - - ', enterprise.value.list) } finally { loading.value = false enterprise.value.queryParams.tagList = [] + } } // 打开弹窗时的初始化 const open = async () => { // TODO: 初始化数据,例如获取列表等 visible.value = true + getEnterPriseList() + } /** 搜索按钮操作 */ @@ -293,20 +270,16 @@ const resetQuery = () => { //行业 const hyList: any = ref([]) -//生态 -const stList: any = ref([]) -//污染程度 -const wrList: any = ref([]) + //执法人员列表 const userList:any = ref() async function init() { try { - const codeList = 'codeList=hy&codeList=st&codeList=wr' + const codeList = 'codeList=hy' const data = await TagLibraryApi.tagLibraryList(codeList) hyList.value = data[0].children - stList.value = data[1].children - wrList.value = data[2].children + } finally { } @@ -317,7 +290,7 @@ async function init() { } -getEnterPriseList() + onMounted(() => { init() }) @@ -343,7 +316,7 @@ defineExpose({ open }) position: relative; .form-container { display: grid; - grid-template-columns: repeat(4, 1fr); + grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 20px; }