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

23 lines
565 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--重量体积查询结果-->
<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>