lex 1 year ago
parent
commit
42e99b467d

+ 1 - 1
src/constant/index.js

@@ -320,7 +320,7 @@ export const downListType = {
   30: "平衡关系-乐团课",
   30: "平衡关系-乐团课",
   31: "平衡关系-VIP已排课",
   31: "平衡关系-VIP已排课",
   32: "平衡关系-VIP未排课",
   32: "平衡关系-VIP未排课",
-  33: "平衡关系-乐团课剩余时长",
+  33: "平衡关系-缴费项目课时明细",
   34: "平衡关系-学员情况总表",
   34: "平衡关系-学员情况总表",
   35: "平衡关系(分表)-乐团在读学员",
   35: "平衡关系(分表)-乐团在读学员",
   36: "平衡关系(分表)-乐团退团学员"
   36: "平衡关系(分表)-乐团退团学员"

+ 37 - 20
src/views/indexErrDataRecord/components/errorCourse.vue

@@ -94,7 +94,7 @@
             start-placeholder="上课开始日期"
             start-placeholder="上课开始日期"
             end-placeholder="上课结束日期"
             end-placeholder="上课结束日期"
             :picker-options="{
             :picker-options="{
-              firstDayOfWeek: 1,
+              firstDayOfWeek: 1
             }"
             }"
           ></el-date-picker>
           ></el-date-picker>
         </el-form-item>
         </el-form-item>
@@ -133,7 +133,11 @@
             label="乐团/课程组编号"
             label="乐团/课程组编号"
           >
           >
             <template slot-scope="scope">
             <template slot-scope="scope">
-              <el-button type="text" style="width: 100%;" @click="gotoCourse(scope.row)">
+              <el-button
+                type="text"
+                style="width: 100%;"
+                @click="gotoCourse(scope.row)"
+              >
                 <copy-text>{{ scope.row.musicGroupId }}</copy-text>
                 <copy-text>{{ scope.row.musicGroupId }}</copy-text>
               </el-button>
               </el-button>
             </template>
             </template>
@@ -404,7 +408,7 @@
             start-placeholder="创建开始日期"
             start-placeholder="创建开始日期"
             end-placeholder="创建结束日期"
             end-placeholder="创建结束日期"
             :picker-options="{
             :picker-options="{
-              firstDayOfWeek: 1,
+              firstDayOfWeek: 1
             }"
             }"
           ></el-date-picker>
           ></el-date-picker>
         </el-form-item>
         </el-form-item>
@@ -422,7 +426,7 @@ import pagination from "@/components/Pagination/index";
 import {
 import {
   superFindCourseSchedules,
   superFindCourseSchedules,
   cleanAttendance,
   cleanAttendance,
-  cancelCourseMerge,
+  cancelCourseMerge
 } from "@/api/buildTeam";
 } from "@/api/buildTeam";
 import { bathDelete } from "@/api/vipSeting";
 import { bathDelete } from "@/api/vipSeting";
 import { workType, mergeCourseType } from "@/constant";
 import { workType, mergeCourseType } from "@/constant";
@@ -431,6 +435,7 @@ import { getTeacherPersonalAttendanceDetail } from "@/api/teacherManager";
 import { courseType, courseListType } from "@/utils/searchArray";
 import { courseType, courseListType } from "@/utils/searchArray";
 import { permission } from "@/utils/directivePage";
 import { permission } from "@/utils/directivePage";
 import { getHistoryErrCourse, getAllEducationUsers } from "../api";
 import { getHistoryErrCourse, getAllEducationUsers } from "../api";
+import dayjs from "dayjs";
 let nowTime = new Date();
 let nowTime = new Date();
 nowTime =
 nowTime =
   nowTime.getFullYear() +
   nowTime.getFullYear() +
@@ -439,12 +444,23 @@ nowTime =
   "-" +
   "-" +
   nowTime.getDate();
   nowTime.getDate();
 
 
+/** 获取当前月 */
+const getCurrentMonth = () => {
+  return [
+    dayjs()
+      .startOf("month")
+      .format("YYYY-MM-DD"),
+    dayjs()
+      .endOf("month")
+      .format("YYYY-MM-DD")
+  ];
+};
 const initSearch = {
 const initSearch = {
   teachMode: null, // 教学模式
   teachMode: null, // 教学模式
   organIdList: null,
   organIdList: null,
   courseStatus: null,
   courseStatus: null,
   courseType: null,
   courseType: null,
-  timer: [], // 时间
+  timer: getCurrentMonth(), // 时间
   class: null,
   class: null,
   teachType: null,
   teachType: null,
   mergeCourseType: null,
   mergeCourseType: null,
@@ -455,7 +471,7 @@ const initSearch = {
   creatTimer: [],
   creatTimer: [],
   courseIdSearch: null,
   courseIdSearch: null,
   hasDealTime: null,
   hasDealTime: null,
-  educationUserId: null,
+  educationUserId: null
 };
 };
 export default {
 export default {
   props: ["searchType"],
   props: ["searchType"],
@@ -477,7 +493,7 @@ export default {
         limit: 10, // 限制显示条数
         limit: 10, // 限制显示条数
         page: 1, // 当前页
         page: 1, // 当前页
         total: 0, // 总条数
         total: 0, // 总条数
-        page_size: [10, 20, 40, 50], // 选择限制显示条数
+        page_size: [10, 20, 40, 50] // 选择限制显示条数
       },
       },
       teacherList: [],
       teacherList: [],
       schoolList: [],
       schoolList: [],
@@ -490,11 +506,11 @@ export default {
       isMainGo: false,
       isMainGo: false,
       isDetele: false,
       isDetele: false,
       showMove: false,
       showMove: false,
-      educationList: [],
+      educationList: []
     };
     };
   },
   },
   components: {
   components: {
-    pagination,
+    pagination
   },
   },
   created() {
   created() {
     // this.searchForm.timer = [nowTime, nowTime];
     // this.searchForm.timer = [nowTime, nowTime];
@@ -518,7 +534,7 @@ export default {
         this.searchForm.isCallNames ||
         this.searchForm.isCallNames ||
         this.searchForm.creatTimer?.length > 0
         this.searchForm.creatTimer?.length > 0
       );
       );
-    },
+    }
   },
   },
   async mounted() {
   async mounted() {
     const { query } = this.$route;
     const { query } = this.$route;
@@ -587,6 +603,7 @@ export default {
 
 
     reset() {
     reset() {
       this.searchForm = { ...initSearch };
       this.searchForm = { ...initSearch };
+      this.searchForm.timer = getCurrentMonth();
       this.search();
       this.search();
     },
     },
     search() {
     search() {
@@ -598,7 +615,7 @@ export default {
       this.searchForm = {
       this.searchForm = {
         ...initSearch,
         ...initSearch,
         timer: [],
         timer: [],
-        courseIdSearch: row.newCourseId,
+        courseIdSearch: row.newCourseId
       };
       };
       this.search();
       this.search();
     },
     },
@@ -635,7 +652,7 @@ export default {
         rows: this.rules.limit,
         rows: this.rules.limit,
         searchType: this.searchType,
         searchType: this.searchType,
         ...getTimes(creatTimer, ["createStartDate", "createEndDate"]),
         ...getTimes(creatTimer, ["createStartDate", "createEndDate"]),
-        ...getTimes(timer, ["startTime", "endTime"]),
+        ...getTimes(timer, ["startTime", "endTime"])
       };
       };
     },
     },
     async getList() {
     async getList() {
@@ -675,7 +692,7 @@ export default {
     lookDetail(row) {
     lookDetail(row) {
       this.$router.push({
       this.$router.push({
         name: "teamCourseList",
         name: "teamCourseList",
-        params: { courseIdSearch: row.id },
+        params: { courseIdSearch: row.id }
       });
       });
       // this.maskForm = row;
       // this.maskForm = row;
       // 发请求 获取详情 row.id
       // 发请求 获取详情 row.id
@@ -706,17 +723,17 @@ export default {
       if (row.groupType == "MUSIC") {
       if (row.groupType == "MUSIC") {
         this.$router.push({
         this.$router.push({
           path: "/teamList",
           path: "/teamList",
-          query: { search: row.musicGroupId },
+          query: { search: row.musicGroupId }
         });
         });
       } else if (row.groupType == "VIP") {
       } else if (row.groupType == "VIP") {
         this.$router.push({
         this.$router.push({
           path: "/vipManager/vipList",
           path: "/vipManager/vipList",
-          query: { search: row.musicGroupId },
+          query: { search: row.musicGroupId }
         });
         });
       } else if (row.groupType == "PRACTICE") {
       } else if (row.groupType == "PRACTICE") {
         this.$router.push({
         this.$router.push({
           path: "/accompanyManager/accompany",
           path: "/accompanyManager/accompany",
-          query: { search: row.musicGroupId },
+          query: { search: row.musicGroupId }
         });
         });
       }
       }
     },
     },
@@ -727,7 +744,7 @@ export default {
     okMore() {
     okMore() {
       this.getList();
       this.getList();
       this.showMove = false;
       this.showMove = false;
-    },
+    }
   },
   },
   filters: {
   filters: {
     isCall(val) {
     isCall(val) {
@@ -736,15 +753,15 @@ export default {
       } else if (val == 1) {
       } else if (val == 1) {
         return "已点名";
         return "已点名";
       }
       }
-    },
+    }
   },
   },
   watch: {
   watch: {
     classVisible(val) {
     classVisible(val) {
       if (!val) {
       if (!val) {
         this.activeName = null;
         this.activeName = null;
       }
       }
-    },
-  },
+    }
+  }
 };
 };
 </script>
 </script>
 <style lang="scss" scoped>
 <style lang="scss" scoped>

+ 15 - 1
src/views/indexErrDataRecord/components/historyError.vue

@@ -273,6 +273,19 @@ import dayjs from "dayjs";
 import { getTimes } from "@/utils";
 import { getTimes } from "@/utils";
 import { Export } from "@/utils/downLoadFile";
 import { Export } from "@/utils/downLoadFile";
 import qs from "qs";
 import qs from "qs";
+
+/** 获取当前月 */
+const getCurrentMonth = () => {
+  return [
+    dayjs()
+      .startOf("month")
+      .format("YYYY-MM-DD"),
+    dayjs()
+      .endOf("month")
+      .format("YYYY-MM-DD")
+  ];
+};
+console.log(getCurrentMonth(), "getCurrentMonth()");
 export default {
 export default {
   props: ["searchType"],
   props: ["searchType"],
   components: { pagination, "count-to": countTo },
   components: { pagination, "count-to": countTo },
@@ -280,7 +293,7 @@ export default {
     return {
     return {
       searchForm: {
       searchForm: {
         organIds: "",
         organIds: "",
-        timer: [],
+        timer: getCurrentMonth(),
         educationUserId: ""
         educationUserId: ""
       },
       },
       tableList: [],
       tableList: [],
@@ -322,6 +335,7 @@ export default {
     },
     },
     onReSet() {
     onReSet() {
       this.$refs.searchForm.resetFields();
       this.$refs.searchForm.resetFields();
+      this.searchForm.timer = getCurrentMonth();
       this.search();
       this.search();
     },
     },
     search() {
     search() {

+ 40 - 21
src/views/indexErrDataRecord/components/patrol.vue

@@ -1,4 +1,4 @@
- <!--  -->
+<!--  -->
 <template>
 <template>
   <div>
   <div>
     <!-- <h2> class="m-container"
     <!-- <h2> class="m-container"
@@ -158,12 +158,19 @@
           </el-table-column>
           </el-table-column>
           <el-table-column align="center" label="巡查项目是否异常">
           <el-table-column align="center" label="巡查项目是否异常">
             <template slot-scope="scope">
             <template slot-scope="scope">
-              {{ scope.row.conclusionStatus ?'否':'是'}}
+              {{ scope.row.conclusionStatus ? "否" : "是" }}
             </template>
             </template>
           </el-table-column>
           </el-table-column>
-          <el-table-column align="center" prop="subject" label="巡查时间" width="103px">
+          <el-table-column
+            align="center"
+            prop="subject"
+            label="巡查时间"
+            width="103px"
+          >
             <template slot-scope="scope">
             <template slot-scope="scope">
-              {{ dayjs(scope.row.planStart).format("YYYY-MM-DD HH:mm") }}~{{ dayjs(scope.row.planEnd).format("HH:mm") }}
+              {{ dayjs(scope.row.planStart).format("YYYY-MM-DD HH:mm") }}~{{
+                dayjs(scope.row.planEnd).format("HH:mm")
+              }}
             </template>
             </template>
           </el-table-column>
           </el-table-column>
           <el-table-column
           <el-table-column
@@ -276,7 +283,7 @@
           label="处理方式"
           label="处理方式"
           prop="memo"
           prop="memo"
           :rules="[
           :rules="[
-            { required: true, message: '请输入处理方式', trigger: 'blur' },
+            { required: true, message: '请输入处理方式', trigger: 'blur' }
           ]"
           ]"
         >
         >
           <el-input type="textarea" v-model.trim="handleForm.memo"></el-input>
           <el-input type="textarea" v-model.trim="handleForm.memo"></el-input>
@@ -303,6 +310,18 @@ import { getTimes } from "@/utils";
 import { Export } from "@/utils/downLoadFile";
 import { Export } from "@/utils/downLoadFile";
 import gpsLoction from "@/views/teamDetail/componentCourse/gpsLocation";
 import gpsLoction from "@/views/teamDetail/componentCourse/gpsLocation";
 import { getErrInspectionData } from "../api";
 import { getErrInspectionData } from "../api";
+
+/** 获取当前月 */
+const getCurrentMonth = () => {
+  return [
+    dayjs()
+      .startOf("month")
+      .format("YYYY-MM-DD"),
+    dayjs()
+      .endOf("month")
+      .format("YYYY-MM-DD")
+  ];
+};
 export default {
 export default {
   props: ["searchType"],
   props: ["searchType"],
   components: { pagination, LookDetail, gpsLoction },
   components: { pagination, LookDetail, gpsLoction },
@@ -319,8 +338,8 @@ export default {
         // musicGroupId: null,
         // musicGroupId: null,
         conclusionStatus: null,
         conclusionStatus: null,
         cooperationOrganId: null,
         cooperationOrganId: null,
-        createTimer: [],
-        hasDealTime:null
+        createTimer: getCurrentMonth(),
+        hasDealTime: null
       },
       },
       tableList: [],
       tableList: [],
       pageInfo: {
       pageInfo: {
@@ -328,15 +347,15 @@ export default {
         limit: 10, // 限制显示条数
         limit: 10, // 限制显示条数
         page: 1, // 当前页
         page: 1, // 当前页
         total: 0, // 总条数
         total: 0, // 总条数
-        page_size: [10, 20, 40, 50], // 选择限制显示条数
+        page_size: [10, 20, 40, 50] // 选择限制显示条数
       },
       },
       handleStatus: false,
       handleStatus: false,
       handleForm: {
       handleForm: {
         id: null,
         id: null,
-        memo: null,
+        memo: null
       },
       },
       tableStatus: false,
       tableStatus: false,
-      gpsVisible: false,
+      gpsVisible: false
     };
     };
   },
   },
   async mounted() {
   async mounted() {
@@ -355,7 +374,6 @@ export default {
     await this.$store.dispatch("setBranchs");
     await this.$store.dispatch("setBranchs");
     await this.$store.dispatch("setOrganRole");
     await this.$store.dispatch("setOrganRole");
 
 
-
     // 乐团列表 {只查询进行中的乐团}
     // 乐团列表 {只查询进行中的乐团}
     // await getTeamList({ musicGroupStatus: 'PROGRESS', rows: 9999 }).then(res => {
     // await getTeamList({ musicGroupStatus: 'PROGRESS', rows: 9999 }).then(res => {
     //     if(res.code == 200) {
     //     if(res.code == 200) {
@@ -378,7 +396,7 @@ export default {
           page: this.pageInfo.page,
           page: this.pageInfo.page,
           rows: this.pageInfo.limit,
           rows: this.pageInfo.limit,
           searchType: this.searchType,
           searchType: this.searchType,
-          ...getTimes(createTimer, ["startTime", "endTime"]),
+          ...getTimes(createTimer, ["startTime", "endTime"])
         };
         };
         const res = await getErrInspectionData(params);
         const res = await getErrInspectionData(params);
         this.tableList = res.data.rows;
         this.tableList = res.data.rows;
@@ -396,7 +414,7 @@ export default {
     onGPS(row) {
     onGPS(row) {
       this.activeRow = {
       this.activeRow = {
         schoolLongitudeLatitude: row.schoolGps,
         schoolLongitudeLatitude: row.schoolGps,
-        signOutLongitudeLatitude: row.submitedGps,
+        signOutLongitudeLatitude: row.submitedGps
       };
       };
       this.gpsVisible = true;
       this.gpsVisible = true;
     },
     },
@@ -408,8 +426,8 @@ export default {
           fileName: "巡查结果.xls",
           fileName: "巡查结果.xls",
           method: "get",
           method: "get",
           params: {
           params: {
-            planId: row.id,
-          },
+            planId: row.id
+          }
         },
         },
         "您确定导出巡查结果?"
         "您确定导出巡查结果?"
       );
       );
@@ -421,7 +439,7 @@ export default {
         return;
         return;
       }
       }
       // 合作单位
       // 合作单位
-      await queryByOrganId({ organId: value }).then((res) => {
+      await queryByOrganId({ organId: value }).then(res => {
         if (res.code == 200) {
         if (res.code == 200) {
           this.cooperationList = res.data;
           this.cooperationList = res.data;
         }
         }
@@ -433,6 +451,7 @@ export default {
     },
     },
     onReSet() {
     onReSet() {
       this.$refs["searchForm"].resetFields();
       this.$refs["searchForm"].resetFields();
+      this.searchForm.createTimer = getCurrentMonth();
       this.pageInfo.page = 1;
       this.pageInfo.page = 1;
       this.getList();
       this.getList();
     },
     },
@@ -442,7 +461,7 @@ export default {
       this.handleStatus = true;
       this.handleStatus = true;
     },
     },
     onHandleSubmit(formName) {
     onHandleSubmit(formName) {
-      this.$refs[formName].validate(async (valid) => {
+      this.$refs[formName].validate(async valid => {
         if (valid) {
         if (valid) {
           console.log(this.handleForm);
           console.log(this.handleForm);
           try {
           try {
@@ -456,17 +475,17 @@ export default {
     },
     },
     handleClose(formName) {
     handleClose(formName) {
       this.$refs[formName].resetFields();
       this.$refs[formName].resetFields();
-    },
+    }
   },
   },
   filters: {
   filters: {
     statusFormat(value) {
     statusFormat(value) {
       let template = ["未提交", "正常", "异常"];
       let template = ["未提交", "正常", "异常"];
       return template[value];
       return template[value];
-    },
-  },
+    }
+  }
 };
 };
 </script>
 </script>
-<style lang='scss' scoped>
+<style lang="scss" scoped>
 ::v-deep .el-dialog__body {
 ::v-deep .el-dialog__body {
   // padding: 10px 20px;
   // padding: 10px 20px;
 }
 }

+ 17 - 8
src/views/reportForm/balanced-relationship.vue

@@ -121,23 +121,25 @@
       class="m-wrap"
       class="m-wrap"
       v-permission="'export/EXPORT_BALANCED_RELATIONSHIP_MUSIC_SUB_COURSE'"
       v-permission="'export/EXPORT_BALANCED_RELATIONSHIP_MUSIC_SUB_COURSE'"
     >
     >
-      <div class="title">乐团课剩余时长:</div>
+      <div class="title">缴费项目课时明细:</div>
       <el-date-picker
       <el-date-picker
         v-model="month5"
         v-model="month5"
-        type="month"
+        type="monthrange"
         placeholder="选择月"
         placeholder="选择月"
         value-format="yyyy-MM"
         value-format="yyyy-MM"
         class="organSelect"
         class="organSelect"
-        :picker-options="pickerOptions"
+        start-placeholder="开始月份"
+        end-placeholder="结束月份"
+        :picker-options="pickerOptions2"
         clearable
         clearable
       ></el-date-picker>
       ></el-date-picker>
       <ExportChiose
       <ExportChiose
         style="margin-left: 10px"
         style="margin-left: 10px"
         ExportEnum="EXPORT_BALANCED_RELATIONSHIP_MUSIC_SUB_COURSE"
         ExportEnum="EXPORT_BALANCED_RELATIONSHIP_MUSIC_SUB_COURSE"
         :exportData="exportData5"
         :exportData="exportData5"
-        fileName="平衡关系-乐团课剩余时长导出"
+        fileName="平衡关系-缴费项目课时明细导出"
         errorMsg="请选择月份"
         errorMsg="请选择月份"
-        message="您确认导出乐团课剩余时长"
+        message="您确认导出缴费项目课时明细"
         :flag="this.month5.length <= 0"
         :flag="this.month5.length <= 0"
         :isDownList="true"
         :isDownList="true"
       />
       />
@@ -213,7 +215,7 @@
 	EXPORT_BALANCED_RELATIONSHIP_MUSIC_COURSE(30,"平衡关系-乐团课"),
 	EXPORT_BALANCED_RELATIONSHIP_MUSIC_COURSE(30,"平衡关系-乐团课"),
 	EXPORT_BALANCED_RELATIONSHIP_VIP_COURSE(31,"平衡关系-VIP已排课"),
 	EXPORT_BALANCED_RELATIONSHIP_VIP_COURSE(31,"平衡关系-VIP已排课"),
 	EXPORT_BALANCED_RELATIONSHIP_VIP_NO_COURSE(32,"平衡关系-VIP未排课"),
 	EXPORT_BALANCED_RELATIONSHIP_VIP_NO_COURSE(32,"平衡关系-VIP未排课"),
-	EXPORT_BALANCED_RELATIONSHIP_MUSIC_SUB_COURSE(33,"平衡关系-乐团课剩余时长"),
+	EXPORT_BALANCED_RELATIONSHIP_MUSIC_SUB_COURSE(33,"平衡关系-缴费项目课时明细"),
 	EXPORT_BALANCED_RELATIONSHIP_STUDENT_INFO(34,"平衡关系-学员情况总表"),
 	EXPORT_BALANCED_RELATIONSHIP_STUDENT_INFO(34,"平衡关系-学员情况总表"),
 	EXPORT_BALANCED_RELATIONSHIP_STUDENT_NORMAL_DETAIL(35,"平衡关系(分表)-乐团在读学员"),
 	EXPORT_BALANCED_RELATIONSHIP_STUDENT_NORMAL_DETAIL(35,"平衡关系(分表)-乐团在读学员"),
 	EXPORT_BALANCED_RELATIONSHIP_STUDENT_QUIT_DETAIL(36,"平衡关系(分表)-乐团退团学员") -->
 	EXPORT_BALANCED_RELATIONSHIP_STUDENT_QUIT_DETAIL(36,"平衡关系(分表)-乐团退团学员") -->
@@ -221,6 +223,7 @@
 </template>
 </template>
 <script>
 <script>
 import ExportChiose from "@/components/Export-chiose";
 import ExportChiose from "@/components/Export-chiose";
+import { getTimes } from "@/utils";
 import dayjs from "dayjs";
 import dayjs from "dayjs";
 export default {
 export default {
   name: "balanced-relationship",
   name: "balanced-relationship",
@@ -235,11 +238,17 @@ export default {
           return time.getTime() + 86400000 > dayjs(new Date()).startOf("month");
           return time.getTime() + 86400000 > dayjs(new Date()).startOf("month");
         }
         }
       },
       },
+      pickerOptions2: {
+        firstDayOfWeek: 1,
+        disabledDate(time) {
+          return time.getTime() > dayjs(new Date()).startOf("month");
+        }
+      },
       organId1: [], // 乐团梯队数据
       organId1: [], // 乐团梯队数据
       month2: "", // 平衡关系-乐团课
       month2: "", // 平衡关系-乐团课
       month3: "", // 平衡关系-VIP已排课
       month3: "", // 平衡关系-VIP已排课
       month4: "", // 平衡关系-VIP未排课
       month4: "", // 平衡关系-VIP未排课
-      month5: "", // 平衡关系-乐团课剩余时长
+      month5: [], // 平衡关系-缴费项目课时明细
       month6: "", // 平衡关系-学员情况总表
       month6: "", // 平衡关系-学员情况总表
       month7: "" // 平衡关系(分表)-乐团退团学员
       month7: "" // 平衡关系(分表)-乐团退团学员
     };
     };
@@ -293,7 +302,7 @@ export default {
     },
     },
     exportData5() {
     exportData5() {
       let data = {
       let data = {
-        month: this.month5
+        ...getTimes(this.month5, ["startMonth", "endMonth"], "YYYY-MM")
       };
       };
       return data;
       return data;
     },
     },

+ 1 - 1
vue.config.js

@@ -19,7 +19,7 @@ const name = defaultSettings.title || "管乐迷后台管理系统"; // page tit
 // let target = 'http://192.168.3.20:8000' //邹璇
 // let target = 'http://192.168.3.20:8000' //邹璇
 // let target = "http://192.168.0.127:8000"; //勇哥
 // let target = "http://192.168.0.127:8000"; //勇哥
 // let target = "http://192.168.3.14:8005"; // 原谅
 // let target = "http://192.168.3.14:8005"; // 原谅
-let target = "https://dev.dayaedu.com"; //测试环境
+let target = "https://test.dayaedu.com"; //测试环境
 // All configuration item explanations can be find in https://cli.vuejs.org/config/
 // All configuration item explanations can be find in https://cli.vuejs.org/config/
 module.exports = {
 module.exports = {
   /**
   /**