outDetail.vue 5.78 KB
<template>
    <view>
        <view style="height: 100px;line-height: 100px;" class="uni-center">
            <text>-5.2</text>
        </view>
        <view class="border-bg"></view>

        <view class="uni-list">
            <view class="uni-list-cell paddingTopBottom">
                <view class="uni-list-cell-left">
                    订单编号
                </view>
                <view class="uni-list-cell-db">
                    12313123128787312673
                </view>
            </view>
            <view class="uni-list-cell paddingTopBottom">
                <view class="uni-list-cell-left">
                    支付时间
                </view>
                <view class="uni-list-cell-db">
                    2020-10-01  19:19:19
                </view>
            </view>
            <view class="uni-list-cell paddingTopBottom">
                <view class="uni-list-cell-left">
                    支付方式
                </view>
                <view class="uni-list-cell-db color-green">
                    商户余额
                </view>
            </view>
            <view class="uni-list-cell paddingTopBottom">
                <view class="uni-list-cell-left">
                    交易类型
                </view>
                <view class="uni-list-cell-db">
                    停车支付
                </view>
            </view>
        </view>



        <view class="border-bg"></view>
        <view class="uni-list">
            <view class="uni-list-cell paddingTopBottom">
                <view class="uni-list-cell-left">
                    订单编号
                </view>
                <view class="uni-list-cell-db">
                    12313123128787312673
                </view>
            </view>
            <view class="uni-list-cell paddingTopBottom">
                <view class="uni-list-cell-left">
                    支付时间
                </view>
                <view class="uni-list-cell-db">
                    2020-10-01  19:19:19
                </view>
            </view>
            <view class="uni-list-cell paddingTopBottom">
                <view class="uni-list-cell-left">
                    支付方式
                </view>
                <view class="uni-list-cell-db color-green">
                    商户余额
                </view>
            </view>
            <view class="uni-list-cell paddingTopBottom">
                <view class="uni-list-cell-left">
                    交易类型
                </view>
                <view class="uni-list-cell-db color-green">
                    购买卡券
                </view>
            </view>
            <view class="uni-list-cell paddingTopBottom">
                <view class="uni-list-cell-left">
                    卡券类型
                </view>
                <view class="uni-list-cell-db">
                    金额券
                </view>
            </view>
            <view class="uni-list-cell paddingTopBottom">
                <view class="uni-list-cell-left">
                    卡规则名称
                </view>
                <view class="uni-list-cell-db">
                    5元金额券
                </view>
            </view>
            <view class="uni-list-cell paddingTopBottom">
                <view class="uni-list-cell-left">
                    购买数量
                </view>
                <view class="uni-list-cell-db">
                    20张
                </view>
            </view>
        </view>






    </view>
</template>

<script>
import common from "../../common/common.js";
export default {
  data() {

    return {

    }
  },
  onLoad(params) {
    wx.showShareMenu({
      withShareTicket: true
    })

  },
  onShow() {
    var me = this;
    var userInfo = me.getGlobalUser("globalUser");
    if (userInfo != null) {
      me.phoneNumb = userInfo.userPhone;
    }
    var pages = getCurrentPages();
    var currPage = pages[pages.length - 1]; //当前页面
    console.log('currPage.data.selCoupon = ' + currPage.data.selCoupon);
    me.selCoupon = currPage.data.selCoupon;
    console.log(JSON.stringify(me.selCoupon));
    // me.GetbillQueryInfo(me.mycarNumber, me.myorderId, me.myparkCode, me.selCoupon.cardNo, me.selCoupon.couponType, me.selCoupon
    //   .discValue);
    // GetbillQueryInfo(carnum, orderId, parkCode, cardNo, couponType, disValue) {
  },
  computed: {
    startDate() {
      return this.getDate('start');
    },
    endDate() {
      return this.getDate('end');
    }
  },
  methods: {
    bindPickerChange: function (e) {
      console.log('picker发送选择改变,携带值为', e.detail.value)
      this.index = e.detail.value
    },
    bindPickerChangeWay: function (e) {
      console.log('picker发送选择改变,携带值为', e.detail.value)
      this.indexWay = e.detail.value
    },
    bindStartDateChange: function (e) {
      this.benginDate = e.detail.value
    },
    bindEndDateChange: function (e) {
      this.overDate = e.detail.value
    },
    getDate(type) {
      const date = new Date();
      let year = date.getFullYear();
      let month = date.getMonth() + 1;
      let day = date.getDate();
      if (type === 'start') {
        year = year - 60;
      } else if (type === 'end') {
        year = year + 2;
      }
      month = month > 9 ? month : '0' + month;
      day = day > 9 ? day : '0' + day;
      return `${year}-${month}-${day}`;
    },
  }
}
</script>

<style lang="scss" scoped>
    .rechargeWrap{
        position: relative;
        .rechargeArrow{
            position: absolute;
            right: 10px;
            top: 30px;
            font-size: 20px;
            color: #999;
        }
    }
    .recordCon {
        padding-right: 35px;
        color: #999;
        display: flex;
        justify-content: space-between;
    }
</style>