Selaa lähdekoodia

Merge branch 'master' of http://git.qmth.com.cn/ExamCloud-3/examcloud-web-admin

chenken 6 vuotta sitten
vanhempi
commit
c589a192b0

+ 2 - 1
src/modules/basic/view/course.vue

@@ -367,7 +367,7 @@
         <el-dialog
           title="添加关联专业"
           :visible.sync="addRelationDialog"
-          width="380px"
+          width="400px"
           @close="() => this.$refs.addRelationForm.clearValidate()"
         >
           <el-form
@@ -381,6 +381,7 @@
               <el-form-item label="专业" prop="specialtyId">
                 <el-select
                   class="input"
+                  style="width: 200px"
                   remote
                   :remote-method="getSpecialtyList4AddRelation"
                   @focus="e => getSpecialtyList4AddRelation(e.target.value)"

+ 2 - 1
src/modules/basic/view/specially.vue

@@ -227,7 +227,7 @@
       <!-- 添加关联 -->
       <el-dialog
         title="添加关联课程"
-        width="380px"
+        width="400px"
         :visible.sync="addRelationDialog"
         @close="() => this.$refs.addRelationForm.clearValidate()"
       >
@@ -242,6 +242,7 @@
             <el-form-item label="课程" class="pull-left" prop="courseId">
               <el-select
                 class="input"
+                style="width: 200px"
                 :remote-method="getCourses4AddRelation"
                 @focus="e => getCourses4AddRelation(e.target.value)"
                 :loading="courseLoading4AddRelation"

+ 1 - 1
src/modules/basic/view/user.vue

@@ -631,7 +631,7 @@ export default {
         this.rules.orgId = [
           {
             validator: this.validateOrg,
-            trigger: "blur,change"
+            trigger: ["blur", "change"]
           }
         ];
       } else {