84 lines
1.5 KiB
Vue
84 lines
1.5 KiB
Vue
<template>
|
|
<view v-for="(item) in submitInfo.gdList" class="yditem">
|
|
<view class="ydi-lab">
|
|
<text class="font-weight">女士针织棉上衣</text>
|
|
<text>实发: 300</text>
|
|
</view>
|
|
<view class="ydi-lab mt-10">
|
|
<text class="clr-sub">无 12L 中国内地</text>
|
|
<!-- <text>实入仓: 0</text> -->
|
|
</view>
|
|
<view class="ydi-lab mt-10">
|
|
<text class="clr-prm">12 CNY</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="dt-item">
|
|
<view class="font-28">
|
|
<u-row justify="space-between">
|
|
<text>总件数:<text class="font-weight">10</text>件</text>
|
|
<text>总体积:<text class="font-weight">50</text>m³</text>
|
|
<text>总重量:<text class="font-weight">150</text>kg</text>
|
|
</u-row>
|
|
</view>
|
|
<view class="font-28 mt-10">
|
|
<u-row justify="space-between">
|
|
<text>实际重量:<text class="font-weight">150</text>kg</text>
|
|
<text class="pl-20">结算重量:<text class="font-weight">150</text>kg</text>
|
|
</u-row>
|
|
</view>
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
computed: {
|
|
submitInfo: {
|
|
get(){
|
|
return this.value
|
|
}
|
|
}
|
|
},
|
|
props: {
|
|
value: {
|
|
default () {
|
|
return { }
|
|
}
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
created() {
|
|
|
|
},
|
|
onHide() {
|
|
|
|
},
|
|
unmounted() {
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.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> |