129 lines
2.7 KiB
Vue
129 lines
2.7 KiB
Vue
<template>
|
|
<view v-for="(item) in modelInfo.cargoList" class="yditem">
|
|
<view class="ydi-lab">
|
|
<text class="font-weight">{{item.goodsName}}</text>
|
|
<text>实发: {{item.cargoQty}}</text>
|
|
</view>
|
|
<view class="ydi-lab mt-10">
|
|
<text class="clr-sub">{{item.nationArea}}</text>
|
|
<!-- <text>实入仓: 0</text> -->
|
|
</view>
|
|
<view class="ydi-lab mt-10">
|
|
<text class="clr-prm">{{item.price}} CNY</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="">
|
|
<view class="font-28">
|
|
<u-row justify="space-between">
|
|
<view class="sta-t-item">
|
|
<view class="">
|
|
<text class="font-weight">{{modelInfo.parcelQty || '-'}}</text>
|
|
<text class="clr-sub">件</text>
|
|
</view>
|
|
<view class="sta-lbl clr-sub">总件数</view>
|
|
</view>
|
|
<view class="sta-t-item">
|
|
<view class="">
|
|
<text class="font-weight">{{modelInfo.totalVolume || '-'}}</text>
|
|
<text class="clr-sub">m³</text>
|
|
</view>
|
|
<view class="sta-lbl clr-sub">总体积</view>
|
|
</view>
|
|
<view class="sta-t-item">
|
|
<view class="">
|
|
<text class="font-weight">{{modelInfo.billWeight || '-'}}</text>
|
|
<text class="clr-sub">kg</text>
|
|
</view>
|
|
<view class="sta-lbl clr-sub">实际重量</view>
|
|
</view>
|
|
</u-row>
|
|
</view>
|
|
<view class="font-28 mt-20">
|
|
<u-row justify="space-between">
|
|
<view class="sta-t-item">
|
|
<view class="">
|
|
<text class="font-weight">{{modelInfo.totalWeight || '-'}}</text>
|
|
<text class="clr-sub">kg</text>
|
|
</view>
|
|
<view class="sta-lbl clr-sub">总重量</view>
|
|
</view>
|
|
|
|
<view class="sta-t-item">
|
|
<view class="">
|
|
<text class="font-weight">{{modelInfo.volumeWeight || '-'}}</text>
|
|
<text class="clr-sub">kg</text>
|
|
</view>
|
|
<view class="sta-lbl clr-sub">体积重量</view>
|
|
</view>
|
|
|
|
<view class="sta-t-item">
|
|
<view class="">
|
|
<text class="font-weight">{{modelInfo.settlementWeight || '-'}}</text>
|
|
<text class="clr-sub">kg</text>
|
|
</view>
|
|
<view class="sta-lbl clr-sub">结算重量</view>
|
|
</view>
|
|
</u-row>
|
|
</view>
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
computed: {
|
|
modelInfo: {
|
|
get(){
|
|
return this.value
|
|
}
|
|
}
|
|
},
|
|
props: {
|
|
value: {
|
|
default () {
|
|
return { }
|
|
}
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
created() {
|
|
|
|
},
|
|
onHide() {
|
|
|
|
},
|
|
unmounted() {
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.sta-t-item{
|
|
text-align: center;
|
|
}
|
|
.sta-lbl{
|
|
margin-top: 6rpx;
|
|
}
|
|
.yditem{
|
|
padding: 20rpx 20rpx;
|
|
background-color: #F6F6F6;
|
|
border-radius: 10rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.ydi-lab{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
</style> |