feat: 文案修改

master
xjs 2025-06-06 18:06:07 +08:00
parent 3fdca5f13b
commit 6647931459
5 changed files with 10 additions and 7 deletions

View File

@ -1,6 +1,6 @@
# 六志愿 # 六志愿
志愿小程序 志愿小程序
## ⚙️ 环境 ## ⚙️ 环境

2
env/.env vendored
View File

@ -1,4 +1,4 @@
VITE_APP_TITLE = '六志愿' VITE_APP_TITLE = '六志愿'
VITE_APP_PORT = 9000 VITE_APP_PORT = 9000
VITE_UNI_APPID = 'H57F2ACE4' VITE_UNI_APPID = 'H57F2ACE4'

View File

@ -1,5 +1,5 @@
{ {
"name": "六志愿", "name": "六志愿",
"appid": "H57F2ACE4", "appid": "H57F2ACE4",
"description": "", "description": "",
"versionName": "1.0.0", "versionName": "1.0.0",

View File

@ -148,7 +148,7 @@ const classSetting = [
const excellentGraduate = [ const excellentGraduate = [
{ left: '清北文化课学生', right: '名校奖60万元' }, { left: '清北文化课学生', right: '名校奖60万元' },
{ left: '清北艺体学生', right: '名校奖30万元' }, { left: '清北艺体学生', right: '名校奖35万元' },
{ left: 'C9院校', right: '名校奖10万元' }, { left: 'C9院校', right: '名校奖10万元' },
{ left: '985院校', right: '名校奖1万元' }, { left: '985院校', right: '名校奖1万元' },
{ left: '211院校', right: '名校奖5000元' }, { left: '211院校', right: '名校奖5000元' },

View File

@ -91,11 +91,14 @@ onShow(() => {
userExtend: { provinceCode: string } userExtend: { provinceCode: string }
batchName: string batchName: string
batchDataUrl: string batchDataUrl: string
mobile: string
sex: number
} }
if (userStore.userInfo.city.code === infoData.userExtend.provinceCode) { if (userStore.userInfo.city.code === infoData.userExtend.provinceCode) {
userStore.setEstimatedAchievement(infoData.userExtend) userStore.setEstimatedAchievement(infoData.userExtend)
userStore.setBatchName(infoData.batchName) userStore.setBatchName(infoData.batchName)
userStore.setBatchDataUrl(infoData.batchDataUrl) userStore.setBatchDataUrl(infoData.batchDataUrl)
userStore.setUserBaseInfo({ mobile: infoData.mobile, sex: infoData.sex })
return return
} }
} }
@ -104,14 +107,14 @@ onShow(() => {
}) })
onShareAppMessage(() => { onShareAppMessage(() => {
return { return {
title: '六志愿', title: '六志愿',
path: '/pages/home/index/index', path: '/pages/home/index/index',
imageUrl: 'https://api.static.ycymedu.com/images/share.png', imageUrl: 'https://api.static.ycymedu.com/images/share.png',
} }
}) })
onShareTimeline(() => { onShareTimeline(() => {
return { return {
title: '六志愿', title: '六志愿',
} }
}) })