|
|
|
@ -16,7 +16,6 @@
|
|
|
|
|
value-format="YYYY-MM-DD" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item label="类型" prop="taskType"> |
|
|
|
|
<el-tree-select |
|
|
|
|
v-model="formData.taskType" |
|
|
|
@ -27,7 +26,6 @@
|
|
|
|
|
placeholder="请选择任务类型" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
<el-form-item label="执行周期" prop="execCycle" v-if="formData.taskType == 2"> |
|
|
|
|
<el-select v-model="formData.execCycle" placeholder="请选择执行周期"> |
|
|
|
|
<el-option |
|
|
|
@ -76,7 +74,6 @@
|
|
|
|
|
</el-form> |
|
|
|
|
</section> |
|
|
|
|
</ContentWrap> |
|
|
|
|
|
|
|
|
|
<ContentWrap title="执行范围"> |
|
|
|
|
<template #header> </template> |
|
|
|
|
<section class="select-area" v-loading="loading"> |
|
|
|
@ -125,8 +122,6 @@
|
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-form-item label="" prop="id">--> |
|
|
|
|
<!-- <el-select--> |
|
|
|
|
<!-- v-model="enterprise.queryParams.id"--> |
|
|
|
@ -144,8 +139,6 @@
|
|
|
|
|
<!-- />--> |
|
|
|
|
<!-- </el-select>--> |
|
|
|
|
<!-- </el-form-item>--> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-form-item> |
|
|
|
|
<el-button @click="handleQuery"> |
|
|
|
|
<Icon icon="ep:search" class="mr-5px" /> 搜索 |
|
|
|
@ -158,7 +151,6 @@
|
|
|
|
|
</el-button-group> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
|
|
|
|
|
<section class="enterprise-area"> |
|
|
|
|
<section |
|
|
|
|
v-for="enterprise in enterprise.list" |
|
|
|
@ -194,7 +186,6 @@
|
|
|
|
|
</section> |
|
|
|
|
</section> |
|
|
|
|
</section> |
|
|
|
|
|
|
|
|
|
<pagination |
|
|
|
|
v-show="enterprise.total > 0" |
|
|
|
|
:total="enterprise.total" |
|
|
|
@ -235,12 +226,17 @@
|
|
|
|
|
</section> |
|
|
|
|
</section> |
|
|
|
|
</ContentWrap> |
|
|
|
|
|
|
|
|
|
<ContentWrap> |
|
|
|
|
<el-button type="primary" @click="submitForm">提 交</el-button> |
|
|
|
|
<el-button |
|
|
|
|
type="primary" @click="submitForm" v-hasPermi="['system:enterprise-inspections:audit']">审核通过</el-button> |
|
|
|
|
<el-button |
|
|
|
|
type="danger" |
|
|
|
|
@click="submitForm" |
|
|
|
|
v-hasPermi="['system:enterprise-inspections:audit']" |
|
|
|
|
>删除</el-button> |
|
|
|
|
</ContentWrap> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
|
import { DICT_TYPE, getIntDictOptions, getStrDictOptions } from '@/utils/dict' |
|
|
|
|
import { TagLibraryApi } from '@/api/system/taglibrary' |
|
|
|
@ -248,9 +244,7 @@ import { EnterprisesApi, EnterprisesVO } from '@/api/enterprises'
|
|
|
|
|
import { TaskInfoApi } from '@/api/system/taskinfo' |
|
|
|
|
import { useTagsViewStore} from '@/store/modules/tagsView' |
|
|
|
|
import {defaultProps} from "@/utils/tree"; |
|
|
|
|
|
|
|
|
|
defineOptions({ name: 'CreateTask' }) |
|
|
|
|
|
|
|
|
|
const loading = ref(false) |
|
|
|
|
const formData = ref({ |
|
|
|
|
id: undefined, |
|
|
|
@ -309,14 +303,11 @@ const handleQuery = () => {
|
|
|
|
|
enterprise.value.queryParams.pageNo = 1 |
|
|
|
|
getEnterPriseList() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** 重置按钮操作 */ |
|
|
|
|
const resetQuery = () => { |
|
|
|
|
queryFormRef.value.resetFields() |
|
|
|
|
handleQuery() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 获取标签列表 |
|
|
|
|
*/ |
|
|
|
@ -325,14 +316,10 @@ function getTagList() {
|
|
|
|
|
tagList.value = res |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const defaultProps = { |
|
|
|
|
label: 'tagName', // 使用 'name' 字段作为选项的标签 |
|
|
|
|
children: 'children', // 如果存在子节点,则使用 'children' 字段 |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 获取企业列表 |
|
|
|
|
*/ |
|
|
|
@ -346,7 +333,6 @@ async function getEnterPriseList() {
|
|
|
|
|
loading.value = false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 全选 |
|
|
|
|
*/ |
|
|
|
@ -360,7 +346,6 @@ async function selectAll() {
|
|
|
|
|
formData.value.enterprises = uniqueFunc(arr, 'id') |
|
|
|
|
loading.value = false |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 取消全选 |
|
|
|
|
*/ |
|
|
|
@ -377,7 +362,6 @@ async function cancelAll() {
|
|
|
|
|
} |
|
|
|
|
loading.value = false |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 单选企业 |
|
|
|
|
* @param enterprise |
|
|
|
@ -385,7 +369,6 @@ async function cancelAll() {
|
|
|
|
|
function selectEnterprise(enterprise) { |
|
|
|
|
formData.value.enterprises.push(enterprise) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 单选取消 |
|
|
|
|
* @param enterprise |
|
|
|
@ -393,7 +376,6 @@ function selectEnterprise(enterprise) {
|
|
|
|
|
function checkEnterprise(enterprise) { |
|
|
|
|
formData.value.enterprises = formData.value.enterprises.filter((e) => e.id != enterprise.id) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 数组去重 |
|
|
|
|
* @param arr |
|
|
|
@ -404,12 +386,10 @@ function uniqueFunc(arr, uniId) {
|
|
|
|
|
const res = new Map() |
|
|
|
|
return arr.filter((item) => !res.has(item[uniId]) && res.set(item[uniId], 1)) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 提交表单 |
|
|
|
|
*/ |
|
|
|
|
async function submitForm() { |
|
|
|
|
|
|
|
|
|
const validate = await unref(formRef).validate() |
|
|
|
|
if (validate) { |
|
|
|
|
const data = JSON.parse(JSON.stringify(formData.value)) |
|
|
|
@ -440,10 +420,8 @@ async function submitForm() {
|
|
|
|
|
message.success('温馨提示:该任务已经执行,无法再进行修改') |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function init(){ |
|
|
|
|
if(query.id){ |
|
|
|
|
TaskInfoApi.getTaskInfo(query.id).then(res=>{ |
|
|
|
@ -454,14 +432,12 @@ function init(){
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
getEnterPriseList() |
|
|
|
|
getTagList() |
|
|
|
|
onMounted(()=>{ |
|
|
|
|
init() |
|
|
|
|
}) |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|
::v-deep(.taskForm .el-form) { |
|
|
|
|
display: flex; |
|
|
|
@ -545,4 +521,4 @@ onMounted(()=>{
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|
</style> |