Commit de2c9db9 authored by 黄奎's avatar 黄奎

页面修改

parent fa3ff651
...@@ -585,7 +585,14 @@ export function BatchForwardStudent(data) { ...@@ -585,7 +585,14 @@ export function BatchForwardStudent(data) {
} }
//全公司每日数据统计
export function GetStudentCompany(data) {
return request({
url: '/StudentStat/GetStudentCompany',
method: 'post',
data
});
}
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
</template> </template>
<script> <script>
import { import {
GetStudentStatic GetStudentCompany
} from '../../api/sale/sale'; } from '../../api/sale/sale';
import { import {
EduDownLoad EduDownLoad
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
export default { export default {
props: {}, props: {},
meta: { meta: {
title: "课程顾问部每日数据统计" title: "全公司每日数据统计"
}, },
components: {}, components: {},
data() { data() {
...@@ -277,9 +277,9 @@ ...@@ -277,9 +277,9 @@
this.loading = true; this.loading = true;
var msg = JSON.parse(JSON.stringify(this.msg)); var msg = JSON.parse(JSON.stringify(this.msg));
EduDownLoad( EduDownLoad(
"/StudentStat/DownLoadStudentStatic", "/StudentStat/DownLoadStudentCompany",
msg, msg,
"课程顾问部每日数据统计.xls", res => { "全公司每日数据统计.xls", res => {
this.loading = false; this.loading = false;
} }
); );
...@@ -294,7 +294,7 @@ ...@@ -294,7 +294,7 @@
//获取数据 //获取数据
getList() { getList() {
this.loading = true; this.loading = true;
GetStudentStatic(this.msg).then(res => { GetStudentCompany(this.msg).then(res => {
this.loading = false; this.loading = false;
if (res.Code == 1) { if (res.Code == 1) {
this.dataList = res.Data; this.dataList = res.Data;
......
...@@ -1096,9 +1096,9 @@ const routes = [{ ...@@ -1096,9 +1096,9 @@ const routes = [{
import("pages/sale/everyMonthTotal.vue") import("pages/sale/everyMonthTotal.vue")
}, },
{ {
path: "/sale/monthTotal2", path: "/sale/companyday",
component: ()=> component: ()=>
import("pages/sale/monthTotal2.vue") import("pages/sale/companyday.vue")
}, },
{ {
path: "/activity/activeType", //活动 活动类型 path: "/activity/activeType", //活动 活动类型
......
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