From d8b46eb0f1bbe8b51528c0b10d0786fe46c43015 Mon Sep 17 00:00:00 2001
From: wtt <1985833171@qq.com>
Date: 星期二, 19 八月 2025 11:43:52 +0800
Subject: [PATCH] Merge branch 'Dev' of http://101.37.171.70:10101/r/~jhz/STUWMS into Dev
---
pages/xiaoshouchuku/form.vue | 12 +++++++++++-
1 files changed, 11 insertions(+), 1 deletions(-)
diff --git a/pages/xiaoshouchuku/form.vue b/pages/xiaoshouchuku/form.vue
index 7a31431..fce461e 100644
--- a/pages/xiaoshouchuku/form.vue
+++ b/pages/xiaoshouchuku/form.vue
@@ -470,7 +470,13 @@
this.BarCodeFocus = true
return
}
- let inputVal = this.$refs.uniComboxSourceBill.inputVal
+ let inputVal = ''
+ if(this.$refs.uniComboxSourceBill){
+ inputVal = this.$refs.uniComboxSourceBill.inputVal || this.hform.HBillNo
+ }else {
+ inputVal = this.hform.HBillNo
+ }
+
if (inputVal == '') {
CommonUtils.playSound(0)
return uni.showToast({
@@ -1477,6 +1483,10 @@
border: 1px solid #acacac;
position: relative;
display: flex;
+
+ picker {
+ width: 100%;
+ }
.uni-combox {
width: 100%;
--
Gitblit v1.9.1