From 42d88a962536cd5b983142f29cf484c2909cbd1b Mon Sep 17 00:00:00 2001 From: zmj <1493694146@qq.com> Date: Mon, 26 Feb 2024 18:22:03 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8B=E7=8F=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- .../cost_approved_projects/index.vue | 73 ++++ src/components/cost_project/index.vue | 91 ++++ src/components/task_type/index.vue | 67 +++ src/views/acceptance_bill/edit.vue | 9 +- src/views/cost_approved_projects/edit.vue | 5 - src/views/cost_approved_projects/index.vue | 14 +- src/views/cost_projects/edit.vue | 398 +++++++++++++----- src/views/cost_projects/index.vue | 68 +-- src/views/permission/admin/edit.vue | 43 +- src/views/remittance/edit.vue | 2 - src/views/task_allocation/edit.vue | 287 ++++++++++++- src/views/task_allocation/index.vue | 46 +- src/views/task_detail/edit.vue | 33 +- src/views/task_type/edit.vue | 49 +-- src/views/task_type/index.vue | 86 ++-- 16 files changed, 963 insertions(+), 310 deletions(-) create mode 100644 src/components/cost_approved_projects/index.vue create mode 100644 src/components/cost_project/index.vue create mode 100644 src/components/task_type/index.vue diff --git a/.env.development b/.env.development index df76eaf..deb8da9 100644 --- a/.env.development +++ b/.env.development @@ -1,4 +1,4 @@ NODE_ENV = 'development' VITE_APP_BASE_URL = 'https://ceshi-engineering.lihaink.cn/' -# VITE_APP_BASE_URL = 'http://192.168.1.13:8089/' \ No newline at end of file +# VITE_APP_BASE_URL = 'http://192.168.1.7:9090/' \ No newline at end of file diff --git a/src/components/cost_approved_projects/index.vue b/src/components/cost_approved_projects/index.vue new file mode 100644 index 0000000..7c9c836 --- /dev/null +++ b/src/components/cost_approved_projects/index.vue @@ -0,0 +1,73 @@ + + + \ No newline at end of file diff --git a/src/components/cost_project/index.vue b/src/components/cost_project/index.vue new file mode 100644 index 0000000..5a11b9a --- /dev/null +++ b/src/components/cost_project/index.vue @@ -0,0 +1,91 @@ + + + \ No newline at end of file diff --git a/src/components/task_type/index.vue b/src/components/task_type/index.vue new file mode 100644 index 0000000..b0909ad --- /dev/null +++ b/src/components/task_type/index.vue @@ -0,0 +1,67 @@ + + + \ No newline at end of file diff --git a/src/views/acceptance_bill/edit.vue b/src/views/acceptance_bill/edit.vue index c8ca422..7a9d7c2 100644 --- a/src/views/acceptance_bill/edit.vue +++ b/src/views/acceptance_bill/edit.vue @@ -20,7 +20,8 @@ - + + { if (formDataannex.length > 0) { formData.annex = formDataannex.map((item: any) => item.uri) } - - - - - - console.log(formRef.value?.validate(), '22222222') await formRef.value?.validate() diff --git a/src/views/cost_approved_projects/edit.vue b/src/views/cost_approved_projects/edit.vue index e99a19f..4ddb466 100644 --- a/src/views/cost_approved_projects/edit.vue +++ b/src/views/cost_approved_projects/edit.vue @@ -84,11 +84,6 @@ - diff --git a/src/views/cost_approved_projects/index.vue b/src/views/cost_approved_projects/index.vue index 6fd45ca..9b5ea8a 100644 --- a/src/views/cost_approved_projects/index.vue +++ b/src/views/cost_approved_projects/index.vue @@ -19,7 +19,6 @@ - @@ -83,9 +82,16 @@ @click="handleDelete(row.id)"> 删除 - - 生成项目 + + + 生成项目 + diff --git a/src/views/cost_projects/edit.vue b/src/views/cost_projects/edit.vue index a943eea..ef05764 100644 --- a/src/views/cost_projects/edit.vue +++ b/src/views/cost_projects/edit.vue @@ -1,92 +1,199 @@