Commit e390038c authored by zhengke's avatar zhengke

111

parent b7bccc9c
import request from '../../utils/request'
import request_zc from '../../utils/request_zc'
/*
* 获取意见调查表参与学员分页列表
*/
export function getActivitySurveyGuestPage(data) {
return request({
url: '/Survey/GetActivitySurveyGuestPage',
method: 'post',
data
})
}
/*
* 新增修改意见调查表参与学员
*/
export function setActivitySurveyGuest(data) {
return request({
url: '/Survey/SetActivitySurveyGuest',
method: 'post',
data
})
}
/*
* 根据编号获取学员信息
*/
export function getActivitySurveyGuestModule(data) {
return request({
url: '/Survey/GetActivitySurveyGuestModule',
method: 'post',
data
})
}
/*
* 根据编号删除学员信息
*/
export function removeActivitySurveyGuest(data) {
return request({
url: '/Survey/RemoveActivitySurveyGuest',
method: 'post',
data
})
}
\ No newline at end of file
<template>
<div class="page-body">
<div class="page-content">
<q-table :pagination="msg" :loading="loading" no-data-label="暂无相关数据" flat
class="sticky-right-column-table sticky-column-table" separator="none" :data="dataList" :columns="columns"
row-key="name">
<template v-slot:top>
<div class="col-2 q-table__title">意见调查信息</div>
<q-space />
<div class="page-option">
<q-btn color="accent" size="sm" icon="add" label="新增" @click="addObj(null)"/>
<!-- @click="addObj(null)" -->
</div>
</template>
<template v-slot:body-cell-IsRequired="props">
<q-td :props="props">
<span v-if="props.row.IsRequired==0"></span>
<span v-if="props.row.IsRequired==1"></span>
</q-td>
</template>
<template v-slot:body-cell-IsShow="props">
<q-td :props="props">
<span v-if="props.row.IsShow==0"></span>
<span v-if="props.row.IsShow==1"></span>
</q-td>
</template>
<template v-slot:bottom>
<q-pagination class="full-width justify-end" v-model="msg.pageIndex" color="primary" :max="pageCount"
:input="true" @input="changePage" />
</template>
<template v-slot:body-cell-optioned="props">
<q-td :props="props">
<q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" label="编辑"
@click="addObj(props.row)" />
<q-btn flat size="xs" icon="delete" color="negative" style="font-weight:400" label="删除"
@click="delQuestion(props.row)" />
</q-td>
</template>
</q-table>
<wenjuan-form v-if="isShowWenjuan" :save-obj="objOption" :ID="msg.ActivitySurveyId" @close="closeSaveForm" @success="resetSearch"></wenjuan-form>
</div>
</div>
</template>
<script>
import wenjuanForm from '../../components/activity/wenjuan-form'
export default {
meta: {
title: "意见调查表"
},
components: {
wenjuanForm
},
data() {
return {
columns: [
{
name: 'ID',
label: 'ID',
align: 'left',
field: 'ID'
},
{
name: 'Title',
label: '问题名称',
field: 'Title',
align: 'left'
},
{
name: 'FormTypeStr',
label: '问卷类型',
field: 'FormTypeStr',
align: 'left'
},
{
name: 'IsRequired',
label: '是否必填',
field: 'IsRequired',
align: 'left'
},
{
name: 'IsShow',
label: '是否显示',
field: 'IsShow',
align: 'left'
},
{
name: 'Sort',
label: '排序',
field: 'Sort',
align: 'left'
},
{
name: 'optioned',
label: '操作',
field: 'TId'
}
],
dataList: [],
loading: true,
ShowOpts: [{
label: '不限',
value: '-1'
},
{
label: '是',
value: '0'
},
{
label: '否',
value: '1'
}
],
msg:{
pageIndex:1,
pageSize:15,
rowsPerPage: 15,
PrizeType:0,
Title:'',
IsShow:'-1',
SurveyType:0,
ActivitySurveyId:1,//活动id
},
platList:[],
pageCount: 0,
isShowWenjuan: false,
objOption: null,
}
},
created() {
},
mounted() {
if(this.$route.query&&this.$route.query.ID){
this.msg.ActivitySurveyId = this.$route.query.ID;
}
this.getPlat();
this.getList();
},
methods: {
getPlat(){
this.apipostDS("/api/Survey/GetActivitySurveyGuestPage", {}, res => {
if(res.data.resultCode==1){
this.platList = res.data.data;
let obj = {
Id:0,
Name:'不限'
}
this.platList.unshift(obj);
}else {
this.Info(res.data.message);
}
console.log( '数据信息' + res.data)
})
},
resetSearch() {
this.msg.pageIndex = 1;
this.getList();
},
getList(){
this.loading=true;
this.apipostDS("/api/Survey/GetPageList", this.msg, res => {
this.loading=false;
if(res.data.resultCode==1){
this.dataList = res.data.data.pageData;
this.pageCount = res.data.data.pageCount;
}else {
this.Info(res.data.message);
}
})
},
addObj(obj) {
if (obj) {
this.objOption = obj
} else {
this.objOption = null
}
this.isShowWenjuan = true;
},
//删除问卷
delQuestion(row){
let that = this;
this.$q.dialog({
title: "提示",
message: '是否删除该活动信息?',
cancel: {
label: "取消",
flat: true
},
ok: {
label: "确认",
flat: true,
focus: true
}
}).onOk(() => {
that.apipostDS(
"/api/Survey/DelSurvey",
{SurveyID:row.ID},
res => {
if (res.data.resultCode == 1) {
that.$q.notify({
icon: 'iconfont icon-chenggong',
color: 'accent',
timeout: 2000,
message: '数据删除成功!',
position: 'top'
})
that.getList();
} else {
that.$q.notify({
type: 'negative',
position: "top",
message: res.data.message
})
}
},
);
});
},
closeSaveForm(){
this.isShowWenjuan=false;
},
changePage(val) {
this.msg.pageIndex = val;
this.getList();
},
},
}
</script>
<style lang="sass">
@import url('~assets/css/table.sass')
</style>
\ No newline at end of file
const routes = [{
path: "/",
component: () =>
import("pages/user/login.vue")
import ("pages/user/login.vue")
},
{
path: "/login",
component: () =>
import("pages/user/login.vue")
import ("pages/user/login.vue")
},
{
path: "/autologin",
component: () =>
import("pages/auto-login.vue")
import ("pages/auto-login.vue")
},
{
path: "/home",
component: () =>
import("layouts/MainLayout.vue"),
import ("layouts/MainLayout.vue"),
children: [{
path: "",
component: () =>
import("src/pages/Work.vue")
import ("src/pages/Work.vue")
},
{
path: "/school/manager",
component: () =>
import("pages/school/manager.vue")
import ("pages/school/manager.vue")
},
{
path: "/school/teacher",
component: () =>
import("pages/school/teacher.vue")
import ("pages/school/teacher.vue")
},
{
path: "/school/assistant",
component: () =>
import("pages/school/assistant.vue")
import ("pages/school/assistant.vue")
},
{
path: "/school/classroom", //教室管理
component: () =>
import("pages/school/classroom.vue")
import ("pages/school/classroom.vue")
},
{
path: "/school/student", //学员管理
component: () =>
import("pages/school/student.vue")
import ("pages/school/student.vue")
},
{
path: "/school/sysuser", //后台用户管理
component: () =>
import("pages/school/sysuser.vue")
import ("pages/school/sysuser.vue")
},
{
path: "/school/receiveNumList", //资产的使用列表
component: () =>
import("pages/school/receiveNumList.vue")
import ("pages/school/receiveNumList.vue")
},
{
path: "/system/menu", //菜单管理
component: () =>
import("pages/system/menu.vue")
import ("pages/system/menu.vue")
},
{
path: "/system/noticeSysSet", //公告系统设置
component: () =>
import("pages/system/noticeSysSet.vue")
import ("pages/system/noticeSysSet.vue")
},
{
path: "/system/menufunction", //菜单功能权限管理
component: () =>
import("pages/system/menufunction.vue")
import ("pages/system/menufunction.vue")
},
{
path: "/system/dept", //部门管理
component: () =>
import("pages/system/dept.vue")
import ("pages/system/dept.vue")
},
{
path: "/system/stage", //客户阶段管理
component: () =>
import("pages/system/stage.vue")
import ("pages/system/stage.vue")
},
{
path: "/system/customType", //客户类型
component: () =>
import("pages/system/customType.vue")
import ("pages/system/customType.vue")
},
{
path: "/system/stuManageConfig", //学员管理配置
component: () =>
import("pages/system/stuManageConfig.vue")
import ("pages/system/stuManageConfig.vue")
},
{
path: "/system/area", //地区管理
component: () =>
import("pages/system/area.vue")
import ("pages/system/area.vue")
},
{
path: "/system/deptrelation", //部门关系图
component: () =>
import("pages/system/deptrelation.vue")
import ("pages/system/deptrelation.vue")
},
{
path: "/system/post", //岗位管理
component: () =>
import("pages/system/post.vue")
import ("pages/system/post.vue")
},
{
path: "/system/role", //角色管理
component: () =>
import("pages/system/role.vue")
import ("pages/system/role.vue")
},
{
path: "/system/siteconfig", //站点配置
component: () =>
import("pages/system/siteconfig.vue")
import ("pages/system/siteconfig.vue")
},
{
path: "/system/msgmanage", //短信管理
component: () =>
import("pages/system/msgmanage.vue")
import ("pages/system/msgmanage.vue")
},
{
path: "/system/processSet", //流程配置
component: () =>
import("pages/system/processSet.vue")
import ("pages/system/processSet.vue")
},
{
path: "/system/okrmanage", //OKR设置
component: () =>
import("pages/system/okrmanage.vue")
import ("pages/system/okrmanage.vue")
},
{
path: "/system/weChatConfig", //企业微信设置
component: () =>
import("pages/system/weChatConfig.vue")
import ("pages/system/weChatConfig.vue")
},
{
path: "/system/examConfig", //考试设置
component: () =>
import("pages/system/examConfig.vue")
import ("pages/system/examConfig.vue")
},
{
path: "/system/webkitManage", //网站管理
component: () =>
import("pages/system/webkitManage.vue")
import ("pages/system/webkitManage.vue")
},
{
path: "/system/menuManage", //菜单管理
component: () =>
import("pages/system/menuManage.vue")
import ("pages/system/menuManage.vue")
},
{
path: "/system/newsType", //新闻类型
component: () =>
import("pages/system/newsType.vue")
import ("pages/system/newsType.vue")
},
{
path: "/system/news", //新闻列表
component: () =>
import("pages/system/news.vue")
import ("pages/system/news.vue")
},
{
path: "/system/teacherManage", //教师团队管理
component: () =>
import("pages/system/teacherManage.vue")
import ("pages/system/teacherManage.vue")
},
{
path: "/system/consultManage", //咨询管理
component: () =>
import("pages/system/consultManage.vue")
import ("pages/system/consultManage.vue")
},
{
path: "/system/comicManage", //品牌漫画管理
component: () =>
import("pages/system/comicManage.vue")
import ("pages/system/comicManage.vue")
},
{
path: "/system/monthlyManage", //品牌月刊管理
component: () =>
import("pages/system/monthlyManage.vue")
import ("pages/system/monthlyManage.vue")
},
{
path: "/system/recruitment", // 招聘管理
component: () =>
import("pages/system/recruitment.vue")
import ("pages/system/recruitment.vue")
},
{
path: "/system/recruitmentType", //招聘类型
component: () =>
import("pages/system/recruitmentType.vue")
import ("pages/system/recruitmentType.vue")
},
{
path: "/system/jobapplyManage", //招聘申请管理
component: () =>
import("pages/system/jobapplyManage.vue")
import ("pages/system/jobapplyManage.vue")
},
{
path: "/system/b2bindex", //同业小程序 首页配置
component: () =>
import("pages/system/b2bindex.vue")
import ("pages/system/b2bindex.vue")
},
{
path: "/system/dutyManagement", //值班管理
component: () =>
import("pages/system/dutyManagement.vue")
import ("pages/system/dutyManagement.vue")
},
{
path: "/system/receiptManage", //收据设置
component: () =>
import("pages/system/receiptManage.vue")
import ("pages/system/receiptManage.vue")
},
{
path: "/system/platformdeploy", //平台配置
component: () =>
import("pages/system/platformdeploy.vue")
import ("pages/system/platformdeploy.vue")
},
{
path: "/system/smallProgramInfo", //小程序信息
component: () =>
import("pages/system/smallProgramInfo.vue")
import ("pages/system/smallProgramInfo.vue")
},
{
path: "/course/subject", //科目管理
component: () =>
import("pages/course/subject.vue")
import ("pages/course/subject.vue")
},
{
path: "/course/catagory", //课程分类
component: () =>
import("pages/course/catagory.vue")
import ("pages/course/catagory.vue")
},
{
path: "/course/course", //课程管理
component: () =>
import("pages/course/course.vue")
import ("pages/course/course.vue")
},
{
path: "/course/listenCourse", //试听课程管理
component: () =>
import("pages/course/listenCourse.vue")
import ("pages/course/listenCourse.vue")
},
{
path: "/course/lessonNotes", //课程教案
component: () =>
import("pages/course/lessonNotes.vue")
import ("pages/course/lessonNotes.vue")
},
{
path: "/course/classManage", //班级管理
component: () =>
import("pages/course/classManage.vue")
import ("pages/course/classManage.vue")
},
{
path: "/course/monthLessonCost", //班级管理 月度课耗
component: () =>
import("pages/course/monthLessonCost.vue")
import ("pages/course/monthLessonCost.vue")
},
{
path: "/course/makeup", //补课管理
component: () =>
import("pages/course/makeup.vue")
import ("pages/course/makeup.vue")
},
{
path: "/course/baseSet", //基础设置
component: () =>
import("pages/course/baseSet.vue")
import ("pages/course/baseSet.vue")
},
{
path: "/course/classPlan", //上课计划
component: () =>
import("pages/course/classPlan.vue")
import ("pages/course/classPlan.vue")
},
{
path: "/course/paymentDetail", //收支明细
component: () =>
import("pages/course/paymentDetail.vue")
import ("pages/course/paymentDetail.vue")
},
{
path: "/course/classorder", //班级订单
component: () =>
import("pages/course/classorder.vue")
import ("pages/course/classorder.vue")
},
{
path: "/course/socialclass", //教学奖励-社会班设置
component: () =>
import("pages/course/socialclass.vue")
import ("pages/course/socialclass.vue")
},
{
path: "/course/studentClass", //教学奖励-学生班设置
component: () =>
import("pages/course/studentClass.vue")
import ("pages/course/studentClass.vue")
},
{
path: "/course/teacherLesson", //教师备课列表
component: () =>
import("pages/course/teacherLesson.vue")
import ("pages/course/teacherLesson.vue")
},
{
path: "/course/lessonPreparation", //教师备课
component: () =>
import("pages/course/lessonPreparation.vue")
import ("pages/course/lessonPreparation.vue")
},
{
path: "/course/prepareclassDetails", //教师备课 备课详情
component: () =>
import("pages/course/prepareclassDetails.vue")
import ("pages/course/prepareclassDetails.vue")
},
{
path: "/financial/PlatformAccount", //平台账户
component: () =>
import("pages/financial/PlatformAccount.vue")
import ("pages/financial/PlatformAccount.vue")
},
{
path: "/financial/CompanyAccount", //银行账户
component: () =>
import("pages/financial/CompanyAccount.vue")
import ("pages/financial/CompanyAccount.vue")
},
{
path: "/financial/salesRules", //销售提成规则
component: () =>
import("pages/financial/salesRules.vue")
import ("pages/financial/salesRules.vue")
},
{
path: "/financial/lessonCostStatistics", //课耗统计汇总表
component: () =>
import("pages/financial/lessonCostStatistics.vue")
import ("pages/financial/lessonCostStatistics.vue")
},
{
path: "/financial/teacherclassfee", //老师课时消费明细列表
component: () =>
import("pages/financial/teacherclassfee.vue")
import ("pages/financial/teacherclassfee.vue")
},
{
path: "/financial/saleAchievementsRank", //销售业绩排名统计
component: () =>
import("pages/financial/saleAchievementsRank.vue")
import ("pages/financial/saleAchievementsRank.vue")
},
{
path: "/financial/studentsClassfee", //学生课耗明细列表
component: () =>
import("pages/financial/studentsClassfee.vue")
import ("pages/financial/studentsClassfee.vue")
},
{
path: "/financial/salesCommission", //提成周期列表
component: () =>
import("pages/financial/salesCommission.vue")
import ("pages/financial/salesCommission.vue")
},
{
path: "/financial/CommissionDetail", //周期提成 用户统计列表
component: () =>
import("pages/financial/CommissionDetail.vue")
import ("pages/financial/CommissionDetail.vue")
},
{
path: "/financial/userCommissionDetails", //周期提成 用户提成明细
component: () =>
import("pages/financial/userCommissionDetails.vue")
import ("pages/financial/userCommissionDetails.vue")
},
{
path: "/financial/cycleOrderList", //周期提成 订单提成查询
component: () =>
import("pages/financial/cycleOrderList.vue")
import ("pages/financial/cycleOrderList.vue")
},
{
path: "/financial/cycleList", //销售提成统计
component: () =>
import("pages/financial/cycleList.vue")
import ("pages/financial/cycleList.vue")
},
{
path: "/financial/TeamRevenueReport", //营收报表
component: () =>
import("pages/financial/TeamRevenueReport.vue")
import ("pages/financial/TeamRevenueReport.vue")
},
{
path: "/financial/EasyReport", //简易报表
component: () =>
import("pages/financial/EasyReport.vue")
import ("pages/financial/EasyReport.vue")
},
{
path: "/financial/orderCompleteStatistics", //订单完成统计
component: () =>
import("pages/financial/orderCompleteStatistics.vue")
import ("pages/financial/orderCompleteStatistics.vue")
},
{
path: "/financial/JumpReport", //单据明细
component: () =>
import("pages/financial/JumpReport.vue")
import ("pages/financial/JumpReport.vue")
},
{
path: "/financial/institutionsManagement", //金融机构管理
component: () =>
import("pages/financial/institutionsManagement.vue")
import ("pages/financial/institutionsManagement.vue")
},
{
path: "/financial/currencyManagement", //币种管理
component: () =>
import("pages/financial/currencyManagement.vue")
import ("pages/financial/currencyManagement.vue")
},
{
path: "/financial/AccountType", //账户类型
component: () =>
import("pages/financial/AccountType.vue")
import ("pages/financial/AccountType.vue")
},
{
path: "/financial/AccountPageList", //关联账户
component: () =>
import("pages/financial/AccountPageList.vue")
import ("pages/financial/AccountPageList.vue")
},
{
path: "/financial/CostType", //费用类型
component: () =>
import("pages/financial/CostType.vue")
import ("pages/financial/CostType.vue")
},
{
path: "/financial/paySetting", //支付配置管理
component: () =>
import("pages/financial/paySetting.vue")
import ("pages/financial/paySetting.vue")
},
{
path: '/financial/HistoryRateQuery', //历史汇率
component: () =>
import("pages/financial/HistoryRateQuery.vue")
import ("pages/financial/HistoryRateQuery.vue")
},
{
path: "/financial/Maninfo", //未认款信息
component: () =>
import("pages/financial/Maninfo.vue")
import ("pages/financial/Maninfo.vue")
},
{
path: "/financial/Manfunds", //未认款管理
component: () =>
import("pages/financial/Manfunds.vue")
import ("pages/financial/Manfunds.vue")
},
{
path: "/financial/HuiChaImport", //汇差批量制单
component: () =>
import("pages/financial/HuiChaImport.vue")
import ("pages/financial/HuiChaImport.vue")
},
{
path: "/financial/CashAccount", //汇差批量制单
component: () =>
import("pages/financial/CashAccount.vue")
import ("pages/financial/CashAccount.vue")
},
{
path: "/financial/sellCommissionRules", //提成规则
component: () =>
import("pages/financial/sellCommissionRules.vue")
import ("pages/financial/sellCommissionRules.vue")
},
{
path: "/financial/FProcessManagement", //流程管理、
component: () =>
import("pages/financial/FProcessManagement.vue")
import ("pages/financial/FProcessManagement.vue")
},
{
path: "/financial/XProcessManagement", //资产流程管理、
component: () =>
import("pages/financial/XProcessManagement.vue")
import ("pages/financial/XProcessManagement.vue")
},
{
path: "/financial/addFinancialProcess", //新增修改等级
component: () =>
import("pages/financial/addFinancialProcess.vue")
import ("pages/financial/addFinancialProcess.vue")
},
{
path: "/financial/XaddFinancialProcess", //新增修改资产流程
component: () =>
import("pages/financial/XaddFinancialProcess.vue")
import ("pages/financial/XaddFinancialProcess.vue")
},
{
path: "/financial/accountingWork", //会计窗口
component: () =>
import("pages/financial/accountingWork.vue")
import ("pages/financial/accountingWork.vue")
},
{
path: "/financial/CashierWork", //出纳窗口
component: () =>
import("pages/financial/CashierWork.vue")
import ("pages/financial/CashierWork.vue")
},
{
path: "/financial/empBankAccount", //常用付款对象
component: () =>
import("pages/financial/empBankAccount.vue")
import ("pages/financial/empBankAccount.vue")
},
{
path: "/financial/activityCommission", //活动提成
component: () =>
import("pages/financial/activityCommission.vue")
import ("pages/financial/activityCommission.vue")
},
{
path: "/financial/accDetail/CashAccDetail", //现金账户明细
component: () =>
import("pages/financial/accDetail/CashAccDetail.vue")
import ("pages/financial/accDetail/CashAccDetail.vue")
},
{
path: "/financial/accDetail/CompanyAccDetail", //银行账户明细
component: () =>
import("pages/financial/accDetail/CompanyAccDetail.vue")
import ("pages/financial/accDetail/CompanyAccDetail.vue")
},
{
path: "/financial/accDetail/PlatformAccDetail", //平台账户明细
component: () =>
import("pages/financial/accDetail/PlatformAccDetail.vue")
import ("pages/financial/accDetail/PlatformAccDetail.vue")
},
{
path: "/financial/accDetail/TransferReport", //银行日报表
component: () =>
import("pages/financial/accDetail/TransferReport.vue")
import ("pages/financial/accDetail/TransferReport.vue")
},
{
path: "/financial/accDetail/newTransferReport", //新银行日报表
component: () =>
import("pages/financial/accDetail/newTransferReport.vue")
import ("pages/financial/accDetail/newTransferReport.vue")
},
{
path: "/financial/accDetail/CashReport", //现金日报表
component: () =>
import("pages/financial/accDetail/CashReport.vue")
import ("pages/financial/accDetail/CashReport.vue")
}, {
path: "/financial/accDetail/newCashReport", //新现金日报表
component: () =>
import("pages/financial/accDetail/newCashReport.vue")
import ("pages/financial/accDetail/newCashReport.vue")
},
{
path: "/financial/financalDocument/ChoiceAddFinancialDocuments",
component: () =>
import("pages/financial/financalDocument/ChoiceAddFinancialDocuments.vue")
import ("pages/financial/financalDocument/ChoiceAddFinancialDocuments.vue")
},
{
path: "/financial/financalDocument/batchVoucher",
component: () =>
import("pages/financial/financalDocument/batchVoucher.vue")
import ("pages/financial/financalDocument/batchVoucher.vue")
},
{
path: "/financial/financalDocument/addReceivablesDocuments",
component: () =>
import("pages/financial/financalDocument/addReceivablesDocuments.vue")
import ("pages/financial/financalDocument/addReceivablesDocuments.vue")
},
{
path: "/financial/financalDocument/invoicesManager", //发票管理
component: () =>
import("pages/financial/financalDocument/invoicesManager.vue")
import ("pages/financial/financalDocument/invoicesManager.vue")
},
{
path: "/financial/financalDocument/refundQuery", //发票管理
component: () =>
import("pages/financial/financalDocument/refundQuery.vue")
import ("pages/financial/financalDocument/refundQuery.vue")
},
{
path: "/financial/financalDocument/CapitalAllocation", //资金调拨
component: () =>
import("pages/financial/financalDocument/CapitalAllocation.vue")
import ("pages/financial/financalDocument/CapitalAllocation.vue")
},
{
path: "/financial/financalDocument/addCapitalAllocation", //资金调拨 新增
component: () =>
import("pages/financial/financalDocument/addCapitalAllocation.vue")
import ("pages/financial/financalDocument/addCapitalAllocation.vue")
},
{
path: "/financial/financalDocument/RecPayQuery", //收支查询
component: () =>
import("pages/financial/financalDocument/RecPayQuery.vue")
import ("pages/financial/financalDocument/RecPayQuery.vue")
},
{
path: "/financial/financalDocument/FinancialDocuments", //我的财务单据
component: () =>
import("pages/financial/financalDocument/FinancialDocuments.vue")
import ("pages/financial/financalDocument/FinancialDocuments.vue")
},
{
path: "/financial/financalDocument/GetWOrkTransferPageLis", //员工财务单据转交
component: () =>
import("pages/financial/financalDocument/GetWOrkTransferPageLis.vue")
import ("pages/financial/financalDocument/GetWOrkTransferPageLis.vue")
},
{
path: "/financial/financalDocument/WorkEntrustmentMy", //工作委托
component: () =>
import("pages/financial/financalDocument/WorkEntrustmentMy.vue")
import ("pages/financial/financalDocument/WorkEntrustmentMy.vue")
},
{
path: "/financial/financalDocument/CapitalAllocationDetail", //资金调拨单 详情
component: () =>
import("pages/financial/financalDocument/CapitalAllocationDetail.vue")
import ("pages/financial/financalDocument/CapitalAllocationDetail.vue")
},
{
path: "/financial/financalDocument/addFinancialDocuments", //新增财务单据
component: () =>
import("pages/financial/financalDocument/addFinancialDocuments.vue")
import ("pages/financial/financalDocument/addFinancialDocuments.vue")
},
{
path: "/financial/financalDocument/FinancialDocumentsDetail", //我的财务单据详情
component: () =>
import("pages/financial/financalDocument/FinancialDocumentsDetail.vue")
import ("pages/financial/financalDocument/FinancialDocumentsDetail.vue")
},
{
path: "/financial/financalDocument/PropertyProcurementDetails", //资产采购详情
component: () =>
import("pages/financial/financalDocument/PropertyProcurementDetails.vue")
import ("pages/financial/financalDocument/PropertyProcurementDetails.vue")
},
{
path: "/financial/financalDocument/SuppliesProcurementDetail", //耗材采购详情
component: () =>
import("pages/financial/financalDocument/SuppliesProcurementDetail.vue")
import ("pages/financial/financalDocument/SuppliesProcurementDetail.vue")
},
{
path: "/financial/financalDocument/InAndOutDdetails", //财务单据 教育耗材出库
component: () =>
import("pages/financial/financalDocument/InAndOutDdetails.vue")
import ("pages/financial/financalDocument/InAndOutDdetails.vue")
},
{
path: "/financial/financalDocument/receiptManager", //财务收据管理
component: () =>
import("pages/financial/financalDocument/receiptManager.vue")
import ("pages/financial/financalDocument/receiptManager.vue")
},
{
path: "/financial/financalDocument/BasicDocuments", //财务 财务单据 审核标准单据
component: () =>
import("pages/financial/financalDocument/BasicDocuments.vue")
import ("pages/financial/financalDocument/BasicDocuments.vue")
},
{
path: "/financial/reportform/RecPayQueryTeam", //财务报表 月度班级收支统计
component: () =>
import("pages/financial/reportform/RecPayQueryTeam.vue")
import ("pages/financial/reportform/RecPayQueryTeam.vue")
},
{
path: "/financial/reportform/RevenueFileMan", //财务报表 营收文件管理
component: () =>
import("pages/financial/reportform/RevenueFileMan.vue")
import ("pages/financial/reportform/RevenueFileMan.vue")
},
{
path: "/financial/reportform/settleAccounts", //财务报表 财务轧账月份列表
component: () =>
import("pages/financial/reportform/settleAccounts.vue")
import ("pages/financial/reportform/settleAccounts.vue")
},
{
path: "/financial/reportform/activityDeploy", //财务流程 获取活动配置
component: () =>
import("pages/financial/reportform/activityDeploy.vue")
import ("pages/financial/reportform/activityDeploy.vue")
},
{
path: "/financial/reportform/activityCommissionDetails", //工作台 活动提成明细
component: () =>
import("pages/financial/reportform/activityCommissionDetails.vue")
import ("pages/financial/reportform/activityCommissionDetails.vue")
},
{
path: "/financial/reportform/activityCommissionForOrderList", //工作台 查询订单活动提成明细
component: () =>
import("pages/financial/reportform/activityCommissionForOrderList.vue")
import ("pages/financial/reportform/activityCommissionForOrderList.vue")
},
{
path: "/financial/reportform/activityCommissionUserList", //工作台 获取活动提成用户列表
component: () =>
import("pages/financial/reportform/activityCommissionUserList.vue")
import ("pages/financial/reportform/activityCommissionUserList.vue")
},
{
path: "/financial/reportform/activityStatistics", //工作台 获取活动提成统计
component: () =>
import("pages/financial/reportform/activityStatistics.vue")
import ("pages/financial/reportform/activityStatistics.vue")
},
{
path: "/financial/studyabroad/studyAbroadRules", //财务流程 留学提成规则
component: () =>
import("pages/financial/studyabroad/studyAbroadRules.vue")
import ("pages/financial/studyabroad/studyAbroadRules.vue")
},
{
path: "/financial/studyabroad/studyAbroadCommission", //工作台 留学销售提成
component: () =>
import("pages/financial/studyabroad/studyAbroadCommission.vue")
import ("pages/financial/studyabroad/studyAbroadCommission.vue")
},
{
path: "/financial/studyabroad/studyAbroadCommissionTJ", //工作台 留学销售统计
component: () =>
import("pages/financial/studyabroad/studyAbroadCommissionTJ.vue")
import ("pages/financial/studyabroad/studyAbroadCommissionTJ.vue")
},
{
path: "/financial/studyabroad/commissionDetail", //工作台 留学销售列表
component: () =>
import("pages/financial/studyabroad/commissionDetail.vue")
import ("pages/financial/studyabroad/commissionDetail.vue")
},
{
path: "/financial/studyabroad/sBuserCommissionDetails", //工作台 留学销售明细
component: () =>
import("pages/financial/studyabroad/sBuserCommissionDetails.vue")
import ("pages/financial/studyabroad/sBuserCommissionDetails.vue")
},
{
path: "/financial/studyabroad/ordercommission", //工作台 获取销售提成-订单跳转列表 传的参数不同
component: () =>
import("pages/financial/studyabroad/ordercommission.vue")
import ("pages/financial/studyabroad/ordercommission.vue")
},
{
path: "/financial/contribution/toConfigure", //财务流程 投稿规则
component: () =>
import("pages/financial/contribution/toConfigure.vue")
import ("pages/financial/contribution/toConfigure.vue")
},
{
path: "/financial/contribution/contributeCommission", // 工作台 投稿销售提成
component: () =>
import("pages/financial/contribution/contributeCommission.vue")
import ("pages/financial/contribution/contributeCommission.vue")
},
{
path: "/financial/contribution/commissionUserList", // 工作台 投稿销售提成 用户列表
component: () =>
import("pages/financial/contribution/commissionUserList.vue")
import ("pages/financial/contribution/commissionUserList.vue")
},
{
path: "/financial/contribution/CommissionUserDetailList", // 工作台 投稿销售提成 用户详情
component: () =>
import("pages/financial/contribution/CommissionUserDetailList.vue")
import ("pages/financial/contribution/CommissionUserDetailList.vue")
},
{
path: "/financial/contribution/commissionStatistics", // 工作台 投稿销售统计
component: () =>
import("pages/financial/contribution/commissionStatistics.vue")
import ("pages/financial/contribution/commissionStatistics.vue")
},
{
path: "/financial/market/commissionRule", // 市场顾问 提现规则
component: () =>
import("pages/financial/market/commissionRule.vue")
import ("pages/financial/market/commissionRule.vue")
},
{
path: "/financial/market/courseConsultant", // 课程顾问 提现规则
component: () =>
import("pages/financial/market/courseConsultant.vue")
import ("pages/financial/market/courseConsultant.vue")
},
{
path: "/financial/market/achievementPeriodsList", // 业绩提成 分期列表
component: () =>
import("pages/financial/market/achievementPeriodsList.vue")
import ("pages/financial/market/achievementPeriodsList.vue")
},
{
path: "/financial/market/employeeCommission", // 业绩提成 员工提成
component: () =>
import("pages/financial/market/employeeCommission.vue")
import ("pages/financial/market/employeeCommission.vue")
},
{
path: "/financial/market/AchievementsUserDetailList", // 业绩提成 员工提成明细列表
component: () =>
import("pages/financial/market/AchievementsUserDetailList.vue")
import ("pages/financial/market/AchievementsUserDetailList.vue")
},
{
path: "/financial/market/AchievementsForOrderList", // 业绩提成 获取订单跳转 提成详情
component: () =>
import("pages/financial/market/AchievementsForOrderList.vue")
import ("pages/financial/market/AchievementsForOrderList.vue")
},
{
path: "/financial/market/marketStatistics", // 业绩提成 统计
component: () =>
import("pages/financial/market/marketStatistics.vue")
import ("pages/financial/market/marketStatistics.vue")
},
{
path: "/financial/market/empBonus", // 员工人头奖励
component: () =>
import("pages/financial/market/empBonus.vue")
import ("pages/financial/market/empBonus.vue")
},
{
path: "/financial/market/empBonusDetail", // 员工人头奖励详情
component: () =>
import("pages/financial/market/empBonusDetail.vue")
import ("pages/financial/market/empBonusDetail.vue")
},
{
path: "/financial/returnPassbook/ReturnperiodsList", // 返佣期数列表
component: () =>
import("pages/financial/returnPassbook/ReturnperiodsList.vue")
import ("pages/financial/returnPassbook/ReturnperiodsList.vue")
},
{
path: "/financial/returnPassbook/ReturnUserList", // 返佣 用户分组列表
component: () =>
import("pages/financial/returnPassbook/ReturnUserList.vue")
import ("pages/financial/returnPassbook/ReturnUserList.vue")
},
{
path: "/financial/returnPassbook/returnpassbookStatistics", // 返佣 幸福存折明细
component: () =>
import("pages/financial/returnPassbook/returnpassbookStatistics.vue")
import ("pages/financial/returnPassbook/returnpassbookStatistics.vue")
},
{
path: "/financial/returnPassbook/PassbookperiodsList", // 幸福存折期数列表
component: () =>
import("pages/financial/returnPassbook/PassbookperiodsList.vue")
import ("pages/financial/returnPassbook/PassbookperiodsList.vue")
},
{
path: "/administration/document", //行政公告
component: () =>
import("pages/administration/document.vue")
import ("pages/administration/document.vue")
},
{
path: "/administration/documentApproval", //行政公告审批
component: () =>
import("pages/administration/documentApproval.vue")
import ("pages/administration/documentApproval.vue")
},
{
path: "/administration/Approval", //行政审批
component: () =>
import("pages/administration/Approval.vue")
import ("pages/administration/Approval.vue")
},
{
path: "/administration/ApprovalProcess", //审批流程详情
component: () =>
import("pages/administration/ApprovalProcess.vue")
import ("pages/administration/ApprovalProcess.vue")
},
{
path: "/administration/processDesign", //分条件审批
component: () =>
import("pages/administration/processDesign.vue")
import ("pages/administration/processDesign.vue")
},
{
path: "/administration/updateProcessDesign", //分条件审批
component: () =>
import("pages/administration/updateProcessDesign.vue")
import ("pages/administration/updateProcessDesign.vue")
},
{
path: "/administration/myApprovalList", //我的审批
component: () =>
import("pages/administration/myApprovalList.vue")
import ("pages/administration/myApprovalList.vue")
},
{
path: "/administration/myApproval", //我的发起
component: () =>
import("pages/administration/myApproval.vue")
import ("pages/administration/myApproval.vue")
}, {
path: "/administration/forMyApproval", //我的审批
component: () =>
import("pages/administration/forMyApproval.vue")
import ("pages/administration/forMyApproval.vue")
},
{
path: "/administration/ApprovalStatistical", //审批统计
component: () =>
import("pages/administration/ApprovalStatistical.vue")
import ("pages/administration/ApprovalStatistical.vue")
},
{
path: "/administration/sendToMeApproval", //抄送
component: () =>
import("pages/administration/sendToMeApproval.vue")
import ("pages/administration/sendToMeApproval.vue")
},
{
path: "/administration/leaveApproval", //请假
component: () =>
import("pages/administration/leaveApproval.vue")
import ("pages/administration/leaveApproval.vue")
},
{
path: "/administration/Attendance", //考勤管理
component: () =>
import("pages/administration/Attendance.vue")
import ("pages/administration/Attendance.vue")
},
{
path: "/administration/AttendanceRules", //考勤设置
component: () =>
import("pages/administration/AttendanceRules.vue")
import ("pages/administration/AttendanceRules.vue")
},
{
path: "/administration/outWorkApproval", //外勤考勤
component: () =>
import("pages/administration/outWorkApproval.vue")
import ("pages/administration/outWorkApproval.vue")
},
{
path: "/administration/registContractManage", //报名合同管理
component: () =>
import("pages/administration/registContractManage.vue")
import ("pages/administration/registContractManage.vue")
},
{
path: "/administration/dropSchoolManage", //退学协议管理
component: () =>
import("pages/administration/dropSchoolManage.vue")
import ("pages/administration/dropSchoolManage.vue")
},
{
path: "/administration/starBucks/starBucksTotal", //星巴克-统计
component: () =>
import("pages/administration/starBucks/starBucksTotal.vue")
import ("pages/administration/starBucks/starBucksTotal.vue")
},
{
path: "/administration/starBucks/starBucksDetail", //星巴克-明细
component: () =>
import("pages/administration/starBucks/starBucksDetail.vue")
import ("pages/administration/starBucks/starBucksDetail.vue")
},
{
path: "/sale/japaneseTrain", //日语培训列表
component: () =>
import("pages/sale/japaneseTrain.vue")
import ("pages/sale/japaneseTrain.vue")
},
{
path: "/sale/courseList", //销售 课程预览
component: () =>
import("pages/sale/courseList.vue")
import ("pages/sale/courseList.vue")
},
{
path: "/sale/studyjob", //留学就业产品
component: () =>
import("pages/sale/studyjob.vue")
import ("pages/sale/studyjob.vue")
},
{
path: "/sale/courseoffer", //销售 报价单管理
component: () =>
import("pages/sale/courseoffer.vue")
import ("pages/sale/courseoffer.vue")
},
{
path: "/sale/myoffer", //销售 我的报价单
component: () =>
import("pages/sale/myoffer.vue")
import ("pages/sale/myoffer.vue")
},
{
path: "/sale/myOrder", //销售 我的订单
component: () =>
import("pages/sale/myOrder.vue")
import ("pages/sale/myOrder.vue")
},
{
path: "/sale/orderStatistics", //销售 报名统计
component: () =>
import("pages/sale/orderStatistics.vue")
import ("pages/sale/orderStatistics.vue")
},
{
path: "/sale/studyOrder", //销售 我的留学就业订单
component: () =>
import("pages/sale/studyOrder.vue")
import ("pages/sale/studyOrder.vue")
},
{
path: "/sale/studyOrderStatistics", //销售 我的留学就业订单统计
component: () =>
import("pages/sale/studyOrderStatistics.vue")
import ("pages/sale/studyOrderStatistics.vue")
},
{
path: "/sale/SuppliesStockOutApplyForMan", //销售 出库管理
component: () =>
import("pages/sale/SuppliesStockOutApplyForMan.vue")
import ("pages/sale/SuppliesStockOutApplyForMan.vue")
},
{
path: "/sale/SuppliesStockOutApplyForDetail", //销售 出库管理详情
component: () =>
import("pages/sale/SuppliesStockOutApplyForDetail.vue")
import ("pages/sale/SuppliesStockOutApplyForDetail.vue")
},
{
path: "/sale/contractManage", //销售 合同管理
component: () =>
import("pages/sale/contractManage.vue")
import ("pages/sale/contractManage.vue")
},
{
path: "/sale/contractRefund", //销售 退课管理
component: () =>
import("pages/sale/contractRefund.vue")
import ("pages/sale/contractRefund.vue")
},
{
path: "/sale/contractEdit", //销售 新增-编辑-查看合同
component: () =>
import("pages/sale/contractEdit.vue")
import ("pages/sale/contractEdit.vue")
},
{
path: "/sale/contractAudit", //销售 合同审核
component: () =>
import("pages/sale/contractAudit_new.vue")
import ("pages/sale/contractAudit_new.vue")
},
{
path: "/sale/studentList", //销售 学生名单
component: () =>
import("pages/sale/studentList.vue")
import ("pages/sale/studentList.vue")
},
{
path: "/sale/visitorRegistrat", //销售 访客登记
component: () =>
import("pages/sale/visitorRegistrat.vue")
import ("pages/sale/visitorRegistrat.vue")
},
{
path: "/sale/b2bcustomer", //销售 我的同行
component: () =>
import("pages/sale/b2bcustomer.vue")
import ("pages/sale/b2bcustomer.vue")
},
{
path: "/sale/b2bAllCustomer", //销售 同行管理
component: () =>
import("pages/sale/b2bAllCustomer.vue")
import ("pages/sale/b2bAllCustomer.vue")
},
{
path: "/sale/enterpriseManage", //销售 企业管理
component: () =>
import("pages/sale/enterpriseManage.vue")
import ("pages/sale/enterpriseManage.vue")
},
{
path: "/sale/b2bcustomerapprove", //销售 同行审批
component: () =>
import("pages/sale/b2bcustomerapprove.vue")
import ("pages/sale/b2bcustomerapprove.vue")
},
{
path: "/sale/b2bwithdraw", //b2b 提现管理
component: () =>
import("pages/sale/b2bwithdraw.vue")
import ("pages/sale/b2bwithdraw.vue")
},
{
path: "/sale/saleTask", //销售 营销任务
component: () =>
import("pages/sale/saleTask.vue")
import ("pages/sale/saleTask.vue")
},
{
path: "/sale/finishTask", //销售 营销任务
component: () =>
import("pages/sale/finishTask.vue")
import ("pages/sale/finishTask.vue")
},
{
path: "/sale/finishTaskDetails", //销售 营销任务完成详情
component: () =>
import("pages/sale/finishTaskDetails.vue")
import ("pages/sale/finishTaskDetails.vue")
},
{
path: "/sale/happyPassbook", //客户管理-幸福存折
component: () =>
import("pages/sale/happyPassbook.vue")
import ("pages/sale/happyPassbook.vue")
},
{
path: "/sale/commsionManagement", //客户管理-返佣管理
component: () =>
import("pages/sale/commsionManagement.vue")
import ("pages/sale/commsionManagement.vue")
},
{
path: "/sale/activityList", //销售 活动列表
component: () =>
import("pages/sale/activityList.vue")
import ("pages/sale/activityList.vue")
},
{
path: "/sale/activeOrderList", //销售 活动订单中心
component: () =>
import("pages/sale/activeOrderList.vue")
import ("pages/sale/activeOrderList.vue")
},
{
path: "/sale/myActiveOrder", //销售 我的活动订单
component: () =>
import("pages/sale/myActiveOrder.vue")
import ("pages/sale/myActiveOrder.vue")
},
{
path: "/sale/activeOrderStatistics", //销售 活动订单统计
component: () =>
import("pages/sale/activeOrderStatistics.vue")
import ("pages/sale/activeOrderStatistics.vue")
},
{
path: "/sale/mystu", //我的客户
component: () =>
import("pages/sale/mystu.vue")
import ("pages/sale/mystu.vue")
},
{
path: "/sale/makeupRate", //转化率
component: () =>
import("pages/sale/makeupRate.vue")
import ("pages/sale/makeupRate.vue")
},
{
path: "/sale/visitTransform", //到访转化
component: () =>
import("pages/sale/visitTransform.vue")
import ("pages/sale/visitTransform.vue")
},
{
path: "/sale/channelDetail", //细分渠道
component: () =>
import("pages/sale/channelDetail.vue")
import ("pages/sale/channelDetail.vue")
},
{
path: "/sale/auditionList", //试听列表
component: () =>
import("pages/sale/auditionList.vue")
import ("pages/sale/auditionList.vue")
},
{
path: "/sale/AudiopaymentDetail", //试听-收支明细
component: () =>
import("pages/sale/AudiopaymentDetail.vue")
import ("pages/sale/AudiopaymentDetail.vue")
},
{
path: "/sale/studentTracking", //学员跟踪分页列表
component: () =>
import("pages/sale/studentTracking.vue")
import ("pages/sale/studentTracking.vue")
},
{
path: "/sale/guestConsultation", //客人咨询分页列表
component: () =>
import("pages/sale/guestConsultation.vue")
import ("pages/sale/guestConsultation.vue")
},
{
path: "/sale/monthTotal", //月份统计
component: () =>
import("pages/sale/monthTotal.vue")
import ("pages/sale/monthTotal.vue")
},
{
path: "/sale/yearTotal", //年度统计
component: () =>
import("pages/sale/yearTotal.vue")
import ("pages/sale/yearTotal.vue")
},
{
path: "/sale/customDailyTotal", //市场部每日统计
component: () =>
import("pages/sale/customDailyTotal.vue")
import ("pages/sale/customDailyTotal.vue")
},
{
path: "/sale/customMonthlyTotal", //市场部月度统计
component: () =>
import("pages/sale/customMonthlyTotal.vue")
import ("pages/sale/customMonthlyTotal.vue")
},
{
path: "/sale/customyearTotal", //市场部年度统计
component: () =>
import("pages/sale/customyearTotal.vue")
import ("pages/sale/customyearTotal.vue")
},
{
path: "/sale/everyMonthTotal", //每月统计
component: () =>
import("pages/sale/everyMonthTotal.vue")
import ("pages/sale/everyMonthTotal.vue")
},
{
path: "/sale/companyday", //全公司客户数据每日统计
component: () =>
import("pages/sale/companyday.vue")
import ("pages/sale/companyday.vue")
},
{
path: "/sale/companymonth", //全公司客户数据每月统计
component: () =>
import("pages/sale/companymonth.vue")
import ("pages/sale/companymonth.vue")
},
{
path: "/sale/companyYear", //全公司客户数据年度统计
component: () =>
import("pages/sale/companyYear.vue")
import ("pages/sale/companyYear.vue")
},
{
path: "/activity/activeType", //活动 活动类型
component: () =>
import("pages/activity/activeType.vue")
import ("pages/activity/activeType.vue")
},
{
path: "/activity/activityList", //活动 活动列表
component: () =>
import("pages/activity/activityList.vue")
import ("pages/activity/activityList.vue")
},
{
path: "/activity/activeSignUpList", //活动 活动报名列表
component: () =>
import("pages/activity/activeSignUpList.vue")
import ("pages/activity/activeSignUpList.vue")
},
{
path: "/activity/activeSignUpList2", //活动 活动报名列表type2
component: () =>
import("pages/activity/activeSignUpList2.vue")
import ("pages/activity/activeSignUpList2.vue")
},
{
path: "/activity/activeSummary", //活动 活动总结
component: () =>
import("pages/activity/activeSummary.vue")
import ("pages/activity/activeSummary.vue")
},
{
path: "/activity/materialMan", //活动 活动图片与视频
component: () =>
import("pages/activity/materialMan.vue")
import ("pages/activity/materialMan.vue")
},
{
path: "/activity/payment", //活动 活动收支
component: () =>
import("pages/activity/payment.vue")
import ("pages/activity/payment.vue")
},
{
path: "/activity/activeDetail", //活动 活动详情
component: () =>
import("pages/activity/activeDetail.vue")
import ("pages/activity/activeDetail.vue")
},
{
path: "/activity/copyActive", //活动 复制活动
component: () =>
import("pages/activity/copyActive.vue")
import ("pages/activity/copyActive.vue")
},
{
path: "/activity/advmanager", //活动 广告图管理
component: () =>
import("pages/activity/advmanager.vue")
import ("pages/activity/advmanager.vue")
},
{
path: "/activity/makeAd", //活动 制作广告图
component: () =>
import("pages/activity/makeAd.vue")
import ("pages/activity/makeAd.vue")
},
{
path: "/activity/myadvert", //活动 我的广告图
component: () =>
import("pages/activity/myadvert.vue")
import ("pages/activity/myadvert.vue")
},
{
path: "/activity/QuesActivityList", // 活动 官方活动列表
component: () =>
import("pages/activity/QuesActivityList.vue")
import ("pages/activity/QuesActivityList.vue")
},
{
path: "/activity/questionnaireList", //问卷调查表
component: () =>
import("pages/activity/questionnaireList.vue")
import ("pages/activity/questionnaireList.vue")
},
{
path: "/activity/resultPageList", //查看结果
component: () =>
import("pages/activity/resultPageList.vue")
import ("pages/activity/resultPageList.vue")
},
{
path: "/activity/configurationstudentsList", //查看结果
component: () =>
import ("pages/activity/configurationstudentsList.vue")
},
{
path: "/sale/appointManagement", //销售 约课管理
component: () =>
import("pages/sale/appointManagement.vue")
import ("pages/sale/appointManagement.vue")
},
{
path: "/sale/reserveClass", //销售 约课班级管理
component: () =>
import("pages/sale/reserveClass.vue")
import ("pages/sale/reserveClass.vue")
},
{
path: "/sale/reserveStudentList", //销售 约课班级学员名单
component: () =>
import("pages/sale/reserveStudentList.vue")
import ("pages/sale/reserveStudentList.vue")
},
{
path: "/course/teacherHours", //教学奖励 教师课时统计
component: () =>
import("pages/course/teacherHours.vue")
import ("pages/course/teacherHours.vue")
},
{
path: "/course/classHourReward", //教学奖励 课时奖励
component: () =>
import("pages/course/classHourReward.vue")
import ("pages/course/classHourReward.vue")
},
{
path: "/course/classHourStatistic", //教学奖励 课时统计
component: () =>
import("pages/course/classHourStatistic.vue")
import ("pages/course/classHourStatistic.vue")
},
{
path: "/course/rewardDetailed", //教学奖励 奖励明细
component: () =>
import("pages/course/rewardDetailed.vue")
import ("pages/course/rewardDetailed.vue")
},
{
path: "/course/achievements", //教学奖励 绩效列表
component: () =>
import("pages/course/achievements.vue")
import ("pages/course/achievements.vue")
},
{
path: "/course/workutaTeaching", //教学中心 排课
component: () =>
import("pages/course/workutaTeaching.vue")
import ("pages/course/workutaTeaching.vue")
},
{
path: "/course/classHours", //教学中心 上课时段列表
component: () =>
import("pages/course/classHours.vue")
import ("pages/course/classHours.vue")
},
{
path: "/user/backbill", //退课单据
component: () =>
import("pages/user/backbill.vue")
import ("pages/user/backbill.vue")
},
{
path: "/user/billquery", //单据查询
component: () =>
import("pages/user/billquery.vue")
import ("pages/user/billquery.vue")
},
{
path: "/user/personalData", //个人资料
component: () =>
import("pages/user/personalData.vue")
import ("pages/user/personalData.vue")
},
{
path: "/course/questionlist", //题库列表
component: () =>
import("pages/course/questionlist.vue")
import ("pages/course/questionlist.vue")
},
{
path: "/course/question", //题库列表
component: () =>
import("pages/course/question.vue")
import ("pages/course/question.vue")
},
{
path: "/course/questionInfo", //题库详情
component: () =>
import("pages/course/questionInfo.vue")
import ("pages/course/questionInfo.vue")
},
{
path: "/sale/quotation", //报价单
component: () =>
import("pages/sale/quotation.vue")
import ("pages/sale/quotation.vue")
},
{
path: "/course/courseinfo",
component: () => import("pages/course/courseinfo.vue"),
component: () =>
import ("pages/course/courseinfo.vue"),
children: [{
path: "/course/teachplan", //教案管理
component: () =>
import("pages/course/teachplan.vue")
import ("pages/course/teachplan.vue")
},
{
path: "/course/chapter", //章节管理
component: () =>
import("pages/course/chapter.vue")
import ("pages/course/chapter.vue")
},
{
path: "/course/coursejob", //作业管理
component: () =>
import("pages/course/coursejob.vue")
import ("pages/course/coursejob.vue")
},
]
......@@ -1308,435 +1314,435 @@ const routes = [{
{
path: "/course/jobinfo", //作业详情管理
component: () =>
import("pages/course/jobinfo.vue")
import ("pages/course/jobinfo.vue")
},
{
path: "/course/ExamManage", //考试管理
component: () =>
import("pages/course/ExamManage.vue")
import ("pages/course/ExamManage.vue")
},
{
path: "/course/examPaper", //试卷库管理
component: () =>
import("pages/course/examPaper.vue")
import ("pages/course/examPaper.vue")
},
{
path: "/studyAbroad/studyabroad", //留学
component: () =>
import("pages/studyAbroad/studyabroad.vue")
import ("pages/studyAbroad/studyabroad.vue")
},
{
path: "/studyAbroad/studyType", //类型
component: () =>
import("pages/studyAbroad/studyType.vue")
import ("pages/studyAbroad/studyType.vue")
},
{
path: "/studyAbroad/employment", //就业
component: () =>
import("pages/studyAbroad/employment.vue")
import ("pages/studyAbroad/employment.vue")
},
{
path: "/studyAbroad/studyemploymentorder", //留学就业订单中心
component: () =>
import("pages/studyAbroad/studyemploymentorder.vue")
import ("pages/studyAbroad/studyemploymentorder.vue")
},
{
path: "/studyAbroad/studypayment", //留学就业收支明细
component: () =>
import("pages/studyAbroad/studypayment.vue")
import ("pages/studyAbroad/studypayment.vue")
},
{
path: "/studyAbroad/supplier", //供应商
component: () =>
import("pages/studyAbroad/supplier.vue")
import ("pages/studyAbroad/supplier.vue")
},
{
path: "/studyAbroad/studyProAudit", //留学产品审核
component: () =>
import("pages/studyAbroad/studyProAudit.vue")
import ("pages/studyAbroad/studyProAudit.vue")
},
{
path: "/scheduling/schedulingPlan", //排班计划
component: () =>
import("pages/scheduling/schedulingPlan.vue")
import ("pages/scheduling/schedulingPlan.vue")
},
{
path: "/scheduling/schedulingRecord", //值班记录
component: () =>
import("pages/scheduling/schedulingRecord.vue")
import ("pages/scheduling/schedulingRecord.vue")
},
{
path: "/scheduling/schedulDetail", //我的工作计划排班详情
component: () =>
import("pages/scheduling/schedulDetail.vue")
import ("pages/scheduling/schedulDetail.vue")
},
{
path: "/scheduling/scheduleBoard", //值班看板
component: () =>
import("pages/scheduling/scheduleBoard.vue")
import ("pages/scheduling/scheduleBoard.vue")
},
{
path: "/scheduling/scheduleInfo", //值班详情
component: () =>
import("pages/scheduling/scheduleInfo.vue")
import ("pages/scheduling/scheduleInfo.vue")
},
{
path: "/scheduling/vacationPlan", //假期计划表
component: () =>
import("pages/scheduling/vacationPlan")
import ("pages/scheduling/vacationPlan")
},
{
path: "/test", //API测试
component: () =>
import("pages/test.vue")
import ("pages/test.vue")
},
{
path: "/classroom/Scheduling", //教室状态
component: () =>
import("pages/classroom/Scheduling")
import ("pages/classroom/Scheduling")
},
{
path: "/classroom/useRecord", //教室使用记录
component: () =>
import("pages/classroom/useRecord")
import ("pages/classroom/useRecord")
},
{
path: "/classroom/courseInfo", //教室本次上课信息
component: () =>
import("pages/classroom/courseInfo")
import ("pages/classroom/courseInfo")
},
{
path: "/teacher/feedBackList", //教室本次上课反馈
component: () =>
import("pages/teacher/feedBackList")
import ("pages/teacher/feedBackList")
},
{
path: "/teacher/myClass", //我的班级
component: () =>
import("pages/teacher/myClass")
import ("pages/teacher/myClass")
},
{
path: "/teacher/dayStatic", //教师每日数据统计
component: () =>
import("pages/teacher/dayStatic")
import ("pages/teacher/dayStatic")
},
{
path: "/teacher/teacherMonth", //教师月度统计排名
component: () =>
import("pages/teacher/teacherMonth")
import ("pages/teacher/teacherMonth")
},
{
path: "/teacher/monthStatic", //教师月度统计
component: () =>
import("pages/teacher/monthStatic")
import ("pages/teacher/monthStatic")
},
{
path: "/teacher/yearStatic", //教师年度统计
component: () =>
import("pages/teacher/yearStatic")
import ("pages/teacher/yearStatic")
},
{
path: "/teacher/assessmentConfig", //教师季度考评配置
component: () =>
import("pages/teacher/assessmentConfig")
import ("pages/teacher/assessmentConfig")
},
{
path: "/teacher/appraisalList", //考评列表
component: () =>
import("pages/teacher/appraisalList")
import ("pages/teacher/appraisalList")
},
{
path: "/teacher/jobEvaluation", //每月工作考评表
component: () =>
import("pages/teacher/jobEvaluation")
import ("pages/teacher/jobEvaluation")
},
{
path: "/teacher/teacherAssessment", //教师考核详情
component: () =>
import("pages/teacher/teacherAssessment")
import ("pages/teacher/teacherAssessment")
},
{
path: "/teacher/teacherTrack", //教师学员跟踪
component: () =>
import("pages/teacher/teacherTrack")
import ("pages/teacher/teacherTrack")
},
{
path: "/exam/examPaper", //试卷管理
component: () =>
import("pages/exam/examPaper")
import ("pages/exam/examPaper")
},
{
path: "/exam/examlist", //考试管理
component: () =>
import("pages/exam/examlist")
import ("pages/exam/examlist")
},
{
path: "/exam/paperEdit", //试卷编辑
component: () =>
import("pages/exam/paperEdit")
import ("pages/exam/paperEdit")
},
{
path: "/exam/paperInfo", //试卷详情
component: () =>
import("pages/exam/paperInfo")
import ("pages/exam/paperInfo")
},
{
path: "/exam/examtest", //学生考试
component: () =>
import("pages/exam/examtest")
import ("pages/exam/examtest")
},
{
path: "/exam/examtestreview", //阅卷
component: () =>
import("pages/exam/examtestreview")
import ("pages/exam/examtestreview")
},
{
path: "/exam/examtestinfo", //考生试卷详情
component: () =>
import("pages/exam/examtestinfo")
import ("pages/exam/examtestinfo")
},
{
path: "/exam/paperCreate", //试卷组卷
component: () =>
import("pages/exam/paperCreate")
import ("pages/exam/paperCreate")
},
{
path: "/exam/paperPublish", //试卷发布考试
component: () =>
import("pages/exam/paperPublish")
import ("pages/exam/paperPublish")
},
{
path: "/exam/paperPublishReadonly", //试卷发布考试-只读
component: () =>
import("pages/exam/paperPublishReadonly")
import ("pages/exam/paperPublishReadonly")
},
{
path: "/exam/examineeManager", //试卷-考生管理
component: () =>
import("pages/exam/examineeManager")
import ("pages/exam/examineeManager")
},
{
path: "/student/myexam", //考生-试卷列表
component: () =>
import("pages/student/myexam")
import ("pages/student/myexam")
},
{
path: "/teacher/testdatabase", //题库查询
component: () =>
import("pages/teacher/testdatabase")
import ("pages/teacher/testdatabase")
},
{
path: "/teacher/relation-order", //关联订单
component: () =>
import("pages/teacher/relationOrder")
import ("pages/teacher/relationOrder")
},
{
path: "/teacher/change-class-manager", //关联订单
component: () =>
import("pages/teacher/changeClassManager")
import ("pages/teacher/changeClassManager")
},
{
path: "/teacher/teachMonthLessonCost", //月度课耗
component: () =>
import("pages/teacher/teachMonthLessonCost")
import ("pages/teacher/teachMonthLessonCost")
},
{
path: "/teacher/myPrepareLessons", //我的备课
component: () =>
import("pages/teacher/myPrepareLessons")
import ("pages/teacher/myPrepareLessons")
},
{
path: "/teacher/lessonTimeStatistics", //课时统计
component: () =>
import("pages/teacher/lessonTimeStatistics")
import ("pages/teacher/lessonTimeStatistics")
},
{
path: "/teacher/teacherclassSee", //课时统计-查看老师
component: () =>
import("pages/teacher/teacherclassSee")
import ("pages/teacher/teacherclassSee")
},
{
path: "/teacher/studentsClassSee", //课时统计-查看学生
component: () =>
import("pages/teacher/studentsClassSee")
import ("pages/teacher/studentsClassSee")
},
{
path: "/teacher/studentManager", //学员管理
component: () =>
import("pages/teacher/studentManager")
import ("pages/teacher/studentManager")
}, {
path: "/teacher/teacherSchedule",
component: () =>
import("pages/teacher/teacherSchedule")
import ("pages/teacher/teacherSchedule")
}, {
path: "/teacher/contribution/materialList", //投稿设置 素材管理
component: () =>
import("pages/teacher/contribution/materialList")
import ("pages/teacher/contribution/materialList")
},
{
path: "/teacher/contribution/tgGroupingManage", //投稿设置 分组管理
component: () =>
import("pages/teacher/contribution/tgGroupingManage")
import ("pages/teacher/contribution/tgGroupingManage")
},
{
path: "/teacher/contribution/imageTextlist", //投稿设置 素材图文管理
component: () =>
import("pages/teacher/contribution/imageTextlist")
import ("pages/teacher/contribution/imageTextlist")
},
{
path: "/teacher/contribution/contributemanage", //投稿审核 管理端审核列表
component: () =>
import("pages/teacher/contribution/contributemanage")
import ("pages/teacher/contribution/contributemanage")
},
{
path: "/stuMan/coffeeManage/index", //学管 商品管理
component: () =>
import("pages/stuMan/coffeeManage/index")
import ("pages/stuMan/coffeeManage/index")
},
{
path: "/stuMan/coffeeManage/coffeeOrderList", //学管 咖啡订单列表
component: () =>
import("pages/stuMan/coffeeManage/coffeeOrderList")
import ("pages/stuMan/coffeeManage/coffeeOrderList")
},
{
path: "/stuMan/coffeeManage/order", //学管 订单列表
component: () =>
import("pages/stuMan/coffeeManage/order")
import ("pages/stuMan/coffeeManage/order")
},
{
path: "/stuMan/coffeeManage/afterOrder", //学管 售后订单列表
component: () =>
import("pages/stuMan/coffeeManage/afterOrder")
import ("pages/stuMan/coffeeManage/afterOrder")
},
{
path: "/stuMan/activeList", //学管 活动列表
component: () =>
import("pages/stuMan/activeList")
import ("pages/stuMan/activeList")
},
{
path: "/stuMan/classPlan", //学管 上课计划
component: () =>
import("pages/stuMan/classPlan")
import ("pages/stuMan/classPlan")
},
{
path: "/stuMan/classRecord", //学管 上课记录
component: () =>
import("pages/stuMan/classRecord")
import ("pages/stuMan/classRecord")
},
{
path: "/stuMan/studentManage", //学管 学员管理
component: () =>
import("pages/stuMan/studentManage")
import ("pages/stuMan/studentManage")
},
{
path: "/stuMan/stuList", //学管 学员名单
component: () =>
import("pages/stuMan/stuList")
import ("pages/stuMan/stuList")
}, {
path: "/stuMan/visitorRecord", //学管 访问管理
component: () =>
import("pages/stuMan/visitorRecord")
import ("pages/stuMan/visitorRecord")
},
{
path: "/stuMan/todaysOrder", //学管 今日订单
component: () =>
import("pages/stuMan/todaysOrder")
import ("pages/stuMan/todaysOrder")
},
{
path: "/stuMan/stuClassManage", //学管 班级管理
component: () =>
import("pages/stuMan/stuClassManage")
import ("pages/stuMan/stuClassManage")
},
{
path: "/stuMan/unfinishedStudent", //学管 未完成学员名单
component: () =>
import("pages/stuMan/unfinishedStudent")
import ("pages/stuMan/unfinishedStudent")
},
{
path: "/enterprise/welcomeList", //企微 欢迎语列表
component: () =>
import("pages/enterprise/welcomeList")
import ("pages/enterprise/welcomeList")
},
{
path: "/enterprise/addWelcome", //企微 欢迎语修改新增
component: () =>
import("pages/enterprise/addWelcome")
import ("pages/enterprise/addWelcome")
},
{
path: "/enterprise/materialManage", //企微 素材管理
component: () =>
import("pages/enterprise/materialManage")
import ("pages/enterprise/materialManage")
},
{
path: "/enterprise/groupingManage", //企微 分组管理
component: () =>
import("pages/enterprise/groupingManage")
import ("pages/enterprise/groupingManage")
},
{
path: "/enterprise/channelgroupList", //企微 渠道分组
component: () =>
import("pages/enterprise/channelgroupList")
import ("pages/enterprise/channelgroupList")
},
{
path: "/enterprise/customerLabel", //企微 客户标签
component: () =>
import("pages/enterprise/customerLabel")
import ("pages/enterprise/customerLabel")
},
{
path: "/enterprise/channelcodeList", //企微 渠道活码
component: () =>
import("pages/enterprise/channelcodeList")
import ("pages/enterprise/channelcodeList")
},
{
path: "/enterprise/addchannelcode", //企微 新增修改渠道活码
component: () =>
import("pages/enterprise/addchannelcode")
import ("pages/enterprise/addchannelcode")
},
{
path: "/enterprise/channelCodeStatistics", //企微 渠道码的统计页面
component: () =>
import("pages/enterprise/channelCodeStatistics")
import ("pages/enterprise/channelCodeStatistics")
},
{
path: "/enterprise/notHandedOverList", //企微 未交接列表
component: () =>
import("pages/enterprise/notHandedOverList")
import ("pages/enterprise/notHandedOverList")
},
{
path: "/enterprise/customer/customerSetup", //企微 客户管理 客户设置
component: () =>
import("pages/enterprise/customer/customerSetup")
import ("pages/enterprise/customer/customerSetup")
},
{
path: "/enterprise/customer/CSChild/stageManagement", //企微 客户管理 客户阶段 阶段管理
component: () =>
import("pages/enterprise/customer/CSChild/stageManagement")
import ("pages/enterprise/customer/CSChild/stageManagement")
},
{
path: "/enterprise/customer/CSChild/addPhase", //企微 客户管理 客户阶段 创建阶段
component: () =>
import("pages/enterprise/customer/CSChild/addPhase")
import ("pages/enterprise/customer/CSChild/addPhase")
},
{
path: "/enterprise/customer/customer", //企微 客户管理 客户
component: () =>
import("pages/enterprise/customer/customer")
import ("pages/enterprise/customer/customer")
},
{
path: "/enterprise/OfficialAccounts", //企微 公众号同步
component: () =>
import("pages/enterprise/OfficialAccounts/OfficialAccountsList")
import ("pages/enterprise/OfficialAccounts/OfficialAccountsList")
},
{
path: "/enterprise/OfficialAccountsDetail", //企微 公众号详情
component: () =>
import("pages/enterprise/OfficialAccounts/OfficialAccountsDetail")
import ("pages/enterprise/OfficialAccounts/OfficialAccountsDetail")
},
{
path: "/stu/subscribe", //预约课程
component: () =>
import("pages/studyAbroad/subscribe")
import ("pages/studyAbroad/subscribe")
}
],
......@@ -1746,55 +1752,55 @@ const routes = [{
{
path: "/contractConfirm",
component: () =>
import("pages/contractConfirm.vue")
import ("pages/contractConfirm.vue")
},
{
path: '/contractSign', //合同签名页面
component: () =>
import("pages/contractSign.vue")
import ("pages/contractSign.vue")
},
{
path: "/contractPay",
component: () =>
import("pages/contractPay.vue")
import ("pages/contractPay.vue")
},
//公告预览
{
path: "/noticeView",
component: () =>
import("pages/noticeView.vue")
import ("pages/noticeView.vue")
},
{
path: "/contractView",
component: () =>
import("pages/contractView.vue")
import ("pages/contractView.vue")
},
{
path: "/courseRefund",
component: () =>
import("pages/courseRefund.vue")
import ("pages/courseRefund.vue")
},
{
path: "/courseRefundH5",
component: () =>
import("pages/courseRefundH5.vue")
import ("pages/courseRefundH5.vue")
},
{
path: "/koreaUpload", //韩国管 上传
component: () =>
import("pages/koreaUpload.vue")
import ("pages/koreaUpload.vue")
},
{
path: "/financial/financalDocument/PrintPage", //财务单据打印
component: () =>
import("pages/financial/financalDocument/PrintPage.vue")
import ("pages/financial/financalDocument/PrintPage.vue")
},
{
path: "/financial/financalDocument/PrintPageN", //财务凭证打印
component: () =>
import("pages/financial/financalDocument/PrintPageN.vue")
import ("pages/financial/financalDocument/PrintPageN.vue")
},
......@@ -1802,7 +1808,8 @@ const routes = [{
{
path: '/AssetsShenpi', //资产管理审批
name: 'AssetsShenpi',
component: () => import('pages/administration/AssetsSystem/AssetsShenpi'),
component: () =>
import ('pages/administration/AssetsSystem/AssetsShenpi'),
meta: {
title: '资产管理'
},
......@@ -1810,7 +1817,8 @@ const routes = [{
{
path: '/RequisitionShenpi', //资产管理审批
name: 'RequisitionShenpi',
component: () => import('pages/administration/AssetsSystem/RequisitionShenpi'),
component: () =>
import ('pages/administration/AssetsSystem/RequisitionShenpi'),
meta: {
title: '资产管理'
},
......@@ -1818,32 +1826,32 @@ const routes = [{
{
path: "/SuppliesStockInShenpi", //耗材入库审核
component: () =>
import("pages/administration/AssetsSystem/SuppliesStockInShenpi")
import ("pages/administration/AssetsSystem/SuppliesStockInShenpi")
},
{
path: "/PropertyStockInShenpi", //资产入库审核
component: () =>
import("pages/administration/AssetsSystem/PropertyStockInShenpi")
import ("pages/administration/AssetsSystem/PropertyStockInShenpi")
},
{
path: "/course/chapter-editor", //章节管理
component: () =>
import("pages/course/chapterEditor.vue")
import ("pages/course/chapterEditor.vue")
},
{
path: "/teacher/contribution/graphicType", //投稿设置 新增修改图文
component: () =>
import("pages/teacher/contribution/graphicType")
import ("pages/teacher/contribution/graphicType")
},
{
path: "/teacher/contribution/addimageText", //投稿设置 新增修改图文
component: () =>
import("pages/teacher/contribution/addimageText")
import ("pages/teacher/contribution/addimageText")
},
{
path: "*",
component: () =>
import("pages/Error404.vue")
import ("pages/Error404.vue")
}
];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment