123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- import api from '@/api/api'
- const state = {
- roleList:null,//角色列表
- educationType: null,//教育类型
- projectType: null,//项目类型
- businessLevel: null,//业务层级
- sujectType: null,//科目
- schoolList: null,//院校
- Professional: null,//专业
- courseExamine: null,//考期
- certificate: null,//证书类型
- certificateTp: null,//证书模板
- labelList: null,//标签
- payList: null,//支付通道
- paypayee: null,//收款方
- paysource: null,//渠道来源
- payvisit: null,//到访分校
- payserve: null,//服务模式
- paysupply: null,//供应方
- paynature: null,//收费性质
- paycost: null,//费用类型
- paperexam: null,//试卷类型
- areas: null,//地区-省
- cityList: null,//地区-市
- classList:null,//班级
- examList:null,//考试安排
- applySiteAddress:null,//考试地点
- beforeList:null,//前培安排
- indexnum:null,//模拟
- }
- const mutations = {
- //更新角色列表
- EDICROLELIST(state){
- api.obtainRoleList({status:1}).then(res => {
- state.roleList = res.rows
- })
- },
- //更新教育类型
- EDICATIONTYPE(state){
- api.inquireCourseEducationType({status:1}).then(res => {
- state.educationType = res.rows
- })
- },
- //更新项目类型
- PROJECTTYPE(state){
- api.inquireCourseProjectType({status:1}).then(res => {
- state.projectType = res.rows
- })
- },
- //更新业务层级
- BUSINESSLEVEL(state){
- api.inquirebusinessList({status:1}).then(res => {
- state.businessLevel = res.rows
- })
- },
- //更新科目
- SUJECTTYPE(state){
- api.inquireCourseSubject({status:1}).then(res => {
- state.sujectType = res.rows
- })
- },
- //更新院校
- SCHOOLLIST(state){
- api.inquireUserSchool({status:1}).then(res => {
- state.schoolList = res.rows
- })
- },
- //更新专业
- PROFESSIONAL(state){
- api.inquireCourseMajor({status:1}).then(res => {
- state.Professional = res.rows
- })
- },
- //更新考期
- COURSEEXAMINE(state){
- api.inquireCourseExamine({status:1}).then(res => {
- state.courseExamine = res.rows
- })
- },
- //更新证书类型
- CERTIFICATE(state){
- api.inquireBaseCertificate({status:1}).then(res => {
- state.certificate = res.rows
- })
- },
- //更新证书模板
- CERTIFICATETP(state){
- api.inquireBaseCertificatetp({status:1}).then(res => {
- state.certificateTp = res.rows
- })
- },
- //更新标签
- LABELLIST(state){
- api.inquireCourseLabelList({status:1}).then(res => {
- state.labelList = res.rows
- })
- },
- //更新支付通道
- PAYLIST(state){
- api.inquirepayaislelist({status:1}).then(res => {
- state.payList = res.rows
- })
- },
- //更新收款方
- PAYPAYEE(state){
- api.inquirepaypayee({status:1}).then(res => {
- state.paypayee = res.rows
- })
- },
- //更新渠道来源
- PAYSOURCE(state){
- api.inquirepaysource({status:1}).then(res => {
- state.paysource = res.rows
- })
- },
- //更新到访分校
- PAYVISIT(state){
- api.inquirepayvisit({status:1}).then(res => {
- state.payvisit = res.rows
- })
- },
- //更新服务模式
- PAYSERVE(state){
- api.inquirepayserve({status:1}).then(res => {
- state.payserve = res.rows
- })
- },
- //更新供应方
- PAYSUPPLY(state){
- api.inquirepaysupply({status:1}).then(res => {
- state.paysupply = res.rows
- })
- },
- //更新收费性质
- PAYNATURE(state){
- api.inquirepaynature({status:1}).then(res => {
- state.paynature = res.rows
- })
- },
- //更新费用类型
- PAYCOST(state){
- api.inquirepaycost({status:1}).then(res => {
- state.paycost = res.rows
- })
- },
- //更新地区-省
- AREAS(state){
- api.inquireapplyAreas({status:1}).then(res => {
- state.areas = res.rows
- })
- },
- //更新地区-市
- CITYLIST(state){
- api.inquireapplyCityList({status:1}).then(res => {
- state.cityList = res.rows
- })
- },
- //更新班级
- CLASSLIST(state){
- api.inquireGradegradeList({status:1}).then(res => {
- state.classList = res.rows
- })
- },
- //更新考试安排
- EXAMLIST(state){
- api.inquiresystemapplyList({status:1}).then(res => {
- state.examList = res.rows
- })
- },
- //更新考试地点
- APPLYSITEADDRESS(state){
- api.inquiresystemsite({status:1}).then(res => {
- state.applySiteAddress = res.rows
- })
- },
- //更新前培安排
- BEFORELIST(state){
- api.inquiresystembefore({status:1}).then(res => {
- state.beforeList = res.rows
- })
- },
- //更新试卷类型
- EXAMTYPE(state){
- api.inquirepaperexamList({status:1}).then(res => {
- state.paperexam = res.rows
- })
- },
- }
- const actions = {
-
- }
- export default {
- state,
- mutations,
- actions
- }
|