| | |
| | | <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"> |
| | | <view class="text-title"><text>规格</text></view> |
| | | <view class="text-title">{{matData.specs}}</view> |
| | | <view class="text-title"><text>客户PO</text></view> |
| | | <view class="text-title"><input type="text" v-model="matData.standby1"></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 class="text-title"><text>条码UPC</text></view> |
| | | <view class="text-title"><input type="text" v-model="matData.standby2"></view> |
| | | </view> |
| | | <view class="text-box"> |
| | | <view class="text-title"> |
| | | <text style="font-size: 24rpx;">属性</text> |
| | | </view> |
| | | |
| | | <view class="attr-row"> |
| | | <picker |
| | | :range="commonProps" |
| | | :value="selectedIndex" |
| | | @change="onPropChange" |
| | | class="half-box" |
| | | > |
| | | <view class="picker-box"> |
| | | <text>{{ matData.proType || '请选择属性' }}</text> |
| | | </view> |
| | | </picker> |
| | | |
| | | <input |
| | | type="text" |
| | | v-model="matData.proType" |
| | | placeholder="手动输入其他属性" |
| | | class="half-box" |
| | | /> |
| | | |
| | | </view> |
| | | </view> |
| | | |
| | | |
| | | <view class="text-box"> |
| | | <view class="text-title"><text>客户图号</text></view> |
| | | <view class="text-title"><input type="text" v-model="matData.temp2"></view> |
| | | <view class="text-title"><text>客户SKU</text></view> |
| | | <view class="text-title"><input type="text" v-model="matData.standby3"></view> |
| | | </view> |
| | | <view class="text-box"> |
| | | <view class="text-title"><text>合同号</text></view> |
| | | <view class="text-title"><input type="text" v-model="matData.outOrderNo"></view> |
| | | <view class="text-title"><text>货主名称</text></view> |
| | | <view class="text-title"><input type="text" v-model="matData.boxType1"></view> |
| | | </view> |
| | | <view class="text-box"> |
| | | <view class="text-title"><text>供应商</text></view> |
| | | <view class="text-title"><input type="text" v-model="matData.supp"></view> |
| | | </view> |
| | | <view class="text-box"> |
| | | <view class="text-title"><text>采购单号</text></view> |
| | | <view class="text-title"><input type="text" v-model="matData.boxType3"></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> |
| | |
| | | matData: { |
| | | matnr: null, |
| | | maktx: null, |
| | | batch: null, |
| | | standby1: null, |
| | | anfme: null, |
| | | unit: null, |
| | | proType: null, |
| | | temp2: null, |
| | | outOrderNo:null, |
| | | standby2: null, |
| | | standby3: null, |
| | | supp: null, |
| | | boxType1: null, |
| | | boxType3: null, |
| | | memo:null, |
| | | startTime: '', |
| | | endTime: '' |
| | | }, |