Ver código fonte

新增成就

wzx 1 ano atrás
pai
commit
3118386730

+ 13 - 0
card/common/api.js

@@ -32,6 +32,19 @@ export const apiCurrentMonthlyChallengeQuery = apiServer + 'CurrentMonthlyChalle
 // 卡片配置信息查询
 export const apiCardConfigQuery = apiServer + 'CardConfigQuery';
 
+// 玩家所有月挑战记录查询
+export const apiMonthlyChallengeQuery = apiServer + 'MonthlyChallengeQuery';
+
+// 玩家活动成就查询
+export const apiAchievementQuery = apiServer + 'AchievementQuery';
+
+// 未读消息列表查询
+export const apiUnReadMessageQuery = apiServer + 'UnReadMessageQuery';
+
+// 标记消息已读
+export const apiReadMessage = apiServer + 'ReadMessage';
+
+
 
 // 检测request的返回值
 export function checkResCode(res) {

+ 9 - 7
card/common/tools.js

@@ -196,16 +196,18 @@ var tools = {
 	timestampToTime(timestamp, i) {
 		var date = new Date(timestamp); //时间戳为10位需*1000,时间戳为13位的话不需乘1000
 		// console.log(date, timestamp)
-		var Y = date.getFullYear() + '-';
-		var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
-		var D = (date.getDate() < 10 ? '0' + date.getDate() : date.getDate()) + ' ';
-		var h = (date.getHours() < 10 ? '0' + date.getHours() : date.getHours()) + ':';
-		var m = (date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes()) + ':';
+		var Y = date.getFullYear();
+		var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1);
+		var D = (date.getDate() < 10 ? '0' + date.getDate() : date.getDate());
+		var h = (date.getHours() < 10 ? '0' + date.getHours() : date.getHours());
+		var m = (date.getMinutes() < 10 ? '0' + date.getMinutes() : date.getMinutes());
 		var s = (date.getSeconds() < 10 ? '0' + date.getSeconds() : date.getSeconds());
 		if (i == 1) {
-			return Y + M + D;
+			return Y + '-' + M + '-' + D;
+		} else if (i == 2) {
+			return Y + '年' + M + '月' + D + '日';
 		}
-		return Y + M + D + h + m + s;
+		return Y + '-' + M + '-' + D + ' ' + h + ':' + m + ':' + s;
 	},
 
 	// 是否是汉字

+ 31 - 4
card/components/my-popup/my-popup.vue

@@ -1,9 +1,9 @@
 <template>
 	<uni-popup ref="popup" :mask-click="false" maskBackgroundColor="rgba(0, 0, 0, 0.6)">
 		<view class="popup">
-			<swiper ref="swiper" class="swiper" :current="swiperCurrent" @change="swiperChange" :indicator-dots="true"
+			<swiper ref="swiper" class="swiper" :current="swiperCurrent" @change="swiperChange" :indicator-dots="dataList.length > 1"
 				indicator-active-color="rgba(46, 133, 236, 1)" :autoplay="false" :interval="5000">
-				<swiper-item v-for="(item, index) in dataList">
+				<swiper-item v-for="(item, index) in dataList" :key="index">
 					<view class="swiper-item-view uni-column" v-if="item.type == 1">
 						<text class="swiper-item-title">{{item.data.title}}</text>
 						<image mode="aspectFit" class="swiper-item-image" :src="item.data.img"></image>
@@ -12,8 +12,7 @@
 							<text class="acttime">{{acttime}}</text>
 						</view>
 						<view class="swiper-item-content uni-column">
-							<text
-								class="introduce-content">{{item.data.content}}</text>
+							<text class="introduce-content">{{item.data.content}}</text>
 						</view>
 						<button v-if="index < dataList.length - 1" class="swiper-item-button" @click="swiperNext">继续</button>
 						<button v-else class="swiper-item-button" @click="popupClose">确定</button>
@@ -25,6 +24,14 @@
 						<button v-if="index < dataList.length - 1" class="swiper-item-button" @click="swiperNext">继续</button>
 						<button v-else class="swiper-item-button" @click="popupClose">确定</button>
 					</view>
+					
+					<view class="swiper-item-view swiper-item-view-bg uni-column" v-if="item.type == 3">
+						<text class="swiper-item-title">{{item.data.title}}</text>
+						<image mode="aspectFit" style="height: 280rpx; margin-top: 50rpx;" :src="item.data.img"></image>
+						<text class="swiper-item-content2">{{item.data.content}}</text>
+						<button v-if="index < dataList.length - 1" class="swiper-item-button" @click="swiperNext">继续</button>
+						<button v-else class="swiper-item-button" @click="popupClose">确定</button>
+					</view>
 				</swiper-item>
 			</swiper>
 		</view>
@@ -74,6 +81,7 @@
 			},
 			popupClose() {
 				this.$refs.popup.close()
+				this.$emit('popup-close');
 			},
 			// getTeamName(teamType, teamIndex) {
 			// 	return teamName[teamType][teamIndex];
@@ -126,6 +134,14 @@
 		justify-content: space-between;
 	}
 	
+	.swiper-item-view-bg {
+		background-image: url("/static/backgroud/top_colorbar.png"), url("/static/backgroud/oval.png");
+		background-repeat: no-repeat;
+		background-position-x: center;
+		background-position-y: 150rpx, 380rpx;
+		background-size: 80%, 70%;
+	}
+	
 	.swiper-item-title {
 		margin-top: 60rpx;
 		margin-bottom: 20rpx;
@@ -157,6 +173,17 @@
 		justify-content: start;
 	}
 
+	.swiper-item-content2 {
+		width: 80%;
+		/* height: 100rpx; */
+		margin-top: 30rpx;
+		margin-bottom: 20rpx;
+		// justify-content: center;
+		text-align: center;
+		font-size: 28rpx;
+		line-height: 80rpx;
+	}
+
 	.swiper-item-button {
 		width: 80%;
 		height: 106rpx;

+ 6 - 0
card/pages.json

@@ -6,6 +6,12 @@
 				"navigationBarTitleText": "彩图奔跑APP卡片页面"
 			}
 		},
+		{
+			"path": "pages/achievement/index",
+			"style": {
+				"navigationBarTitleText": "成就"
+			}
+		},
 		{
 			"path": "pages/mytz/index",
 			"style": {

+ 436 - 0
card/pages/achievement/index.vue

@@ -0,0 +1,436 @@
+<!-- 
+成就
+http://localhost:5173/card/#/pages/achievement/index
+https://oss-mbh5.colormaprun.com/card/#/pages/achievement/index
+ -->
+<template>
+	<view class="body">
+		<view class="content uni-column">
+			<view class="topbar uni-row">
+				<view></view>
+				<text>成就</text>
+				<text style="color: rgba(46, 133, 236, 1);"><!-- 完成 --></text>
+			</view>
+			<view class="tab uni-row">
+				<text :class="tabCurrent == 0 ? 'tab-active' : 'tab-unactive'" @click="tabCurrent=0">挑战</text>
+				<text :class="tabCurrent == 1 ? 'tab-active' : 'tab-unactive'" @click="tabCurrent=1">活动</text>
+			</view>
+			<view class="main">
+
+				<view v-if="tabCurrent == 0">
+					<view class="norecord" v-if="challengeRs == null || challengeRs.length == 0">暂无记录</view>
+					<view class="uni-column" v-for="(item, index) in challengeRs" :key="index">
+						<text class="year">{{item.year}}</text>
+						<view class="list uni-row">
+							<view class="item uni-column" v-for="(item2, index2) in item.monthRs" :key="index2">
+								<view class="item-cup" :style="getCupStyle('cup', item2.month)">
+									<view class="item-cup-gray" :style="getCupStyle('cup-gray', item2.month, getCupProgress(item2.targetNum, item2.realNum))"></view>
+								</view>
+								<view class="item-title uni-row">
+									<text class="item-title-month">{{item2.month}}月</text>
+									<view class="item-title-divide"></view>
+									<text class="item-title-progress">{{item2.realNum}}/{{item2.targetNum}}</text>
+								</view>
+							</view>
+						</view>
+					</view>
+				</view>
+
+				<view v-if="tabCurrent == 1">
+					<view class="norecord" v-if="activityRs == null || activityRs.length == 0">暂无记录</view>
+					<view class="uni-column" v-for="(item, index) in activityRs" :key="index">
+						<text class="year">{{item.year}}</text>
+						<view class="list uni-row">
+							<view class="item item-bg uni-column" v-for="(item2, index2) in item.aiRs" :key="index2">
+								<view class="item-medal" :style="getMedalStyle(item2.iconUrl)"></view>
+								<view class="item-title uni-column">
+									<view class="item-title-ainame">{{item2.aiName}}</view>
+									<view class="item-title-aitime">{{fmtTime(item2.aiTime)}}</view>
+								</view>
+							</view>
+						</view>
+					</view>
+				</view>
+
+			</view>
+		</view>
+		
+		<my-popup ref="mypopup" :dataList="popupDataList" @popup-close="onPopupClose"></my-popup>
+		
+	</view>
+</template>
+
+<script>
+	import tools from '../../common/tools';
+	import {
+		token,
+		apiMonthlyChallengeQuery,
+		apiAchievementQuery,
+		apiUnReadMessageQuery,
+		apiReadMessage,
+		checkResCode
+	} from '../../common/api';
+
+	export default {
+		data() {
+			return {
+				queryString: "",
+				token: "",
+				tokenValid: false,
+
+				challengeRs: [], // 挑战成就集合
+				activityRs: [], // 活动成就集合
+				unReadMessageRs: [], // 未读消息列表
+				mqIdListStr: "", // 已读消息id列表 逗号分隔
+
+				tabCurrent: 0,
+				popupDataList: [],
+			}
+		},
+		computed: {},
+		onLoad(event) { // 类型非必填,可自动推导
+			// console.log(event);
+			this.queryString = tools.objectToQueryString(event);
+			// console.log(queryString);
+			this.token = event["token"] ?? token;
+
+			this.getMonthlyChallengeQuery();
+			this.getAchievementQuery();
+			this.getUnReadMessageQuery();
+		},
+		// 页面初次渲染完成,此时组件已挂载完成,DOM 树($el)已可用
+		onReady() {},
+		onUnload() {},
+		methods: {
+			getCupProgress(targetNum, realNum) {
+				let cupProgress = 100;
+				if (targetNum > 0 && realNum > 0) {
+					if (realNum < targetNum) {
+						const progress = realNum / targetNum * 100;
+						cupProgress = 100 - progress;
+					} else {
+						cupProgress = 0;
+					}
+				}
+				// console.log("cupProgress:", cupProgress);
+				return cupProgress;
+			},
+			getCupStyle(type, month, cupProgress = 0) {
+				if (!(month > 0)) {
+					return '';
+				}
+
+				let group = 1;
+				if (type == 'cup') {
+					return `background-image: url("static/cup/${group}/${month}.png")`;
+				} else if (type == 'cup-gray') {
+					return `background-image: url("static/cup/${group}/${month}h.png"); height:${cupProgress}% ;`;
+				}
+			},
+			getMedalStyle(bgurl) {
+				return `background-image: url("${bgurl}")`;
+			},
+			fmtTime(timestamp) {
+				return tools.timestampToTime(timestamp * 1000, 2);
+			},
+			// 玩家所有月挑战记录查询
+			getMonthlyChallengeQuery() {
+				uni.request({
+					url: apiMonthlyChallengeQuery,
+					header: {
+						"Content-Type": "application/x-www-form-urlencoded",
+						"token": this.token,
+					},
+					method: "POST",
+					data: {},
+					success: (res) => {
+						// console.log("getMonthlyChallengeQuery", res);
+
+						if (checkResCode(res)) {
+							if (res.statusCode == 401) { // 未登录
+								this.tokenValid = false;
+							} else {
+								this.tokenValid = true;
+							}
+
+							this.challengeRs = res.data.data;
+						}
+					},
+					fail: (err) => {
+						console.log("getMonthlyChallengeQuery err", err)
+					},
+				});
+			},
+			// 玩家活动成就查询
+			getAchievementQuery() {
+				uni.request({
+					url: apiAchievementQuery,
+					header: {
+						"Content-Type": "application/x-www-form-urlencoded",
+						"token": this.token,
+					},
+					method: "POST",
+					data: {},
+					success: (res) => {
+						console.log("getAchievementQuery", res);
+
+						if (checkResCode(res)) {
+							if (res.statusCode == 401) { // 未登录
+								this.tokenValid = false;
+							} else {
+								this.tokenValid = true;
+							}
+
+							this.activityRs = res.data.data;
+						}
+					},
+					fail: (err) => {
+						console.log("getAchievementQuery err", err);
+					},
+				});
+			},
+			// 未读消息列表查询
+			getUnReadMessageQuery() {
+				uni.request({
+					url: apiUnReadMessageQuery,
+					header: {
+						"Content-Type": "application/x-www-form-urlencoded",
+						"token": this.token,
+					},
+					method: "POST",
+					data: {},
+					success: (res) => {
+						// console.log("getUnReadMessageQuery", res);
+			
+						if (checkResCode(res)) {
+							if (res.statusCode == 401) { // 未登录
+								this.tokenValid = false;
+							} else {
+								this.tokenValid = true;
+							}
+			
+							this.unReadMessageRs = res.data.data;
+							this.mqIdListStr = "";
+							for (var i = 0; i < this.unReadMessageRs.length; i++) {
+								let popupData = {
+									type: 3,
+									data: {}
+								};
+								if (this.unReadMessageRs[i].mqType == 1) {	// 消息类型  1: 成就
+									popupData.data.title = "恭喜";
+								}
+								popupData.data.img = this.unReadMessageRs[i].iconUrl;
+								popupData.data.content = "恭喜获得成就 \r\n" + this.unReadMessageRs[i].aiName;
+								this.popupDataList.push(popupData)
+								
+								this.mqIdListStr += this.unReadMessageRs[i].mqId;
+								if (i < this.unReadMessageRs.length-1) {
+									this.mqIdListStr += ",";
+								}
+							}
+							
+							if (this.popupDataList.length > 0) {
+								this.$refs.mypopup.popupOpen();
+							}
+						}
+					},
+					fail: (err) => {
+						console.log("getUnReadMessageQuery err", err);
+					},
+				});
+			},
+			// 标记消息已读
+			readMessage() {
+				uni.request({
+					url: apiReadMessage,
+					header: {
+						"Content-Type": "application/x-www-form-urlencoded",
+						"token": this.token,
+					},
+					method: "POST",
+					data: {
+						"mqIdListStr": this.mqIdListStr
+					},
+					success: (res) => {
+						// console.log("readMessage", res);
+					},
+					fail: (err) => {
+						console.log("readMessage err", err);
+					},
+				});
+			},
+			onPopupClose() {
+				console.log("onPopupClose");
+				this.readMessage();
+			}
+		}
+	}
+</script>
+
+
+<style scoped>
+	.content {
+		width: 100vw;
+		height: 100vh;
+		justify-content: flex-start;
+	}
+
+	.topbar {
+		width: 90%;
+		margin-top: 70rpx;
+		justify-content: space-between;
+		font-weight: 550;
+		color: #333333;
+		font-size: 16px;
+	}
+
+	.tab {
+		width: 90%;
+		height: 60rpx;
+		margin-top: 30rpx;
+		background: #e7ecef;
+		border-radius: 18px;
+		justify-content: space-around;
+	}
+
+	.tab-active {
+		width: 50%;
+		height: 60rpx;
+		background: #2e85ec;
+		border-radius: 18px;
+		font-weight: 500;
+		color: #ffffff;
+		font-size: 16px;
+		text-align: center;
+		line-height: 60rpx;
+	}
+
+	.tab-unactive {
+		width: 50%;
+		height: 60rpx;
+		font-weight: 500;
+		color: #818181;
+		font-size: 16px;
+		text-align: center;
+		line-height: 60rpx;
+	}
+
+	.main {
+		width: 90%;
+		padding-top: 30rpx;
+		padding-bottom: 30rpx;
+	}
+	
+	.norecord {
+		font-weight: 500;
+		color: #818181;
+		font-size: 14px;
+		text-align: center;
+		line-height: 80vh;
+	}
+
+	.year {
+		width: 100%;
+		margin-left: 20rpx;
+		text-align: left;
+		font-weight: 550;
+		color: #818181;
+		font-size: 16px;
+	}
+
+	.list {
+		width: 100%;
+		padding-bottom: 10rpx;
+		flex-wrap: wrap;
+		justify-content: center;
+	}
+
+	.item {
+		width: 31%;
+		margin: 20rpx 5rpx;
+	}
+
+	.item-bg {
+		background: #e7ecef;
+		border-radius: 5px;
+	}
+
+	.item-cup {
+		width: 28vw;
+		height: 28vw;
+		/* background: #e7ecef; */
+		border-radius: 5px;
+		background-image: url("/static/cup/1/004.png");
+		background-position-x: center;
+		/* background-position-y: center; */
+		background-repeat: no-repeat;
+		background-size: 100% auto;
+		/* background-clip: padding-box; */
+		
+		mask-image: url('/static/backgroud/mask.png');
+		mask-size: 100%;
+		mask-repeat: no-repeat;
+		mask-clip: padding-box;
+	}
+
+	.item-cup-gray {
+		width: 100%;
+		/* height: 60%; */
+		background-image: url("/static/cup/1/004h.png");
+		background-position-x: center;
+		background-repeat: no-repeat;
+		background-size: 100% auto;
+		overflow: hidden;
+		/* filter: grayscale(1); */
+	}
+
+	.item-medal {
+		width: 20vw;
+		height: 20vw;
+		margin-top: 25rpx;
+		background-position-x: center;
+		/* background-position-y: center; */
+		background-repeat: no-repeat;
+		background-size: 100% auto;
+	}
+
+	.item-title {
+		width: 100%;
+		margin-top: 10rpx;
+		justify-content: center;
+	}
+
+	.item-title-month {
+		color: #333333;
+		font-size: 14px;
+		font-weight: 550;
+	}
+
+	.item-title-divide {
+		width: 4px;
+		height: 14px;
+		margin: 0 12rpx;
+		background: #c6c6c6;
+		border-radius: 2px;
+	}
+
+	.item-title-progress {
+		color: #818181;
+		font-size: 13px;
+		font-weight: 500;
+	}
+
+	.item-title-ainame {
+		margin-top: 12rpx;
+		font-weight: 500;
+		color: #333333;
+		font-size: 12px;
+	}
+
+	.item-title-aitime {
+		margin-top: 12rpx;
+		margin-bottom: 20rpx;
+		color: #818181;
+		font-size: 11px;
+	}
+</style>

+ 1 - 1
card/pages/bm/style1/index.vue

@@ -248,7 +248,7 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style1/index
 	}
 </script>
 
-<style>
+<style scoped>
 	.content {
 		width: 100vw;
 		height: 100vh;

+ 1 - 1
card/pages/bm/style1/rankList.vue

@@ -391,7 +391,7 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style1/rankList
 	}
 </script>
 
-<style>
+<style scoped>
 	.content {
 		width: 100vw;
 		height: 100vh;

+ 5 - 2
card/pages/bm/style1/signup.vue

@@ -419,7 +419,10 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style1/signup
 			btnBack() {
 				// console.log("from:", this.from)
 				if (this.from != '') {
-					window.history.back();
+					// window.history.back();
+					uni.navigateTo({
+						url: '/pages/bm/style1/rankList?' + this.queryString
+					});
 				} else {
 					window.location.href = `action://to_home/`;
 				}
@@ -475,7 +478,7 @@ https://oss-mbh5.colormaprun.com/card/#/pages/bm/style1/signup
 	}
 </script>
 
-<style>
+<style scoped>
 	.content {
 		width: 100vw;
 		height: 100vh;

+ 1 - 1
card/pages/jbs/index.vue

@@ -239,7 +239,7 @@ https://oss-mbh5.colormaprun.com/card/#/pages/jbs/index
 	}
 </script>
 
-<style>
+<style scoped>
 	.content {
 		width: 100vw;
 		height: 100vh;

+ 1 - 1
card/pages/jbs/rankList.vue

@@ -360,7 +360,7 @@ https://oss-mbh5.colormaprun.com/card/#/pages/jbs/rankList
 	}
 </script>
 
-<style>
+<style scoped>
 	.content {
 		width: 100vw;
 		height: 100vh;

+ 6 - 6
card/pages/mytz/detail.vue

@@ -18,7 +18,7 @@ https://oss-mbh5.colormaprun.com/card/#/pages/mytz/detail
 			<view class="main uni-column">
 				<view class="cupview uni-column">
 					<view class="cup" :style="getCupStyle('cup')">
-						<view class="cup-mask" :style="getCupStyle('cup-mask')"></view>
+						<view class="cup-gray" :style="getCupStyle('cup-gray')"></view>
 					</view>
 					<text class="cup-text"><text style="font-weight: 600;">{{month}}月</text> |
 						{{realNum}}/{{targetNum}}</text>
@@ -153,9 +153,9 @@ https://oss-mbh5.colormaprun.com/card/#/pages/mytz/detail
 				
 				let group = 1;
 				if (type == 'cup') {
-					return `background-image: url("static/cup/${group}/00${this.month}.png")`;
-				} else if (type == 'cup-mask') {
-					return `background-image: url("static/cup/${group}/00${this.month}h.png"); height:${this.cupProgress}% ;`;
+					return `background-image: url("static/cup/${group}/${this.month}.png")`;
+				} else if (type == 'cup-gray') {
+					return `background-image: url("static/cup/${group}/${this.month}h.png"); height:${this.cupProgress}% ;`;
 				}
 			},
 			// 卡片基本信息查询
@@ -243,7 +243,7 @@ https://oss-mbh5.colormaprun.com/card/#/pages/mytz/detail
 	}
 </script>
 
-<style>
+<style scoped>
 	.content {
 		width: 100vw;
 		height: 100vh;
@@ -327,7 +327,7 @@ https://oss-mbh5.colormaprun.com/card/#/pages/mytz/detail
 		background-size: 300rpx auto;
 	}
 
-	.cup-mask {
+	.cup-gray {
 		width: 320rpx;
 		/* height: 30%; */
 		/* background-image: url("/static/cup/004h.png"); */

+ 1 - 1
card/pages/mytz/index.vue

@@ -104,7 +104,7 @@ https://oss-mbh5.colormaprun.com/card/#/pages/mytz/index
 	}
 </script>
 
-<style>
+<style scoped>
 	.content {
 		width: 100vw;
 		height: 100vh;

BIN
card/static/backgroud/mask.png


BIN
card/static/backgroud/oval.png


+ 0 - 0
card/static/cup/1/001.png → card/static/cup/1/1.png


+ 0 - 0
card/static/cup/1/010.png → card/static/cup/1/10.png


+ 0 - 0
card/static/cup/1/010h.png → card/static/cup/1/10h.png


+ 0 - 0
card/static/cup/1/011.png → card/static/cup/1/11.png


+ 0 - 0
card/static/cup/1/011h.png → card/static/cup/1/11h.png


+ 0 - 0
card/static/cup/1/012.png → card/static/cup/1/12.png


+ 0 - 0
card/static/cup/1/012h.png → card/static/cup/1/12h.png


+ 0 - 0
card/static/cup/1/001h.png → card/static/cup/1/1h.png


+ 0 - 0
card/static/cup/1/002.png → card/static/cup/1/2.png


+ 0 - 0
card/static/cup/1/002h.png → card/static/cup/1/2h.png


+ 0 - 0
card/static/cup/1/003.png → card/static/cup/1/3.png


+ 0 - 0
card/static/cup/1/003h.png → card/static/cup/1/3h.png


+ 0 - 0
card/static/cup/1/004.png → card/static/cup/1/4.png


+ 0 - 0
card/static/cup/1/004h.png → card/static/cup/1/4h.png


+ 0 - 0
card/static/cup/1/005.png → card/static/cup/1/5.png


+ 0 - 0
card/static/cup/1/005h.png → card/static/cup/1/5h.png


+ 0 - 0
card/static/cup/1/006.png → card/static/cup/1/6.png


+ 0 - 0
card/static/cup/1/006h.png → card/static/cup/1/6h.png


+ 0 - 0
card/static/cup/1/007.png → card/static/cup/1/7.png


+ 0 - 0
card/static/cup/1/007h.png → card/static/cup/1/7h.png


+ 0 - 0
card/static/cup/1/008.png → card/static/cup/1/8.png


+ 0 - 0
card/static/cup/1/008h.png → card/static/cup/1/8h.png


+ 0 - 0
card/static/cup/1/009.png → card/static/cup/1/9.png


+ 0 - 0
card/static/cup/1/009h.png → card/static/cup/1/9h.png


+ 0 - 0
card/static/medal/组 7359.png → card/static/medal/converted.png


+ 0 - 0
card/static/medal/组 7360.png → card/static/medal/convertible.png