Commit de2c9db9 authored by 黄奎's avatar 黄奎

页面修改

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