From b7c71b087efc89a278b114d8611d11c1f70112da Mon Sep 17 00:00:00 2001 From: song Date: Wed, 26 Jan 2022 15:49:00 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=B3=E8=AF=B7+=E7=94=B3=E8=AF=B7=E8=AF=A6?= =?UTF-8?q?=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/Initiate-application.vue | 18 ++---------------- pages/application-details.vue | 8 ++++---- 2 files changed, 6 insertions(+), 20 deletions(-) diff --git a/pages/Initiate-application.vue b/pages/Initiate-application.vue index 77935cf..f05bbaa 100644 --- a/pages/Initiate-application.vue +++ b/pages/Initiate-application.vue @@ -265,20 +265,6 @@ const data = reactive({ ], reviewerList: [], // 审核人数组 checkerList: [], // 默认的审核人 - applyData: [ - { - applicant:'代用名1', - money:100, - time:'2021/12/31 12:31', - type: 1 - }, - { - applicant:'代用名2', - money:100, - time:'2021/12/31 12:31', - type: 2 - }, - ], // 申请的记录 isSuccess: false, // 上传票据是否成功 money: '', // 金额 submitName: '', // 提交人的姓名 @@ -495,12 +481,12 @@ function setParams(){ invoiceList.push(list) if(isInvoice){ param = { - money: totleMoney,invoiceList, remark, checkerList, typeId, projectId: projectId.value, + money: totleMoney * 100,invoiceList, remark, checkerList, typeId, projectId: projectId.value, taskDetailId: taskDetailId.value, categoryId, rowId, submitName, department } }else{ param = { - money, remark, checkerList, typeId, projectId: projectId.value, categoryId, submitName, department + money: money * 100, remark, checkerList, typeId, projectId: projectId.value, categoryId, submitName, department } } return param diff --git a/pages/application-details.vue b/pages/application-details.vue index 0de2642..fbd60c8 100644 --- a/pages/application-details.vue +++ b/pages/application-details.vue @@ -19,10 +19,10 @@
{{item.time}}
-
- {{item.checkStatus === '1' ? '已通过' : item.checkStatus === '2' ? '已驳回' : '待审批'}} +
+ {{item.checkStatus == '1' ? '已通过' : item.checkStatus == '2' ? '已驳回' : '待审批'}}
-
+
-
+
提交人信息
{{item.name}}