Commit 1dfea91d authored by 罗超's avatar 罗超

Merge branch 'master' of http://gitlab.oytour.com/luochao/confucius into master

parents f2ee7edd ea4ee0cf
...@@ -1473,6 +1473,7 @@ ...@@ -1473,6 +1473,7 @@
query: { query: {
ClassId: rowData.ClassId, ClassId: rowData.ClassId,
School_Id: rowData.SchoolId, School_Id: rowData.SchoolId,
ClassName:encodeURI(rowData.ClassName),
blank: 'y' blank: 'y'
} }
}) })
......
...@@ -3344,7 +3344,8 @@ ...@@ -3344,7 +3344,8 @@
path: '/course/' + path, path: '/course/' + path,
query: { query: {
'ClassId': item.ClassId, 'ClassId': item.ClassId,
'School_Id': item.School_Id 'School_Id': item.School_Id,
'ClassName': encodeURI(item.ClassName) ,
} }
}) })
} else { } else {
......
...@@ -2204,7 +2204,9 @@ ...@@ -2204,7 +2204,9 @@
path: '/course/' + path, path: '/course/' + path,
query: { query: {
'ClassId': item.ClassId, 'ClassId': item.ClassId,
'School_Id': item.School_Id 'School_Id': item.School_Id,
'ClassName': encodeURI(item.ClassName) ,
} }
}) })
} else { } else {
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
<div class="plan_Inner" style="align-items:center;" v-if="subItem.CompleteProgress>=0"> <div class="plan_Inner" style="align-items:center;" v-if="subItem.CompleteProgress>=0">
<div class="plan_LeftTitle">课程进度:</div> <div class="plan_LeftTitle">课程进度:</div>
<div class="plan_RightInner"> <div class="plan_RightInner">
<el-progress :percentage="subItem.CompleteProgress"></el-progress> {{subItem.Ranks}}/{{subItem.TotalPlanNum}}
</div> </div>
</div> </div>
</div> </div>
......
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