12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <template>
- <!-- 物流详情 -->
- <view class="back">
- <view class="top">
- <view class="explain">渠道说明</view>
- <view class="u-flex u-row-between" style='margin-top:32rpx'>
- <text class="mode">计费模式</text>
- <text class='mode'>阶梯首重续费模式</text>
- </view>
- <view class="u-flex u-row-between" style='margin-top:32rpx'>
- <text class='mode'>计费重量</text>
- <text class='mode'>30.00kg</text>
- </view>
- <view class="u-flex u-row-between" style='margin-top:32rpx'>
- <text class='mode'>预估费用</text>
- <text class='mode'>¥2400.00</text>
- </view>
- </view>
- <view class="top" style="margin-top: 20rpx;">
- <view class="explain">物品类型</view>
- <view class="" style='margin-top:32rpx'>
- 仅限普货,美国限重20kg(8kg以内未
- </view>
- <view style='margin-top:32rpx' class="explain">渠道规则</view>
- <view class="" style='margin-top:32rpx'>
- 仅限普货,美国限重20kg(8kg以内未
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- }
- }
- </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>
|