Browse Source

app2.0 课表 接口修改

娄底高职分支
杨晓琪 2 years ago
parent
commit
fc3b7b9f0a
3 changed files with 6 additions and 6 deletions
  1. +4
    -4
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/OpenLessonPlanOfElectiveStudent/list.vue
  2. +1
    -1
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/OpenLessonPlanOfElectiveStudentPre/list.vue
  3. +1
    -1
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/OpenLessonPlanOfElectiveStudentSelected/list.vue

+ 4
- 4
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/OpenLessonPlanOfElectiveStudent/list.vue View File

@@ -102,14 +102,14 @@ export default {
}; };
if (true) { if (true) {
_postParam.queryJson = JSON.stringify({ _postParam.queryJson = JSON.stringify({
StuNo: _this.user.account,
StuMajorNo: _this.user.majorno,
StuGrade: _this.user.grade
StuNo: _this.user.account||undefined,
StuMajorNo: _this.user.majorno||undefined,
StuGrade: _this.user.grade||undefined
}); });
} }
// console.log(_this.user) // console.log(_this.user)
_this.LOADING('加载数据中…') _this.LOADING('加载数据中…')
_this.HTTP_GET('learun/EducationalAdministration/OpenLessonPlanOfElectiveStudent/pagelist', _postParam, '加载数据时出错').then(res => {
_this.HTTP_GET('learun/OpenLessonPlanOfElectiveStudent/pagelist', _postParam, '加载数据时出错').then(res => {
_this.HIDE_LOADING(); _this.HIDE_LOADING();
// console.log(res); // console.log(res);
this.data = this.data.concat(res.rows); this.data = this.data.concat(res.rows);


+ 1
- 1
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/OpenLessonPlanOfElectiveStudentPre/list.vue View File

@@ -108,7 +108,7 @@ export default {
}); });
} }
_this.LOADING('加载数据中…') _this.LOADING('加载数据中…')
_this.HTTP_GET('learun/EducationalAdministration/OpenLessonPlanOfElectiveStudent/pagelist', _postParam, '加载数据时出错').then(res => {
_this.HTTP_GET('learun/OpenLessonPlanOfElectiveStudent/pagelist', _postParam, '加载数据时出错').then(res => {
_this.HIDE_LOADING(); _this.HIDE_LOADING();
// console.log(res); // console.log(res);
this.data = this.data.concat(res.rows); this.data = this.data.concat(res.rows);


+ 1
- 1
Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/OpenLessonPlanOfElectiveStudentSelected/list.vue View File

@@ -106,7 +106,7 @@ export default {
}); });
} }
_this.LOADING('加载数据中…') _this.LOADING('加载数据中…')
_this.HTTP_GET('learun/EducationalAdministration/OpenLessonPlanOfElectiveStudent/studentpagelist', _postParam, '加载数据时出错').then(res => {
_this.HTTP_GET('learun/OpenLessonPlanOfElectiveStudent/studentpagelist', _postParam, '加载数据时出错').then(res => {
_this.HIDE_LOADING(); _this.HIDE_LOADING();
// console.log(res); // console.log(res);
this.data = this.data.concat(res.rows); this.data = this.data.concat(res.rows);


Loading…
Cancel
Save