jufubao-base 1.0.351-beta2 → 1.0.352-beta2
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
|
@@ -277,23 +277,16 @@ export default {
|
|
|
277
277
|
this.jfbAuthorize.removeAllCardToken();
|
|
278
278
|
}
|
|
279
279
|
//#endif
|
|
280
|
-
|
|
281
|
-
|
|
280
|
+
|
|
281
|
+
if (this.redirect_url) {
|
|
282
|
+
this.$xdUniHelper.redirectTo({
|
|
283
|
+
url: this.redirect_url,
|
|
284
|
+
});
|
|
285
|
+
} else {
|
|
282
286
|
this.$xdUniHelper.redirectTo({
|
|
283
|
-
url:
|
|
287
|
+
url: this.settings.index,
|
|
284
288
|
});
|
|
285
|
-
}else{
|
|
286
|
-
if (this.redirect_url) {
|
|
287
|
-
this.$xdUniHelper.redirectTo({
|
|
288
|
-
url: this.redirect_url,
|
|
289
|
-
});
|
|
290
|
-
} else {
|
|
291
|
-
this.$xdUniHelper.redirectTo({
|
|
292
|
-
url: this.settings.index,
|
|
293
|
-
});
|
|
294
|
-
}
|
|
295
289
|
}
|
|
296
|
-
|
|
297
290
|
});
|
|
298
291
|
},
|
|
299
292
|
handleToAdd() {
|
|
@@ -319,9 +319,9 @@ export default {
|
|
|
319
319
|
password: "",
|
|
320
320
|
accountLoginType: "phone", //phone: 验证码登录 pwd: 密码登录
|
|
321
321
|
accountForm: {
|
|
322
|
-
phone_number: "",
|
|
322
|
+
phone_number: "",
|
|
323
323
|
verification_code: "",
|
|
324
|
-
password: "",
|
|
324
|
+
password: "",
|
|
325
325
|
},
|
|
326
326
|
resetForm: {
|
|
327
327
|
phone_number: "",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
class="jfb-base-wallet-index__body-wrap"
|
|
22
22
|
>
|
|
23
23
|
<view class="jfb-base-wallet-index__body-header">
|
|
24
|
-
|
|
24
|
+
<view class="jfb-base-wallet-index__body-header-total" @click="typeList.length===1?handleToWalletDetail(typeList[0]):''">
|
|
25
25
|
<view>
|
|
26
26
|
<XdFontIcon
|
|
27
27
|
:icon="type === 'wallet' ? 'iconyuanbao' : 'iconjifenjilu'"
|
|
@@ -36,10 +36,11 @@
|
|
|
36
36
|
style="align-items: flex-start"
|
|
37
37
|
color="#999999"
|
|
38
38
|
size="60"
|
|
39
|
-
icon="iconerweima"
|
|
39
|
+
icon="iconerweima"
|
|
40
40
|
></XdFontIcon>
|
|
41
41
|
</view>
|
|
42
42
|
<view
|
|
43
|
+
v-if="typeList.length>1"
|
|
43
44
|
:style="{
|
|
44
45
|
justifyContent:
|
|
45
46
|
typeList.length === 2
|
|
@@ -165,7 +166,7 @@
|
|
|
165
166
|
></XdFontIcon>
|
|
166
167
|
</view>
|
|
167
168
|
</view>
|
|
168
|
-
<view class="jfb-base-wallet-index__body-pay-id"
|
|
169
|
+
<view v-if="qrcodeInfo.wallet_virtual_number" class="jfb-base-wallet-index__body-pay-id"
|
|
169
170
|
>ID:{{ qrcodeInfo.wallet_virtual_number }}</view
|
|
170
171
|
>
|
|
171
172
|
</view>
|