|
|
|
@ -9,18 +9,18 @@
|
|
|
|
|
<el-form-item label="任务标题" prop="title"> |
|
|
|
|
<el-input v-model="formData.title" placeholder="请输入任务标题" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="时间周期" prop="planTime"> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="formData.planTime" |
|
|
|
|
type="daterange" |
|
|
|
|
format="YYYY年MM月DD日" |
|
|
|
|
range-separator="至" |
|
|
|
|
size="large" |
|
|
|
|
start-placeholder="选择开始时间" |
|
|
|
|
end-placeholder="选择结束时间" |
|
|
|
|
value-format="YYYY-MM-DD" |
|
|
|
|
/> |
|
|
|
|
|
|
|
|
|
<el-form-item label="任务类型" prop="taskType"> |
|
|
|
|
<el-select v-model="formData.taskType" placeholder="请选择任务类型" size="large"> |
|
|
|
|
<el-option |
|
|
|
|
v-for="dict in tagChildList" |
|
|
|
|
:key="dict.id" |
|
|
|
|
:label="dict.tagName" |
|
|
|
|
:value="dict.id" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item label="描述" prop="description" style="width: 100%; padding: 0; margin-top: 0px;" class="descClass"> |
|
|
|
|
<el-input |
|
|
|
|
type="textarea" |
|
|
|
@ -31,16 +31,21 @@
|
|
|
|
|
placeholder="请输入描述" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="任务类型" prop="taskTopType"> |
|
|
|
|
<el-select v-model="formData.taskTopType" placeholder="请选择任务类型" size="large" @change="selectChild"> |
|
|
|
|
<el-option |
|
|
|
|
v-for="dict in taskTagTopList" |
|
|
|
|
:key="dict.id" |
|
|
|
|
:label="dict.tagName" |
|
|
|
|
:value="dict.id" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
|
|
|
|
|
<el-form-item label="时间周期" prop="planTime"> |
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="formData.planTime" |
|
|
|
|
type="daterange" |
|
|
|
|
format="YYYY年MM月DD日" |
|
|
|
|
range-separator="至" |
|
|
|
|
size="large" |
|
|
|
|
start-placeholder="选择开始时间" |
|
|
|
|
end-placeholder="选择结束时间" |
|
|
|
|
value-format="YYYY-MM-DD" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-form-item label="执行周期" prop="execCycle" v-if="formData.taskType == 2"> |
|
|
|
|
<el-select v-model="formData.execCycle" placeholder="请选择执行周期"> |
|
|
|
|
<el-option |
|
|
|
@ -51,13 +56,13 @@
|
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> --> |
|
|
|
|
<el-form-item label="类型选项" prop="taskType"> |
|
|
|
|
<el-select v-model="formData.taskType" placeholder="请选择任务选项" :disabled="isReadonly" > |
|
|
|
|
<el-form-item label="通知时间" prop="execCycle"> |
|
|
|
|
<el-select v-model="formData.execCycle" placeholder="请选择任务选项" > |
|
|
|
|
<el-option |
|
|
|
|
v-for="dict in tagChildList" |
|
|
|
|
:key="dict.id" |
|
|
|
|
:label="dict.tagName" |
|
|
|
|
:value="dict.id" |
|
|
|
|
v-for="dict in getStrDictOptions(DICT_TYPE.TASK_NOTICE_TIME)" |
|
|
|
|
:key="dict.value" |
|
|
|
|
:label="dict.label" |
|
|
|
|
:value="dict.value" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
@ -84,47 +89,27 @@
|
|
|
|
|
:value="dict.value" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
<el-select v-model="enterprise.queryParams.userId" placeholder="请选择执法人员" size="large" filterable clearable> |
|
|
|
|
<el-option |
|
|
|
|
v-for="dict in userList" |
|
|
|
|
:key="dict.id" |
|
|
|
|
:label="dict.deptName +'_'+ dict.realName" |
|
|
|
|
:value="dict.id" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</div> |
|
|
|
|
<div> |
|
|
|
|
<el-select |
|
|
|
|
v-model="enterprise.queryParams.hy" |
|
|
|
|
placeholder="请选择行业" |
|
|
|
|
clearable |
|
|
|
|
size="large" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="dict in hyList" |
|
|
|
|
:key="dict.id" |
|
|
|
|
:label="dict.tagName" |
|
|
|
|
:value="dict.tagName" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
<el-input |
|
|
|
|
v-model="enterprise.queryParams.enterprisesName" |
|
|
|
|
placeholder="请输入企业名称" size="large" |
|
|
|
|
/> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
<div> |
|
|
|
|
<el-select |
|
|
|
|
v-model="enterprise.queryParams.st" |
|
|
|
|
placeholder="请选择生态" size="large" |
|
|
|
|
v-model="enterprise.queryParams.hy" |
|
|
|
|
placeholder="请选择行业" |
|
|
|
|
clearable |
|
|
|
|
size="large" |
|
|
|
|
> |
|
|
|
|
<el-option |
|
|
|
|
v-for="dict in stList" |
|
|
|
|
v-for="dict in hyList" |
|
|
|
|
:key="dict.id" |
|
|
|
|
:label="dict.tagName" |
|
|
|
|
:value="dict.tagName" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
|
|
|
|
|
<div class="btn"> |
|
|
|
|
<el-button type="primary" plain size="large" @click="handleQuery"> |
|
|
|
|
<Icon icon="ep:search" class="mr-5px" /> 查询 |
|
|
|
@ -133,20 +118,15 @@
|
|
|
|
|
<Icon icon="ep:refresh" class="mr-5px" /> 重置 |
|
|
|
|
</el-button> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div> |
|
|
|
|
<el-select |
|
|
|
|
v-model="enterprise.queryParams.wr" |
|
|
|
|
placeholder="请选择污染程度" |
|
|
|
|
size="large" |
|
|
|
|
clearable |
|
|
|
|
> |
|
|
|
|
<el-select v-model="enterprise.queryParams.userId" placeholder="请选择执法人员" size="large" filterable clearable> |
|
|
|
|
<el-option |
|
|
|
|
v-for="dict in wrList" |
|
|
|
|
v-for="dict in userList" |
|
|
|
|
:key="dict.id" |
|
|
|
|
:label="dict.tagName" |
|
|
|
|
:value="dict.tagName" |
|
|
|
|
:label="dict.deptName +'_'+ dict.realName" |
|
|
|
|
:value="dict.id" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
<div class="btn2"> |
|
|
|
@ -254,24 +234,20 @@
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="footer"> |
|
|
|
|
<el-button type="primary" @click="submitForm" size="large">发布任务</el-button> |
|
|
|
|
<el-button @click="goBack" size="large">返回列表</el-button> |
|
|
|
|
<el-button type="primary" @click="submitForm(false)" size="large">{{btnTitle}}</el-button> |
|
|
|
|
|
|
|
|
|
<el-button |
|
|
|
|
type="warning" |
|
|
|
|
type="primary" |
|
|
|
|
v-if="showButton" |
|
|
|
|
@click="submitForm" |
|
|
|
|
@click="submitForm(true)" |
|
|
|
|
size="large" |
|
|
|
|
v-hasPermi="['system:enterprise-inspections:audit']" |
|
|
|
|
>审核通过</el-button |
|
|
|
|
> |
|
|
|
|
<el-button |
|
|
|
|
type="danger" |
|
|
|
|
@click="submitForm" |
|
|
|
|
v-if="showButton" |
|
|
|
|
size="large" |
|
|
|
|
v-hasPermi="['system:enterprise-inspections:audit']" |
|
|
|
|
>删除</el-button |
|
|
|
|
> |
|
|
|
|
<el-button type="danger" link v-if="formData.status == 0" @click="handleDeleteTask('delete')">删除任务?</el-button> |
|
|
|
|
<el-button type="warning" link v-if="formData.status == 2" @click="handleDeleteTask('end')">结束任务?</el-button> |
|
|
|
|
|
|
|
|
|
<el-button @click="goBack" size="large">返回列表</el-button> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
@ -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() |
|
|
|
|
}) |
|
|
|
|