123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <template>
- <view class="back">
- <u-navbar :title="i18n.Vieworder" @leftClick="leftClick" :autoBack='false' :placeholder='true'>
- </u-navbar>
- <view class="top u-flex u-row-between">
- <text class="success">{{i18n.successful}}</text>
- <text class="sun">{{i18n.pickpackage}}</text>
- </view>
- <view class="address">
- <view class="" style="margin-top: 44rpx;">
- <view class="u-flex">
- <image src="/static/express/ji.png" style="width: 44rpx;height: 44rpx;" mode=""></image>
- <text class="name" style="margin-left: 28rpx;">{{orderinfo.from_name}}</text>
- <text class="name" style="margin-left: 12rpx;">{{orderinfo.from_mobile}}</text>
- </view>
- <view style="margin-top: 20rpx;margin-left: 70rpx;" class="info">
- {{orderinfo.from_full_address}}
- </view>
- </view>
- <view class="" style="margin: 44rpx 0;">
- <view class="u-flex">
- <image src="/static/express/shou.png" style="width: 44rpx;height: 44rpx;" mode=""></image>
- <text class="name" style="margin-left: 28rpx;">{{orderinfo.transit_name}}</text>
- <text class="name" style="margin-left: 12rpx;">{{orderinfo.transit_mobile}}</text>
- </view>
- <view style="margin-top: 20rpx;margin-left: 70rpx;" class="info">
- {{orderinfo.transit_full_address}}
- </view>
- </view>
- </view>
- <view class="orderinfo">
- <view class="num">
- <text class='num'>{{i18n.OrderNumber}}:</text>
- <text class='num'>{{orderinfo.order_no}}</text>
- </view>
- <view class="num" style="margin-top: 50rpx;">
- <text class='num'>{{i18n.Ordertime}}:</text>
- <text class='num'>{{orderinfo.created_at}}</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- orderinfo: {}
- };
- },
- onLoad(options) {
- this.orderinfo = JSON.parse(decodeURIComponent(options.orderinfo));
- console.log(this.orderinfo);
- this.$u.toast(this.i18n.successful + this.i18n.myPackage + '-' + this.i18n.Vieworder)
- },
- computed: {
- i18n() {
- return this.$t('index')
- }
- },
- methods: {
- leftClick() {
- uni.switchTab({
- url: '/pages/express/express'
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .orderinfo {
- width: 702rpx;
- height: 184rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- margin-top: 20rpx;
- padding: 36rpx 28rpx 0;
- box-sizing: border-box;
- .num {
- font-family: SFPro, SFPro;
- font-weight: 400;
- font-size: 26rpx;
- color: #555555;
- line-height: 30rpx;
- text-align: left;
- font-style: normal;
- }
- }
- .back {
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- .top {
- width: 702rpx;
- height: 100rpx;
- background: linear-gradient(291deg, #FFF4F4 0%, #FBDFDF 100%, #FBDFDF 100%);
- border-radius: 16rpx 16rpx 0 0;
- border: 1rpx solid;
- border-image: linear-gradient(270deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0)) 1 1;
- padding: 0 24rpx;
- box-sizing: border-box;
- .success {
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 32rpx;
- color: #222222;
- line-height: 44rpx;
- text-align: left;
- font-style: normal;
- }
- .sun {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #F83224;
- line-height: 34rpx;
- text-align: left;
- font-style: normal;
- }
- }
- .address {
- width: 702rpx;
- // height: 396rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- padding: 1rpx 32rpx;
- box-sizing: border-box;
- .name {
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 32rpx;
- color: #222222;
- line-height: 44rpx;
- text-align: left;
- font-style: normal;
- }
- .info {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 26rpx;
- color: #777777;
- line-height: 36rpx;
- text-align: left;
- font-style: normal;
- margin-top: 18rpx;
- }
- }
- }
- </style>
|