diff --git a/src/components/drawers/CheckStu.vue b/src/components/drawers/CheckStu.vue
index 5c286b41..135b6c1e 100644
--- a/src/components/drawers/CheckStu.vue
+++ b/src/components/drawers/CheckStu.vue
@@ -22,8 +22,8 @@
-
{{pro.userInfoBo.userName}}
-
{{pro.userInfoBo.deptName?pro.userInfoBo.deptName:"" + '-' + pro.userInfoBo.jobName?pro.userInfoBo.jobName:""}}
+
{{pro.name}}
+
{{pro.deptName?pro.deptName:"" + '-' + pro.jobName?pro.jobName:""}}
进度排名
diff --git a/src/components/drawers/SeeStu.vue b/src/components/drawers/SeeStu.vue
index 64c4df78..af4595de 100644
--- a/src/components/drawers/SeeStu.vue
+++ b/src/components/drawers/SeeStu.vue
@@ -65,8 +65,8 @@
-
{{ name }}
-
+
{{ name }}
+
排序号:{{ sort }}
@@ -205,6 +205,7 @@ export default {
showDown: true,
showDown1: false,
rank:{total:1,current:1},
+ sort:null,
stageList: [
// {
// stageName: "阶段1腾飞班阶段1",
@@ -362,14 +363,16 @@ export default {
state.loading = false
console.log("查看了学员", res.data.data);
let result = res.data.data;
- state.userName = result.userInfoBo.userName;
- state.deptName = result.userInfoBo.deptName;
- state.jobName = result.userInfoBo.jobName;
+ state.userName = result.userName;
+ state.deptName = result.deptName;
+ state.jobName = result.jobName;
state.certCnt = result.certCnt == null ? 0 : result.certCnt;
state.name = result.name;
state.currentReqCnt = result.currentReqCnt;
state.totalReqCnt = result.totalReqCnt;
+
if (result.stageProcessList.length > 0) {
+ state.sort = result.stageProcessList[0].sort;
setStageList(result.stageProcessList);
}
});
diff --git a/src/views/examine/CourseReviewedN.vue b/src/views/examine/CourseReviewedN.vue
index e4c2a765..5e4f2a69 100644
--- a/src/views/examine/CourseReviewedN.vue
+++ b/src/views/examine/CourseReviewedN.vue
@@ -35,7 +35,7 @@
width: 270px;
height: 40px;
border-radius: 8px;
- margin-right: 14px;
+ margin-right: 5%;
" placeholder="请输入创建人" />
@@ -43,7 +43,7 @@
width: 270px;
height: 40px;
border-radius: 8px;
- margin-right: 14px;
+ margin-right:5%;
" placeholder="请输入名称" />
diff --git a/src/views/projectcenter/LibraryAdd.vue b/src/views/projectcenter/LibraryAdd.vue
index 77f2a8bb..9cffc944 100644
--- a/src/views/projectcenter/LibraryAdd.vue
+++ b/src/views/projectcenter/LibraryAdd.vue
@@ -344,7 +344,7 @@
规则
-
+
编辑
@@ -1145,7 +1145,9 @@ export default defineComponent({
.then((res) => {
console.log("获取了项目积分规则", res.data.data);
let result = res.data.data;
- scoresum.value = result.totalScore; //Write operation failed: computed value is readonly
+ console.log("获取了项目积分规则:", result);
+ if(result.size>0){
+ scoresum.value = result.totalScore==null?0:result.totalScore; //Write operation failed: computed value is readonly
state.seven1 = result.leaderScore;
state.score1 = result.courseScore;
state.done2 = result.homeworkItem[1].scoreLimit;
@@ -1160,6 +1162,8 @@ export default defineComponent({
state.six1 = result.signScore;
state.seven1 = result.leaderScore;
state.seven2 = result.topStudentScore;
+ }
+
})
.catch((err) => {
console.log("获取项目积分规则失败了", err);