@jx3box/jx3box-common-ui 8.0.2 → 8.0.3
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 +1 -1
- package/src/header/asset.vue +13 -12
- package/src/header/shop.vue +1 -1
package/package.json
CHANGED
package/src/header/asset.vue
CHANGED
|
@@ -7,45 +7,45 @@
|
|
|
7
7
|
<div class="u-assets u-pop-content">
|
|
8
8
|
<div class="u-detail">
|
|
9
9
|
<span class="u-item">
|
|
10
|
-
<a class="u-item-primary" href="/about/incentives" target="
|
|
10
|
+
<a class="u-item-primary" href="/about/incentives" :target="target">
|
|
11
11
|
<span class="u-label"><i class="el-icon-user"></i> 等级</span>
|
|
12
12
|
<span class="u-value u-level" :style="levelStyle">Lv.{{ level }}</span>
|
|
13
13
|
</a>
|
|
14
|
-
<!-- <span class="u-item-extend"><a href="/about/incentives" target="
|
|
14
|
+
<!-- <span class="u-item-extend"><a href="/about/incentives" :target="target">[权益]</a></span> -->
|
|
15
15
|
</span>
|
|
16
16
|
<span class="u-item">
|
|
17
|
-
<a class="u-item-primary" href="/dashboard/boxcoin" target="
|
|
17
|
+
<a class="u-item-primary" href="/dashboard/boxcoin" :target="target"
|
|
18
18
|
><span class="u-label"><i class="el-icon-coin"></i> 盒币</span>
|
|
19
19
|
<span class="u-value">{{ asset.box_coin }}</span></a
|
|
20
20
|
>
|
|
21
|
-
<span class="u-item-extend"><a href="/dashboard/boxcoin" target="
|
|
21
|
+
<span class="u-item-extend"><a href="/dashboard/boxcoin" :target="target">[兑换通宝]</a></span>
|
|
22
22
|
</span>
|
|
23
23
|
<span class="u-item">
|
|
24
|
-
<a class="u-item-primary" href="/dashboard/cny" target="
|
|
24
|
+
<a class="u-item-primary" href="/dashboard/cny" :target="target"
|
|
25
25
|
><span class="u-label"><i class="el-icon-wallet"></i> 金箔</span
|
|
26
26
|
><span class="u-value">{{ asset.cny }}</span></a
|
|
27
27
|
>
|
|
28
28
|
<span class="u-item-extend"
|
|
29
|
-
><a href="/vip/cny" target="
|
|
30
|
-
<a href="/dashboard/cny" target="
|
|
29
|
+
><a href="/vip/cny" :target="target">[充值]</a>
|
|
30
|
+
<a href="/dashboard/cny" :target="target">[提现]</a></span
|
|
31
31
|
>
|
|
32
32
|
</span>
|
|
33
33
|
<span class="u-item">
|
|
34
|
-
<a class="u-item-primary" href="/dashboard/points" target="
|
|
34
|
+
<a class="u-item-primary" href="/dashboard/points" :target="target"
|
|
35
35
|
><span class="u-label"><i class="el-icon-sugar"></i> 银铛</span>
|
|
36
36
|
<span class="u-value">{{ asset.points }}</span></a
|
|
37
37
|
>
|
|
38
38
|
<span class="u-item-extend"
|
|
39
|
-
><a href="/vip/mall" target="
|
|
40
|
-
><a href="/vip/lottery" target="
|
|
39
|
+
><a href="/vip/mall" :target="target">[兑礼]</a
|
|
40
|
+
><a href="/vip/lottery" :target="target">[抽奖]</a></span
|
|
41
41
|
>
|
|
42
42
|
</span>
|
|
43
43
|
<span class="u-item">
|
|
44
|
-
<a class="u-item-primary" href="/dashboard/card" target="
|
|
44
|
+
<a class="u-item-primary" href="/dashboard/card" :target="target"
|
|
45
45
|
><span class="u-label"><i class="el-icon-bank-card"></i> 卡密</span>
|
|
46
46
|
<span class="u-value">{{ asset.ext_info ? asset.ext_info.keycode : 0 }}</span></a
|
|
47
47
|
>
|
|
48
|
-
<span class="u-item-extend"><a href="/dashboard/card" target="
|
|
48
|
+
<span class="u-item-extend"><a href="/dashboard/card" :target="target">[查看]</a></span>
|
|
49
49
|
</span>
|
|
50
50
|
</div>
|
|
51
51
|
</div>
|
|
@@ -61,6 +61,7 @@ export default {
|
|
|
61
61
|
data() {
|
|
62
62
|
return {
|
|
63
63
|
// VIP
|
|
64
|
+
target: "_self",
|
|
64
65
|
};
|
|
65
66
|
},
|
|
66
67
|
computed: {
|
package/src/header/shop.vue
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="c-header-panel c-header-shop">
|
|
3
3
|
<el-tooltip effect="dark" content="积分商城" placement="bottom" popper-class="c-header-tooltip">
|
|
4
|
-
<a class="u-present" href="/vip/mall"
|
|
4
|
+
<a class="u-present" href="/vip/mall">
|
|
5
5
|
<img class="u-icon" svg-inline src="../../assets/img/header/gift.svg" />
|
|
6
6
|
</a>
|
|
7
7
|
</el-tooltip>
|