From 6332aba37af20b12b8c3c768ac1416f7e1a5fa8c Mon Sep 17 00:00:00 2001 From: lsh <lsh@163.com> Date: 星期二, 15 四月 2025 15:52:36 +0800 Subject: [PATCH] # --- pages/basics/matQuery.vue | 35 +++++++++++++++++++++++------------ 1 files changed, 23 insertions(+), 12 deletions(-) diff --git a/pages/basics/matQuery.vue b/pages/basics/matQuery.vue index 12f1e5b..846cf75 100644 --- a/pages/basics/matQuery.vue +++ b/pages/basics/matQuery.vue @@ -3,11 +3,11 @@ <view> <view class="container"> <view class="text-box"> - <view class="text-title"><text>鍟嗗搧缂栫爜</text></view> + <view class="text-title"><text>鍝佸彿</text></view> <view class="text-title"><text>{{matData.matnr}}</text></view> </view> <view class="text-box"> - <view class="text-title"><text>鍟嗗搧鍚嶇О</text></view> + <view class="text-title"><text>鍝佸悕</text></view> <view class="text-title">{{matData.maktx}}</view> </view> <view class="text-box"> @@ -15,14 +15,22 @@ <view class="text-title">{{matData.specs}}</view> </view> <view class="text-box"> - <view class="text-title"><text>鎵瑰彿</text></view> + <view class="text-title"><text>宸ュ簭</text></view> + <view class="text-title">{{matData.sku}}</view> + </view> + <view class="text-box"> + <view class="text-title"><text>鎵规</text></view> <view class="text-title"><input type="text" v-model="matData.batch"></view> + </view> + <view class="text-box"> + <view class="text-title"><text>澶囨敞</text></view> + <view class="text-title"><input type="text" v-model="matData.memo"></view> </view> <view class="text-box"> <view class="text-title"><text>鏁伴噺</text></view> <view class="text-title"> <view> - <uni-number-box v-model="matData.anfme" value="0" :max="9999" color="#747474" @change="changeValue"/> + <uni-number-box :value="matData.anfme" :max="99999999" color="#747474" @change="changeValue"/> </view> </view> </view> @@ -40,7 +48,6 @@ export default { data() { return { - matList:[], matData: { matnr: null, maktx: null, @@ -61,13 +68,12 @@ // #endif // 鐩戝惉acceptDataFromOpenerPage浜嬩欢锛岃幏鍙栦笂涓�椤甸潰閫氳繃eventChannel浼犻�佸埌褰撳墠椤甸潰鐨勬暟鎹� - eventChannel.on('acceptDataFromOpenerPage', function(data) { + eventChannel.on('matData', function(data) { that.matData = data.data + that.matData.anfme = 0 }) - }, - onShow() { - // this.matData = this.matData + }, methods: { blur() { @@ -76,11 +82,16 @@ focus() { }, - changeValue() { - + changeValue(value) { + this.matData.anfme = value }, back() { - this.getOpenerEventChannel().emit('acceptDataFromOpenedPage', {data: this.matData}); + if (this.matData.anfme === 0) { + uni.showToast({title: '璇疯緭鍏ユ暟閲�', icon: "none", position: 'top'}); + return; + } + this.getOpenerEventChannel().emit('matList', {data: this.matData}); + uni.vibrateShort(); uni.navigateBack({ }) -- Gitblit v1.9.1