Skip to content

Commit c1aff49

Browse files
committed
fix: 更新奖牌图标格式为.webp
1 parent 7f99ce4 commit c1aff49

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"@jx3box/jx3box-facedat": "^2.6.4",
3939
"@jx3box/jx3box-macro": "^1.0.3",
4040
"@jx3box/jx3box-talent": "^1.3.13",
41-
"@jx3box/jx3box-ui": "^2.2.14",
41+
"@jx3box/jx3box-ui": "^2.2.16",
4242
"@microsoft/signalr": "^8.0.0",
4343
"@tinymce/tinymce-vue": "^5.1.1",
4444
"@vueuse/core": "^9.13.0",

src/views/dashboard/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ export default {
444444
return post_type == "mall_order" ? `/vip/mall/${post_id}` : getLink(post_type, post_id);
445445
},
446446
showMedalIcon: function (val) {
447-
return __cdn + "design/medals/user/" + val + ".gif";
447+
return __cdn + "design/medals/user/" + val + ".webp";
448448
},
449449
showBoxcoinType: function (item) {
450450
if (item.action_type == 9) {

src/views/dashboard/medal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default {
9393
}
9494
},
9595
imgSrc(name) {
96-
return __cdn + "design/medals/user/" + name + ".gif";
96+
return __cdn + "design/medals/user/" + name + ".webp";
9797
},
9898
hasMedal(name) {
9999
return this.userMedals?.findIndex((item) => item.medal == name) > -1;

0 commit comments

Comments
 (0)