|
|
@ -22,6 +22,7 @@ |
|
|
|
<kv-line label="手机号码:">{{ e.mobile || '-' }}</kv-line> |
|
|
|
<kv-line label="支付时间:">{{ e.pay_time || '-' }}</kv-line> |
|
|
|
<kv-line label="来源:">{{ e.source || '-' }}</kv-line> |
|
|
|
<view class="bl-price"><text class="bp-txt">支付金额:</text>¥{{ e.pay_amount || '0' }}</view> |
|
|
|
</item-temp> |
|
|
|
</block> |
|
|
|
</view> |
|
|
@ -84,7 +85,8 @@ export default { |
|
|
|
let _bid = options?.brand_id || ''; |
|
|
|
this.brand_id = _bid; |
|
|
|
this.$refs.orderListHeader.initStadiumSelect(_bid); |
|
|
|
this.initCondition(); |
|
|
|
this.cardOrderList({ brand_id: _bid }); |
|
|
|
// this.initCondition(); |
|
|
|
}, |
|
|
|
onReachBottom(){ |
|
|
|
let { brand_id, condition, page } = this; |
|
|
@ -143,12 +145,14 @@ export default { |
|
|
|
// 订场卡订单 - 列表 |
|
|
|
cardOrderList({ brand_id, stadium_id = '', status = '', key = '', begin = '', end = '', page = 1, page_size = 10 }){ |
|
|
|
showLoad(); |
|
|
|
let _beginStr = begin ? `${begin} 00:00:00` : ''; |
|
|
|
let _endStr = end ? `${end} 23:59:59` : ''; |
|
|
|
return server.post({ |
|
|
|
url: ORDER_API.cardOrderList, |
|
|
|
data: { |
|
|
|
brand_id: +brand_id, stadium_id, |
|
|
|
status, key, |
|
|
|
begin: `${begin} 00:00:00`, end: `${end} 23:59:59`, |
|
|
|
begin: _beginStr, end: _endStr, |
|
|
|
page, page_size |
|
|
|
}, |
|
|
|
isDefaultGet: false, |
|
|
@ -179,5 +183,14 @@ export default { |
|
|
|
.bc-list{ |
|
|
|
padding: 0 24upx; |
|
|
|
@include isPd(24upx); |
|
|
|
.bl-price{ |
|
|
|
text-align: right; |
|
|
|
@include flcw(28upx, 40upx, #333, 500); |
|
|
|
@include tHide; |
|
|
|
.bp-txt{ |
|
|
|
color: #9a9a9d; |
|
|
|
font-weight: 400; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |