From b639462cc2e581e9a7e2b7b098505af3766e8283 Mon Sep 17 00:00:00 2001 From: whycq <10027870+whycq@user.noreply.gitee.com> Date: 星期二, 13 九月 2022 16:30:55 +0800 Subject: [PATCH] # --- pages/basics/outPakin.vue | 61 +++++++++++++++++++++++++++++- 1 files changed, 58 insertions(+), 3 deletions(-) diff --git a/pages/basics/outPakin.vue b/pages/basics/outPakin.vue index 6616d70..f8e3006 100644 --- a/pages/basics/outPakin.vue +++ b/pages/basics/outPakin.vue @@ -45,7 +45,8 @@ <view class="matnr">{{item.matnr}}-{{item.batch}}</view> </view> <view class="data-list-right"> - <uni-icons type="trash" size="20" color="#a5a5a5" @click="remove(item,index)"></uni-icons> + <label><uni-icons type="compose" size="20" color="#a5a5a5" @click="revise(item,index)"></uni-icons></label> + <label style="margin-left: 10%;"><uni-icons type="trash" size="21" color="#a5a5a5" @click="remove(item,index)"></uni-icons></label> </view> </view> </checkbox-group> @@ -87,6 +88,27 @@ </view> </uni-popup> </view> + + <!-- 寮圭獥 --> + <!-- 淇敼鏁伴噺 --> + <uni-popup ref="revise" background-color="#fff"> + <view class="revise-box "> + <view class="revise-box-top"> + <view class="color-block-blue"></view> + <text class="title">淇敼鎵瑰彿/鏁伴噺</text> + </view> + <view class="" style="position: relative;left: 50px;margin-bottom: 20px;"> + <text style="display: inline-block;float: left;width: 50px;">缈诲寘锛�</text> + <input type="text" style="width: 100px;border-bottom: 1px solid #9e9e9e;" v-model="memo"> + </view> + <view class="revise-box-buttom"> + <view> + <button class="cu-btn bg-blue" @click="confirm()">纭</button> + </view> + </view> + </view> + </uni-popup> + </view> </template> @@ -112,7 +134,9 @@ origins: [{value:'1288'},{value:'5055'}], origin: null, // 浠撳簱 current: 0, - isNum:false + isNum:false, + memo:'' + } }, mounted(){ @@ -146,6 +170,7 @@ }, // 纭鍑哄簱鍙� check() { + console.log(this.matList); let that = this if (this.current == 0) { this.origin = 1288 @@ -311,6 +336,12 @@ that.addLog(matCode,userName) // that.foucss(); // return; + if(that.matList.length > 15) { + that.messageToggle('warn'); + that.messageText = '缁勬墭鍟嗗搧鏁伴噺宸茶秴杩�16浠讹紝璇峰畬鎴愬綋鍓嶇粍鎵�'; + that.foucss(); + return; + } if (that.matnrId.length > 25){ that.messageToggle('warn'); that.messageText = '鍟嗗搧缂栫爜瓒呴暱锛岃閲嶈瘯'; @@ -417,6 +448,28 @@ change(e) { console.log('褰撳墠妯″紡锛�' + e.type + ',鐘舵�侊細' + e.show); + }, + revise(item,index) { + this.memo = this.matList[index].memo + // var maxCount = this.matList[index].maxCount + // if (maxCount == undefined ) { + // this.matList[index]["maxCount"] = item.enableQty + // } + // this.enableQty = item.enableQty + // this.count = this.minCount + // this.maxCount = item.maxCount + this.rowNum = index + this.eject() + }, + eject(type) { + this.type = type + // open 鏂规硶浼犲叆鍙傛暟 绛夊悓鍦� uni-popup 缁勪欢涓婄粦瀹� type灞炴�� + this.$refs.revise.open(type) + }, + confirm() { + this.matList[this.rowNum].memo = this.memo + this.$refs.revise.close() + this.$forceUpdate() // 寮哄埗鍒锋柊 }, } @@ -569,6 +622,8 @@ float: right; height: 130rpx; line-height: 130rpx; - margin-right: 10%; + margin-right: 2%; + width: 20%; } + </style> \ No newline at end of file -- Gitblit v1.9.1