53 lines
897 B
Vue
Raw Normal View History

2025-04-14 13:49:20 +08:00
<template>
2025-04-14 16:49:31 +08:00
<view class="billing-rules">
<view class="billing-header">计费规则</view>
<view class="billing-item">
<view class="item-title">起步价</view>
<view class="item-value">1.50</view>
</view>
<view class="billing-item">
<view class="item-title">包含时长</view>
<view class="item-value">30分钟以内</view>
</view>
</view>
2025-04-14 13:49:20 +08:00
</template>
<script setup>
2025-04-14 16:49:31 +08:00
import {
ref
} from 'vue';
2025-04-14 13:49:20 +08:00
2025-04-14 16:49:31 +08:00
const message = ref("这里是计费规则的详细描述");
2025-04-14 13:49:20 +08:00
</script>
<style scoped>
2025-04-14 16:49:31 +08:00
.billing-rules {
height: 100vh;
background-color: white;
padding: 20px;
}
.billing-header {
font-size: 16px;
font-weight: bold;
margin-bottom: 16px;
}
.billing-item {
display: flex;
justify-content: space-between;
margin-bottom: 12px;
}
.item-title {
font-size: 13px;
color: #333;
}
.item-value {
font-size: 13px;
color: #666;
}
</style>