From 2cf4a63a3d1ee8f568dc8399d478790e6f197d9e Mon Sep 17 00:00:00 2001
From: wtt <1985833171@qq.com>
Date: 星期三, 13 八月 2025 09:32:28 +0800
Subject: [PATCH] 委外出站发出接收,出站汇报测试完善
---
pages/weiwaigxIn/table.vue | 16 ++++++++++------
1 files changed, 10 insertions(+), 6 deletions(-)
diff --git a/pages/weiwaigxIn/table.vue b/pages/weiwaigxIn/table.vue
index 44df963..0f8f436 100644
--- a/pages/weiwaigxIn/table.vue
+++ b/pages/weiwaigxIn/table.vue
@@ -171,7 +171,7 @@
<view class="op" v-if="operations == index">
<!-- <button class="op1" size="mini" plain @tap.stop="check(item)">瀹℃牳</button>
<button class="op2" size="mini" plain @tap.stop="antiCheck(item)">鍙嶅鏍�</button> -->
- <button class="op3" size="mini" plain @tap.stop="edit(item)">缂栬緫</button>
+ <button class="op3" size="mini" plain @tap.stop="edit(item)" v-if="false">缂栬緫</button>
<button class="op4" size="mini" plain @tap.stop="del(item)">鍒犻櫎</button>
<button class="op5" size="mini" plain @tap.stop="operations = -1">鍙栨秷鎿嶄綔</button>
</view>
@@ -195,7 +195,7 @@
arrayStatus:['鍏ㄩ儴','鏈鏍�','宸插鏍�','宸插叧闂�'],
hform:{
HStatus:'鍏ㄩ儴',
- HBeginDate:'',
+ HBeginDate:new Date().toISOString().split('T')[0],
HEndDate:'',
HICMOBillNo:'',
HBillNo:'',
@@ -236,6 +236,7 @@
return newList
},
getList(){
+ this.sWhere += ` and 鍒跺崟浜� like N'%${this.userInfo.Czymc}'`
// console.log(this.sWhere)
uni.showLoading({
title:'鍔犺浇涓�...'
@@ -307,11 +308,11 @@
this.sWhere += " and 鍏抽棴浜�<>''";
}
}
- if (this.hform.BenginHCreateDate) {
- this.sWhere += " and CONVERT(varchar(100),鏃ユ湡, 23) >= '" + this.hform.BenginHCreateDate + "'";
+ if (this.hform.HBeginDate) {
+ this.sWhere += " and CONVERT(varchar(100),鏃ユ湡, 23) >= '" + this.hform.HBeginDate + "'";
}
- if (this.hform.EndHCreateDate) {
- this.sWhere += " and CONVERT(varchar(100),鏃ユ湡, 23) >= '" + this.hform.EndHCreateDate + "'";
+ if (this.hform.HEndDate) {
+ this.sWhere += " and CONVERT(varchar(100),鏃ユ湡, 23) >= '" + this.hform.HEndDate + "'";
}
if (this.hform.HBillNo) {
this.sWhere += " and 鍗曟嵁鍙� like '%" + this.hform.HBillNo + "%'";
@@ -428,6 +429,9 @@
width: 640rpx;
margin: 20rpx auto;
}
+ picker input{
+ pointer-events: none;
+ }
.other{
margin-top: 8rpx;
text-align: center;
--
Gitblit v1.9.1