123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- <template>
- <!-- 模考报名页面 -->
- <view class="exam_apply">
- <nav-bar title="模考报名" class="navbar"></nav-bar>
- <!-- background="{ background: '#498AFE' }" -->
- <image class="mock_bg" src="../static/mock_bg.png"></image>
- <!-- <u-navbar :is-back="false" title="模考报名" :border-bottom="false" title-color="#fff" back-icon-color="#ffffff" background="{ background: '#498AFE' }">
- </u-navbar> -->
-
- <!-- <u-line color="#D6D6DB" /> -->
- <view class="mains">
- <u-form :model="examform" ref="uForm" :rules="rules" label-width='74'>
- <view class="items">
- <view class="item_title">
- <text class="star_red">*</text>
- <text class="number">01</text>
- <text class="category">姓名</text>
- </view>
- <u-form-item label=" " label-width="74" prop="userName" :border-bottom='false'>
- <view class="inputs">
- <input v-model.trim="examform.userName" class="uni-input" placeholder="请输入" />
- </view>
- </u-form-item>
- </view>
- <view class="items">
- <view class="item_title">
- <text class="star_red">*</text>
- <text class="number">02</text>
- <text class="category">性别</text>
- </view>
- <u-form-item label=" " label-width="74" prop="userSex" :border-bottom='false'>
- <u-radio-group v-model="examform.userSex" :wrap='true' @change="radioGroupChange">
- <u-radio value="1" name='1'>男</u-radio>
- <u-radio value="2" name='2'>女</u-radio>
- </u-radio-group>
- </u-form-item>
- </view>
- <view class="items">
- <view class="item_title">
- <text class="star_red">*</text>
- <text class="number">03</text>
- <text class="category">企业名称</text>
- </view>
- <u-form-item label=" " label-width="74" prop="companyName" :border-bottom='false'>
- <view class="inputs">
- <input v-model.trim="examform.companyName" class="uni-input" placeholder="请输入" />
- </view>
- </u-form-item>
- </view>
- <!-- <view class="items">
- <view class="item_title">
- <text class="star_red">*</text>
- <text class="number">04</text>
- <text class="category">身份证号</text>
- </view>
- <u-form-item label=" " label-width="74" prop="userIdCard" :border-bottom='false'>
- <view class="inputs">
- <input v-model.trim="examform.userIdCard" class="uni-input" placeholder="请输入" />
- </view>
- </u-form-item>
- </view> -->
- <!-- <view class="items">
- <view class="item_title">
- <text class="star_red">*</text>
- <text class="number">04</text>
- <text class="category">手机号码</text>
- </view>
- <u-form-item label=" " label-width="74" prop="userPhone" :border-bottom='false'>
- <view class="inputs">
- <input v-model.trim="examform.userPhone" class="uni-input" placeholder="请输入" />
- </view>
- </u-form-item>
- </view> -->
- <view class="items">
- <view class="item_title">
- <text class="star_red">*</text>
- <text class="number">04</text>
- <text class="category">报考专业</text>
- </view>
- <u-form-item label=" " label-width="74" prop="majorId" :border-bottom='false'>
- <view class="inputs">
- <view class="item_box">
- <picker class="picker" mode="selector" :range="majorList" range-key="majorName" :value="examform.majorId"
- @change="majorChange">
- <view class="pick_con" style="fontSize: 40rpx">{{ majorName }}</view>
- </picker>
- <u-icon class="icon" name="arrow-down"></u-icon>
- </view>
- </view>
- </u-form-item>
- </view>
- <view class="items">
- <view class="item_title">
- <text class="star_red">*</text>
- <text class="number">05</text>
- <text class="category">报考科目</text>
- </view>
- <u-form-item label=" " label-width="74" prop="userMajors" :border-bottom='false'>
- <template v-if="subjectLists.length">
- <u-checkbox-group :wrap='true' @change="checkboxGroupChange">
- <u-checkbox v-model="item.checked" v-for="(item, index) in subjectLists" :key="index" :name="item.subjectId">
- {{ item.name }}
- </u-checkbox>
- </u-checkbox-group>
- </template>
- <template v-else>
- <view class="grays">请先选择报考专业</view>
- </template>
- </u-form-item>
- </view>
- </u-form>
- <!-- 提交按钮 -->
- <view class="btns">
- <view v-if="endTime <= sysTime" class="submits disable">提交</view>
- <view v-else class="submits" @click="submit()">
- 提交
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: 'examApply',
-
- data() {
- var validatorMajor = (rule, value, callback) => {
- if (value.length) {
- callback()
- } else {
- callback(new Error("请选择报考科目"))
- }
- }
- var validatorMajorId = (rule, value, callback) => {
- if (value) {
- callback()
- } else {
- callback(new Error("请选择专业"))
- }
- }
- return {
- examform: {
- userName: '',
- userSex: '',
- companyName: '',
- // userIdCard: '',
- // userPhone: '',
- userMajors: [],
- majorId: '',
- },
- rules: {
- userName: [{ required: true, message: '请输入姓名', trigger: ['blur', 'change']}],
- userSex: [{ required: true, message: '请选择性别', trigger: ['blur', 'change']}],
- companyName: [{ required: true, message: '请输入企业名称', trigger: ['blur', 'change']}],
- // userIdCard: [{ required: true, message: '请输入身份证号', trigger: ['blur', 'change']}],
- majorId: [{ validator: validatorMajorId, trigger: ['change','blur']}],
- userMajors: [{ validator: validatorMajor, trigger: ['blur', 'change']}],
- },
- checkboxList: [],
- activityId: '', // 活动id
- subLoading: true,
- majorList: [], // 专业
- subjectLists: [], // 科目
- majorName: '',
- startTime: '',
- endTime: '',
- sysTime: '', // 当前时间
- }
- },
- onLoad(option) {
- this.sysTime = +this.$method.timest()
- // console.log('option--: ', option)
- if (option.scene) {
- let tid = decodeURIComponent(option.scene)
- this.activityId = tid.split('=')[1]
- // this.getActivity()
- } else {
- this.activityId = option.tid
- // this.getActivity()
- }
- },
- onShow() {
- console.log('activityId: ', this.activityId)
- if (!uni.getStorageSync('user_account')) { // 未登录
- console.log('未登录')
- uni.navigateTo({
- url: '/pages4/login/login?isBack=true'
- })
- return
- } else {
- // 已登录
- console.log('已登录')
- this.getActivity()
- }
- },
- // 必须要在onReady生命周期,因为onLoad生命周期组件可能尚未创建完毕
- onReady() {
- this.$refs.uForm.setRules(this.rules)
- },
- methods: {
- // 获取活动信息(专业和科目)
- getActivity() {
- this.$http({
- url: `/apply/activity/detail/${this.activityId}`,
- method: 'get',
- }).then((res) => {
- if (res.data.code == 200) {
- this.hadCheck()
- let data = res.data.data || {}
- const { majorList, subjectList, endTime, startTime} = data
- this.majorList = majorList || []
- this.startTime = startTime
- this.endTime = endTime
- if (subjectList) {
- this.checkboxList = subjectList.map((item) => {
- return {
- name: '《' + item.subjectName + '》',
- checked: false,
- ...item
- }
- })
- console.log('checkboxList:', this.checkboxList)
- }
- }
- })
- },
- // 校验用户是否已报名
- hadCheck() {
- this.$http({
- url: `/apply/activity/check/${this.activityId}`,
- method: 'get',
- }).then((res) => {
- if (res.data.data) {
- // 已经报名
- uni.navigateTo({
- url: '/pages5/mockExam/registrationSuccess?endTime=' + this.endTime + '&startTime=' + this.startTime
- + '&activityId=' + this.activityId
- })
- }
- })
- },
- checkboxGroupChange(e) {
- this.examform.userMajors = e
- },
- radioGroupChange(e) {
- console.log(e, this.examform.userSex);
- },
- majorChange(e) {
- let index = e.detail.value
- const { majorName, majorId, mockMajorId } = this.majorList[index]
- this.majorName = majorName
- this.examform.majorId = majorId
- // console.log('1111majorId', this.examform.majorId)
- this.subjectLists = this.checkboxList.filter(e => e.mockMajorId == mockMajorId)
- this.examform.userMajors = []
- this.subjectLists = this.subjectLists.map((item) => {
- return {
- name: '《' + item.subjectName + '》',
- checked: false,
- ...item
- }
- })
- },
- submit() {
- this.$refs.uForm.validate(valid => {
- if (valid) {
- if (!this.subLoading) {
- return
- }
- this.subLoading = false
- const { userName, userSex, companyName, majorId, userMajors} = this.examform
- let arrs = []
- userMajors.forEach((item, index) => {
- let findItem = this.subjectLists.find(e => e.subjectId == item)
- if (findItem) {
- arrs.push(findItem)
- }
- })
- let mockSubjectIds = arrs.map(e => e.subjectId).join(',')
- let mockMajorSubjectIds = arrs.map(e => e.mockMajorSubjectId).join(',')
- let params = {
- activityId: this.activityId,
- userName: userName,
- userSex: userSex,
- companyName: companyName,
- mockMajorId: majorId,
- mockSubjectIds: mockSubjectIds,
- mockMajorSubjectIds: mockMajorSubjectIds,
- }
- // console.log('eret', params)
- this.$http({
- url: '/apply/activity/launch',
- method: 'post',
- data: params,
- // noToken: true,
- }).then((res) => {
- this.subLoading = true
- if (res.data.code == 200) {
- let data = res.data.data
- uni.navigateTo({
- url: '/pages5/mockExam/registrationSuccess?endTime=' + data.endTime + '&startTime=' + data.startTime
- + '&activityId=' + this.activityId
- })
- }
- }).catch((err) => {
- this.subLoading = true
- })
- } else {
- console.log('验证失败');
- }
- })
-
- }
- },
- }
- </script>
- <style>
- page {
- background: linear-gradient(90deg, #EDF1FF 0%, #D9F0FF 100%);
- }
- </style>
- <style lang="scss" scoped>
- .exam_apply {
- width: 100%;
- height: 100%;
- .mock_bg {
- width: 100%;
- height: 760rpx;
- z-index: -999;
- top: 0;
- }
- .navbar {
- background-color: #498AFE;
- }
- .mains {
- padding: 16rpx;
- position: relative;
- top: -270rpx;
- }
- .items {
- padding: 40rpx 0rpx 40rpx 24rpx;
- background-color: #fff;
- border-radius: 16rpx;
- margin-bottom: 16rpx;
- .star_red {
- color: #F84B39;
- }
- .number {
- font-size: 32rpx;
- font-weight: 800;
- color: #222222;
- margin: 0rpx 20rpx 0rpx 4rpx;
- }
- .category {
- font-size: 32rpx;
- font-weight: 400;
- color: #222222;
- }
- .inputs {
- width: 580rpx;
- height: 88rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- border: 2rpx solid #C2C2C2;
- display: flex;
- align-items: center;
- padding-left: 24rpx;
- }
- .item_box {
- height: 86rpx;
- display: flex;
- align-items: center;
- .pick_con {
- width: 500rpx;
- height: 86rpx;
- // font-size: 32rpx;
- }
- .text {
- flex:1;
- display: flex;
- align-items: center;
- }
- }
- .grays {
- color: #999;
- font-size: 28rpx;
- }
- }
- .btns {
- width: 100%;
- display: flex;
- align-items: center;
- justify-items: center;
- }
- .submits {
- width: 686rpx;
- height: 96rpx;
- line-height: 96rpx;
- text-align: center;
- background: #3F8DFD;
- border-radius: 16rpx;
- font-size: 32rpx;
- font-weight: 500;
- color: #FFFFFF;
- }
- .disable {
- background: #498AFE;
- opacity: 0.5;
- }
- }
- </style>
|