|
@@ -5,9 +5,12 @@
|
|
|
<view class="form-content">
|
|
<view class="form-content">
|
|
|
<!-- 头像 -->
|
|
<!-- 头像 -->
|
|
|
<view class="form-item">
|
|
<view class="form-item">
|
|
|
- <view class="form-label">头像</view>
|
|
|
|
|
|
|
+ <view class="form-label">
|
|
|
|
|
+ <text class="required-mark">*</text>
|
|
|
|
|
+ <text>头像</text>
|
|
|
|
|
+ </view>
|
|
|
<view @click="chooseAvatar" class="avatar-container">
|
|
<view @click="chooseAvatar" class="avatar-container">
|
|
|
- <image :src="avatar?avatar:'../../static/logo.png'" class="user-avatar" mode="aspectFill"></image>
|
|
|
|
|
|
|
+ <image :src="avatar?avatar:'../../static/images/logo.jpg'" class="user-avatar" mode="aspectFill"></image>
|
|
|
<view class="edit-avatar-icon">
|
|
<view class="edit-avatar-icon">
|
|
|
<image src="../../static/images/index/Combined-Shape.svg" style="width: 32rpx;height: 32rpx;"
|
|
<image src="../../static/images/index/Combined-Shape.svg" style="width: 32rpx;height: 32rpx;"
|
|
|
mode=""></image>
|
|
mode=""></image>
|
|
@@ -16,13 +19,20 @@
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<!-- 姓名 -->
|
|
<!-- 姓名 -->
|
|
|
- <view class="form-item">
|
|
|
|
|
|
|
+ <view class="form-item" style="margin-bottom: 13px;">
|
|
|
<view class="form-label">
|
|
<view class="form-label">
|
|
|
<text class="required-mark">*</text>
|
|
<text class="required-mark">*</text>
|
|
|
<text>姓名</text>
|
|
<text>姓名</text>
|
|
|
</view>
|
|
</view>
|
|
|
<input class="form-input" type="text" placeholder="请输入姓名" v-model="userName" />
|
|
<input class="form-input" type="text" placeholder="请输入姓名" v-model="userName" />
|
|
|
</view>
|
|
</view>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 是否匿名展示 -->
|
|
|
|
|
+ <view class="form-item">
|
|
|
|
|
+ <u-checkbox-group class="checkbox">
|
|
|
|
|
+ <u-checkbox v-model="isAnonymous" :label-disabled="false">匿名展示</u-checkbox>
|
|
|
|
|
+ </u-checkbox-group>
|
|
|
|
|
+ </view>
|
|
|
|
|
|
|
|
<!-- 性别 -->
|
|
<!-- 性别 -->
|
|
|
<view class="form-item">
|
|
<view class="form-item">
|
|
@@ -35,19 +45,7 @@
|
|
|
<u-radio name="2" activeColor="#007AFF">女</u-radio>
|
|
<u-radio name="2" activeColor="#007AFF">女</u-radio>
|
|
|
</u-radio-group>
|
|
</u-radio-group>
|
|
|
</view>
|
|
</view>
|
|
|
-
|
|
|
|
|
- <!-- 联系方式 -->
|
|
|
|
|
- <view class="form-item">
|
|
|
|
|
- <view class="form-label">联系方式</view>
|
|
|
|
|
- <input class="form-input" type="text" placeholder="请输入手机号" v-model="phone" />
|
|
|
|
|
- </view>
|
|
|
|
|
-
|
|
|
|
|
- <!-- 微信号码 -->
|
|
|
|
|
- <view class="form-item">
|
|
|
|
|
- <view class="form-label">微信号码</view>
|
|
|
|
|
- <input class="form-input" type="text" placeholder="请输入微信号码,方便给求职者交换微信联系" v-model="weChatNum" />
|
|
|
|
|
- </view>
|
|
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<!-- 出生年月 -->
|
|
<!-- 出生年月 -->
|
|
|
<view class="form-item">
|
|
<view class="form-item">
|
|
|
<view class="form-label">
|
|
<view class="form-label">
|
|
@@ -55,27 +53,44 @@
|
|
|
<text>出生年月</text>
|
|
<text>出生年月</text>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="date-picker" @click="showDatePicker = true">
|
|
<view class="date-picker" @click="showDatePicker = true">
|
|
|
- <text class="date-text">{{ birthDateText }}</text>
|
|
|
|
|
|
|
+ <text class="date-text" v-if="birthDateText">{{ birthDateText }}</text>
|
|
|
|
|
+ <text class="placeholder-text" v-else>请选择出生年月</text>
|
|
|
<u-icon name="arrow-down" color="#999" size="24"></u-icon>
|
|
<u-icon name="arrow-down" color="#999" size="24"></u-icon>
|
|
|
</view>
|
|
</view>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<u-picker :default-time="birthDateText" v-model="showDatePicker" mode="time" :params="dateParams"
|
|
<u-picker :default-time="birthDateText" v-model="showDatePicker" mode="time" :params="dateParams"
|
|
|
@confirm="onDateConfirm"></u-picker>
|
|
@confirm="onDateConfirm"></u-picker>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
|
|
+ <!-- 手机号 -->
|
|
|
|
|
+ <view class="form-item">
|
|
|
|
|
+ <view class="form-label">手机号</view>
|
|
|
|
|
+ <view class="phone-number">{{ hidePhoneNumber }}</view>
|
|
|
|
|
+ </view>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 联系方式 -->
|
|
|
|
|
+ <!-- <view class="form-item">
|
|
|
|
|
+ <view class="form-label">联系方式</view>
|
|
|
|
|
+ <input class="form-input" type="text" placeholder="请输入手机号" v-model="phone" />
|
|
|
|
|
+ </view> -->
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 微信号码 -->
|
|
|
|
|
+ <view class="form-item">
|
|
|
|
|
+ <view class="form-label">微信号码</view>
|
|
|
|
|
+ <input class="form-input" type="text" placeholder="请输入微信号码,方便给对方交换微信联系" v-model="weChatNum" />
|
|
|
|
|
+ </view>
|
|
|
|
|
+
|
|
|
<view class="form-item">
|
|
<view class="form-item">
|
|
|
<view class="form-label">
|
|
<view class="form-label">
|
|
|
- <text class="required-mark">*</text>
|
|
|
|
|
<text>邮箱</text>
|
|
<text>邮箱</text>
|
|
|
</view>
|
|
</view>
|
|
|
- <input class="form-input" type="text" placeholder="请输入邮箱号码,方便接收offer" v-model="email" />
|
|
|
|
|
|
|
+ <input class="form-input" type="text" placeholder="请输入您的邮箱" v-model="email" />
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 求职状态 -->
|
|
<!-- 求职状态 -->
|
|
|
<view class="form-item">
|
|
<view class="form-item">
|
|
|
<view class="form-label">
|
|
<view class="form-label">
|
|
|
- <text class="required-mark">*</text>
|
|
|
|
|
<text>求职状态</text>
|
|
<text>求职状态</text>
|
|
|
</view>
|
|
</view>
|
|
|
<view class="select-picker" @click="showJobStatusPicker">
|
|
<view class="select-picker" @click="showJobStatusPicker">
|
|
@@ -86,8 +101,8 @@
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<!-- 保存按钮 -->
|
|
<!-- 保存按钮 -->
|
|
|
- <view @click="messagebtn" class="save-button">
|
|
|
|
|
- <text class="save-text">保存</text>
|
|
|
|
|
|
|
+ <view class="button-section">
|
|
|
|
|
+ <view class="btn" @click="messagebtn">继续完善</view>
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<!-- 求职状态选择器 -->
|
|
<!-- 求职状态选择器 -->
|
|
@@ -136,12 +151,11 @@
|
|
|
weChatNum: '',
|
|
weChatNum: '',
|
|
|
email:'',
|
|
email:'',
|
|
|
sex: '',
|
|
sex: '',
|
|
|
- age: '',
|
|
|
|
|
phone: '',
|
|
phone: '',
|
|
|
avatar: '',
|
|
avatar: '',
|
|
|
ifExp: 0,
|
|
ifExp: 0,
|
|
|
userName: '',
|
|
userName: '',
|
|
|
- birthDateText: '1991-11-29', // 显示的日期文本
|
|
|
|
|
|
|
+ birthDateText: '', // 显示的日期文本
|
|
|
showDatePicker: false, // 控制日期选择器显示
|
|
showDatePicker: false, // 控制日期选择器显示
|
|
|
dateParams: {
|
|
dateParams: {
|
|
|
year: true,
|
|
year: true,
|
|
@@ -176,7 +190,14 @@
|
|
|
text: '实习',
|
|
text: '实习',
|
|
|
recommended: false
|
|
recommended: false
|
|
|
}
|
|
}
|
|
|
- ]
|
|
|
|
|
|
|
+ ],
|
|
|
|
|
+ isAnonymous: false, // 匿名展示
|
|
|
|
|
+ scene: 0, // 0.默认 1.H5邀请
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ computed: {
|
|
|
|
|
+ hidePhoneNumber() {
|
|
|
|
|
+ return String(this.phone).replace(/(\d{3})\d{4}(\d{4})/, '$1****$2');
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
onLoad(options) {
|
|
onLoad(options) {
|
|
@@ -194,6 +215,9 @@
|
|
|
this.phone = options.resumesPhone
|
|
this.phone = options.resumesPhone
|
|
|
if (options && options.resumesEmail)
|
|
if (options && options.resumesEmail)
|
|
|
this.email = options.resumesEmail
|
|
this.email = options.resumesEmail
|
|
|
|
|
+ if (options.scene) {
|
|
|
|
|
+ this.scene = options.scene
|
|
|
|
|
+ }
|
|
|
this.getUserInfo()
|
|
this.getUserInfo()
|
|
|
},
|
|
},
|
|
|
methods: {
|
|
methods: {
|
|
@@ -256,15 +280,21 @@
|
|
|
console.log('选择的求职状态:', item);
|
|
console.log('选择的求职状态:', item);
|
|
|
},
|
|
},
|
|
|
getUserInfo() {
|
|
getUserInfo() {
|
|
|
- let userId = uni.getStorageSync('userId')
|
|
|
|
|
- this.$Request.get("/app/user/selectUserById").then(res => {
|
|
|
|
|
|
|
+ // 老接口 /app/user/selectUserById
|
|
|
|
|
+ // 新接口 /app/user/getUserInfo
|
|
|
|
|
+ this.$Request.get("/app/user/getUserInfo").then(res => {
|
|
|
if (res.code == 0) {
|
|
if (res.code == 0) {
|
|
|
- this.weChatNum = res.data.weChatNum
|
|
|
|
|
- this.sex = res.data.sex
|
|
|
|
|
- this.age = res.data.age
|
|
|
|
|
- this.avatar = res.data.avatar;
|
|
|
|
|
- this.userName = res.data.userName;
|
|
|
|
|
- this.phone = res.data.phone
|
|
|
|
|
|
|
+ const data = res.data
|
|
|
|
|
+ this.weChatNum = data.weChatNum
|
|
|
|
|
+ this.sex = data.sex
|
|
|
|
|
+ this.avatar = data.avatar
|
|
|
|
|
+ this.userName = data.userName
|
|
|
|
|
+ this.phone = data.phone
|
|
|
|
|
+ this.isAnonymous = Boolean(data.isAnonymous)
|
|
|
|
|
+ this.selectedJobStatus = data.resumesStatus
|
|
|
|
|
+ this.birthDateText = data.birthday
|
|
|
|
|
+ this.email = data.resumesEmail
|
|
|
|
|
+ this.ifExp = data.ifExp
|
|
|
}
|
|
}
|
|
|
uni.hideLoading();
|
|
uni.hideLoading();
|
|
|
});
|
|
});
|
|
@@ -274,45 +304,48 @@
|
|
|
// 保存
|
|
// 保存
|
|
|
messagebtn() {
|
|
messagebtn() {
|
|
|
if (!this.userName) {
|
|
if (!this.userName) {
|
|
|
- // this.$queue.showToast('用户名不能为空');
|
|
|
|
|
- uni.showToast({
|
|
|
|
|
- title: "用户名不能为空",
|
|
|
|
|
- icon: "none"
|
|
|
|
|
- })
|
|
|
|
|
- } else if (!this.phone) {
|
|
|
|
|
- // this.$queue.showToast('用户名不能为空');
|
|
|
|
|
- uni.showToast({
|
|
|
|
|
- title: "联系电话不能为空",
|
|
|
|
|
- icon: "none"
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ this.$queue.showToast('请输入用户名');
|
|
|
|
|
+ } else if (!this.sex) {
|
|
|
|
|
+ this.$queue.showToast('请选择性别');
|
|
|
} else if (!this.birthDateText) {
|
|
} else if (!this.birthDateText) {
|
|
|
- uni.showToast({
|
|
|
|
|
- title: "生日不能为空",
|
|
|
|
|
- icon: "none"
|
|
|
|
|
- })
|
|
|
|
|
- }else if(!this.email){
|
|
|
|
|
- this.$queue.showToast('邮箱不能为空')
|
|
|
|
|
|
|
+ this.$queue.showToast('请选择出生年月');
|
|
|
} else {
|
|
} else {
|
|
|
- this.age = this.$queue.calculateAgeFromBirthday(this.birthDateText) || 0
|
|
|
|
|
- let that = this
|
|
|
|
|
uni.showModal({
|
|
uni.showModal({
|
|
|
title: '温馨提示',
|
|
title: '温馨提示',
|
|
|
content: '确定保存信息',
|
|
content: '确定保存信息',
|
|
|
success: e => {
|
|
success: e => {
|
|
|
if (e.confirm) {
|
|
if (e.confirm) {
|
|
|
- that.$Request.postJson("/app/user/updateUser", {
|
|
|
|
|
- userName: that.userName,
|
|
|
|
|
- avatar: that.avatar,
|
|
|
|
|
- sex: that.sex,
|
|
|
|
|
- age: that.age,
|
|
|
|
|
- weChatNum: that.weChatNum
|
|
|
|
|
|
|
+ // 老接口 /app/user/updateUser
|
|
|
|
|
+ // 新接口 /app/user/updateUserInfo
|
|
|
|
|
+ this.$Request.postJson("/app/user/updateUserInfo", {
|
|
|
|
|
+ userName: this.userName,
|
|
|
|
|
+ avatar: this.avatar,
|
|
|
|
|
+ sex: this.sex,
|
|
|
|
|
+ weChatNum: this.weChatNum,
|
|
|
|
|
+ isAnonymous: this.isAnonymous ? 1 : 0,
|
|
|
|
|
+ resumesStatus: this.selectedJobStatus,
|
|
|
|
|
+ resumesPhone: this.phone,
|
|
|
|
|
+ birthday: this.birthDateText,
|
|
|
|
|
+ resumesEmail: this.email,
|
|
|
|
|
+ ifExp: this.ifExp
|
|
|
}).then(res => {
|
|
}).then(res => {
|
|
|
if (res.code === 0) {
|
|
if (res.code === 0) {
|
|
|
uni.showToast({
|
|
uni.showToast({
|
|
|
title: '保存成功',
|
|
title: '保存成功',
|
|
|
icon: "none"
|
|
icon: "none"
|
|
|
})
|
|
})
|
|
|
- that.setResume()
|
|
|
|
|
|
|
+ if (this.scene == 1) {
|
|
|
|
|
+ uni.navigateTo({
|
|
|
|
|
+ url: `/pages/public/improvePrompt?scene=${this.scene}`
|
|
|
|
|
+ });
|
|
|
|
|
+ } else {
|
|
|
|
|
+ // 实际开发中可以在这里添加跳转逻辑
|
|
|
|
|
+ uni.$emit('updateResume')
|
|
|
|
|
+ setTimeout(function() {
|
|
|
|
|
+ uni.navigateBack()
|
|
|
|
|
+ }, 1000)
|
|
|
|
|
+ }
|
|
|
|
|
+ // this.setResume()
|
|
|
} else {
|
|
} else {
|
|
|
uni.showToast({
|
|
uni.showToast({
|
|
|
title: res.msg,
|
|
title: res.msg,
|
|
@@ -325,29 +358,35 @@
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
- setResume() {
|
|
|
|
|
- let data = {
|
|
|
|
|
- resumesStatus: this.selectedJobStatus,
|
|
|
|
|
- resumesPhone: this.phone,
|
|
|
|
|
- birthday: this.birthDateText,
|
|
|
|
|
- resumesEmail:this.email,
|
|
|
|
|
- ifExp: this.ifExp
|
|
|
|
|
- }
|
|
|
|
|
- this.$Request.postJson("/app/userFirst/regist", data).then((res) => {
|
|
|
|
|
- if (res.code == 0) {
|
|
|
|
|
- // 实际开发中可以在这里添加跳转逻辑
|
|
|
|
|
- uni.$emit('updateResume')
|
|
|
|
|
- setTimeout(function() {
|
|
|
|
|
- uni.navigateBack()
|
|
|
|
|
- }, 1000)
|
|
|
|
|
- } else {
|
|
|
|
|
- uni.showToast({
|
|
|
|
|
- title: res.msg,
|
|
|
|
|
- icon: "none",
|
|
|
|
|
- });
|
|
|
|
|
- }
|
|
|
|
|
- });
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ // setResume() {
|
|
|
|
|
+ // let data = {
|
|
|
|
|
+ // resumesStatus: this.selectedJobStatus,
|
|
|
|
|
+ // resumesPhone: this.phone,
|
|
|
|
|
+ // birthday: this.birthDateText,
|
|
|
|
|
+ // resumesEmail:this.email,
|
|
|
|
|
+ // ifExp: this.ifExp
|
|
|
|
|
+ // }
|
|
|
|
|
+ // this.$Request.postJson("/app/userFirst/regist", data).then((res) => {
|
|
|
|
|
+ // if (res.code == 0) {
|
|
|
|
|
+ // if (this.scene == 1) {
|
|
|
|
|
+ // uni.redirectTo({
|
|
|
|
|
+ // url: `/pages/public/improvePrompt?scene=${this.scene}`
|
|
|
|
|
+ // });
|
|
|
|
|
+ // } else {
|
|
|
|
|
+ // // 实际开发中可以在这里添加跳转逻辑
|
|
|
|
|
+ // uni.$emit('updateResume')
|
|
|
|
|
+ // setTimeout(function() {
|
|
|
|
|
+ // uni.navigateBack()
|
|
|
|
|
+ // }, 1000)
|
|
|
|
|
+ // }
|
|
|
|
|
+ // } else {
|
|
|
|
|
+ // uni.showToast({
|
|
|
|
|
+ // title: res.msg,
|
|
|
|
|
+ // icon: "none",
|
|
|
|
|
+ // });
|
|
|
|
|
+ // }
|
|
|
|
|
+ // });
|
|
|
|
|
+ // }
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
</script>
|
|
</script>
|
|
@@ -362,26 +401,26 @@
|
|
|
|
|
|
|
|
// 表单内容
|
|
// 表单内容
|
|
|
.form-content {
|
|
.form-content {
|
|
|
- padding: 0 40rpx;
|
|
|
|
|
|
|
+ padding: 0 40rpx 210rpx;
|
|
|
flex: 1;
|
|
flex: 1;
|
|
|
display: flex;
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
|
overflow: auto;
|
|
overflow: auto;
|
|
|
|
|
|
|
|
.form-item {
|
|
.form-item {
|
|
|
- margin-bottom: 30rpx;
|
|
|
|
|
|
|
+ margin-bottom: 36rpx;
|
|
|
|
|
|
|
|
.form-label {
|
|
.form-label {
|
|
|
color: var(--Neutral/100, rgba(31, 44, 55, 1));
|
|
color: var(--Neutral/100, rgba(31, 44, 55, 1));
|
|
|
font-family: DM Sans;
|
|
font-family: DM Sans;
|
|
|
- font-size: 16px;
|
|
|
|
|
|
|
+ font-size: 28rpx;
|
|
|
font-weight: 500;
|
|
font-weight: 500;
|
|
|
- line-height: 22px;
|
|
|
|
|
|
|
+ line-height: 44rpx;
|
|
|
letter-spacing: 0.5%;
|
|
letter-spacing: 0.5%;
|
|
|
text-align: left;
|
|
text-align: left;
|
|
|
display: flex;
|
|
display: flex;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
- margin-bottom: 20rpx;
|
|
|
|
|
|
|
+ margin-bottom: 16rpx;
|
|
|
|
|
|
|
|
.required-mark {
|
|
.required-mark {
|
|
|
color: #FF3B30;
|
|
color: #FF3B30;
|
|
@@ -494,31 +533,48 @@
|
|
|
text-align: left;
|
|
text-align: left;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ .u-checkbox {
|
|
|
|
|
+ padding-bottom: 0;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ // 手机号
|
|
|
|
|
+ .phone-number {
|
|
|
|
|
+ height: 48rpx;
|
|
|
|
|
+ font-family: DM Sans;
|
|
|
|
|
+ font-size: 24rpx;
|
|
|
|
|
+ font-weight: bold;
|
|
|
|
|
+ color: #333;
|
|
|
|
|
+ line-height: 48rpx;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ // 出生年月placeholder样式
|
|
|
|
|
+ .placeholder-text {
|
|
|
|
|
+ color: #999;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// 保存按钮
|
|
// 保存按钮
|
|
|
- .save-button {
|
|
|
|
|
- // position: fixed;
|
|
|
|
|
-
|
|
|
|
|
- // left: 0;
|
|
|
|
|
- // right: 0;
|
|
|
|
|
- height: 120rpx;
|
|
|
|
|
- margin: 0 60rpx 60rpx;
|
|
|
|
|
- border-radius: 24px;
|
|
|
|
|
- background: #007AFF;
|
|
|
|
|
- display: flex;
|
|
|
|
|
- align-items: center;
|
|
|
|
|
- justify-content: center;
|
|
|
|
|
-
|
|
|
|
|
- .save-text {
|
|
|
|
|
- color: rgba(255, 255, 255, 1);
|
|
|
|
|
- font-family: DM Sans;
|
|
|
|
|
- font-size: 18px;
|
|
|
|
|
- font-weight: 400;
|
|
|
|
|
- line-height: 24px;
|
|
|
|
|
- letter-spacing: 0.5%;
|
|
|
|
|
- text-align: left;
|
|
|
|
|
|
|
+ .button-section {
|
|
|
|
|
+ position: fixed;
|
|
|
|
|
+ left: 0;
|
|
|
|
|
+ right: 0;
|
|
|
|
|
+ bottom: 0;
|
|
|
|
|
+ // height: 210rpx;
|
|
|
|
|
+ box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.04);
|
|
|
|
|
+ background: rgba(255, 255, 255, 1);
|
|
|
|
|
+ .btn {
|
|
|
|
|
+ width: 600rpx;
|
|
|
|
|
+ height: 88rpx;
|
|
|
|
|
+ border-radius: 100px;
|
|
|
|
|
+ background: var(--线性渐变, linear-gradient(90.00deg, rgba(13, 39, 247, 1),rgba(19, 193, 234, 1) 100%));
|
|
|
|
|
+ font-size: 32rpx;
|
|
|
|
|
+ font-weight: bold;
|
|
|
|
|
+ line-height: 88rpx;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ color: #fff;
|
|
|
|
|
+ margin: 32rpx auto 32rpx;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -620,4 +676,4 @@
|
|
|
padding-right: 32rpx;
|
|
padding-right: 32rpx;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
-</style>
|
|
|
|
|
|
|
+</style>
|