157 lines
3.4 KiB
Vue
157 lines
3.4 KiB
Vue
<template>
|
||
<div class="pricing-standards-container">
|
||
<div class="pricing-section">
|
||
<h2>体积收费标准</h2>
|
||
<p class="description">按物品最长单边尺寸计算:</p>
|
||
<div class="pricing-table">
|
||
<div class="pricing-item">
|
||
<div class="standard">≤35cm</div>
|
||
<div class="price">不加价</div>
|
||
</div>
|
||
<div class="pricing-item">
|
||
<div class="standard">35cm<尺寸≤70cm</div>
|
||
<div class="price">中件,加 <span class="highlight">2</span> 元</div>
|
||
</div>
|
||
<div class="pricing-item">
|
||
<div class="standard">70cm<尺寸≤100cm</div>
|
||
<div class="price">大件,加 <span class="highlight">4</span> 元</div>
|
||
</div>
|
||
<div class="pricing-item">
|
||
<div class="standard">>100cm</div>
|
||
<div class="price">超大件,加 <span class="highlight">6</span> 元</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="pricing-section">
|
||
<h2>重量收费标准</h2>
|
||
<div class="pricing-table">
|
||
<div class="pricing-item">
|
||
<div class="standard">≤5 公斤</div>
|
||
<div class="price">不加价</div>
|
||
</div>
|
||
<div class="pricing-item">
|
||
<div class="standard">5<重量≤10 公斤</div>
|
||
<div class="price">加 <span class="highlight">4</span> 元</div>
|
||
</div>
|
||
<div class="pricing-item">
|
||
<div class="standard">10<重量≤20 公斤</div>
|
||
<div class="price">加 <span class="highlight">6</span> 元</div>
|
||
</div>
|
||
<div class="pricing-item">
|
||
<div class="standard">>20 公斤</div>
|
||
<div class="price">加 <span class="highlight">10</span> 元</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
name: 'PricingStandardsPage',
|
||
metaInfo: {
|
||
title: '加价收费标准 - 蜂快到家'
|
||
},
|
||
methods: {
|
||
goBack() {
|
||
this.$router.back()
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
.pricing-standards-container {
|
||
padding: 20px;
|
||
max-width: 100%;
|
||
margin: 0 auto;
|
||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
||
}
|
||
|
||
.pricing-header {
|
||
text-align: center;
|
||
margin-bottom: 30px;
|
||
position: relative;
|
||
}
|
||
|
||
.back-button {
|
||
position: absolute;
|
||
left: 0;
|
||
top: 0;
|
||
display: flex;
|
||
align-items: center;
|
||
font-size: 14px;
|
||
color: #666;
|
||
cursor: pointer;
|
||
padding: 5px;
|
||
}
|
||
|
||
.back-icon {
|
||
margin-right: 4px;
|
||
font-size: 16px;
|
||
}
|
||
|
||
.pricing-header h1 {
|
||
font-size: 24px;
|
||
color: #333;
|
||
margin: 0;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.pricing-section {
|
||
margin-bottom: 40px;
|
||
background-color: #fff;
|
||
border-radius: 12px;
|
||
padding: 20px;
|
||
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
|
||
}
|
||
|
||
.pricing-section h2 {
|
||
font-size: 18px;
|
||
color: #333;
|
||
margin: 0 0 15px 0;
|
||
font-weight: 600;
|
||
border-bottom: 1px solid #eee;
|
||
padding-bottom: 10px;
|
||
}
|
||
|
||
.description {
|
||
font-size: 14px;
|
||
color: #666;
|
||
margin-bottom: 15px;
|
||
}
|
||
|
||
.pricing-table {
|
||
width: 100%;
|
||
}
|
||
|
||
.pricing-item {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
padding: 12px 0;
|
||
border-bottom: 1px solid #f0f0f0;
|
||
}
|
||
|
||
.pricing-item:last-child {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.standard {
|
||
font-size: 15px;
|
||
color: #333;
|
||
flex: 1;
|
||
}
|
||
|
||
.price {
|
||
font-size: 15px;
|
||
color: #333;
|
||
text-align: right;
|
||
flex: 1;
|
||
}
|
||
|
||
.highlight {
|
||
color: #ff6600;
|
||
font-weight: bold;
|
||
font-size: 17px;
|
||
}
|
||
</style> |