咨询师端接口调用
parent
4c74ce1119
commit
31ac1df69a
|
@ -5,7 +5,7 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||
<title>有谱志愿</title>
|
||||
<style>
|
||||
.load {
|
||||
width: 0.6rem;
|
||||
|
@ -23,8 +23,7 @@
|
|||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript
|
||||
enabled. Please enable it to continue.</strong>
|
||||
<strong></strong>
|
||||
</noscript>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
|
|
|
@ -182,6 +182,12 @@ textarea {
|
|||
.login-mode{
|
||||
width: 100%;
|
||||
margin-top: 2rem;
|
||||
background-color: #FFFFFF;
|
||||
position: fixed;
|
||||
bottom: .4rem;
|
||||
}
|
||||
.login-mode.noPositin{
|
||||
position: static;
|
||||
}
|
||||
.mode-title{
|
||||
display: flex;
|
||||
|
@ -348,7 +354,7 @@ textarea {
|
|||
.security-code-container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
width: 3.48rem;
|
||||
width: 5.32rem;
|
||||
}
|
||||
.field-wrap {
|
||||
list-style: none;
|
||||
|
|
|
@ -13,10 +13,10 @@
|
|||
<img v-else-if="headImg" :src="host + headImg">
|
||||
</div>
|
||||
|
||||
<button class="cover-btn" @change="imgIny($event)">
|
||||
<div class="cover-btn">
|
||||
<input class="inputB" @change="imgIny($event)" type="file" />
|
||||
上传
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<ul class="case-msg">
|
||||
<li>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div class="content my-content">
|
||||
<div class="content">
|
||||
<!-- 头部 -->
|
||||
<div :class="{'header':true,'scroll white':isScrollTop,'white':true}">
|
||||
<div class="back" @click="$router.go(-1)"><img src="../../assets/images/home/expert/back.png" alt=""></div>
|
||||
|
@ -96,5 +96,7 @@
|
|||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
.expert-list{
|
||||
margin-top: 1.2rem;
|
||||
}
|
||||
</style>
|
|
@ -19,7 +19,7 @@
|
|||
<span @click="toEntrance()">马上测试</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="evaluation-item">
|
||||
<!-- <div class="evaluation-item">
|
||||
<h2>MBTI职业性格测试(完整版)</h2>
|
||||
<div class="evaluation-txt">
|
||||
<span><img src="../../../assets/images/home/evaluation/evaluation-02.png" alt=""></span>
|
||||
|
@ -78,7 +78,7 @@
|
|||
<span>测评人数:<em>134人</em></span>
|
||||
<span @click="toEntrance()">马上测试</span>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
</div>
|
||||
<div class="addr-select-bg" v-show="isTips" @click="isTips=!isTips"></div>
|
||||
|
@ -112,6 +112,10 @@
|
|||
created() {
|
||||
this.isScroll = true;
|
||||
window.addEventListener("scroll", this.eventScrollTop);
|
||||
|
||||
},
|
||||
mounted() {
|
||||
this.isFirst = (JSON.parse(localStorage.getItem("isFirst")));
|
||||
},
|
||||
methods:{
|
||||
toEntrance(){
|
||||
|
@ -123,7 +127,8 @@
|
|||
},
|
||||
//下次不再提醒
|
||||
noTips(){
|
||||
this.isFirst = !this.isFirst;
|
||||
this.isFirst = false;
|
||||
localStorage.isFirst = JSON.stringify(this.isFirst);
|
||||
this.$router.push('/evaluation/entrance');
|
||||
},
|
||||
// 页面跳转
|
||||
|
|
|
@ -10,12 +10,12 @@
|
|||
<img :src="host + bannerSrc">
|
||||
</div>
|
||||
<!-- 领取咨询机会 -->
|
||||
<div class="expert-receive" @click="goPage('/information')" v-if="isReceive==0">
|
||||
<div class="expert-receive" @click="goPage('/information')" v-if="consult_amount==0">
|
||||
<img src="../../../assets/images/home/expert/notice-01.png">
|
||||
<p>完善信息,立即领取免费咨询卡(1小时)</p>
|
||||
<span></span>
|
||||
</div>
|
||||
<div class="expert-receive expert-receive-01" v-if="isReceive==1">
|
||||
<div class="expert-receive expert-receive-01" v-if="consult_amount==1">
|
||||
<img src="../../../assets/images/home/expert/notice-02.png">
|
||||
<p>您已领取一小时免费咨询权益,可向专家进行提问</p>
|
||||
</div>
|
||||
|
@ -52,7 +52,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="expert-list-btns">
|
||||
<div :class="{'btn':true,'noservice':isReceive==0}" @click="toAsk(item.id)">向TA提问</div>
|
||||
<div :class="{'btn':true,'noservice':consult_amount==0}" @click="toAsk(item.id)">向TA提问</div>
|
||||
<div class="btn" @click="toDetail(item.id)">查看详情</div>
|
||||
</div>
|
||||
</li>
|
||||
|
@ -103,7 +103,7 @@
|
|||
data() {
|
||||
return {
|
||||
isScrollTop: false,
|
||||
isReceive: 1, //是否领取咨询机会
|
||||
consult_amount: 0, //是否领取咨询机会
|
||||
current: 0,
|
||||
isConfirm: false,
|
||||
bannerSrc: '', //banner图地址
|
||||
|
@ -128,6 +128,7 @@
|
|||
created() {
|
||||
this.isScroll = true;
|
||||
window.addEventListener("scroll", this.eventScrollTop);
|
||||
this.consult_amount = (JSON.parse(localStorage.getItem("centerUserData"))).consult_amount;
|
||||
},
|
||||
mounted() {
|
||||
this.getBanner();
|
||||
|
@ -242,7 +243,7 @@
|
|||
|
||||
// 向TA提问
|
||||
toAsk(id) {
|
||||
if (this.isReceive == 1) {
|
||||
if (this.consult_amount == 1) {
|
||||
this.$router.push({
|
||||
path: '/expert/ask',
|
||||
name: 'expert-ask',
|
||||
|
@ -250,7 +251,7 @@
|
|||
id: id
|
||||
},
|
||||
});
|
||||
} else if (this.isReceive == 0) {
|
||||
} else if (this.consult_amount == 0) {
|
||||
this.isConfirm = true;
|
||||
}
|
||||
},
|
||||
|
|
|
@ -120,7 +120,7 @@
|
|||
data() {
|
||||
return {
|
||||
isScrollTop: false,
|
||||
isReceive: 0, //是否完善资料
|
||||
consult_amount: 0, //是否完善资料
|
||||
bannerSrc: "",
|
||||
expertData: [], //专家列表
|
||||
headlinesData: [{
|
||||
|
@ -149,7 +149,7 @@
|
|||
created() {
|
||||
this.isScroll = true;
|
||||
window.addEventListener("scroll", this.eventScrollTop);
|
||||
this.consult_amount = JSON.parse(localStorage.userData).consult_amount;
|
||||
this.consult_amount = (JSON.parse(localStorage.getItem("centerUserData"))).consult_amount;
|
||||
},
|
||||
mounted() {
|
||||
this.getBanner();
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<div class="company">有谱志愿</div>
|
||||
<div class="phone-number" v-if="mode == 1">
|
||||
<span>手机号</span>
|
||||
<input type="text" v-model="phoneNumber" placeholder="请输入手机号" />
|
||||
<input type="text" v-model="phoneNumber" placeholder="请输入手机号"/>
|
||||
</div>
|
||||
<div class="agreement">
|
||||
<span :class="{ checked: isAgreement }" @click="isAgreement = !isAgreement"><img
|
||||
|
@ -23,12 +23,11 @@
|
|||
</p>
|
||||
</div>
|
||||
<div class="login-btns">
|
||||
<span @click="nailLogin()" v-if="mode == 0" class="nail-btn"><img
|
||||
src="../assets/images/login/nail.png" />钉钉授权登录</span>
|
||||
<span @click="nailLogin()" v-if="mode == 0" class="nail-btn"><img src="../assets/images/login/nail.png" />钉钉授权登录</span>
|
||||
<span @click="phoneLogin()" v-if="mode == 1">获取验证码</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="login-mode">
|
||||
<div :class="{'login-mode':true,'noPositin':noPositin}" v-if="mode==0">
|
||||
<div class="mode-title"><span></span>其他登录方式<span></span></div>
|
||||
<ul class="mode-item">
|
||||
<li>
|
||||
|
@ -92,13 +91,31 @@
|
|||
openPhoneTips: false, //验证手机号弹出框
|
||||
phoneNumber: "",
|
||||
phone: "",
|
||||
noPositin: false,
|
||||
|
||||
defaultPhoneHeight : '0', //默认屏幕高度
|
||||
nowPhoneHeight : '0', //实时屏幕高度
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.isScroll = true;
|
||||
window.addEventListener("scroll", this.eventScrollTop);
|
||||
},
|
||||
mounted() {},
|
||||
mounted(){
|
||||
this.defaultPhoneHeight = window.innerHeight
|
||||
window.onresize = ()=>{
|
||||
this.nowPhoneHeight = window.innerHeight
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
nowPhoneHeight:function(){
|
||||
if(this.defaultPhoneHeight != this.nowPhoneHeight){
|
||||
this.noPositin = true;
|
||||
}else{
|
||||
this.noPositin = false;
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
// 钉钉授权登录
|
||||
nailLogin() {
|
||||
|
@ -170,6 +187,7 @@
|
|||
},
|
||||
destroyed() {
|
||||
window.removeEventListener("scroll", this.eventScrollTop);
|
||||
window.onresize = null;
|
||||
},
|
||||
//keep-alive进入时触发
|
||||
activated() {
|
||||
|
|
|
@ -55,6 +55,7 @@
|
|||
show: false, //显示获取验证码
|
||||
count: "", //剩余时间
|
||||
timer: null,
|
||||
userType: 0,
|
||||
};
|
||||
},
|
||||
beforeCreate() {},
|
||||
|
@ -78,15 +79,17 @@
|
|||
}
|
||||
},
|
||||
mounted() {
|
||||
|
||||
|
||||
},
|
||||
computed: {},
|
||||
methods: {
|
||||
getUserData() {
|
||||
this.axios.post(this.HOME + "/api/user/center-info").then(function (res) {
|
||||
console.log(res.data.data)
|
||||
localStorage.centerUserData = JSON.stringify(res.data.data);
|
||||
});
|
||||
let that = this;
|
||||
this.axios.post(this.HOME + "/api/user/center-info").then(function(res) {
|
||||
console.log(res.data.data,1234)
|
||||
that.userType = res.data.data.type;
|
||||
localStorage.centerUserData = JSON.stringify(res.data.data);
|
||||
});
|
||||
},
|
||||
hideKeyboard() {
|
||||
// 输入完成隐藏键盘
|
||||
|
@ -102,10 +105,8 @@
|
|||
.then(function(res) {
|
||||
localStorage.userData = JSON.stringify(res.data.data);
|
||||
if (res.data.code == 0) {
|
||||
that.getUserData()
|
||||
that.$router.push({
|
||||
path: "/index",
|
||||
});
|
||||
that.getUserData();
|
||||
that.goPages();
|
||||
} else {
|
||||
window.alert(res.msg);
|
||||
}
|
||||
|
@ -114,6 +115,21 @@
|
|||
console.log(error);
|
||||
});
|
||||
},
|
||||
|
||||
// 跳转页面
|
||||
goPages(){
|
||||
console.log(this.userType,252525)
|
||||
if(this.userType == 1){
|
||||
this.$router.push({
|
||||
path: "/consultant",
|
||||
});
|
||||
}else{
|
||||
this.$router.push({
|
||||
path: "/index",
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
handleSubmit() {
|
||||
this.$emit("input", this.value);
|
||||
},
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
<template>
|
||||
<div class="content">
|
||||
<!-- 头部 -->
|
||||
<div class="content">
|
||||
<!-- 头部 -->
|
||||
<div :class="{'header':true,'scroll white':isScrollTop,'white':true}">
|
||||
<div class="back" @click="$router.go(-1)"><img src="../../../assets/images/home/expert/back.png" alt=""></div>
|
||||
<div class="back" @click="$router.go(-1)"><img src="../../../assets/images/home/expert/back.png" alt="">
|
||||
</div>
|
||||
<div class="header-title">完善考生信息</div>
|
||||
</div>
|
||||
<div class="information pull-content list-section">
|
||||
|
@ -17,34 +18,36 @@
|
|||
<span><em>*</em>考籍</span>
|
||||
<p>
|
||||
<input type="text" readonly="readonly" :value="addrArray[addrIndex]" placeholder="请选择考生所在省份">
|
||||
<img src="../../../assets/images/home/expert/arrow-right.png" >
|
||||
<img src="../../../assets/images/home/expert/arrow-right.png">
|
||||
</p>
|
||||
</li>
|
||||
<li @click="openSex()">
|
||||
<span><em>*</em>性别</span>
|
||||
<p>
|
||||
<input type="text" readonly="readonly" :value="sexData[sexIndex].title" placeholder="请选择性别">
|
||||
<img src="../../../assets/images/home/expert/arrow-right.png" >
|
||||
<img src="../../../assets/images/home/expert/arrow-right.png">
|
||||
</p>
|
||||
</li>
|
||||
<li @click="openCategory()">
|
||||
<span><em>*</em>考生类型</span>
|
||||
<p>
|
||||
<input type="text" readonly="readonly" :value="categoryData[categoryIndex].title" placeholder="请选择考生类型">
|
||||
<img src="../../../assets/images/home/expert/arrow-right.png" >
|
||||
<input type="text" readonly="readonly" :value="categoryData[categoryIndex].title"
|
||||
placeholder="请选择考生类型">
|
||||
<img src="../../../assets/images/home/expert/arrow-right.png">
|
||||
</p>
|
||||
</li>
|
||||
<li @click="openDate()">
|
||||
<span><em>*</em>高考年份</span>
|
||||
<p>
|
||||
<input type="text" readonly="readonly" :value="dateArray[dateIndex]" placeholder="请选择高考年份">
|
||||
<img src="../../../assets/images/home/expert/arrow-right.png" >
|
||||
<img src="../../../assets/images/home/expert/arrow-right.png">
|
||||
</p>
|
||||
</li>
|
||||
<li>
|
||||
<span><em>*</em>选科组合</span>
|
||||
<div class="course-list">
|
||||
<span :class="{'checked':item.isActive}" v-for="(item,index) in subjectArray" :key="index" @click="onChange(index,item.id)">{{item.name}}</span>
|
||||
<span :class="{'checked':item.isActive}" v-for="(item,index) in subjectArray" :key="index"
|
||||
@click="onChange(index,item.id)">{{item.name}}</span>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
|
@ -70,7 +73,8 @@
|
|||
<span @click="isAddr=!isAddr">取消</span>
|
||||
</div>
|
||||
<ul>
|
||||
<li :class="{'checked':index == addrIndex}" @click="getAddrValue(index,item)" v-for="(item,index) in addrData" :key="index">
|
||||
<li :class="{'checked':index == addrIndex}" @click="getAddrValue(index,item)"
|
||||
v-for="(item,index) in addrData" :key="index">
|
||||
{{item.name}}
|
||||
<img v-show="index == addrIndex" src="../../../assets/images/home/expert/yes.png">
|
||||
</li>
|
||||
|
@ -84,7 +88,9 @@
|
|||
<span @click="isSex=!isSex">取消</span>
|
||||
</div>
|
||||
<ul>
|
||||
<li :class="{'checked':index == sexIndex}" @click="getSexValue(index,item)" v-for="(item,index) in sexData" :key="index">{{item.title}}<img v-show="index==sexIndex" src="../../../assets/images/home/expert/yes.png"></li>
|
||||
<li :class="{'checked':index == sexIndex}" @click="getSexValue(index,item)"
|
||||
v-for="(item,index) in sexData" :key="index">{{item.title}}<img v-show="index==sexIndex"
|
||||
src="../../../assets/images/home/expert/yes.png"></li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- 日期弹出框 -->
|
||||
|
@ -95,7 +101,9 @@
|
|||
<span @click="isDate=!isDate">取消</span>
|
||||
</div>
|
||||
<ul>
|
||||
<li :class="{'checked':index == dateIndex}" @click="getDateValue(index,item)" v-for="(item,index) in dateArray" :key="index">{{item}}<img v-show="index==dateIndex" src="../../../assets/images/home/expert/yes.png"></li>
|
||||
<li :class="{'checked':index == dateIndex}" @click="getDateValue(index,item)"
|
||||
v-for="(item,index) in dateArray" :key="index">{{item}}<img v-show="index==dateIndex"
|
||||
src="../../../assets/images/home/expert/yes.png"></li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- 考生类别弹出框 -->
|
||||
|
@ -106,7 +114,9 @@
|
|||
<span @click="isCategory=!isCategory">取消</span>
|
||||
</div>
|
||||
<ul>
|
||||
<li :class="{'checked':index == categoryIndex}" @click="getCategoryValue(index,item)" v-for="(item,index) in categoryData" :key="index">{{item.title}}<img v-show="index==categoryIndex" src="../../../assets/images/home/expert/yes.png"></li>
|
||||
<li :class="{'checked':index == categoryIndex}" @click="getCategoryValue(index,item)"
|
||||
v-for="(item,index) in categoryData" :key="index">{{item.title}}<img v-show="index==categoryIndex"
|
||||
src="../../../assets/images/home/expert/yes.png"></li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- 咨询卡弹出框 -->
|
||||
|
@ -115,76 +125,84 @@
|
|||
<img @click="goPage('/expert')" src="../../../assets/images/user/seekcard.png">
|
||||
<img @click="isSeekCard=!isSeekCard" src="../../../assets/images/user/close.png">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "information",
|
||||
data(){
|
||||
return {
|
||||
export default {
|
||||
name: "information",
|
||||
data() {
|
||||
return {
|
||||
isScrollTop: false,
|
||||
|
||||
addrArray:[], //城市名称列表
|
||||
addrData:[], //考籍列表
|
||||
|
||||
addrArray: [], //城市名称列表
|
||||
addrData: [], //考籍列表
|
||||
addrIndex: 0,
|
||||
isAddr: false, //城市列表是否显示
|
||||
addrValue:'', //考籍城市编号
|
||||
|
||||
addrValue: '', //考籍城市编号
|
||||
|
||||
studentName: '', //考生姓名
|
||||
|
||||
sexData:[
|
||||
{title:'男'},
|
||||
{title:'女'}
|
||||
|
||||
sexData: [{
|
||||
title: '男'
|
||||
},
|
||||
{
|
||||
title: '女'
|
||||
}
|
||||
],
|
||||
sexIndex: 0,
|
||||
isSex: false, //性别列表是否显示
|
||||
sexValue:'', //选择性别
|
||||
|
||||
dateArray:[],
|
||||
sexValue: '', //选择性别
|
||||
|
||||
dateArray: [],
|
||||
dateIndex: 0,
|
||||
isDate: false, //时间列表是否显示
|
||||
dateValue:'', //选择时间
|
||||
|
||||
categoryData:[
|
||||
{title:'普通高考生'},
|
||||
{title:'艺考生'},
|
||||
{title:'体考生'}
|
||||
dateValue: '', //选择时间
|
||||
|
||||
categoryData: [{
|
||||
title: '普通高考生'
|
||||
},
|
||||
{
|
||||
title: '艺考生'
|
||||
},
|
||||
{
|
||||
title: '体考生'
|
||||
}
|
||||
],
|
||||
categoryIndex: 0,
|
||||
isCategory: false, //性别列表是否显示
|
||||
categoryValue:'', //选择性别
|
||||
|
||||
categoryValue: '', //选择性别
|
||||
|
||||
checkedIndex: -1,
|
||||
isSeekCard: false,
|
||||
|
||||
achievementExpect:'',//预估成绩
|
||||
provinceRanking: '' ,//预估排名
|
||||
|
||||
|
||||
achievementExpect: '', //预估成绩
|
||||
provinceRanking: '', //预估排名
|
||||
|
||||
// 学科
|
||||
subjectArray: [],
|
||||
subjectValue: [],
|
||||
subjectIndex: 0,
|
||||
|
||||
|
||||
numberArr: [],
|
||||
temporaryCode:[],//暂存编号
|
||||
limitArr:[],//多选一数组
|
||||
count:0,
|
||||
userObj:'',
|
||||
lenNum:0,//最少最多
|
||||
iscount:true,
|
||||
ispopu:false
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.isScroll = true;
|
||||
window.addEventListener("scroll", this.eventScrollTop);
|
||||
},
|
||||
temporaryCode: [], //暂存编号
|
||||
limitArr: [], //多选一数组
|
||||
count: 0,
|
||||
userObj: '',
|
||||
lenNum: 0, //最少最多
|
||||
iscount: true,
|
||||
ispopu: false
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.isScroll = true;
|
||||
window.addEventListener("scroll", this.eventScrollTop);
|
||||
},
|
||||
mounted() {
|
||||
this.getAddrData();
|
||||
this.getDate();
|
||||
},
|
||||
methods:{
|
||||
methods: {
|
||||
// 获取城市列表
|
||||
getAddrData() {
|
||||
let that = this;
|
||||
|
@ -196,17 +214,17 @@
|
|||
let list = res.data.data;
|
||||
let newArray = [];
|
||||
let newObj = [];
|
||||
list.forEach(item=>{
|
||||
let obj = {
|
||||
code: item.code,
|
||||
name: item.name,
|
||||
subject_white: item.subject_white,
|
||||
subject_radio_group: item.subject_radio_group,
|
||||
subject_radio_group_list:item.subject_radio_group_list,
|
||||
subject_max:item.subject_max
|
||||
}
|
||||
newArray.push(obj.name);
|
||||
newObj.push(obj);
|
||||
list.forEach(item => {
|
||||
let obj = {
|
||||
code: item.code,
|
||||
name: item.name,
|
||||
subject_white: item.subject_white,
|
||||
subject_radio_group: item.subject_radio_group,
|
||||
subject_radio_group_list: item.subject_radio_group_list,
|
||||
subject_max: item.subject_max
|
||||
}
|
||||
newArray.push(obj.name);
|
||||
newObj.push(obj);
|
||||
})
|
||||
that.addrArray = newArray;
|
||||
that.addrData = newObj;
|
||||
|
@ -214,22 +232,22 @@
|
|||
});
|
||||
},
|
||||
// 获取考试时间
|
||||
getDate(){
|
||||
getDate() {
|
||||
const date = new Date();
|
||||
let year = Math.trunc(date.getFullYear());
|
||||
let end = year + 10;
|
||||
let newArray=[];
|
||||
for(let i=year; i<= end; i++){
|
||||
newArray.push(i);
|
||||
let newArray = [];
|
||||
for (let i = year; i <= end; i++) {
|
||||
newArray.push(i);
|
||||
}
|
||||
this.dateArray = newArray;
|
||||
this.dateValue = this.dateArray[this.dateIndex];
|
||||
},
|
||||
// 城市选择
|
||||
openAddr(){
|
||||
this.isAddr=!this.isAddr;
|
||||
openAddr() {
|
||||
this.isAddr = !this.isAddr;
|
||||
},
|
||||
getAddrValue(index,item){
|
||||
getAddrValue(index, item) {
|
||||
this.addrValue = item.code;
|
||||
this.addrIndex = index;
|
||||
this.isAddr = false;
|
||||
|
@ -239,31 +257,31 @@
|
|||
this.getSubjectArray();
|
||||
},
|
||||
// 选择性别
|
||||
openSex(){
|
||||
this.isSex=!this.isSex;
|
||||
openSex() {
|
||||
this.isSex = !this.isSex;
|
||||
},
|
||||
getSexValue(index,item){
|
||||
getSexValue(index, item) {
|
||||
this.sexValue = item.title;
|
||||
this.sexIndex = index;
|
||||
this.isSex=false;
|
||||
this.isSex = false;
|
||||
},
|
||||
// 选择时间
|
||||
openDate(){
|
||||
this.isDate=!this.isDate;
|
||||
openDate() {
|
||||
this.isDate = !this.isDate;
|
||||
},
|
||||
getDateValue(index,item){
|
||||
getDateValue(index, item) {
|
||||
this.dateValue = item;
|
||||
this.dateIndex = index;
|
||||
this.isDate=false;
|
||||
this.isDate = false;
|
||||
},
|
||||
//选择考生类别
|
||||
openCategory(){
|
||||
this.isCategory=!this.isCategory;
|
||||
openCategory() {
|
||||
this.isCategory = !this.isCategory;
|
||||
},
|
||||
getCategoryValue(index,item){
|
||||
getCategoryValue(index, item) {
|
||||
this.categoryValue = item.title;
|
||||
this.categoryIndex = index;
|
||||
this.isCategory=false;
|
||||
this.isCategory = false;
|
||||
},
|
||||
// 获取选科组合列表
|
||||
getSubjectArray() {
|
||||
|
@ -276,58 +294,60 @@
|
|||
let list = res.data.data;
|
||||
let newArray = [];
|
||||
let baiArr = that.addrData[that.addrIndex].subject_white.split(',');
|
||||
list.forEach(item=>{
|
||||
baiArr.forEach(item1=>{
|
||||
if(item.id==item1){
|
||||
let obj = {
|
||||
id: item.id,
|
||||
name: item.name,
|
||||
isActive:false
|
||||
}
|
||||
newArray.push(obj);
|
||||
}
|
||||
})
|
||||
|
||||
list.forEach(item => {
|
||||
baiArr.forEach(item1 => {
|
||||
if (item.id == item1) {
|
||||
let obj = {
|
||||
id: item.id,
|
||||
name: item.name,
|
||||
isActive: false
|
||||
}
|
||||
newArray.push(obj);
|
||||
}
|
||||
})
|
||||
|
||||
})
|
||||
that.subjectArray =newArray;
|
||||
that.subjectArray = newArray;
|
||||
});
|
||||
},
|
||||
// 选科组合选择事件
|
||||
onChange(index,subId) {
|
||||
onChange(index, subId) {
|
||||
let existSubid = this.temporaryCode.indexOf(subId);
|
||||
let existsubIndex = this.subjectArray.findIndex(item=>item.id==subId);
|
||||
console.log(existSubid,existsubIndex,299);
|
||||
if(this.addrData[this.addrIndex].subject_max!=1){
|
||||
let existsubIndex = this.subjectArray.findIndex(item => item.id == subId);
|
||||
console.log(existSubid, existsubIndex, 299);
|
||||
if (this.addrData[this.addrIndex].subject_max != 1) {
|
||||
// 多选
|
||||
if(this.temporaryCode.length < this.addrData[this.addrIndex].subject_max){
|
||||
if (this.temporaryCode.length < this.addrData[this.addrIndex].subject_max) {
|
||||
// 没有超过限制选择的科目数量
|
||||
if(existSubid==-1){
|
||||
if(this.addrData[this.addrIndex].subject_radio_group_list.length) {
|
||||
if (existSubid == -1) {
|
||||
if (this.addrData[this.addrIndex].subject_radio_group_list.length) {
|
||||
// 存在限制的科目id
|
||||
let limitSubid = this.addrData[this.addrIndex].subject_radio_group_list[0].findIndex(item=>item==subId);
|
||||
let date = this.temporaryCode.findIndex(item => this.addrData[this.addrIndex].subject_radio_group_list[0].indexOf(item) > -1)
|
||||
if(limitSubid!=-1 && date!=-1){
|
||||
let limitSubid = this.addrData[this.addrIndex].subject_radio_group_list[0].findIndex(
|
||||
item => item == subId);
|
||||
let date = this.temporaryCode.findIndex(item => this.addrData[this.addrIndex]
|
||||
.subject_radio_group_list[0].indexOf(item) > -1)
|
||||
if (limitSubid != -1 && date != -1) {
|
||||
// 待提交科目数组id存在限制科目的id
|
||||
console.log('选择科目冲突');
|
||||
} else {
|
||||
// 待提交科目数组id不存在限制科目的id
|
||||
this.subjectArray[index].isActive = !this.subjectArray[index].isActive;
|
||||
this.setSubList(index,subId);
|
||||
this.setSubList(index, subId);
|
||||
}
|
||||
} else {
|
||||
// 不存在限制的科目的id
|
||||
this.subjectArray[index].isActive = !this.subjectArray[index].isActive;
|
||||
this.setSubList(index,subId);
|
||||
this.setSubList(index, subId);
|
||||
}
|
||||
} else {
|
||||
this.temporaryCode.splice(existSubid,1);
|
||||
this.temporaryCode.splice(existSubid, 1);
|
||||
this.subjectArray[existsubIndex].isActive = false;
|
||||
}
|
||||
} else {
|
||||
// 超过了限制选择科目的数量
|
||||
if(existSubid!=-1){
|
||||
if (existSubid != -1) {
|
||||
// 如果选中的科目id在待提交的数组里存在,则删除当前选中的科目
|
||||
this.temporaryCode.splice(existSubid,1);
|
||||
this.temporaryCode.splice(existSubid, 1);
|
||||
this.subjectArray[existsubIndex].isActive = false;
|
||||
} else {
|
||||
console.log('提示框:xxxx');
|
||||
|
@ -335,68 +355,65 @@
|
|||
}
|
||||
} else {
|
||||
// 单选
|
||||
|
||||
|
||||
// 清空暂存编号
|
||||
this.temporaryCode = [];
|
||||
// 取消所有选中项
|
||||
this.subjectArray.forEach(item=>{item.isActive = false;})
|
||||
this.subjectArray.forEach(item => {
|
||||
item.isActive = false;
|
||||
})
|
||||
// 调用设置科目列表事件
|
||||
this.setSubList(index,subId);
|
||||
this.setSubList(index, subId);
|
||||
}
|
||||
},
|
||||
// 设置科目列表事件
|
||||
setSubList(index,id){
|
||||
setSubList(index, id) {
|
||||
// 设置选中项
|
||||
this.subjectArray[index].isActive = true;
|
||||
// 储存选中项的id到待提交数组里
|
||||
this.temporaryCode.push(id);
|
||||
console.log(this.temporaryCode,'数据');
|
||||
console.log(this.temporaryCode, '数据');
|
||||
},
|
||||
|
||||
// 获取考生信息
|
||||
setStudentInfo() {
|
||||
let that =this;
|
||||
if(that.temporaryCode.length != that.addrData[that.addrIndex].subject_max){
|
||||
let that = this;
|
||||
if (that.temporaryCode.length != that.addrData[that.addrIndex].subject_max) {
|
||||
console.log('弹框提示,必须选择多少个科目');
|
||||
} else {
|
||||
let data = {
|
||||
student_name: that.studentName,//姓名
|
||||
student_gender: that.sexIndex==0 ? 1 : 2,//性别
|
||||
student_native: that.addrData[that.addrIndex].code, //考籍(省级)编号
|
||||
student_native_str: that.addrData[that.addrIndex].name,//考籍(省级)名称
|
||||
student_subject: that.temporaryCode.join(','),//选科组合(选科ID,多个用英文逗号分割)
|
||||
student_exam_year: that.dateValue,//高考年份
|
||||
is_art: that.dateIndex==1?1:0,//是否是艺考生
|
||||
is_PE:that.dateIndex==2?1:0,//是否是体考生
|
||||
achievement_expect: that.achievementExpect,//预估或模考成绩
|
||||
province_ranking: that.provinceRanking,//预估/省内排名
|
||||
achievement_high: '',//高考成绩,-1表示未考(用户留空时默认传值为-1)
|
||||
}
|
||||
console.log(data,2525)
|
||||
let that = this;
|
||||
this.axios
|
||||
.post(this.HOME + "/api/user/edit-student-info", {
|
||||
student_name: that.studentName, //姓名
|
||||
student_gender: that.sexIndex == 0 ? 1 : 2, //性别
|
||||
student_native: that.addrData[that.addrIndex].code, //考籍(省级)编号
|
||||
student_native_str: that.addrData[that.addrIndex].name, //考籍(省级)名称
|
||||
student_subject: that.temporaryCode.join(','), //选科组合(选科ID,多个用英文逗号分割)
|
||||
student_exam_year: that.dateValue, //高考年份
|
||||
is_art: that.dateIndex == 1 ? 1 : 0, //是否是艺考生
|
||||
is_PE: that.dateIndex == 2 ? 1 : 0, //是否是体考生
|
||||
achievement_expect: that.achievementExpect, //预估或模考成绩
|
||||
province_ranking: that.provinceRanking, //预估/省内排名
|
||||
achievement_high: '', //高考成绩,-1表示未考(用户留空时默认传值为-1)
|
||||
})
|
||||
.then(function(res) {
|
||||
that.getUserData();
|
||||
that.isSeekCard = true;
|
||||
console.log(res, 123)
|
||||
});
|
||||
}
|
||||
// let that = this;
|
||||
// this.axios
|
||||
// .post(this.HOME + "/api/area/index", {
|
||||
// student_name: that.studentName,//姓名
|
||||
// student_gender: that.sexIndex==0 ? 1 : 2,//性别
|
||||
// student_native: that.addrData[that.addrIndex].code, //考籍(省级)编号
|
||||
// student_native_str: that.addrData[that.addrIndex].name,//考籍(省级)名称
|
||||
// student_subject: this.temporaryCode.join(','),//选科组合(选科ID,多个用英文逗号分割)
|
||||
// student_exam_year: that.dateValue,//高考年份
|
||||
// is_art: that.dateIndex==1?1:0,//是否是艺考生
|
||||
// is_PE:that.dateIndex==2?1:0,//是否是体考生
|
||||
// achievement_expect: that.achievementExpect,//预估或模考成绩
|
||||
// province_ranking: that.provinceRanking,//预估/省内排名
|
||||
// achievement_high: '',//高考成绩,-1表示未考(用户留空时默认传值为-1)
|
||||
// })
|
||||
// .then(function(res) {
|
||||
// // that.isSeekCard = true;
|
||||
// console.log(res,123)
|
||||
// });
|
||||
|
||||
},
|
||||
|
||||
getUserData() {
|
||||
this.axios.post(this.HOME + "/api/user/center-info").then(function(res) {
|
||||
console.log(res.data.data)
|
||||
localStorage.centerUserData = JSON.stringify(res.data.data);
|
||||
});
|
||||
},
|
||||
|
||||
// 跳转
|
||||
goPage(path){
|
||||
this.$router.push(path);
|
||||
goPage(path) {
|
||||
this.$router.push(path);
|
||||
},
|
||||
// 滚动改变样式
|
||||
eventScrollTop() {
|
||||
|
@ -426,9 +443,9 @@
|
|||
deactivated() {
|
||||
window.removeEventListener("scroll", this.eventScrollTop);
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue