From 9b2ec5bb11513f63132f2a55c2b5b762e6222a7b Mon Sep 17 00:00:00 2001 From: zmj <1493694146@qq.com> Date: Mon, 13 Nov 2023 18:41:42 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/custom_contacts/edit.vue | 73 ++++-- src/views/custom_follow/edit.vue | 21 +- .../financialManagement/bankAccount/INDE.VUE | 1 - .../bankAccount/bankAccount.vue | 129 +++++++++++ .../bankAccount/interestRate.vue | 72 ++++++ .../bankAccount/revenueWater.vue | 147 ++++++++++++ .../financialManagement/draft/Acceptance.vue | 213 +++++++++++++++++ src/views/financialManagement/draft/Cash.vue | 180 +++++++++++++++ .../draft/MoneyOrderTransfer.vue | 218 ++++++++++++++++++ src/views/financialManagement/draft/index.vue | 1 - src/views/project/edit.vue | 22 +- src/views/project/index.vue | 7 +- 12 files changed, 1043 insertions(+), 41 deletions(-) delete mode 100644 src/views/financialManagement/bankAccount/INDE.VUE create mode 100644 src/views/financialManagement/bankAccount/bankAccount.vue create mode 100644 src/views/financialManagement/bankAccount/interestRate.vue create mode 100644 src/views/financialManagement/bankAccount/revenueWater.vue create mode 100644 src/views/financialManagement/draft/Acceptance.vue create mode 100644 src/views/financialManagement/draft/Cash.vue create mode 100644 src/views/financialManagement/draft/MoneyOrderTransfer.vue delete mode 100644 src/views/financialManagement/draft/index.vue diff --git a/src/views/custom_contacts/edit.vue b/src/views/custom_contacts/edit.vue index 6c4900c..c81d7ef 100644 --- a/src/views/custom_contacts/edit.vue +++ b/src/views/custom_contacts/edit.vue @@ -40,32 +40,36 @@ - - + + + + +
+
+ {{ item.name }} + x +
+
+ + +
+
- - - - - - - - - - - - - - - - + @@ -79,9 +83,33 @@ import Popup from '@/components/popup/index.vue' import customDialog from '@/components/custom-dialog/index.vue' import { apiCustomContactsAdd, apiCustomContactsEdit, apiCustomContactsDetail } from '@/api/custom_contacts' import { apiCustomLists } from '@/api/custom' - +import useUserStore from "@/stores/modules/user"; import { timeFormat } from '@/utils/util' import type { PropType } from 'vue' +import configs from "@/config" +console.log(configs, 55) +const base_url = configs.baseUrl + configs.urlPrefix +const userStore = useUserStore(); +// 上传文件 +const handleAvatarSuccess_four = ( + response, + uploadFile +) => { + if (response.code == 0) { + ElMessage.error(response.msg); + return; + } + formData.annex.push( + { uri: response.data.uri, name: response.data.name } + + + ); +}; +// 删除上传的文件 +const delFileFn = (index: number) => { + formData.annex.splice(index, 1) +} + defineProps({ dictData: { type: Object as PropType>, @@ -123,7 +151,7 @@ const formData = reactive({ telephone: '', email: '', notes: '', - annex: '', + annex: [], status: '', }) @@ -141,7 +169,6 @@ const formRules = reactive({ // 获取详情 const setFormData = async (data: Record) => { - console.log(data, 5666) for (const key in formData) { if (data[key] != null && data[key] != undefined) { diff --git a/src/views/custom_follow/edit.vue b/src/views/custom_follow/edit.vue index dbe0c4a..ac71171 100644 --- a/src/views/custom_follow/edit.vue +++ b/src/views/custom_follow/edit.vue @@ -44,8 +44,11 @@ - - + + + + + @@ -141,14 +144,12 @@ const getDetail = async (row: Record) => { }) setFormData(data) } -// 选择客户 -const handleCurrentChange = (e: any) => { - formData.custom_name = e.name - formData.custom_id = e.id - - showDialog.value = false -} +const customEvent = (e: any) => { + formData.custom_id = e.id; + formData.custom_name = e.name; + showDialog.value = false; +}; // 提交按钮 const handleSubmit = async () => { diff --git a/src/views/financialManagement/bankAccount/INDE.VUE b/src/views/financialManagement/bankAccount/INDE.VUE deleted file mode 100644 index bc8709e..0000000 --- a/src/views/financialManagement/bankAccount/INDE.VUE +++ /dev/null @@ -1 +0,0 @@ -银行账户 \ No newline at end of file diff --git a/src/views/financialManagement/bankAccount/bankAccount.vue b/src/views/financialManagement/bankAccount/bankAccount.vue new file mode 100644 index 0000000..d18a38a --- /dev/null +++ b/src/views/financialManagement/bankAccount/bankAccount.vue @@ -0,0 +1,129 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/bankAccount/interestRate.vue b/src/views/financialManagement/bankAccount/interestRate.vue new file mode 100644 index 0000000..9098216 --- /dev/null +++ b/src/views/financialManagement/bankAccount/interestRate.vue @@ -0,0 +1,72 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/bankAccount/revenueWater.vue b/src/views/financialManagement/bankAccount/revenueWater.vue new file mode 100644 index 0000000..1bf36db --- /dev/null +++ b/src/views/financialManagement/bankAccount/revenueWater.vue @@ -0,0 +1,147 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/draft/Acceptance.vue b/src/views/financialManagement/draft/Acceptance.vue new file mode 100644 index 0000000..40c9cc7 --- /dev/null +++ b/src/views/financialManagement/draft/Acceptance.vue @@ -0,0 +1,213 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/draft/Cash.vue b/src/views/financialManagement/draft/Cash.vue new file mode 100644 index 0000000..27c6169 --- /dev/null +++ b/src/views/financialManagement/draft/Cash.vue @@ -0,0 +1,180 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/draft/MoneyOrderTransfer.vue b/src/views/financialManagement/draft/MoneyOrderTransfer.vue new file mode 100644 index 0000000..0335e32 --- /dev/null +++ b/src/views/financialManagement/draft/MoneyOrderTransfer.vue @@ -0,0 +1,218 @@ + + + + \ No newline at end of file diff --git a/src/views/financialManagement/draft/index.vue b/src/views/financialManagement/draft/index.vue deleted file mode 100644 index c69f255..0000000 --- a/src/views/financialManagement/draft/index.vue +++ /dev/null @@ -1 +0,0 @@ -汇票管理 \ No newline at end of file diff --git a/src/views/project/edit.vue b/src/views/project/edit.vue index 7a16b99..5c82334 100644 --- a/src/views/project/edit.vue +++ b/src/views/project/edit.vue @@ -4,8 +4,9 @@ - - + + @@ -204,12 +205,21 @@ + + + + + + +