|
|
@ -24,22 +24,22 @@ |
|
|
|
<view class="title">基本信息</view> |
|
|
|
|
|
|
|
<view class="item"> |
|
|
|
<text>批次号</text> <text>A23366683</text> |
|
|
|
<text>批次号</text> <text>{{detail.batchNo}}</text> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text>出库类型</text> <text>销售出库</text> |
|
|
|
<text>出库类型</text> <text>{{detail.inOutType}}</text> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text>农资名称</text> <text>中量元素水溶肥</text> |
|
|
|
<text>农资名称</text> <text>{{detail.substanceName}}</text> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text>规格</text> <text>100kg/袋</text> |
|
|
|
<text>规格</text> <text>{{detail.specDescribe}}</text> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text>物品数量</text> <text>2袋(200kg)</text> |
|
|
|
<text>物品数量</text> <text>{{detail.number}}袋(共{{detail.equivalentAmount}}{{detail.unit}})</text> |
|
|
|
</view> |
|
|
|
<view class="item"> |
|
|
|
<text>供销商</text> <text>云南云天化股份有限公司</text> |
|
|
|
<text>供销商</text> <text>{{detail.supplierName}}</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
</view> |
|
|
@ -48,8 +48,14 @@ |
|
|
|
export default { |
|
|
|
data(){ |
|
|
|
return{ |
|
|
|
|
|
|
|
} |
|
|
|
detail:{} |
|
|
|
} |
|
|
|
}, |
|
|
|
onLoad(){ |
|
|
|
var eventChannel = this.getOpenerEventChannel(); |
|
|
|
eventChannel.on('detail', data=>{ |
|
|
|
this.detail=data |
|
|
|
}) |
|
|
|
}, |
|
|
|
} |
|
|
|
</script> |