From 17c63ddd016876d846b6e8f9c74d54c0316f9ee9 Mon Sep 17 00:00:00 2001 From: whycq <whycq> Date: 星期一, 27 六月 2022 16:27:08 +0800 Subject: [PATCH] # --- pages/basics/stockCheck.vue | 21 +++++++++++++++++++-- 1 files changed, 19 insertions(+), 2 deletions(-) diff --git a/pages/basics/stockCheck.vue b/pages/basics/stockCheck.vue index 99c649c..3cfeb19 100644 --- a/pages/basics/stockCheck.vue +++ b/pages/basics/stockCheck.vue @@ -13,11 +13,24 @@ </view> </view> </view> + + <view class="square-2"> + <view class="square-title"> + <view class="title-sign"><view class="sign"></view></view> + <view class="title-text"><text>鎵樼洏鏉$爜</text></view> + </view> + <view class="square-content"> + <view class="content-input"> + <input v-model="barcode" type="text" placeholder="鎵爜 / 杈撳叆" maxlength="8"> + <uni-icons type="closeempty" size="20" color="#dadada" @click="removeBarcode"></uni-icons> + </view> + </view> + </view> <view class="pak-data-box"> <view class="box-top"> <view class="color-block-blue"></view> <text class="title">鍟嗗搧鍒楄〃</text> - <button class="cu-btn bg-blue" @click="selectMat()">+ 娣诲姞</button> + <!-- <button class="cu-btn bg-blue" @click="selectMat()">+ 娣诲姞</button> --> </view> </view> <view class="pak-data-box" v-show="matList.length === 0"> @@ -79,8 +92,9 @@ export default { data() { return { - matList:[{matnr:'LSH90152025',maktx:'灏奸緳澶�',batch:'',anfme:'10'}], + matList:[], staNoList:[], + barcode: '', staNo:'', matnr:'', enableQty:'', @@ -266,6 +280,9 @@ } }, }); + }, + removeBarcode() { + this.barcode = '' } } // methods } // exprot -- Gitblit v1.9.1