sl-express/project-wl-kuaidiyuan-uniap.../pages/freight/components/result.vue

23 lines
565 B
Vue
Raw Normal View History

2023-09-04 16:40:17 +08:00
<!--重量体积查询结果-->
<template>
<view class="boxBg result">
<view>计费重量{{ baseData.weight }} kg</view>
<view>计费体积{{ baseData.volumeValue }} </view>
<view
>首重1.0kg{{ baseData.firstWeight }}续重{{
baseData.continuousWeight
}}/kg</view
>
<view class="price"><text></text>{{ baseData.freight }}</view>
</view>
</template>
<script setup>
// 获取父组件数据
const props = defineProps({
baseData: {
type: Object,
default: () => ({}),
},
});
</script>