eoss-ui 0.4.17 → 0.4.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eoss-ui",
3
- "version": "0.4.17",
3
+ "version": "0.4.18",
4
4
  "description": "eoss内部业务组件",
5
5
  "main": "lib/eoss-ui.common.js",
6
6
  "files": [
@@ -91,7 +91,7 @@
91
91
  "cp-cli": "^1.0.2",
92
92
  "cross-env": "^3.1.3",
93
93
  "css-loader": "^2.1.0",
94
- "eoss-element": "^0.2.40",
94
+ "eoss-element": "^0.2.42",
95
95
  "es6-promise": "^4.0.5",
96
96
  "eslint": "4.18.2",
97
97
  "eslint-config-elemefe": "0.1.1",
@@ -8,6 +8,7 @@
8
8
  :close-on-click-modal="shadeClose"
9
9
  :fullscreen="full"
10
10
  :drag="drag"
11
+ :modal-append-to-body="modalAppendToBody"
11
12
  v-bind="$attrs"
12
13
  v-on="$listeners"
13
14
  :class="{ 'is-middle': middle }"
@@ -307,6 +308,10 @@ export default {
307
308
  type: Boolean,
308
309
  default: true
309
310
  },
311
+ modalAppendToBody: {
312
+ type: Boolean,
313
+ default: true
314
+ },
310
315
  appendToBody: {
311
316
  type: [Boolean, String],
312
317
  default: true
@@ -376,7 +381,7 @@ export default {
376
381
  this.ht = this.height ? this.height : this.sizes[this.size]['height'];
377
382
  }
378
383
  if (this.busEvent) {
379
- mbus.$on(this.busEvent, async res => {
384
+ mbus.$on(this.busEvent, async (res) => {
380
385
  this.titles = res.title;
381
386
  this.handler && (await this.handler(res, this));
382
387
  this.handleShow();
@@ -42,7 +42,7 @@
42
42
  </el-option>
43
43
  </el-select> -->
44
44
  <!-- class="select-user-icon el-button--primary" -->
45
- <div style="position:relative">
45
+ <div style="position: relative">
46
46
  <!-- <es-selector
47
47
  v-if="isChange"
48
48
  v-model="newSelectUserList"
@@ -72,6 +72,7 @@
72
72
  @cancel="cancelSelectUser"
73
73
  @change="getSelectUser"
74
74
  :param="newParams"
75
+ ><i class="es-icon-user"></i
75
76
  ></es-selector>
76
77
  <!-- :action="url" -->
77
78
  <!-- :where="{type:'user',a:'1'}" -->
@@ -262,14 +263,14 @@ export default {
262
263
  url: handleInfo,
263
264
  params: { searchKey: query, query, type: 'user' }
264
265
  })
265
- .then(res => {
266
+ .then((res) => {
266
267
  const { status, data } = res;
267
268
  this.searchLoading = false;
268
269
  if (status === 'success') {
269
270
  this.newOptions = data;
270
271
  }
271
272
  })
272
- .catch(err => {
273
+ .catch((err) => {
273
274
  this.searchLoading = false;
274
275
  if (err.message && err.message !== 'canceled') {
275
276
  this.$message.error(err.message);
@@ -282,8 +283,8 @@ export default {
282
283
  changeSelectUser(val) {
283
284
  this.newSelectUserList = [];
284
285
  if (this.newMultiple) {
285
- val.map(item => {
286
- this.newOptions.map(items => {
286
+ val.map((item) => {
287
+ this.newOptions.map((items) => {
287
288
  if (item === items.id) {
288
289
  this.newSelectUserList.push({
289
290
  showname: items.name,
@@ -293,7 +294,7 @@ export default {
293
294
  });
294
295
  });
295
296
  } else {
296
- this.newOptions.map(item => {
297
+ this.newOptions.map((item) => {
297
298
  if (item.id === val) {
298
299
  this.newSelectUserList.push({
299
300
  showname: item.name,
@@ -329,7 +330,7 @@ export default {
329
330
  if (this.newMultiple) {
330
331
  this.newNextUser = [];
331
332
 
332
- this.newSelectUserList.map(item => {
333
+ this.newSelectUserList.map((item) => {
333
334
  if (this.mix) {
334
335
  this.newOptions.push({
335
336
  ...item,
@@ -371,7 +372,7 @@ export default {
371
372
  let data = {};
372
373
  if (this.mix) data = this.getMixList();
373
374
  if (this.newMultiple) {
374
- this.newNextUser.map(item => {
375
+ this.newNextUser.map((item) => {
375
376
  // if (this.mix) {
376
377
  // this.newOptions.push({
377
378
  // id: item.showid,
@@ -381,8 +382,8 @@ export default {
381
382
  // } else {
382
383
  // this.newOptions.push({...item, id: item.showid, name: item.showname });
383
384
  // }
384
- this.newOptions.map(items => {
385
- oldUserList.map(val => {
385
+ this.newOptions.map((items) => {
386
+ oldUserList.map((val) => {
386
387
  if (items.showid != val.showid && val.showid == item) {
387
388
  this.newSelectUserList.push({
388
389
  ...val
@@ -397,7 +398,7 @@ export default {
397
398
  });
398
399
  });
399
400
  var obj = {};
400
- this.newSelectUserList = this.newSelectUserList.reduce(function(
401
+ this.newSelectUserList = this.newSelectUserList.reduce(function (
401
402
  item,
402
403
  next
403
404
  ) {
@@ -406,7 +407,7 @@ export default {
406
407
  },
407
408
  []);
408
409
  } else {
409
- this.newOptions.map(item => {
410
+ this.newOptions.map((item) => {
410
411
  if (item.showid === this.newNextUser) {
411
412
  this.newSelectUserList.push({
412
413
  ...item
@@ -215,9 +215,7 @@ export default {
215
215
  //host
216
216
  host: {
217
217
  type: String,
218
- default() {
219
- return util.getStorage('host') ? util.getStorage('host') : '';
220
- }
218
+ default: ''
221
219
  },
222
220
  header: {
223
221
  type: Boolean,
@@ -1232,7 +1230,7 @@ export default {
1232
1230
  if (urls[0].indexOf('.js') > 1) {
1233
1231
  this.method = 'wujie';
1234
1232
  this.wjName = 'singlespa';
1235
- this.page = page;
1233
+ this.page = this.host + page;
1236
1234
  this.$nextTick(() => {
1237
1235
  this.refresh = true;
1238
1236
  });
@@ -1284,7 +1282,7 @@ export default {
1284
1282
  } else {
1285
1283
  this.method = 'wujie';
1286
1284
  this.wjName = res.appCode ? res.appCode : 'application';
1287
- this.page = page;
1285
+ this.page = this.host + page;
1288
1286
  this.$nextTick(() => {
1289
1287
  this.refresh = true;
1290
1288
  });
@@ -91,7 +91,7 @@
91
91
  ref="openDialog"
92
92
  v-if="filterable && showButton"
93
93
  @click.stop="openDialog"
94
- >选择</el-button
94
+ ><slot>选择</slot></el-button
95
95
  >
96
96
  </template>
97
97
  </el-input>
@@ -130,7 +130,7 @@
130
130
  ref="openDialog"
131
131
  v-if="filterable && showButton"
132
132
  @click.stop="openDialog"
133
- >选择</el-button
133
+ ><slot>选择</slot></el-button
134
134
  >
135
135
  </template>
136
136
  </el-input>
@@ -249,7 +249,7 @@ export default {
249
249
  valueType: {
250
250
  type: String,
251
251
  default: 'object',
252
- validator: function(value) {
252
+ validator: function (value) {
253
253
  return ['string', 'object'].includes(value);
254
254
  }
255
255
  },
@@ -350,7 +350,7 @@ export default {
350
350
  return this.selected[this.labelKey];
351
351
  } else if (Array.isArray(this.selected)) {
352
352
  return this.selected
353
- .map(item => {
353
+ .map((item) => {
354
354
  return typeof item === 'string' ? item : item[this.labelKey];
355
355
  })
356
356
  .join(',');
@@ -442,11 +442,11 @@ export default {
442
442
  url: this.action,
443
443
  params: params
444
444
  })
445
- .then(res => {
445
+ .then((res) => {
446
446
  if (res.rCode === 0) {
447
447
  this.options = res.results;
448
448
  if (this.selected.length && this.multiple) {
449
- this.selected.forEach(item => {
449
+ this.selected.forEach((item) => {
450
450
  let i = util.indexOfObj(this.options, item, this.valueKey);
451
451
  if (i > -1) {
452
452
  this.options[i].selected = true;
@@ -456,7 +456,7 @@ export default {
456
456
  this.show = true;
457
457
  }
458
458
  })
459
- .catch(err => {
459
+ .catch((err) => {
460
460
  if (err.message && err.message !== 'canceled') {
461
461
  this.$message.error(err.message);
462
462
  }
@@ -528,7 +528,7 @@ export default {
528
528
  let inputChildNodes = this.$refs.reference.$el.childNodes;
529
529
  let input = [].filter.call(
530
530
  inputChildNodes,
531
- item => item.tagName === 'INPUT'
531
+ (item) => item.tagName === 'INPUT'
532
532
  )[0];
533
533
  if (input) {
534
534
  input.focus();
@@ -567,7 +567,7 @@ export default {
567
567
  let inputChildNodes = this.$refs.reference.$el.childNodes;
568
568
  let input = [].filter.call(
569
569
  inputChildNodes,
570
- item => item.tagName === 'INPUT'
570
+ (item) => item.tagName === 'INPUT'
571
571
  )[0];
572
572
  input.style.height = height;
573
573
  }
@@ -1 +1 @@
1
- @charset "UTF-8";.commonOpinion-set,.es-flow-index{-webkit-box-orient:vertical;-webkit-box-direction:normal}.es-common-opinions,.es-fenyue-buttons,.es-flow-buttons,.es-flow-title,.es-opinion{padding:0 12px}.es-user-defined{display:-webkit-box;display:-ms-flexbox;display:flex}.es-user-defined .el-button--primary{-webkit-box-flex:1;-ms-flex:1;flex:1}.no-checked .el-checkbox__input{display:none!important}.es-flow-index{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-bottom:12px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.es-flow-index .el-checkbox-group{display:contents}.es-flow-index .es-eidt-title{font-size:13px;color:#333;line-height:20px}.es-flow-index .es-flow-top{height:350px}.es-flow-index .es-flow-top .es-flow-title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:40px}.es-flow-index .es-flow-top .es-flow-title .es-icon{margin:0 4px}.es-flow-index .es-flow-top .es-opinion{display:-webkit-box;display:-ms-flexbox;display:flex;margin:8px 0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.es-flow-index .es-flow-top .es-opinion .es-opinion-file{cursor:pointer;position:relative}.es-flow-index .es-flow-top .es-opinion .es-opinion-file .es-file-num{color:red}.es-flow-index .es-button-agree{width:calc(43% - 15px)}.es-flow-index .es-button-agree-save{margin-top:10px}.commonOpinion-set{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:100%}.commonOpinion-set .el-table__body-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1}.es-flow-index-shrink{width:24px}.es-flow-index-shrink img{cursor:pointer;width:24px;height:24px}.es-flow-form .el-checkbox-group{display:contents}.es-flow-index .el-input-group--prepend>.el-input__inner,.es-flow-index .select-process>.el-input__inner{display:none!important}.es-flow-form .el-textarea:first-child,.es-flow-index .el-textarea{width:100%;margin-bottom:10px!important}.es-flow-form .es-opinions .el-select,.es-flow-index .el-select{width:calc(100% + 40px)!important}.es-flow-index .el-select .el-input{width:100%;height:40px}.es-flow-index .process .el-select{width:calc(100% + 40px)!important}.es-flow-index .input-with-select .el-input-group__prepend{background-color:#fff;width:100%}.es-flow-index .select-process .el-input-group__append{height:40px}.es-flow-index button.el-button.sub.el-button--primary.el-button--medium{width:calc(100% - 85px)}.es-flow-index .el-input-group--prepend>.el-input-group__append{height:40px}.es-flow-index .demo-dynamic .el-select{width:100%!important}.es-flow-index .demo-dynamic .select-process .el-select,.es-flow-index .demo-dynamic .selectUser,.es-flow-index.task-union-examine .el-select{width:calc(100% + 40px)!important}.es-flow-index .el-input.el-input-group.el-input-group--append.el-input-group--prepend{margin:0!important}.es-flow-index .demo-dynamic,.es-flow-index .es-footer-btn{margin-top:10px}.es-flow-index .es-footer-btn .el-button+.el-button{margin:10px 10px 0 0}.es-flow-index .el-input.is-disabled .el-input__inner{color:#606266}.es-flow-index .btn{margin-right:10px}.es-flow-index .es-info{padding:0 8px;-webkit-box-flex:1;-ms-flex:1;flex:1;overflow-y:auto;overflow-x:hidden}.es-flow-index .es-info::-webkit-scrollbar{width:5px}.es-flow-index .news{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;cursor:pointer;padding:10px 0}.es-flow-index .news .sj,.show{width:10px;height:10px;border-right:1px solid #000;border-bottom:1px solid #000;margin-right:10px;-webkit-transform:rotate(-135deg);transform:rotate(-135deg);-webkit-transition:.5s;transition:.5s}.es-flow-index .news .show{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.es-flow-index .el-checkbox{margin:0 10px 10px 0}.es-flow-index .info::-webkit-scrollbar-track{-webkit-box-shadow:inset006pxrgba(0,0,0,.3);border-radius:10px}::-webkit-scrollbar-thumb{border-radius:10px;background:rgba(0,0,0,.1);-webkit-box-shadow:inset006pxrgba(0,0,0,.5)}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected::after{right:5px!important}.es-flow-form .input-with-select{width:100%;margin-top:0}.es-flow-form .el-select{width:100%}.es-flow-form .es-opinions .el-select{width:calc(100% + 40px)!important}.select-users .el-input-group__append .el-button span,.select-users .no-icon .el-input-group__append{display:none}.select-users .el-input-group__append{background-color:#1890ff}.select-users .el-input-group__append .el-button::after{content:'';display:inline-block;width:25px;height:25px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAAx5JREFUaEPtWO1RFUEQnI4AiUCJQIhAjECNQI1AiECNQIhAiUCIQIlAjECMQIigrX41Y21d+W4/D+pRb6v4wbvbven56OlZ2IYvbLj9tgVw3xHcRuDBRYDkazN7aWb7ZvbEAV6b2ZWZnQM4Gwl6WAqRlNGfEqPX2SkwxwDORwAZAoDkZzN74wZdmtkX9/aNfiP5yKOid575eycAjntBdANIjL8ViJxnSQrEiZntmNkpgKMeEF0APG2+mpmMPwSgPM8ukqqP7w7iVQ703IG9AH55zr8FoLQpXiTledXMNYC94o2TF5sBeCoo9y8BHLYYQFJRUE00R6EHgDwuyqz2foBNnHAGIEigyhc9AH441+8BEDVWL5LqE0rDKwAH1QeYtYs5ktQHATQ7wSm265zmj5MUx+8MAnALQL2ievUAiAIckULNRNADQFLghcsCNabqlVDpvRSxqPNbD4+TjD7yHIAiWr2aI+AFKPZ53BKFxPu/AYRqvXMAEQV9+KBCSqT7mr2/YsFqyJMNiSf15AjA6dyZJN+5mNNrktVN9RPf6AbgqfTBzN77oUorGaXmJGktOS25IAEn/RPp0m38kAiEJxJlWhLUZu0zPbw7AiSVz0oLTWQ1SzT8sbRu1h3cDMB1jNImFWEXmsRErZ5C6UQWM7KAqn/EkigUkCY91QTA00VSWu1fw4xyXiPiyuDc8hFT9aA/TWbap7Sq7gXVACYsIo9rjCwyfArMgSgCEZEsi3XVwIQyh7CIs1RMZ/q3ar4ojoAXq6RD9UdyKeUgVEtKS63i5lYEwAtWA4xyfpjn/5NSEQmlpDp7trBLAcT4eAGgli5LAvDvHZKhcosUahZAMvaJbfZLvFJl8eTl5Ht6kp01SgCER8TVkgyLL5IhTbJRKAHwx3N/t5UuaxEnUbgBsDu3fxZAom9+AlAnvbNFUrd8T3N3RjkA6rDSOYsxzzqPJD1n9v40ByAG92JeHhWipO/MDvwPHsCqgHvvflqj4pdns4Wci4AoVACaLm9bDY99fvkrAGubZ5ZGe41Yev8WwNIezp2/jUDOQ0s/3/gI/AUY12NA2FztQAAAAABJRU5ErkJggg==) no-repeat;background-size:100% 100%;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);z-index:10}.es-flow-form .input-with-select .el-input-group__prepend{background-color:#fff;width:100%}.es-flow-form .el-input-group--prepend>.el-input__inner{display:none!important}.es-flow-form button.el-button.sub.el-button--danger.el-button--medium{width:calc(100% - 85px)}.es-flow-form .el-input-group--prepend>.el-input-group__append{height:40px}.es-flow-form .el-form-item__label{font-weight:700}.es-flow-form .el-input.is-disabled .el-input__inner{color:#000}.select-user{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.select-user .left{width:30%}.select-user .right{padding:3px;width:69%}.select-user .el-checkbox{width:170px;margin-top:11px;margin-bottom:11px}.select-user .all{margin:0!important}
1
+ @charset "UTF-8";.commonOpinion-set,.es-flow-index{-webkit-box-orient:vertical;-webkit-box-direction:normal}.es-common-opinions,.es-fenyue-buttons,.es-flow-buttons,.es-flow-title,.es-opinion{padding:0 12px}.es-user-defined{display:-webkit-box;display:-ms-flexbox;display:flex}.es-user-defined .el-button--primary{-webkit-box-flex:1;-ms-flex:1;flex:1}.no-checked .el-checkbox__input{display:none!important}.es-flow-index{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;padding-bottom:12px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.es-flow-index .el-checkbox-group{display:contents}.es-flow-index .es-eidt-title{font-size:13px;color:#333;line-height:20px}.es-flow-index .es-flow-top{height:350px}.es-flow-index .es-flow-top .es-flow-title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:40px}.es-flow-index .es-flow-top .es-flow-title .es-icon{margin:0 4px}.es-flow-index .es-flow-top .es-opinion{display:-webkit-box;display:-ms-flexbox;display:flex;margin:8px 0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.es-flow-index .es-flow-top .es-opinion .es-opinion-file{cursor:pointer;position:relative}.es-flow-index .es-flow-top .es-opinion .es-opinion-file .es-file-num{color:red}.es-flow-index .es-button-agree{width:calc(43% - 15px)}.es-flow-index .es-button-agree-save{margin-top:10px}.commonOpinion-set{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;height:100%}.commonOpinion-set .el-table__body-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1}.es-flow-index-shrink{width:24px}.es-flow-index-shrink img{cursor:pointer;width:24px;height:24px}.es-flow-form .el-checkbox-group{display:contents}.es-flow-index .el-input-group--prepend>.el-input__inner,.es-flow-index .select-process>.el-input__inner{display:none!important}.es-flow-form .el-textarea:first-child,.es-flow-index .el-textarea{width:100%;margin-bottom:10px!important}.es-flow-form .es-opinions .el-select,.es-flow-index .el-select{width:calc(100% + 40px)!important}.es-flow-index .el-select .el-input{width:100%;height:40px}.es-flow-index .process .el-select{width:calc(100% + 40px)!important}.es-flow-index .input-with-select .el-input-group__prepend{background-color:#fff;width:100%}.es-flow-index .select-process .el-input-group__append{height:40px}.es-flow-index button.el-button.sub.el-button--primary.el-button--medium{width:calc(100% - 85px)}.es-flow-index .el-input-group--prepend>.el-input-group__append{height:40px}.es-flow-index .demo-dynamic .el-select{width:100%!important}.es-flow-index .demo-dynamic .select-process .el-select,.es-flow-index .demo-dynamic .selectUser,.es-flow-index.task-union-examine .el-select{width:calc(100% + 40px)!important}.es-flow-index .el-input.el-input-group.el-input-group--append.el-input-group--prepend{margin:0!important}.es-flow-index .demo-dynamic,.es-flow-index .es-footer-btn{margin-top:10px}.es-flow-index .es-footer-btn .el-button+.el-button{margin:10px 10px 0 0}.es-flow-index .el-input.is-disabled .el-input__inner{color:#606266}.es-flow-index .btn{margin-right:10px}.es-flow-index .es-info{padding:0 8px;-webkit-box-flex:1;-ms-flex:1;flex:1;overflow-y:auto;overflow-x:hidden}.es-flow-index .es-info::-webkit-scrollbar{width:5px}.es-flow-index .news{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;cursor:pointer;padding:10px 0}.es-flow-index .news .sj,.show{width:10px;height:10px;border-right:1px solid #000;border-bottom:1px solid #000;margin-right:10px;-webkit-transform:rotate(-135deg);transform:rotate(-135deg);-webkit-transition:.5s;transition:.5s}.es-flow-index .news .show{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.es-flow-index .el-checkbox{margin:0 10px 10px 0}.es-flow-index .info::-webkit-scrollbar-track{-webkit-box-shadow:inset006pxrgba(0,0,0,.3);border-radius:10px}::-webkit-scrollbar-thumb{border-radius:10px;background:rgba(0,0,0,.1);-webkit-box-shadow:inset006pxrgba(0,0,0,.5)}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected::after{right:5px!important}.es-flow-form .input-with-select{width:100%;margin-top:0}.es-flow-form .el-select{width:100%}.es-flow-form .es-opinions .el-select{width:calc(100% + 40px)!important}.select-users .el-input-group__append .el-button span,.select-users .no-icon .el-input-group__append{display:none}.select-users .el-input-group__append{background-color:#1890ff}.select-users .el-input-group__append .el-button i{font-size:18px;color:#fff}.es-flow-form .input-with-select .el-input-group__prepend{background-color:#fff;width:100%}.es-flow-form .el-input-group--prepend>.el-input__inner{display:none!important}.es-flow-form button.el-button.sub.el-button--danger.el-button--medium{width:calc(100% - 85px)}.es-flow-form .el-input-group--prepend>.el-input-group__append{height:40px}.es-flow-form .el-form-item__label{font-weight:700}.es-flow-form .el-input.is-disabled .el-input__inner{color:#000}.select-user{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.select-user .left{width:30%}.select-user .right{padding:3px;width:69%}.select-user .el-checkbox{width:170px;margin-top:11px;margin-bottom:11px}.select-user .all{margin:0!important}