@jx3box/jx3box-common-ui 5.3.2 → 5.3.6
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/assets/css/author.less
CHANGED
|
@@ -108,13 +108,15 @@
|
|
|
108
108
|
.u-team {
|
|
109
109
|
.db;
|
|
110
110
|
background-color: #f2f6fc;
|
|
111
|
-
.mb(
|
|
112
|
-
&:hover
|
|
113
|
-
color:
|
|
111
|
+
.mb(6px);
|
|
112
|
+
&:hover{
|
|
113
|
+
background-color: #e6f0fb;
|
|
114
|
+
// color:@color-link;
|
|
114
115
|
}
|
|
116
|
+
padding:2px 0;
|
|
115
117
|
}
|
|
116
118
|
.u-teamlogo {
|
|
117
|
-
.size(
|
|
119
|
+
.size(26px);
|
|
118
120
|
.y;
|
|
119
121
|
.mr(10px);
|
|
120
122
|
}
|
package/assets/data/nav.json
CHANGED
package/assets/data/zlp.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jx3box/jx3box-common-ui",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.6",
|
|
4
4
|
"description": "JX3BOX UI",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"last 2 versions"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@jx3box/jx3box-common": "^6.7.
|
|
34
|
-
"@jx3box/jx3box-data": "^1.
|
|
33
|
+
"@jx3box/jx3box-common": "^6.7.3",
|
|
34
|
+
"@jx3box/jx3box-data": "^1.8.3",
|
|
35
35
|
"axios": "^0.19.2",
|
|
36
36
|
"element-ui": "^2.13.2",
|
|
37
37
|
"jquery": "^3.5.1",
|
package/src/Author.vue
CHANGED
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
<i class="el-icon-school"></i>
|
|
88
88
|
<span>所属团队</span>
|
|
89
89
|
</div>
|
|
90
|
-
<a class="u-team" v-for="(item,i) in teams" :key="i" :href="item.team_id | teamLink">
|
|
90
|
+
<a class="u-team" v-for="(item,i) in teams" :key="i" :href="item.team_id | teamLink" target="_blank">
|
|
91
91
|
<img class="u-teamlogo" :src="item.team_logo | showTeamLogo" />
|
|
92
92
|
<span class="u-teamname">{{item.team_name}}@{{item.team_server}}</span>
|
|
93
93
|
</a>
|
|
@@ -180,7 +180,7 @@ export default {
|
|
|
180
180
|
},
|
|
181
181
|
filters: {
|
|
182
182
|
showTeamMedal: function (val) {
|
|
183
|
-
return __imgPath + "image/medals/team/" + val + "
|
|
183
|
+
return __imgPath + "image/medals/team/" + val + ".gif";
|
|
184
184
|
},
|
|
185
185
|
authorLink,
|
|
186
186
|
weiboLink: function (val) {
|
package/src/Footer.vue
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
svg-inline
|
|
7
7
|
src="../assets/img/footer/china.svg"
|
|
8
8
|
/>
|
|
9
|
-
<a href="
|
|
9
|
+
<a href="https://beian.miit.gov.cn/" class="u-beian" target="_blank"
|
|
10
10
|
>湘ICP备2021002288号</a
|
|
11
11
|
>
|
|
12
12
|
</div>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<em>|</em>
|
|
16
16
|
<a
|
|
17
17
|
class="u-doc"
|
|
18
|
-
href="
|
|
18
|
+
href="/tool/#/?subtype=4"
|
|
19
19
|
target="_blank"
|
|
20
20
|
>帮助文档</a
|
|
21
21
|
>
|
|
@@ -76,6 +76,9 @@ export default {
|
|
|
76
76
|
},
|
|
77
77
|
allowBoxcoin : function (){
|
|
78
78
|
return this.postType && this.postId && this.userId
|
|
79
|
+
},
|
|
80
|
+
client : function (){
|
|
81
|
+
return location.href.includes('origin') ? 'origin' : 'std'
|
|
79
82
|
}
|
|
80
83
|
},
|
|
81
84
|
watch: {
|
|
@@ -90,6 +93,7 @@ export default {
|
|
|
90
93
|
submit: function () {
|
|
91
94
|
grantBoxcoin(this.postType, this.postId, this.userId, this.count, {
|
|
92
95
|
remark: this.remark,
|
|
96
|
+
client : this.client
|
|
93
97
|
})
|
|
94
98
|
.then((res) => {
|
|
95
99
|
this.$message({
|
|
@@ -75,6 +75,9 @@ export default {
|
|
|
75
75
|
},
|
|
76
76
|
allowBoxcoin : function (){
|
|
77
77
|
return this.postType && this.postId && this.userId
|
|
78
|
+
},
|
|
79
|
+
client : function (){
|
|
80
|
+
return location.href.includes('origin') ? 'origin' : 'std'
|
|
78
81
|
}
|
|
79
82
|
},
|
|
80
83
|
watch: {
|
|
@@ -93,6 +96,7 @@ export default {
|
|
|
93
96
|
submit: function () {
|
|
94
97
|
rewardBoxcoin(this.postType, this.postId, this.userId, this.count, {
|
|
95
98
|
remark: this.remark,
|
|
99
|
+
client : this.client
|
|
96
100
|
})
|
|
97
101
|
.then((res) => {
|
|
98
102
|
this.$message({
|