This commit is contained in:
shuhongfan
2023-09-04 16:40:17 +08:00
commit cf5ac25c14
8267 changed files with 1305066 additions and 0 deletions

View File

@@ -0,0 +1,69 @@
.account-rules{
background-color: white;
height: 100vh;
padding: 72rpx 51rpx 0;
.top{
display: flex;
justify-content: space-around;
background-color: #F8F9FB;
padding:22rpx 46rpx 38rpx 36rpx ;
margin-bottom: 50rpx;
.top-item{
text-align: center;
.top-img{
width:116rpx ;
height:116rpx ;
}
.top-title{
font-size: 24rpx;
color: #151515;
text-align: center;
}
.top-subTitle{
font-size: 20rpx;
color: #888888;
text-align: center;
}
}
.top-item:first-child{
.top-img{
margin-left: 10rpx;
background-repeat: no-repeat;
background-size: contain;
background-image: url('../../static/kouhong.png');
}
}
.top-item:nth-child(2){
.top-img{
margin-left: 15rpx;
background-repeat: no-repeat;
background-size: contain;
background-image: url('../../static/xiong.png');
}
}
.top-item:last-child{
.top-img{
margin-left: 30rpx;
background-repeat: no-repeat;
background-size: contain;
background-image: url('../../static/bingxiang.png');
}
}
}
.first-content,.second-content,.third-content,.fourth-content{
.title{
font-size:24rpx;
color:#151515 ;
font-weight: bold;
}
.content{
font-size:24rpx;
color:#151515 ;
line-height: 40rpx;
}
}
.second-content,.third-content,.fourth-content{
margin-top:36rpx ;
}
}

View File

@@ -0,0 +1,71 @@
<template>
<!-- 头部导航栏 -->
<nav-bar title='计费规则'></nav-bar>
<view class="account-rules">
<view class="top">
<view class="top-item" :key="index" v-for="(item,index) in topList">
<view class="top-img" ></view>
<view class="top-title">{{item.title}}</view>
<view class="top-subTitle">{{item.subTitle}}</view>
</view>
</view>
<view class="first-content">
<view class="title">重量计算方法</view>
<view class="content">
托寄物的计费重量取体积重量与实际重量两者之间的较大值体积重量的计算方法为(cm)x宽(cm)x高(cm)/轻抛系数
</view>
<view class="content">
1.神领即日/神领特快同城省内件以及经济区域内互寄(京津冀/江浙沪皖/川渝/黑吉辽)轻抛系数为12000省外跨经济区域互寄轻抛系数为6000
</view>
<view class="content">
2.神领标快中国内地大部分流向互寄轻抛系数为12000;中国内地其他地区与昌都市互寄华南华北至西藏流向轻抛系数为6000
</view>
<view class="content">
3.神领卡航轻抛系数为6000
</view>
</view>
<view class="second-content">
<view class="title">计费重量小数点规则</view>
<view class="content">
中国内地互寄业务10kg以下续重以0.1kg为计重单位10-100kg,续重以0.5kg为计重单位100kg及以上四舍五入取整数其他范围的重量处理规则详细查询神领官网
</view>
</view>
<view class="third-content">
<view class="title">总运费小数点规则</view>
<view class="content">
运费计算结果按四舍五入取整数值
</view>
</view>
<view class="fourth-content">
<view class="content">
以上计费规则可能因服务产品或所在地区不同而有所差异详情请与当地神领快递员进行咨询
</view>
</view>
</view>
</template>
<script setup>
import {
reactive
} from 'vue';
const topList = reactive([
{
title:'重量小体积小',
subTitle:'按重量计费'
},
{
title:'重量小体积大',
subTitle:'按体积计费'
},
{
title:'重量大体积大',
subTitle:'重量体积取高计费'
}
])
</script>
<style src="./index.scss" lang="scss" scoped></style>