diff --git a/src/views/task_scheduling/index.vue b/src/views/task_scheduling/index.vue index 31b077d..244f91f 100644 --- a/src/views/task_scheduling/index.vue +++ b/src/views/task_scheduling/index.vue @@ -1,31 +1,38 @@ diff --git a/src/views/task_template/edit.vue b/src/views/task_template/edit.vue index 1e1d7e1..960eceb 100644 --- a/src/views/task_template/edit.vue +++ b/src/views/task_template/edit.vue @@ -230,6 +230,7 @@ import type { PropType } from "vue"; import { dictDataLists } from "@/api/setting/dict"; import taskMap from "./map.vue"; import personnelPopup from "./dialog_index_personnel.vue"; +import { number } from "echarts/core"; defineProps({ dictData: { type: Object as PropType>, @@ -242,6 +243,7 @@ const popupRef = shallowRef>(); const mode = ref("add"); const datalist = ref([]); const route = useRoute(); + // 弹窗标题 const popupTitle = computed(() => { return mode.value == "edit" ? "编辑任务安排" : "新增任务安排"; diff --git a/src/views/task_template/edit_admin.vue b/src/views/task_template/edit_admin.vue new file mode 100644 index 0000000..1a288fb --- /dev/null +++ b/src/views/task_template/edit_admin.vue @@ -0,0 +1,423 @@ + + + + \ No newline at end of file diff --git a/src/views/task_template/index.vue b/src/views/task_template/index.vue index ef4eeea..933d67e 100644 --- a/src/views/task_template/index.vue +++ b/src/views/task_template/index.vue @@ -150,7 +150,14 @@ + >(); const datalist = ref([]); @@ -188,8 +196,10 @@ const queryParams = reactive({ status: "", content: "", }); +const taskTypeId = ref(10); if (route.query?.id) queryParams.id = route.query.id; if (route.query?.company_id) queryParams.company_id = route.query.company_id; +if (route.query?.company_type == 41) taskTypeId.value = 15; const statusdata = reactive([ { id: 1, name: "显示" }, { id: 2, name: "隐藏" },