From 5f2ee00100101dc1b3870109e1f33069c97ff6de Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Tue, 20 Jan 2026 09:24:23 +0800
Subject: [PATCH] Merge branch 'master' of http://139.196.74.78:10010/r/jagzwxm/ja_web
---
applications/task-work-order/src/views/orderView/orderDataManage/supplyAdd/ApplyViewDialog.vue | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/applications/task-work-order/src/views/orderView/orderDataManage/supplyAdd/ApplyViewDialog.vue b/applications/task-work-order/src/views/orderView/orderDataManage/supplyAdd/ApplyViewDialog.vue
index e30d064..23d0823 100644
--- a/applications/task-work-order/src/views/orderView/orderDataManage/supplyAdd/ApplyViewDialog.vue
+++ b/applications/task-work-order/src/views/orderView/orderDataManage/supplyAdd/ApplyViewDialog.vue
@@ -348,7 +348,9 @@
}
// 拒绝申请
const rejectTheApplication = () => {
- // const id = ['2013182736046530562']
+ if(responseData.value.length === 0){
+ return ElMessage.warning('请上传数据')
+ }
const id = [responseData.value.attachId]
console.log('responseData.value',responseData.value)
gdSupplyDemandAuditRejectApi({ attachIds:id }).then(() => {
@@ -358,6 +360,9 @@
}
// 审核通过
const approvedByTheReview = () => {
+ if(responseData.value.length === 0){
+ return ElMessage.warning('请上传数据')
+ }
const id = [responseData.value.attachId]
gdSupplyDemandAuditPassApi({ id }).then(() => {
ElMessage.success('审核通过成功')
--
Gitblit v1.9.3