From b52e733bdf1daea78536552cb61fbe679f12d8bd Mon Sep 17 00:00:00 2001 From: weiz <736250432@qq.com> Date: Wed, 20 Mar 2024 10:22:32 +0800 Subject: [PATCH] update --- src/views/competitor/detail.vue | 16 ------ src/views/competitor/edit.vue | 43 --------------- src/views/customer_demand_solution/detail.vue | 30 ---------- src/views/customer_demand_solution/edit.vue | 38 ------------- src/views/project_estimate/detail.vue | 13 ----- src/views/project_estimate/edit.vue | 50 ----------------- src/views/project_estimate/index.vue | 1 - src/views/quotation/edit.vue | 55 +------------------ 8 files changed, 1 insertion(+), 245 deletions(-) diff --git a/src/views/competitor/detail.vue b/src/views/competitor/detail.vue index 99b3bf8..3345db6 100644 --- a/src/views/competitor/detail.vue +++ b/src/views/competitor/detail.vue @@ -2,12 +2,7 @@
- - {{ - formData.org_name }} - {{ - formData.dept_name }} {{ formData.custom_name }} {{ @@ -91,7 +86,6 @@ import type { FormInstance } from 'element-plus' import Popup from '@/components/popup/index.vue' import { apiCustomDetail } from '@/api/custom' -import { timeFormat } from '@/utils/util' import type { PropType } from 'vue' defineProps({ dictData: { @@ -103,11 +97,6 @@ const emit = defineEmits(['success', 'close']) const formRef = shallowRef() const popupRef = shallowRef>() -const datas = reactive({ - provinceOptions: [], - cityOptions: [], - areaOptions: [], -}); // 表单数据 @@ -151,11 +140,6 @@ const handleClose = () => { - - - - - defineExpose({ open, setFormData, diff --git a/src/views/competitor/edit.vue b/src/views/competitor/edit.vue index 3872224..4e35b8e 100644 --- a/src/views/competitor/edit.vue +++ b/src/views/competitor/edit.vue @@ -3,19 +3,6 @@ - - - - - - - - - - @@ -90,17 +77,9 @@ import type { FormInstance } from 'element-plus' import Popup from '@/components/popup/index.vue' import { apiCompetitorAdd, apiCompetitorEdit, apiCompetitorDetail } from '@/api/competitor' -import { timeFormat } from '@/utils/util' -import { deptAll } from '@/api/org/department' -import { getAll } from '@/api/org/organization' import projectTable from "@/components/project/index.vue" import customerdemand from "@/components/customerdemand/index.vue" -import type { PropType } from 'vue' let props = defineProps({ - // dictData: { - // type: Object as PropType>, - // default: () => ({}) - // } project: Object }) const emit = defineEmits(['success', 'close']) @@ -147,8 +126,6 @@ const delFileFn = (index: number) => { // 表单数据 const formData = reactive({ id: '', - org_id: '', - dept_id: '', project_id: '', customer_demand_id: '', competitor_name: '', @@ -182,22 +159,7 @@ const customEvent1 = (e: any) => { showDialog1.value = false; }; -const getlista = () => { - getAll().then((res) => { - // orglist = res.data - Object.assign(orglist, res) - - }) -} - -const area_change = (e: any) => { - formData.org_id = e - let data = { 'org_id': e } - deptAll(data).then((res) => { - Object.assign(jobs, res) - }) -} // 弹窗标题 const popupTitle = computed(() => { return mode.value == 'edit' ? '编辑竞争对手' : '新增竞争对手' @@ -229,9 +191,6 @@ const formRules = reactive({ // 获取详情 const setFormData = async (data: Record) => { - deptAll({ 'org_id': data.org_id }).then((res) => { - Object.assign(jobs, res) - }) if (data.annex && data.annex.length > 0) { const arry1 = data.annex.map((item: any, index: any) => { return { @@ -289,8 +248,6 @@ const handleClose = () => { emit('close') } - -getlista() defineExpose({ open, setFormData, diff --git a/src/views/customer_demand_solution/detail.vue b/src/views/customer_demand_solution/detail.vue index 0df54d0..a492ce3 100644 --- a/src/views/customer_demand_solution/detail.vue +++ b/src/views/customer_demand_solution/detail.vue @@ -4,10 +4,6 @@ - {{ - formData.org_name }} - {{ - formData.dept_name }} {{ formData.custom_name }} {{ @@ -25,11 +21,7 @@ }} {{ formData.solution_content - }} - - - {{ formData.add_user_name @@ -39,17 +31,10 @@ }} {{ formData.update_user_name - - }} {{ formData.update_time - - - }} - -
@@ -73,7 +58,6 @@ import type { FormInstance } from 'element-plus' import Popup from '@/components/popup/index.vue' import { apiCustomDetail } from '@/api/custom' -import { timeFormat } from '@/utils/util' import type { PropType } from 'vue' defineProps({ dictData: { @@ -91,20 +75,14 @@ const datas = reactive({ areaOptions: [], }); - // 表单数据 const formData = reactive({ }) - - // 获取详情 const setFormData = async (data: Record) => { Object.assign(formData, data) - - - } const getDetail = async (row: Record) => { @@ -114,7 +92,6 @@ const getDetail = async (row: Record) => { setFormData(data) } - // 提交按钮 const handleSubmit = async () => { popupRef.value?.close() @@ -131,13 +108,6 @@ const handleClose = () => { emit('close') } - - - - - - - defineExpose({ open, setFormData, diff --git a/src/views/customer_demand_solution/edit.vue b/src/views/customer_demand_solution/edit.vue index 166c7f6..eaf2373 100644 --- a/src/views/customer_demand_solution/edit.vue +++ b/src/views/customer_demand_solution/edit.vue @@ -3,19 +3,6 @@ - - - - - - - - - - @@ -69,8 +56,6 @@