“front-end” пре 3 година
родитељ
комит
c0ffaca7f3
1 измењених фајлова са 12 додато и 7 уклоњено
  1. 12 7
      src/pages/main/fullcalendar/calendar.vue

+ 12 - 7
src/pages/main/fullcalendar/calendar.vue

@@ -91,7 +91,7 @@
           <el-form-item label="参会角色" prop="orgId">
             <el-select
               v-model="form.orgId"
-              style="width:483px"
+              style="width: 70%; overflow: hidden"
               clearable
               filterable
               placeholder="参会角色"
@@ -110,7 +110,7 @@
             <el-select
               v-model="form.isParty"
               clearable
-               style="width:483px"
+              style="width: 70%"
               filterable
               placeholder="是否是党会"
             >
@@ -587,7 +587,7 @@ export default {
       //   });
       // });
       arrayData.forEach((item) => {
-        console.log('item', item)
+        console.log("item", item);
         newArr.push({
           newBeginTime: item.begindate.split(" ")[1].substr(0, 5),
           newEndTime: item.enddate.split(" ")[1].substr(0, 5),
@@ -662,10 +662,10 @@ export default {
     showEwm(a) {
       if (a == 0) {
         this.showEvmStatus = false;
-        this.closexuan()
-      }else{
+        this.closexuan();
+      } else {
         //驶入
-        this.showEvmStatus = true
+        this.showEvmStatus = true;
       }
     },
     //渲染窗体
@@ -733,7 +733,7 @@ export default {
     // 点击日历
     handleDateClick: function (arg) {
       this.form.orgId = [];
-      this.form.isParty = ''
+      this.form.isParty = "";
       this.titleNew = "会议新增";
       if (!this.auth) {
         return;
@@ -1027,4 +1027,9 @@ export default {
   border: none !important;
   background-color: #fff !important;
 }
+::v-deep .el-select__tags{
+  flex-flow: inherit;
+  overflow: hidden;
+  flex-wrap: inherit;
+}
 </style>