| | |
| | | </view> |
| | | </view> |
| | | </view> |
| | | <view class="square-1"> |
| | | <view class="square-title"> |
| | | <view class="title-sign"><view class="sign"></view></view> |
| | | <view class="title-text"><text>是否冻结</text></view> |
| | | <radio-group @change="cRadio"> |
| | | <label> |
| | | <radio :checked="ck1" style="margin-left: 100rpx;"/><text>是</text> |
| | | </label> |
| | | <label> |
| | | <radio :checked="ck2" style="margin-left: 50rpx;"/><text>否</text> |
| | | </label> |
| | | </radio-group> |
| | | <!-- <radio :value="yes" style="margin-left: 100rpx;">是</radio> |
| | | <radio :value="no" style="margin-left: 50rpx;">否</radio> --> |
| | | </view> |
| | | </view> |
| | | |
| | | |
| | | <view class="square-2"> |
| | |
| | | <view class="matnr"><text style="width: 400rpx;">编码:{{item.matnr}}</text></view> |
| | | <view><text style="width: 400rpx;">品名:{{item.maktx}}</text></view> |
| | | <view><text style="width: 400rpx;">批号:{{item.batch}}</text></view> |
| | | <view><text style="width: 400rpx;">备注:{{item.memo}}</text></view> |
| | | <view> |
| | | <text style="width: 400rpx;">数量:{{item.anfme}}</text> |
| | | </view> |
| | |
| | | </view> |
| | | <!-- 弹窗 --> |
| | | <!-- 修改数量 --> |
| | | <uni-popup ref="revise" background-color="#fff"> |
| | | <uni-popup ref="revise" > |
| | | <view class="revise-box "> |
| | | <view class="revise-box-top"> |
| | | <view class="color-block-blue"></view> |
| | | <text class="title">修改批号/数量</text> |
| | | <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="batch"> |
| | | </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="changeBox"> |
| | | <view class="num-box"> |
| | | <text style="display: inline-block;float: left;width: 50px;">批号:</text> |
| | | <text style="display: inline-block;float: left;width: 50px;">数量:</text> |
| | | <uni-number-box :value="count" :max="9999999" color="#747474" @change="changeValue"/> |
| | | </view> |
| | | </view> |
| | |
| | | check:false, |
| | | checkText:'全选', |
| | | checkedData:[], |
| | | batch:'' |
| | | batch:'', |
| | | memo: '', |
| | | ck1: false, |
| | | ck2: true, |
| | | yess: false, |
| | | } |
| | | }, |
| | | onShow() { |
| | |
| | | // 获取url |
| | | getUrl() { |
| | | this.commonUrl = this.baseHttp + this.baseIP + ':' +this.basePORT + "/" +this.baseUrl |
| | | }, |
| | | cRadio() { |
| | | var temp = this.ck1 |
| | | this.ck1 = this.ck2 |
| | | this.ck2 = temp |
| | | this.yess = this.ck1 |
| | | console.log(this.matList); |
| | | }, |
| | | // barcode input 事件 |
| | | barcodeInput() { |
| | |
| | | }, |
| | | revise(item,index) { |
| | | this.count = this.matList[index].anfme |
| | | this.batch = this.matList[index].batch |
| | | this.memo = this.matList[index].memo |
| | | // var maxCount = this.matList[index].maxCount |
| | | // if (maxCount == undefined ) { |
| | | // this.matList[index]["maxCount"] = item.enableQty |
| | |
| | | confirm() { |
| | | this.matList[this.rowNum].anfme = this.count |
| | | this.matList[this.rowNum].batch = this.batch |
| | | this.matList[this.rowNum].memo = this.memo |
| | | this.$refs.revise.close() |
| | | this.$forceUpdate() // 强制刷新 |
| | | }, |
| | |
| | | .revise-box { |
| | | position: relative; |
| | | width: 500rpx; |
| | | height: 400rpx; |
| | | height: 470rpx; |
| | | border-radius: 25px; |
| | | background-color: #fff; |
| | | border-radius: 20rpx; |
| | | } |
| | | .revise-box-top { |
| | | width: 400rpx; |
| | |
| | | } |
| | | .data-list { |
| | | border-bottom: 1px solid #d8d8d8; |
| | | height: 180rpx; |
| | | height: 220rpx; |
| | | margin: 15rpx; |
| | | border-radius: 20rpx; |
| | | } |