4b045f7c
刘淇
江阴初始化项目
|
1
|
<template>
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
2
3
|
<view>
<view style="height: 100px;line-height: 100px;" class="uni-center">
|
83c49479
chenbiao
add 7月需求
|
4
|
<text style="font-size: 32px;font-weight: 500;">{{changeFeeDetail}}元</text>
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
5
6
|
</view>
<view class="border-bg"></view>
|
4b045f7c
刘淇
江阴初始化项目
|
7
|
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<view class="uni-list">
<view class="uni-list-cell paddingTopBottom">
<view class="uni-list-cell-left">
订单编号
</view>
<view class="uni-list-cell-db">
{{orderId | tranNull}}
</view>
</view>
<view class="uni-list-cell paddingTopBottom">
<view class="uni-list-cell-left">
支付时间
</view>
<view class="uni-list-cell-db">
{{payTime | tranNull}}
</view>
</view>
<view class="uni-list-cell paddingTopBottom">
<view class="uni-list-cell-left">
支付方式
</view>
<view class="uni-list-cell-db color-green">
{{payType | tranNull}}
</view>
</view>
<view class="uni-list-cell paddingTopBottom">
<view class="uni-list-cell-left">
交易类型
</view>
<view class="uni-list-cell-db">
{{typeName | tranNull}}
</view>
</view>
|
83c49479
chenbiao
add 7月需求
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
<!-- 支出 支付停车费 sta -->
<view class="" v-if="parkIsShow">
<view class="uni-list-cell paddingTopBottom">
<view class="uni-list-cell-left">
车场名称
</view>
<view class="uni-list-cell-db">
{{plName | tranNull}}
</view>
</view>
<view class="uni-list-cell paddingTopBottom">
<view class="uni-list-cell-left">
车牌号码
</view>
<view class="uni-list-cell-db">
{{carNumber | tranNull}}
</view>
</view>
<view class="uni-list-cell paddingTopBottom">
<view class="uni-list-cell-left">
入场时间
</view>
<view class="uni-list-cell-db">
{{parkInTime | formatDateYMD}}
</view>
</view>
<view class="uni-list-cell paddingTopBottom">
<view class="uni-list-cell-left">
出场时间
</view>
<view class="uni-list-cell-db">
{{parkOutTime | formatDateYMD}}
</view>
</view>
</view>
<!-- 支出 购买卡券 sta -->
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
<view class="" v-if="cardIsShow">
<view class="uni-list-cell paddingTopBottom">
<view class="uni-list-cell-left">
卡券类型
</view>
<view class="uni-list-cell-db">
{{cardType | tranNull}}
</view>
</view>
<view class="uni-list-cell paddingTopBottom">
<view class="uni-list-cell-left">
规则名称
</view>
<view class="uni-list-cell-db">
{{cardRuleName | tranNull}}
</view>
</view>
<view class="uni-list-cell paddingTopBottom">
<view class="uni-list-cell-left">
购买数量
</view>
<view class="uni-list-cell-db">
{{cardNum | tranNull}}张
</view>
</view>
|
4b045f7c
刘淇
江阴初始化项目
|
102
|
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
103
104
105
|
</view>
</view>
<view class="border-bg"></view>
|
4b045f7c
刘淇
江阴初始化项目
|
106
|
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
107
|
</view>
|
4b045f7c
刘淇
江阴初始化项目
|
108
109
110
|
</template>
<script>
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
111
112
113
114
115
116
117
118
119
|
export default {
data() {
return {
changeFeeDetail: '',
orderId: '',
payTime: '',
typeName: '',
payType: '商户余额',
cardRuleName: '',
|
83c49479
chenbiao
add 7月需求
|
120
121
122
123
|
plName: '',
carNumber: '',
parkInTime: '',
parkOutTime: '',
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
124
125
126
|
cardType: '',
cardNum: '',
cardIsShow: false,
|
83c49479
chenbiao
add 7月需求
|
127
|
parkIsShow: false,
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
}
},
onLoad(params) {
wx.showShareMenu({
withShareTicket: true
})
let option = JSON.parse(params.optionData)
console.log(option)
this.changeFeeDetail = option.changeFeeDetail
this.orderId = option.orderId
this.typeName = option.typeName
this.payTime = option.opTime
this.payType = option.typeName
if (option.typeName == "购买卡券") {
this.cardIsShow = true;
this.getCouponInfo();
|
83c49479
chenbiao
add 7月需求
|
145
146
147
|
} else if (option.typeName == "支付停车费") {
this.parkIsShow = true;
this.getParkingInfo();
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
148
149
|
} else {
this.cardIsShow = false;
|
83c49479
chenbiao
add 7月需求
|
150
|
this.parkIsShow = false;
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
|
}
},
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}`;
},
getCouponInfo() {
let that = this
let paramsData = {
orderId: that.orderId
}
that.$myRequest({
url: that.$common.couponInfo,
method: 'POST',
data: that.$common.requestSign(paramsData)
}).then(res => {
console.log(res)
that.cardType = res.data.cardTypeName
that.cardRuleName = res.data.cardRuleName
that.cardNum = res.data.buyNum
})
},
|
83c49479
chenbiao
add 7月需求
|
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
|
getParkingInfo() {
let that = this
let paramsData = {
orderId: that.orderId
}
that.$myRequest({
url: that.$common.getParkingInfoByOrderId,
method: 'POST',
data: that.$common.requestSign(paramsData)
}).then(res => {
console.log(res)
that.plName = res.data.plName
that.carNumber = res.data.carNumber
that.parkInTime = res.data.parkInTime
that.parkOutTime = res.data.parkOutTime
})
},
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
239
240
|
}
}
|
4b045f7c
刘淇
江阴初始化项目
|
241
242
243
|
</script>
<style lang="scss" scoped>
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
244
245
|
.rechargeWrap {
position: relative;
|
2e99af66
chenbiao
add 账单详情 接口联调
|
246
|
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
247
248
249
250
251
252
253
254
|
.rechargeArrow {
position: absolute;
right: 10px;
top: 30px;
font-size: 20px;
color: #999;
}
}
|
2e99af66
chenbiao
add 账单详情 接口联调
|
255
|
|
fd014141
chenbiao
add 修复bug余额明细 详情支...
|
256
257
258
259
260
261
|
.recordCon {
padding-right: 35px;
color: #999;
display: flex;
justify-content: space-between;
}
|
4b045f7c
刘淇
江阴初始化项目
|
262
|
</style>
|