Sfoglia il codice sorgente

fix: 我的公益列表与详情页的报名状态文案「已报名」→「报名中」

signupState=1(已报名未签到)的展示文案统一改为「报名中」,与首页
活动卡片文案保持一致。
- components/pages/nonprofitItem/index.vue
- pagesNonprofit/nonprofitDetail.vue

注:pagesHome/recruitsNumber.vue 的「已报名 X人」是人数统计文案,未改动。
Developer 5 giorni fa
parent
commit
2c9b58651a

+ 1 - 1
components/pages/nonprofitItem/index.vue

@@ -55,7 +55,7 @@
 	
 	const statusDict = ref({
 		'-1':'已取消',
-		1:'报名',
+		1:'报名',
 		2:'已签到',
 		3:'已完成'
 	})

+ 1 - 1
pagesNonprofit/nonprofitDetail.vue

@@ -104,7 +104,7 @@
 	const memberSignupId = ref('')
 	const signupStateDict = ref({
 		'-1':'已取消',
-		1:'报名',
+		1:'报名',
 		2:'已签到',
 		3:'已填档案'
 	})