| | |
| | | <view v-for="(item,index) in matList" :key="index" class="data-list bg-false" |
| | | :class="'bg-'+item.checked"> |
| | | <view class="data-list-left"> |
| | | <!-- <view> |
| | | <checkbox :value="item.id+''" :checked="item.checked" style="display: block;" /> |
| | | </view> --> |
| | | <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.proType}}</text></view> |
| | | <view><text style="width: 400rpx;">客户图号:{{item.temp2}}</text></view> |
| | | <view><text style="width: 400rpx;">合同号:{{item.outOrderNo}}</text></view> |
| | | <!-- <view><text style="width: 400rpx;">开始时间:{{item.startTime}}</text></view> |
| | | <view><text style="width: 400rpx;">结束时间:{{item.endTime}}</text></view> --> |
| | | <view> |
| | | <text style="width: 400rpx;">名称:{{item.maktx}}</text> |
| | | </view> |
| | | <view> |
| | | <text style="width: 400rpx;">客户PO:{{item.standby1}}</text> |
| | | <text style="margin-left: 100rpx;">客户SKU:{{item.standby3}}</text> |
| | | </view> |
| | | <view> |
| | | <text style="width: 400rpx;">货主名称:{{item.boxType1}}</text> |
| | | <text style="margin-left: 100rpx;">供应商:{{item.supp}}</text> |
| | | </view> |
| | | <view> |
| | | <text style="width: 400rpx;">条码UPC:{{item.standby2}}</text> |
| | | <text style="margin-left: 100rpx;">采购单号:{{item.boxType3}}</text> |
| | | </view> |
| | | <view> |
| | | <text style="width: 400rpx;">数量:{{item.anfme}}</text> |
| | | <text style="margin-left: 100rpx;">单位:{{item.unit}}</text> |
| | | </view> |
| | | |
| | | </view> |
| | | <view class="data-list-right"> |
| | | <label> |
| | |
| | | <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="temp2"> |
| | | <text style="display: inline-block;float: left;width: 50px;">客户PO:</text> |
| | | <input type="text" style="width: 100px;border-bottom: 1px solid #9e9e9e;" v-model="standby1"> |
| | | </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="outOrderNo"> |
| | | <text style="display: inline-block;float: left;width: 50px;">客户SKU:</text> |
| | | <input type="text" style="width: 100px;border-bottom: 1px solid #9e9e9e;" v-model="standby3"> |
| | | </view> |
| | | <view class="" style="position: relative;left: 50px;margin-bottom: 20px;"> |
| | | <text style="display: inline-block;float: left;width: 50px;">条码UPC:</text> |
| | | <input type="text" style="width: 100px;border-bottom: 1px solid #9e9e9e;" v-model="standby2"> |
| | | </view> |
| | | <view class="changeBox"> |
| | | <view class="num-box"> |
| | | <text style="display: inline-block;float: left;width: 50px;">数量:</text> |
| | | <uni-number-box :value="count" :max="999999999" :step="0.0001" color="#747474" @change="changeValue" /> |
| | | <uni-number-box :value="count" :max="999999999" :step="1" color="#747474" @change="changeValue" /> |
| | | </view> |
| | | </view> |
| | | <view class="revise-box-buttom"> |
| | |
| | | }, |
| | | confirm() { |
| | | this.matList[this.rowNum].anfme = this.count |
| | | this.matList[this.rowNum].batch = this.batch |
| | | this.matList[this.rowNum].proType = this.proType |
| | | this.matList[this.rowNum].outOrderNo = this.outOrderNo |
| | | this.matList[this.rowNum].temp2 = this.temp2 |
| | | |
| | | this.matList[this.rowNum].standby1 = this.standby1 |
| | | this.matList[this.rowNum].standby2 = this.standby2 |
| | | this.matList[this.rowNum].standby3 = this.standby3 |
| | | this.$refs.revise.close() |
| | | this.$forceUpdate() // 强制刷新 |
| | | }, |