jufubao-base 1.0.77-beta3 → 1.0.77-beta5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -131,4 +131,14 @@ module.exports = [
|
|
|
131
131
|
provider_id: ['登陆提供者id', 'String', '必选']
|
|
132
132
|
}
|
|
133
133
|
},
|
|
134
|
+
{
|
|
135
|
+
mapFnName: 'loginExperience',
|
|
136
|
+
title: '体验码登录',
|
|
137
|
+
path: '/passport-pb/v1/user/login-experience',
|
|
138
|
+
isRule: false,
|
|
139
|
+
params: {
|
|
140
|
+
experience_code: ['体验码code', 'String', '必选'],
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
|
|
134
144
|
];
|
|
@@ -294,6 +294,9 @@
|
|
|
294
294
|
<view class="jfb-base-order-detail__body-cashier-text">
|
|
295
295
|
{{ info.codes[0].can_read_code }}
|
|
296
296
|
</view>
|
|
297
|
+
<view v-if="info.codes[0].refund_tip_text" style="color:red;font-size:24rpx;text-align:center;margin-top:10rpx">
|
|
298
|
+
{{info.codes[0].refund_tip_text}}
|
|
299
|
+
</view>
|
|
297
300
|
<view
|
|
298
301
|
v-if="info.codes[0].code_end_time"
|
|
299
302
|
class="jfb-base-order-detail__body-cashier-code"
|
|
@@ -19,13 +19,16 @@
|
|
|
19
19
|
<view
|
|
20
20
|
class="jfb-base-order-list__body"
|
|
21
21
|
>
|
|
22
|
-
<
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
22
|
+
<view class="fixed_top" :style="{top: (layoutInfo.top-2)+'rpx'}">
|
|
23
|
+
<xd-tab
|
|
24
|
+
v-if="initStatus"
|
|
25
|
+
:tabIndex="tabIndex"
|
|
26
|
+
:list="tabList"
|
|
27
|
+
show-footer-line
|
|
28
|
+
@onTab="handleChange"
|
|
29
|
+
></xd-tab>
|
|
30
|
+
</view>
|
|
31
|
+
<view style="height: 100rpx;"></view>
|
|
29
32
|
<view v-if="loadingList" class="jfb-base-order-list__body-order skeleton-wrap">
|
|
30
33
|
<view class="jfb-base-order-list__body-order-item"
|
|
31
34
|
v-for="i in 5" :key="i"
|
|
@@ -516,6 +519,14 @@ export default {
|
|
|
516
519
|
|
|
517
520
|
.jfb-base-order-list {
|
|
518
521
|
&__body {
|
|
522
|
+
.fixed_top{
|
|
523
|
+
position: fixed;
|
|
524
|
+
top: 0;
|
|
525
|
+
left: 0;
|
|
526
|
+
width: 100%;
|
|
527
|
+
background: #FFFFFF;
|
|
528
|
+
z-index: 999;
|
|
529
|
+
}
|
|
519
530
|
&-no {
|
|
520
531
|
display: flex;
|
|
521
532
|
justify-content: center;
|
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
<view class="jfb-base-success__body-cashier-text">
|
|
99
99
|
{{ info.codes[0].can_read_code }}
|
|
100
100
|
</view>
|
|
101
|
+
<view v-if="info.codes[0].refund_tip_text" style="color:red;font-size:24rpx;text-align:center;margin-top:10rpx">
|
|
102
|
+
{{info.codes[0].refund_tip_text}}
|
|
103
|
+
</view>
|
|
101
104
|
<view
|
|
102
105
|
v-if="info.codes[0].code_end_time"
|
|
103
106
|
class="jfb-base-success__body-cashier-code"
|