1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <template>
- <!-- 物流详情 -->
- <view class="back">
- <view class="top">
- <view class="explain">{{i18n.Channelspecification}}</view>
- <view class="u-flex u-row-between" style='margin-top:32rpx'>
- <text class="mode">{{i18n.Billingmode}}</text>
- <text class='mode'>阶梯首重续费模式</text>
- </view>
- <view class="u-flex u-row-between" style='margin-top:32rpx'>
- <text class='mode'>{{i18n.Chargeableweight}}</text>
- <text class='mode'>30.00kg</text>
- </view>
- <view class="u-flex u-row-between" style='margin-top:32rpx'>
- <text class='mode'>{{i18n.Estimatedcost}}</text>
- <text class='mode'>¥2400.00</text>
- </view>
- </view>
- <view class="top" style="margin-top: 20rpx;">
- <view class="explain">{{i18n.Itemtype}}</view>
- <view class="" style='margin-top:32rpx'>
- 仅限普货,美国限重20kg(8kg以内未
- </view>
- <view style='margin-top:32rpx' class="explain">{{i18n.Channelrule}}</view>
- <view class="" style='margin-top:32rpx'>
- 仅限普货,美国限重20kg(8kg以内未
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- weight:'',
- monry:''
- };
- },
- onLoad(options) {
- this.weight = options.weight
- this.money = options.money
- },
- computed: {
- i18n() {
- return this.$t('index')
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .back {
- width: 750rpx;
- background: #F4F4F4;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- .mode {
- font-family: SFPro, SFPro;
- font-weight: 400;
- font-size: 28rpx;
- color: #555555;
- line-height: 32rpx;
- text-align: center;
- font-style: normal;
- }
- .explain {
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- font-size: 32rpx;
- color: #222222;
- line-height: 44rpx;
- text-align: left;
- font-style: normal;
- }
- .top {
- width: 702rpx;
- // height: 316rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- padding: 32rpx 20rpx;
- box-sizing: border-box;
- }
- // .bottom {
- // width: 702rpx;
- // // height: 912rpx;
- // background: #FFFFFF;
- // border-radius: 16rpx;
- // }
- }
- </style>
|