jufubao-base 1.0.383 → 1.0.384-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
|
@@ -36,7 +36,7 @@
|
|
|
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
|
|
@@ -230,6 +230,7 @@ import XdRadio from "@/components/XdRadio/XdRadio";
|
|
|
230
230
|
import { getContainerPropsValue } from "@/utils/xd.base";
|
|
231
231
|
import componentsMixins from "@/mixins/componentsMixins";
|
|
232
232
|
import extsMixins from "@/mixins/extsMixins";
|
|
233
|
+
import { mapState } from "vuex";
|
|
233
234
|
export default {
|
|
234
235
|
name: "JfbBaseWalletIndex",
|
|
235
236
|
components: {
|
|
@@ -295,6 +296,7 @@ export default {
|
|
|
295
296
|
alert_bottom() {
|
|
296
297
|
return this.fixedStyle({ paddingBottom: 24, zIndex: 110 });
|
|
297
298
|
},
|
|
299
|
+
...mapState(["pageBusinessCode"]),
|
|
298
300
|
},
|
|
299
301
|
destroyed() {
|
|
300
302
|
if (this.timeer) {
|
|
@@ -308,7 +310,7 @@ export default {
|
|
|
308
310
|
this.date = `${new Date().getFullYear()}-${String(new Date().getMonth() + 1).padStart(2, '0')}`;
|
|
309
311
|
await jfbRootExec("getWalletList", {
|
|
310
312
|
vm: this,
|
|
311
|
-
data: { support_method: this.type },
|
|
313
|
+
data: { support_method: this.type ,namespace: this.pageBusinessCode,},
|
|
312
314
|
})
|
|
313
315
|
.then((res) => {
|
|
314
316
|
this.total_amount = this.dividePrice(res.total_amount);
|
|
@@ -342,6 +344,7 @@ export default {
|
|
|
342
344
|
page_size: this.page_size,
|
|
343
345
|
page_token: this.page_token,
|
|
344
346
|
operate_type: this.operate_type,
|
|
347
|
+
namespace: this.pageBusinessCode,
|
|
345
348
|
},
|
|
346
349
|
})
|
|
347
350
|
.then((res) => {
|
|
@@ -393,6 +396,7 @@ export default {
|
|
|
393
396
|
data: {
|
|
394
397
|
wallet_type: this.wallet_type,
|
|
395
398
|
wallet_nnid: this.wallet_nnid,
|
|
399
|
+
namespace: this.pageBusinessCode,
|
|
396
400
|
},
|
|
397
401
|
})
|
|
398
402
|
.then((res) => {
|