Commit 57498034 by lizhi

优化

parent 3b6dabb6
...@@ -610,6 +610,7 @@ export default { ...@@ -610,6 +610,7 @@ export default {
this.addUpdateCourse.courseCode = courseCode; this.addUpdateCourse.courseCode = courseCode;
this.addUpdateCourse.csoName = csoName; this.addUpdateCourse.csoName = csoName;
this.addUpdateCourse.csoCode = csoCode; this.addUpdateCourse.csoCode = csoCode;
this.getData();
}, },
//编辑 //编辑
handleUpdateSchoolAll( handleUpdateSchoolAll(
......
...@@ -1060,7 +1060,9 @@ export default { ...@@ -1060,7 +1060,9 @@ export default {
}).then(() => { }).then(() => {
this.goOnForm.umsUserCourses = this.goOnForm.userCourseList; //新来的后端比较菜,原来的接口字段不会改,只能搞了个新的名字 this.goOnForm.umsUserCourses = this.goOnForm.userCourseList; //新来的后端比较菜,原来的接口字段不会改,只能搞了个新的名字
this.goOnForm.umsUserCourses.forEach(item => { this.goOnForm.umsUserCourses.forEach(item => {
if (item.auditCourseName) {
item.courseName = item.auditCourseName; item.courseName = item.auditCourseName;
}
}); });
addCurrentTermCourse(this.goOnForm).then(response => { addCurrentTermCourse(this.goOnForm).then(response => {
this.$message({ this.$message({
......
...@@ -146,12 +146,19 @@ ...@@ -146,12 +146,19 @@
<p>Address: Room 703, Building B, BS, Jungong Road</p> <p>Address: Room 703, Building B, BS, Jungong Road</p>
<p>No. 334,Yangpu District,Shanghai, China 200093</p> <p>No. 334,Yangpu District,Shanghai, China 200093</p>
</div> </div>
<div class="sign"> <!-- <div class="sign">
<div class="date"> <div class="date">
<span>Date of Issue:</span> <span>Date:</span>
<span>{{ getTime }}</span> <span>{{ getTime }}</span>
<p>SEAL</p> <p>SEAL</p>
</div> </div>
</div> -->
<div class="sign">
<div class="Seal">Seal</div>
<div class="date">
<span>Date:</span>
<span>{{ getTime }}</span>
</div>
</div> </div>
</div> </div>
</div> </div>
...@@ -388,7 +395,7 @@ export default { ...@@ -388,7 +395,7 @@ export default {
align-items: center; align-items: center;
width: 100%; width: 100%;
height: 140px; height: 140px;
margin: 60px 0 100px; margin: 120px 0 40px;
p { p {
// font-weight:bold; // font-weight:bold;
} }
...@@ -407,15 +414,31 @@ export default { ...@@ -407,15 +414,31 @@ export default {
} }
} }
// .sign {
// .date {
// position: relative;
// margin-top: 70px;
// p {
// position: absolute;
// top: -31px;
// left: 111px;
// }
// }
// }
.sign { .sign {
.date { display: flex;
position: relative; flex-direction: column;
margin-top: 70px; align-items: center;
p { margin-top: 80px;
position: absolute; .Seal {
top: -31px; margin-bottom: 5px;
left: 111px; color: #95a5a6;
opacity: 0.5;
} }
.date {
display: flex;
// position: relative;
// margin-top: 70px;
} }
} }
} }
......
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