From 958d6d6e67c8375fe3ea9f11cbefe2aab1451fc3 Mon Sep 17 00:00:00 2001
From: zhangwencui <1064582902@qq.com>
Date: 星期三, 11 二月 2026 16:25:01 +0800
Subject: [PATCH] 付款登记时,输入付款金额后,会弹出提示不可大于待付金额
---
src/pages/managementMeetings/sealManagement/index.vue | 14 ++++++++++----
1 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/src/pages/managementMeetings/sealManagement/index.vue b/src/pages/managementMeetings/sealManagement/index.vue
index 6d92c96..9cd1f50 100644
--- a/src/pages/managementMeetings/sealManagement/index.vue
+++ b/src/pages/managementMeetings/sealManagement/index.vue
@@ -8,7 +8,7 @@
<view class="search-bar">
<view class="search-input">
<up-input class="search-text"
- placeholder="璇疯緭鍏ョ敵璇锋爣棰�"
+ placeholder="璇疯緭鍏ョ敵璇风紪鍙�"
v-model="name"
@blur="getList"
clearable />
@@ -97,7 +97,7 @@
</view>
<view v-else
class="no-data">
- <text>鏆傛棤浼氳瀹よ褰�</text>
+ <text>鏆傛棤鐢ㄥ嵃璁板綍</text>
</view>
<!-- 娴姩鏂板鎸夐挳 -->
<view class="fab-button"
@@ -111,7 +111,7 @@
<script setup>
import { ref, onMounted, computed } from "vue";
- import { onShow } from "@dcloudio/uni-app";
+ import { onShow, onLoad } from "@dcloudio/uni-app";
import { useDict } from "@/utils/dict";
import PageHeader from "@/components/PageHeader.vue";
import {
@@ -195,7 +195,7 @@
const params = {
current: -1,
size: -1,
- title: name.value,
+ applicationNum: name.value,
};
listSealApplication(params)
.then(res => {
@@ -287,6 +287,12 @@
},
});
};
+ onLoad(options => {
+ // 瑙f瀽applicationNum
+ if (options.applicationNum) {
+ name.value = options.applicationNum;
+ }
+ });
onMounted(() => {
getList();
--
Gitblit v1.9.3