Browse Source

app2.0:选修课相关;学生成绩查询;

yanshi
dyy 2 years ago
parent
commit
6637f45868
4 changed files with 7 additions and 7 deletions
  1. +2
    -2
      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. +3
    -3
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/OpenLessonPlanOfElectiveStudentSelected/list.vue
  4. +1
    -1
      Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/studentSee/list.vue

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

@@ -44,9 +44,9 @@
</view>
<view class="">
<text>已报名人数:</text>
{{ item.StuNumOfApplyPre }}
{{ item.StuNumOfApply }}
</view>
<view class="pageType">{{ typePd(item.StatusPre) }}</view>
<view class="pageType bg-green" style="width: 20%;">{{ typePd(item.StatusPre) }}</view>
<view class="delbtn" @click.stop="delTap(item)">取消报名</view>
</view>
</l-customlist>


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

@@ -46,7 +46,7 @@
<text>已报名人数:</text>
{{ item.StuNumOfApplyPre }}
</view>
<view class="pageType">{{ typePd(item.StatusPre) }}</view>
<view class="pageType bg-green" style="width: 20%;">{{ typePd(item.StatusPre) }}</view>
<view class="delbtn" @click.stop="delTap(item)">取消报名</view>
</view>
</l-customlist>


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

@@ -45,7 +45,7 @@
</view>
<view class="">
<text>已报名人数:</text>
{{ item.StuNumOfApplyPre }}
{{ item.StuNum }}
</view>
<view class="pageType">{{ typePd(item.Status) }}</view>
</view>
@@ -73,11 +73,11 @@ export default {
};
},
onUnload() {
this.OFF('EducationalAdministrationBookBorrow-list-change');
// this.OFF('EducationalAdministrationOpenLessonPlanOfElectiveStudentSelected-list-change');
},
methods: {
init() {
this.ON('EducationalAdministrationBookBorrow-list-change', this.refreshList);
// this.ON('EducationalAdministrationOpenLessonPlanOfElectiveStudentSelected-list-change', this.refreshList);
// 拉取加载列表和数据源
Promise.all([() => {}]);
var _this = this;


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

@@ -20,7 +20,7 @@
<view v-for="n in data.ScoreList" :key="n.LessonName">
<image mode="widthFix" src="~@/common/images/book.png"></image>
{{ n.LessonName }}
<text>{{ n.Score }}</text>
<text>{{ n.Score != null ?n.Score:0 }}</text>
</view>
</view>
</view>


Loading…
Cancel
Save