|
|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
<template>
|
|
|
|
|
<view class="container safe-area-inset-bottom">
|
|
|
|
|
<image class="bkg" src="~@/static/me/wave.png" mode="widthFix"></image>
|
|
|
|
|
<zmm-watermark :column="2" :margin="30" :watermark="watermark"></zmm-watermark>
|
|
|
|
|
|
|
|
|
|
<view class="wrap" v-if="step === 1">
|
|
|
|
|
<view class="year-picker">
|
|
|
|
|
@ -178,11 +179,12 @@
|
|
|
|
|
'color': '#fff',
|
|
|
|
|
'margin-left': '64rpx'
|
|
|
|
|
}"
|
|
|
|
|
@click="stepClick('next')">下一步</u-button>
|
|
|
|
|
@click="submit">提交</u-button>
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view class="wrap" v-if="step === 4">
|
|
|
|
|
<!-- <view class="wrap" v-if="step === 4">
|
|
|
|
|
<view class="picked-data">
|
|
|
|
|
<view>{{ form.year }}年</view>
|
|
|
|
|
<view>{{ formArea }}</view>
|
|
|
|
|
@ -234,7 +236,7 @@
|
|
|
|
|
}"
|
|
|
|
|
@click="submit">提交</u-button>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view> -->
|
|
|
|
|
|
|
|
|
|
<u-picker
|
|
|
|
|
v-model="isShowTime"
|
|
|
|
|
@ -255,9 +257,15 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import zmmWatermark from '@/uni_modules/zmm-watermark/components/zmm-watermark/zmm-watermark.vue';
|
|
|
|
|
import imglogo from '@/static/waterlogo.png';
|
|
|
|
|
export default {
|
|
|
|
|
components:{
|
|
|
|
|
zmmWatermark
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
watermark:`<img style="width:60px" src="${imglogo}" />`,
|
|
|
|
|
isShowSchool: false,
|
|
|
|
|
isShowSex: false,
|
|
|
|
|
sexList: [
|
|
|
|
|
@ -369,7 +377,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
stepClick(type='next') {
|
|
|
|
|
if (type === 'next') {
|
|
|
|
|
if (this.step < 4) {
|
|
|
|
|
if (this.step < 3) {
|
|
|
|
|
this.step = this.step + 1
|
|
|
|
|
|
|
|
|
|
if (this.step === 2) {
|
|
|
|
|
@ -409,7 +417,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
setTitle() {
|
|
|
|
|
uni.setNavigationBarTitle({
|
|
|
|
|
title: `自主招生志愿填报 - Step ${this.step}/4`
|
|
|
|
|
title: `自主招生志愿填报 - Step ${this.step}/3`
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|