From 6026b6bd6b338bdea0f0f81f7e34796d11e34147 Mon Sep 17 00:00:00 2001 From: zmj <1493694146@qq.com> Date: Wed, 29 May 2024 17:07:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=BA=86=E5=A4=9A=E4=B8=AA?= =?UTF-8?q?=E8=A7=86=E5=9B=BE=E9=A1=B5=E9=9D=A2=E5=8F=8A=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=EF=BC=8C=E5=8C=85=E6=8B=AC=E5=AE=A1=E6=89=B9=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E6=96=B9=E5=BC=8F=E7=AD=89=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/oa_arrival/edit.vue | 38 +++++++++++++++++++++++++++++++++-- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/src/views/oa_arrival/edit.vue b/src/views/oa_arrival/edit.vue index 10d0ebd..93a6e22 100644 --- a/src/views/oa_arrival/edit.vue +++ b/src/views/oa_arrival/edit.vue @@ -91,11 +91,25 @@
- 取消 - 确定 + 保存到账记录 + 重置 + 全部到账 +
+ + + + + + + + 确定 + 取消 + + @@ -107,6 +121,8 @@ import { apiInvliceLists, apiInvlicevAdd } from '@/api/oa_financial' import { defineEmits } from "vue" const popupRef = shallowRef>(); const emit = defineEmits(["success", "close"]); +const times = ref('') +const showDialog = ref(false) // 表单数据 @@ -164,6 +180,24 @@ const submit = async () => { const close = () => { emit("success"); } +const reset = () => { + detail.value = [{ + "amount": '', + "enter_time": "", + "remarks": "" + }] +} + +const allSubmits = async () => { + await apiInvlicevAdd( + { + invoice_id: formData.id, detail: [{ amount: formData.amount, enter_time: times.value, remarks: '' }] + } + ) + emit("success"); + + +} // 显示