Browse Source

fix style

Michael Wang 6 năm trước cách đây
mục cha
commit
30ebe0b7e6

+ 13 - 1
src/features/Login/Login.vue

@@ -91,8 +91,10 @@ export default {
       this.loginType = "STUDENT_IDENTITY_NUMBER";
     }
     this.$Message.config({
-      duration: 10
+      duration: 150,
+      size: "large"
     });
+    this.$Message.info("test");
 
     try {
       const res = await this.$http.get(
@@ -288,3 +290,13 @@ export default {
   color: #444444;
 }
 </style>
+
+
+<style>
+.ivu-message-notice-content-text {
+  font-size: 32px;
+}
+.ivu-message-notice-content-text i.ivu-icon {
+  font-size: 32px;
+}
+</style>

+ 1 - 1
src/features/OnlineExam/Examing/ExamingEnd.vue

@@ -7,7 +7,7 @@
       <div class="qm-big-text score-text" v-if="showObjectScore && !examResult.isWarn">客观题得分: <span style="color: red">{{examResult.objectiveScore}}</span></div>
       <div class="qm-big-text score-text" v-if="exam.examType !== 'ONLINE' && showObjectScore && !examResult.isWarn">客观题正确率: <span style="color: red">{{examResult.objectiveAccuracy}}%</span></div>
       <div class="qm-big-text score-text" v-if="examResult.isWarn">客观题得分: 成绩待审核</div>
-      <h1 v-if="examResult.isWarn" class="">违纪提示: </h1>
+      <h1 v-if="examResult.isWarn" class="" style="text-align: left;">违纪提示: </h1>
       <div v-if="examResult.isWarn" class="" style="text-align: left;  padding-bottom: 20px">
         <p v-html="cheatingRemark"></p>
       </div>