qj-common 4.1.41 → 4.1.42
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
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
@click="toUser()"/>
|
|
28
28
|
<span v-if="$route.path === `/order`">个人中心</span>
|
|
29
29
|
<span v-else @click="toIndex()">个人中心</span>
|
|
30
|
-
|
|
30
|
+
<span> </span>
|
|
31
|
+
<span @click="goToOrder()">我的订单</span>
|
|
31
32
|
<!-- <span @click="toIndex()" :class="[ $route.path === `/islandStore` ? 'c-theme' : '' ]">个人中心</span> -->
|
|
32
33
|
</block>
|
|
33
34
|
<!-- <span @click="toHelp()" :class="[ $route.path === `/helpindex` ? 'c-theme' : '' ]">帮助中心</span> -->
|
|
@@ -91,13 +92,16 @@ export default {
|
|
|
91
92
|
})
|
|
92
93
|
},
|
|
93
94
|
toUser() {
|
|
94
|
-
location.href = '/paas/b2b-
|
|
95
|
+
location.href = '/paas/b2b-cli-pc-mh/index.html#/myAccount'
|
|
95
96
|
},
|
|
96
97
|
toIndex() {
|
|
97
|
-
location.href = '/paas/b2b-
|
|
98
|
+
location.href = '/paas/b2b-cli-pc-mh/index.html#/myAccount'
|
|
98
99
|
},
|
|
99
100
|
toHelp() {
|
|
100
101
|
location.href = '/paas/b2b-cli-pc-mh/index.html#/helpindex'
|
|
102
|
+
},
|
|
103
|
+
goToOrder(){
|
|
104
|
+
location.href = '/paas/b2b-cli-pc-mh/index.html#/order'
|
|
101
105
|
}
|
|
102
106
|
}
|
|
103
107
|
}
|