123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <template>
- <!-- 提现详情 -->
- <view class="application">
- <view class="application_e">
- <text class="num">{{ data.money || 0 }}</text>
- <text class="examine">
- {{ data.status === 1 ? '打款成功' : data.status === -1 ? '审核驳回' : data.status === 0 ? '处理中' : '' }}
- </text>
- </view>
- <view class="application_t">
- <view class="application_type">
- <text class="application_txt">提现类型</text>
- <view style="float: right;">
- <!-- <text class="ibonfont ibonweixinzhifu application_img" v-if="data.type === 1"></text>
- <text class="ibonfont application_img ibonumidd17" v-if="data.type === 2"></text>
- <text class="ibonfont application_img ibonhuodaofukuan" v-if="data.type === 3"></text> -->
- <text class="application_name">{{ data.bank_type || ""}}</text>
- </view>
- </view>
- <view style="margin:30upx 0 0 60upx;">
- <u-time-line>
- <u-time-line-item node-top="2">
- <template v-slot:node>
- <view class="u-node" style="background:#19be6b">
- <u-icon name="checkbox-mark" color="#fff" :size="24"></u-icon>
- </view>
- </template>
- <template v-slot:content>
- <view class="u-line-box" style="color:#333">
- <view class="u-order-desc">申请时间</view>
- <view class="u-order-time">{{ $_utils.formatDate(data.time) }}</view>
- </view>
- </template>
- </u-time-line-item>
- <u-time-line-item node-top="2">
- <template v-slot:node>
- <view class="u-node" :style="{ background: [1, -1].includes(data.status) ? '#19be6b' : '#d0d0d0' }">
- <u-icon name="checkbox-mark" color="#fff" :size="24"></u-icon>
- </view>
- </template>
- <template v-slot:content>
- <view class="u-line-box" :style="{ color: [1, -1].includes(data.status) ? '#333' : '#999999' }">
- <view class="u-order-desc">处理时间</view>
- <view class="u-order-time" v-if="data.audit_time">{{ $_utils.formatDate(data.audit_time) }}</view>
- </view>
- </template>
- </u-time-line-item>
- <u-time-line-item node-top="2">
- <template v-slot:node>
- <view class="u-node" :style="{ background: [1, -1].includes(data.status) ? '#19be6b' : '#d0d0d0' }">
- <u-icon name="checkbox-mark" color="#fff" :size="24"></u-icon>
- </view>
- </template>
- <template v-slot:content>
- <view class="u-line-box" :style="{ color: [1, -1].includes(data.status) ? '#333' : '#999999' }">
- <view class="u-order-desc" v-if="data.status===1">完成打款</view>
- <view class="u-order-desc" v-if="data.status===-1" style="color:red">审核驳回:{{data.audit_mono?data.audit_mono:""}}</view>
- <view class="u-order-time" v-if="data.audit_time">{{ $_utils.formatDate(data.audit_time) }}</view>
- </view>
- </template>
- </u-time-line-item>
- </u-time-line>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- id: 0,
- isLoding: false,
- data: {}
- };
- },
- onLoad(options) {
- this.id = options.id;
- },
- onShow() {
- this.getPartnerApplyCashInfo();
- },
- methods: {
- getPartnerApplyCashInfo() {
- this.$u.api.getPartnerApplyCashInfo({id:this.id}).then(res=>{
- this.data = res.data;
- })
- }
- }
- };
- </script>
- <style lang="scss">
- body {
- background-color: $page-color-base;
- }
- .application {
- .application_e {
- text-align: center;
- height: 300upx;
- background-color: #ffffff;
- .num {
- font-weight: bold;
- font-size: 80upx;
- display: block;
- padding-top: 80upx;
- }
- .examine {
- color: #fd463e;
- font-size: 30upx;
- padding-top: 40upx;
- display: block;
- }
- }
- .application_t {
- margin-top: 20upx;
- background-color: #ffffff;
- height: 400upx;
- .application_type {
- height: 80upx;
- line-height: 80upx;
- border-bottom: 1px solid $page-color-base;
- font-size: 28upx;
- .application_txt {
- font-size: 26upx;
- padding-left: 20upx;
- float: left;
- }
- .application_img {
- margin-right: 10upx;
- font-size: 46;
- vertical-align: middle;
- }
- .ibonweixinzhifu {
- color: #04be02;
- }
- .ibonumidd17 {
- color: #108ee9;
- }
- .ibonhuodaofukuan {
- color: #f2b844;
- }
- .application_name {
- margin-right: 20upx;
- }
- }
- .u-node {
- width: 44rpx;
- height: 44rpx;
- border-radius: 100rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #d0d0d0;
- }
- .u-line-box {
- color: #999999;
- position: relative;
- }
- .u-order-desc {
- font-size: 28rpx;
- margin-bottom: 26rpx;
- }
- .u-order-time {
- font-size: 26rpx;
- float: right;
- margin-right: 20upx;
- position: absolute;
- top: 10upx;
- right: 20upx;
- }
- }
- }
- </style>
|