diff --git a/api/apiRoute.js b/api/apiRoute.js
index 8fd04e3..a62db7b 100644
--- a/api/apiRoute.js
+++ b/api/apiRoute.js
@@ -88,6 +88,13 @@ export default {
return res;
})
},
+ //公共端-忘记密码-通过短信验证码进行密码重置(学生/员工通用)
+ common_forgetPassword(data = {}) {
+ let url = '/common/forgetPassword'
+ return http.post(url, data).then(res => {
+ return res;
+ })
+ },
@@ -128,9 +135,46 @@ export default {
-
-
-
+ //获取添加学员列表
+ addStudentList(data = {}) {
+ let url = '/course/addStudentList'
+ return http.get(url, data).then(res => {
+ return res;
+ })
+ },
+ addStudent(data = {}) {
+ let url = '/course/addStudent'
+ return http.post(url, data).then(res => {
+ return res;
+ })
+ },
+ delStudentCourse(data = {}) {
+ let url = '/course/delStudentCourse'
+ return http.get(url, data).then(res => {
+ return res;
+ })
+ },
+ //获取班级列表
+ jlClassList(data = {}) {
+ let url = '/class/jlClassList'
+ return http.get(url, data).then(res => {
+ return res;
+ })
+ },
+ //获取课程列表
+ courseList(data = {}) {
+ let url = '/course/courseList'
+ return http.get(url, data).then(res => {
+ return res;
+ })
+ },
+ //获取课程详情
+ courseInfo(data = {}) {
+ let url = '/course/courseInfo'
+ return http.get(url, data).then(res => {
+ return res;
+ })
+ },
//教研管理文章列表
teachingResearchList(data = {}) {
let url = '/teachingResearch/list'
@@ -204,6 +248,13 @@ export default {
return res;
})
},
+ //销售端-查询客户资源全部列表
+ xs_getAllCustomerResources(data = {}) {
+ let url = '/customerResources/getAll'
+ return http.get(url, data).then(res => {
+ return res;
+ })
+ },
//销售端-客户资源-获取修改日志列表
xs_customerResourcesGetEditLogList(data = {}) {
let url = '/customerResources/getEditLogList'
@@ -270,6 +321,24 @@ export default {
})
},
+ //员工端统计(销售)-获取销售首页数据统计
+ xs_statisticsMarketHome(data = {}) {
+ let url = '/statistics/marketHome'
+ return http.get(url, data).then(res => {
+ return res;
+ })
+ },
+
+ //员工端统计(销售)-获取销售数据页统计
+ xs_statisticsMarketData(data = {}) {
+ let url = '/statistics/marketData'
+ return http.get(url, data).then(res => {
+ return res;
+ })
+ },
+
+
+
diff --git a/pages/coach/class/list.vue b/pages/coach/class/list.vue
index bad9243..7b12d2b 100644
--- a/pages/coach/class/list.vue
+++ b/pages/coach/class/list.vue
@@ -59,7 +59,7 @@
\ No newline at end of file
diff --git a/pages/coach/course/list.vue b/pages/coach/course/list.vue
index 9e76d06..872d074 100644
--- a/pages/coach/course/list.vue
+++ b/pages/coach/course/list.vue
@@ -1,613 +1,653 @@
-
-
-
- 课表
-
-
-
-
-
-
- {{v.week}}
-
- {{today == v.date ? '今':v.today}}
-
-
-
-
-
- 查看更多
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 班级:{{v.classes_name}}
- 时间:{{v.date}}
- 课室:{{v.address}}
-
- 课程:{{v.courses_name}}
-
-
-
-
-
- {{ v.status === 1 ? '未开始' : v.status === 2 ? '上课中' : '已结束' }}
-
-
-
-
-
- 已签到学生 ({{v.sign_list.length }}/{{v.max_students.split(',').length }})
-
-
-
-
-
-
-
-
- 详情
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ 课表
+
+
+
+
+
+
+ {{v.weekday}}
+ {{today == v.date ? '今':v.dayOfMonth}}
+
+
+
+ 查看更多
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 时间:{{v.course_date}}
+ 课室:{{v.venue.venue_name}}
+ 课程:{{v.course.course_name}}
+ 人数:{{v.venue.capacity}}
+
+
+
+
+ {{ v.status === 'pending' ? '未开始' : v.status === 'ongoing' ? '上课中' : '已结束' }}
+
+
+
+
+
+
+
+ 已签到学生 ({{v.student.length }}/{{v.venue.capacity}})
+
+
+
+
+
+
+
+
+ 详情
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/coach/my/index.vue b/pages/coach/my/index.vue
index 00d9754..26ed68b 100644
--- a/pages/coach/my/index.vue
+++ b/pages/coach/my/index.vue
@@ -11,7 +11,7 @@
-
+
{{memberInfo.name}}
@@ -96,10 +96,10 @@
-
+
设置
@@ -114,9 +114,9 @@