sd-prison-select 1.0.21 → 1.0.23

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.
@@ -184,22 +184,171 @@ return /******/ (function(modules) { // webpackBootstrap
184
184
  //
185
185
  //
186
186
  //
187
+ //
188
+ //
189
+ //
190
+ //
191
+ //
192
+ //
193
+ //
194
+ //
195
+ //
196
+ //
197
+ //
198
+ //
199
+ //
200
+ //
201
+ //
202
+ //
203
+ //
204
+ //
205
+ //
206
+ //
207
+ //
208
+ //
209
+ //
210
+ //
211
+ //
212
+ //
213
+ //
214
+ //
215
+ //
216
+ //
217
+ //
218
+ //
219
+ //
220
+ //
221
+ //
222
+ //
223
+ //
224
+ //
225
+ //
226
+ //
227
+ //
228
+ //
229
+ //
230
+ //
231
+ //
232
+ //
233
+ //
234
+ //
235
+ //
236
+ //
237
+ //
238
+ //
239
+ //
240
+ //
241
+ //
242
+ //
243
+ //
244
+ //
245
+ //
246
+ //
247
+ //
248
+ //
249
+ //
250
+ //
251
+ //
252
+ //
253
+ //
254
+ //
255
+ //
256
+ //
257
+ //
258
+ //
259
+ //
260
+ //
261
+ //
262
+ //
263
+ //
264
+ //
265
+ //
266
+ //
267
+ //
268
+ //
269
+ //
270
+ //
271
+ //
272
+ //
273
+ //
274
+ //
275
+ //
276
+ //
277
+ //
278
+ //
279
+ //
280
+ //
281
+ //
282
+ //
283
+ //
284
+ //
285
+ //
286
+ //
287
+ //
288
+ //
289
+ //
290
+ //
291
+ //
292
+ //
293
+ //
294
+ //
295
+ //
296
+ //
297
+ //
298
+ //
299
+ //
300
+ //
301
+ //
302
+ //
303
+ //
304
+ //
305
+ //
306
+ //
307
+ //
308
+ //
309
+ //
310
+ //
311
+ //
312
+ //
313
+ //
314
+ //
315
+ //
316
+ //
317
+ //
318
+ //
319
+ //
320
+ //
321
+ //
322
+ //
323
+ //
324
+ //
325
+ //
326
+ //
327
+ //
328
+ //
329
+ //
330
+ //
187
331
 
188
332
  /* harmony default export */ __webpack_exports__["a"] = ({
189
- name: 'user-selector',
333
+ name: "user-selector",
190
334
  props: {
335
+ // 禁止选择人员
336
+ disabledCard: {
337
+ type: String,
338
+ default: ""
339
+ },
191
340
  // 选择框的值
192
341
  value: {
193
342
  type: String,
194
- default: ''
343
+ default: ""
195
344
  },
196
345
  text: {
197
346
  type: String,
198
- default: ''
347
+ default: ""
199
348
  },
200
349
  tit: {
201
350
  type: String,
202
- default: '民警选择'
351
+ default: "民警选择"
203
352
  },
204
353
  // 页面上放置返回内容的id(id或loginId或idCard)
205
354
  idField: String,
@@ -207,20 +356,20 @@ return /******/ (function(modules) { // webpackBootstrap
207
356
  // 例如返回身份证展示在页面上:<input :id="test" value="" />,则idField为test,returnField为idCard
208
357
  returnField: {
209
358
  type: String,
210
- default: 'idCard'
359
+ default: "idCard"
211
360
  },
212
361
  button: {
213
362
  type: String,
214
- default: '选 择'
363
+ default: "选 择"
215
364
  },
216
365
  // 数量表达式(对选择人数的限制,例如num>2,num3)
217
366
  numExp: {
218
367
  type: String,
219
- default: ''
368
+ default: ""
220
369
  },
221
370
  orgCode: {
222
371
  type: String,
223
- default: ''
372
+ default: ""
224
373
  },
225
374
  bindEvent: {
226
375
  type: Boolean,
@@ -249,7 +398,7 @@ return /******/ (function(modules) { // webpackBootstrap
249
398
  // 岗位
250
399
  post: {
251
400
  type: String,
252
- default: ''
401
+ default: ""
253
402
  },
254
403
  // 是否可选择岗位
255
404
  selectPost: {
@@ -264,13 +413,13 @@ return /******/ (function(modules) { // webpackBootstrap
264
413
  },
265
414
  data: function data() {
266
415
  return {
267
- title: '用户选择',
416
+ title: "用户选择",
268
417
  modal: false,
269
418
  showmModal: false,
270
419
  // 单位编号(修改后id保存的其实就是code的值,后台只需维护一个字段,前端this.$store.state.common.orgCode依然保存的是单位编号)
271
- orgId: '',
420
+ orgId: "",
272
421
  // 查询条件(姓名、登录名、身份证号等)
273
- condition: '',
422
+ condition: "",
274
423
  // 是否包含其他单位
275
424
  hasOthers: false,
276
425
  // 左侧已选民警身份证号数组
@@ -309,6 +458,27 @@ return /******/ (function(modules) { // webpackBootstrap
309
458
  }
310
459
  },
311
460
 
461
+ deep: true,
462
+ immediate: true
463
+ },
464
+ // 监听禁止选择的用户信息
465
+ disabledCard: {
466
+ handler: function handler(newvalue, oldvalue) {
467
+ var _this2 = this;
468
+
469
+ var arrnewvalue = newvalue ? newvalue.join(",") : [];
470
+ console.log("禁止选择的用户信息:", arrnewvalue);
471
+ if (newvalue) {
472
+ this.policeList.forEach(function (ele) {
473
+ arrnewvalue.forEach(function (item) {
474
+ if (item.idCard == ele.idCard) {
475
+ _this2.$set(ele, "disabled", true);
476
+ }
477
+ });
478
+ });
479
+ }
480
+ },
481
+
312
482
  deep: true,
313
483
  immediate: true
314
484
  }
@@ -316,12 +486,12 @@ return /******/ (function(modules) { // webpackBootstrap
316
486
  mounted: function mounted() {
317
487
  if (this.bindEvent && this.$slots.func) {
318
488
  this.reference = this.$slots.func[0].elm;
319
- this.reference.addEventListener('click', this.openDialog);
489
+ this.reference.addEventListener("click", this.openDialog);
320
490
  }
321
491
  },
322
492
  beforeDestroy: function beforeDestroy() {
323
493
  if (this.reference) {
324
- this.reference.removeEventListener('click', this.changeVisiable, false);
494
+ this.reference.removeEventListener("click", this.changeVisiable, false);
325
495
  }
326
496
  },
327
497
 
@@ -329,27 +499,27 @@ return /******/ (function(modules) { // webpackBootstrap
329
499
  orgAll: function orgAll(val) {
330
500
  this.searchData();
331
501
  },
332
- openDialog: function openDialog() {
502
+ openDialog: function openDialog(data) {
333
503
  if (this.defaultSelectAll) this.hasOthers = true;
334
504
  this.orgId = this.orgCode ? this.orgCode : this.$store.state.common.orgCode;
335
505
  // 获取左侧民警数据
336
506
  this.getPoliceData();
337
507
  // 初始化已选择民警
338
- this.getPoliceByFieldData(this.value);
508
+ this.getPoliceByFieldData(data || this.value);
339
509
  this.showmModal = true;
340
510
  this.modal = true;
341
511
  },
342
512
  clearData: function clearData() {
343
- this.$emit('input', '');
344
- this.$emit('update:text', '');
345
- this.$emit('onClear');
513
+ this.$emit("input", "");
514
+ this.$emit("update:text", "");
515
+ this.$emit("onClear");
346
516
  },
347
517
 
348
518
  // 民警数据解密
349
519
  decrypt: function decrypt(userList) {
350
520
  var userListUncode = userList;
351
521
  // 加密的属性
352
- var propList = this.sensitiveDataProp.split(',');
522
+ var propList = this.sensitiveDataProp.split(",");
353
523
  var _iteratorNormalCompletion = true;
354
524
  var _didIteratorError = false;
355
525
  var _iteratorError = undefined;
@@ -407,42 +577,47 @@ return /******/ (function(modules) { // webpackBootstrap
407
577
 
408
578
  // 获取民警数据
409
579
  getPoliceData: function getPoliceData() {
410
- var _this2 = this;
580
+ var _this3 = this;
411
581
 
412
582
  var orgId = this.orgId;
413
583
  // 查询全部
414
584
  if (this.hasOthers) {
415
- orgId = '';
585
+ orgId = "";
416
586
  }
417
587
  this.policeList = [];
418
588
  // 查询服务获取民警列表
419
- this.$store.dispatch('postRequest', {
420
- url: '/bsp-uac/uac/user/getOptionalPolice', params: { orgId: orgId, condition: this.condition, post: this.postCode }
589
+ this.$store.dispatch("postRequest", {
590
+ url: "/bsp-uac/uac/user/getOptionalPolice",
591
+ params: {
592
+ orgId: orgId,
593
+ condition: this.condition,
594
+ post: this.postCode
595
+ }
421
596
  }).then(function (d) {
422
597
  if (d.success) {
423
- if (_this2.isSensitiveDataEncrypt) {
424
- d.data = _this2.decrypt(d.data);
598
+ if (_this3.isSensitiveDataEncrypt) {
599
+ d.data = _this3.decrypt(d.data);
425
600
  }
426
601
  d.data.forEach(function (item) {
427
- item.keyId = '' + item.idCard + item.orgId;
602
+ item.keyId = "" + item.idCard + item.orgId;
428
603
  });
429
- _this2.policeList = d.data;
430
- _this2.policeCache = d.data;
431
- _this2.selectedIdCardArr = [];
432
- if (_this2.selectedList.length > 0) {
604
+ _this3.policeList = d.data;
605
+ _this3.policeCache = d.data;
606
+ _this3.selectedIdCardArr = [];
607
+ if (_this3.selectedList.length > 0) {
433
608
  var _iteratorNormalCompletion3 = true;
434
609
  var _didIteratorError3 = false;
435
610
  var _iteratorError3 = undefined;
436
611
 
437
612
  try {
438
- for (var _iterator3 = _this2.selectedList[Symbol.iterator](), _step3; !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done); _iteratorNormalCompletion3 = true) {
613
+ for (var _iterator3 = _this3.selectedList[Symbol.iterator](), _step3; !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done); _iteratorNormalCompletion3 = true) {
439
614
  var i = _step3.value;
440
615
 
441
- if (_this2.isSensitiveDataEncrypt) {
442
- _this2.selectedIdCardArr.push(decodeURIComponent(atob(i.idCard)) + i.orgId);
616
+ if (_this3.isSensitiveDataEncrypt) {
617
+ _this3.selectedIdCardArr.push(decodeURIComponent(atob(i.idCard)) + i.orgId);
443
618
  } else {
444
- var obj = '' + i.idCard + i.orgId;
445
- _this2.selectedIdCardArr.push(obj);
619
+ var obj = "" + i.idCard + i.orgId;
620
+ _this3.selectedIdCardArr.push(obj);
446
621
  }
447
622
  }
448
623
  // console.log(this.selectedIdCardArr,'this.selectedIdCardArr')
@@ -469,37 +644,40 @@ return /******/ (function(modules) { // webpackBootstrap
469
644
 
470
645
  // 根据字段初始值获取民警信息
471
646
  getPoliceByFieldData: function getPoliceByFieldData(data) {
472
- var _this3 = this;
647
+ var _this4 = this;
473
648
 
474
649
  var _this = this;
475
- if (data == '') {
650
+ if (data == "") {
476
651
  this.selectedIdCardArr = [];
477
652
  this.selectedList = [];
478
653
  return false;
479
654
  }
480
655
 
481
- this.$store.dispatch('postRequest', { url: '/bsp-uac/uac/user/getByFieldData', params: { field: this.returnField, value: data } }).then(function (d) {
656
+ this.$store.dispatch("postRequest", {
657
+ url: "/bsp-uac/uac/user/getByFieldData",
658
+ params: { field: this.returnField, value: data }
659
+ }).then(function (d) {
482
660
  if (d.success) {
483
661
  // 渲染右侧列表
484
662
  d.data.forEach(function (item, index) {
485
- item.keyId = '' + item.idCard + _this3.orgCode;
663
+ item.keyId = "" + item.idCard + _this4.orgCode;
486
664
  });
487
665
  _this.selectedList = d.data;
488
- _this3.selectedIdCardArr = [];
489
- if (_this3.policeList.length > 0) {
666
+ _this4.selectedIdCardArr = [];
667
+ if (_this4.policeList.length > 0) {
490
668
  var _iteratorNormalCompletion4 = true;
491
669
  var _didIteratorError4 = false;
492
670
  var _iteratorError4 = undefined;
493
671
 
494
672
  try {
495
- for (var _iterator4 = _this3.selectedList[Symbol.iterator](), _step4; !(_iteratorNormalCompletion4 = (_step4 = _iterator4.next()).done); _iteratorNormalCompletion4 = true) {
673
+ for (var _iterator4 = _this4.selectedList[Symbol.iterator](), _step4; !(_iteratorNormalCompletion4 = (_step4 = _iterator4.next()).done); _iteratorNormalCompletion4 = true) {
496
674
  var i = _step4.value;
497
675
 
498
- if (_this3.isSensitiveDataEncrypt) {
499
- _this3.selectedIdCardArr.push(decodeURIComponent(atob(i.idCard)) + i.orgId);
676
+ if (_this4.isSensitiveDataEncrypt) {
677
+ _this4.selectedIdCardArr.push(decodeURIComponent(atob(i.idCard)) + i.orgId);
500
678
  } else {
501
- var obj = '' + i.idCard + i.orgId;
502
- _this3.selectedIdCardArr.push(obj);
679
+ var obj = "" + i.idCard + i.orgId;
680
+ _this4.selectedIdCardArr.push(obj);
503
681
  }
504
682
  }
505
683
  } catch (err) {
@@ -544,8 +722,8 @@ return /******/ (function(modules) { // webpackBootstrap
544
722
  // })
545
723
  // }
546
724
  } else {
547
- _this3.$Modal.warning({
548
- title: '温馨提示',
725
+ _this4.$Modal.warning({
726
+ title: "温馨提示",
549
727
  content: d.msg
550
728
  });
551
729
  }
@@ -570,13 +748,13 @@ return /******/ (function(modules) { // webpackBootstrap
570
748
 
571
749
  // 改变单位
572
750
  changeOrg: function changeOrg() {
573
- this.condition = '';
751
+ this.condition = "";
574
752
  this.getPoliceData();
575
753
  },
576
754
 
577
755
  // 改变岗位
578
756
  changePost: function changePost() {
579
- this.condition = '';
757
+ this.condition = "";
580
758
  this.getPoliceData();
581
759
  },
582
760
 
@@ -591,7 +769,7 @@ return /******/ (function(modules) { // webpackBootstrap
591
769
 
592
770
  for (var i = 0; i < this.policeCache.length; i++) {
593
771
  var condition = this.condition;
594
- if (condition != '') {
772
+ if (condition != "") {
595
773
  if (this.policeCache[i].name.indexOf(condition) != -1 || this.policeCache[i].loginId.indexOf(condition) != -1 || this.policeCache[i].idCard.toUpperCase().indexOf(condition.toUpperCase()) != -1) {
596
774
  this.policeList.push(this.policeCache[i]);
597
775
  // break;
@@ -616,7 +794,7 @@ return /******/ (function(modules) { // webpackBootstrap
616
794
  return false;
617
795
  }
618
796
  } else {
619
- if (this.numExp === 'num==1') {
797
+ if (this.numExp === "num==1") {
620
798
  this.selectedIdCardArr = [];
621
799
  this.selectedList = [];
622
800
  }
@@ -648,7 +826,7 @@ return /******/ (function(modules) { // webpackBootstrap
648
826
 
649
827
  // 对话框确定事件
650
828
  ok: function ok() {
651
- var _this4 = this;
829
+ var _this5 = this;
652
830
 
653
831
  // 是否选择人员
654
832
  // if (this.selectedList.length == 0) {
@@ -663,7 +841,7 @@ return /******/ (function(modules) { // webpackBootstrap
663
841
  var num = this.selectedList.length;
664
842
  if (this.selectedList.length == 0 || this.numExp && !eval(this.numExp)) {
665
843
  this.$Modal.warning({
666
- title: '温馨提示',
844
+ title: "温馨提示",
667
845
  content: this.msg
668
846
  });
669
847
  return false;
@@ -673,12 +851,12 @@ return /******/ (function(modules) { // webpackBootstrap
673
851
  var ids = [];
674
852
  this.selectedList.forEach(function (item) {
675
853
  names.push(item.name);
676
- ids.push(item[_this4.returnField]);
854
+ ids.push(item[_this5.returnField]);
677
855
  });
678
- this.$emit('input', ids.join(','));
679
- var textValue = names.join(',');
680
- this.$emit('update:text', textValue);
681
- this.$emit('onSelect', this.selectedList);
856
+ this.$emit("input", ids.join(","));
857
+ var textValue = names.join(",");
858
+ this.$emit("update:text", textValue);
859
+ this.$emit("onSelect", this.selectedList);
682
860
  this.cancel();
683
861
  },
684
862
 
@@ -687,10 +865,10 @@ return /******/ (function(modules) { // webpackBootstrap
687
865
  this.modal = false;
688
866
  this.selectedIdCardArr = [];
689
867
  this.selectedList = [];
690
- if (bool) this.$emit('onCancel');
868
+ if (bool) this.$emit("onCancel");
691
869
  },
692
870
  focus: function focus() {
693
- this.$refs['input'].focus();
871
+ this.$refs["input"].focus();
694
872
  },
695
873
 
696
874
  // 左侧民警选择事件(全选/反选)
@@ -707,7 +885,7 @@ return /******/ (function(modules) { // webpackBootstrap
707
885
  }
708
886
  }
709
887
  } else {
710
- if (this.numExp === 'num==1') {
888
+ if (this.numExp === "num==1") {
711
889
  this.selectedIdCardArr = [];
712
890
  this.selectedList = [];
713
891
  }
@@ -721,15 +899,14 @@ return /******/ (function(modules) { // webpackBootstrap
721
899
  }
722
900
  },
723
901
  handleAllChecked: function handleAllChecked() {
724
- var _this5 = this;
902
+ var _this6 = this;
725
903
 
726
904
  this.checkAll = !this.checkAll;
727
905
  this.policeList.forEach(function (item, index) {
728
- _this5.selectPoliceAll(index, item, _this5.checkAll);
906
+ _this6.selectPoliceAll(index, item, _this6.checkAll);
729
907
  });
730
908
  }
731
909
  }
732
-
733
910
  });
734
911
 
735
912
  /***/ }),
@@ -757,7 +934,7 @@ var Plugin = {
757
934
  "use strict";
758
935
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_node_modules_iview_loader_index_js_ref_5_user_selector_vue__ = __webpack_require__(0);
759
936
  /* unused harmony namespace reexport */
760
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_2e74d226_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_user_selector_vue__ = __webpack_require__(9);
937
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_bcedbce0_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_user_selector_vue__ = __webpack_require__(9);
761
938
  function injectStyle (ssrContext) {
762
939
  __webpack_require__(3)
763
940
  }
@@ -772,12 +949,12 @@ var __vue_template_functional__ = false
772
949
  /* styles */
773
950
  var __vue_styles__ = injectStyle
774
951
  /* scopeId */
775
- var __vue_scopeId__ = "data-v-2e74d226"
952
+ var __vue_scopeId__ = "data-v-bcedbce0"
776
953
  /* moduleIdentifier (server only) */
777
954
  var __vue_module_identifier__ = null
778
955
  var Component = normalizeComponent(
779
956
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_node_modules_iview_loader_index_js_ref_5_user_selector_vue__["a" /* default */],
780
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_2e74d226_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_user_selector_vue__["a" /* default */],
957
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_bcedbce0_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_node_modules_iview_loader_index_js_ref_5_user_selector_vue__["a" /* default */],
781
958
  __vue_template_functional__,
782
959
  __vue_styles__,
783
960
  __vue_scopeId__,
@@ -798,7 +975,7 @@ var content = __webpack_require__(4);
798
975
  if(typeof content === 'string') content = [[module.i, content, '']];
799
976
  if(content.locals) module.exports = content.locals;
800
977
  // add the styles to the DOM
801
- var update = __webpack_require__(6)("8b91ac8a", content, true);
978
+ var update = __webpack_require__(6)("5cf0c8de", content, true);
802
979
 
803
980
  /***/ }),
804
981
  /* 4 */
@@ -809,7 +986,7 @@ exports = module.exports = __webpack_require__(5)(false);
809
986
 
810
987
 
811
988
  // module
812
- exports.push([module.i, "[data-v-2e74d226].ivu-input:hover{border:1px solid #cee0f0}[data-v-2e74d226].ivu-input:focus{border:1px solid #2b5fd9;box-shadow:none}[data-v-2e74d226].user-selector-modal .ivu-modal-header{padding:0!important}[data-v-2e74d226].user-selector-modal .ivu-modal-body{height:550px;padding:16px!important}[data-v-2e74d226].user-selector-modal .ivu-modal-footer{height:50px;line-height:50px;background:#f7faff;padding:0 18px}[data-v-2e74d226].user-selector-modal .ivu-modal-footer .ivu-btn>span{font-size:16px}[data-v-2e74d226].user-selector-modal .ivu-input{font-size:16px;height:32px;line-height:1.5}[data-v-2e74d226].user-selector-modal .ivu-checkbox-wrapper.ivu-checkbox-large{font-size:16px}[data-v-2e74d226].user-selector-input .ivu-input-icon{right:66px;font-size:20px}[data-v-2e74d226].user-selector-input .ivu-input{font-size:16px}[data-v-2e74d226].user-selector-modal .ivu-icon-ios-close{font-size:32px;line-height:40px}[data-v-2e74d226].user-selector-input .ivu-input-search{font-size:15px;padding:0!important;width:70px;max-width:70px}.user-selector-modal .bsp-warp[data-v-2e74d226]{width:100%;height:100%;color:#333}.user-selector-modal .bsp-user-search-box[data-v-2e74d226]{display:flex;box-sizing:border-box;padding-left:5px}.user-selector-modal .bsp-user-search-box>input[data-v-2e74d226]{margin-left:0;font-size:16px;width:38%;height:30px;border:1px solid #e1e1e1;padding-left:10px;border-radius:2px}div.v-selectpage div.sp-input-container div.sp-input[data-v-2e74d226]{font-size:16px}.user-selector-modal .bsp-user-search-box>label[data-v-2e74d226]{font-size:16px;line-height:30px;margin:0 10px}[data-v-2e74d226].user-selector-modal .ivu-input{height:30px;line-height:30px}.user-selector-modal .bsp-user-Chebox[data-v-2e74d226]{line-height:30px;padding:0 0 0 16px}.user-selector-modal .bsp-user-center-in[data-v-2e74d226]{margin:10px 0 0}.user-selector-modal .bsp-user-lt_center[data-v-2e74d226]{width:100%;border-radius:2px}.user-selector-modal .bsp-user-lt_center>ul[data-v-2e74d226]{list-style:none;height:433px;overflow:auto;border:1px solid #cee0f0;border-top:none}.user-selector-modal .bsp-user-lt_center .cli[data-v-2e74d226],.user-selector-modal .bsp-user-lt_center_center .cli[data-v-2e74d226]{display:flex;justify-content:space-between;align-items:center;height:36px;line-height:36px;box-sizing:border-box;background-size:16px;cursor:pointer;position:relative}.user-selector-modal .bsp-user-lt_center .cli[data-v-2e74d226]{padding:22px 40px 22px 10px}.user-selector-modal .bsp-user-lt_center_center .cli[data-v-2e74d226]{padding:22px 10px}.user-selector-modal .bsp-user-lt_center .cli[data-v-2e74d226]{background:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAA4ElEQVQ4je3VsWrCYBTF8f/3WRJBTWJCXVpwEl2z1d36TNIHCH2m1r1O7qVLBzsaxUYIEZNyIwURh37NmvMAP85dzlXLzy3AAHgGJoCDWXbAHJiFffdDwCGwuOs2vaBt0dDKSDvmBesk42uTSrOHGyC695vebcc2LHaKFOg5NkrhreI00nKm37L+hZ1HrgOmAjqmZ16LVqXR1pWli9RgDdbgX8GdTFDV5EVpJALO4/2hMrhOSuNFBnYEvMkmBi0Lbbg8uQzsPmMVlwM7/n0BstoR8Ah0DMt9A6/AU9h3338A7TA+NnRfwIoAAAAASUVORK5CYII=\") no-repeat 96%;background-size:18px}.user-selector-modal .bsp-user-lt_center .cli.active[data-v-2e74d226]{background:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABeklEQVQ4ja3U3ytDcRjH8fc5+RXapoxFSrKIe60lSpILUpPQLswF90palJEa7l240FZSygUlN0YUpUm51OQfIIn9yOWmZ2abOrNs53P5/Z7n1fN8zzlfpXPqEcAKbAD9gIH/JQKcA27gqQRoA4KA6Z/QT6QBB9AH2FTAWwSWHTG8ampMvTKgFnBmf6Va1RFLpiDQNVjD7XYrC5Pm4sGpwRrmJ8xUVag4eoz5wfJShZaGMk3M2W9ifjzT1d7Ze37Q527i2NvM+qwFNWt3tNeI21mHoqSwwDtbh29/g/KwtfG7u2G7gdVpS3JtpNuAx1Wfxg4uw2zuv2pOIb9eInthyG7AO2NBTRUHHz7paq9Md3t0HWbZ90IiocVpjHxyE2HFnymwdWQw2fP4c2OaoOTwKsza7u/C07soizvPxOO5MUlJrg05J0VRmBur5eI+luwsH4bWGRYbNXWf6ZWYgHI56pWAgEvAhw6iGEsChuTrkJcLRAuApEZqbUDoC8xYY482/HjCAAAAAElFTkSuQmCC\") no-repeat 96%;background-size:18px}.user-selector-modal .bsp-user-lt_center_center .cli .btn-icon[data-v-2e74d226]{display:inline-block;width:25px;height:25px;background:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAABiklEQVQ4jY2UP08CQRTEfxwgoUAKCxrBwgYsSTRqA1FptUGpNbHw01jaaWUswMLaBDUmRv0CUBgbaCwsUCPyx2DeZU/21r3IJJvszXsz2Z3d29Dh2QMWlIBtYB1IA32gBdwCVeDSlESM7yxwBBQNPqpqMvaBa+AAaHoNjtZcAB4tJjYUVW/BNMoBF0BiAhMPCaXJekYh4BhI6l1TkfAfpYUTzYl4OCrQZb1ayGeolBaIx8YRyly4Yn7ONBPthhhVdDYWDZNJJZlJximv5VwDGTIXLp2adnsM7MjxPwHzOq8LXztdl/Pm51dNPr8GptGzo+6JD93ekFq94QrF4B8TwaxjY4MwGo0Ca2LUNklza97KvMwsaIvRnRm2biJb1LcpNUvYdTE61Zne4JvWy9uvieSlZyY16TFQlVMLqVX57pJcvv7QL7BxgPz1K7IiSXAPeNOrFoGN6wC74uGdWgPYBN5tSQbgA9hSWt/ffwMsAfcTmEjPotK4MM9S3pdV9bCVAx62mnrYxpcK+AFqcJJFhDD72QAAAABJRU5ErkJggg==\") no-repeat 96%;background-size:20px}.user-selector-modal .bsp-user-lt_center .cli[data-v-2e74d226]:hover{background-color:#f0f5ff}.user-selector-modal .bsp-user-lt_center_center[data-v-2e74d226]{width:100%;background:#fafbff}.user-selector-modal .bsp-user-lt_center_center .bsp-user-lt_center_ul[data-v-2e74d226]{list-style:none;height:433px;overflow:auto;border:1px solid #cee0f0;border-top:none}.user-selector-modal .bsp-user-loginId[data-v-2e74d226]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;margin:0 10px;width:70px;font-size:16px}.user-selector-modal .bsp-user-name[data-v-2e74d226]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:80px;font-size:16px}.user-selector-modal .bsp-user-orgId[data-v-2e74d226]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:200px;font-size:16px}.user-selector-modal .bsp-user-btn[data-v-2e74d226]{text-align:right}.user-selector-modal .bsp-user-btn button[data-v-2e74d226]{padding:4px 30px;margin:0 5px;outline:none;border:none;background:#0ea7e0;color:#fff;cursor:pointer;border-radius:2px}.user-selector-modal .btn button.no[data-v-2e74d226]{background:none;border:1px solid #ddd;color:#666}.user-selector-modal .btn button[data-v-2e74d226]:hover{opacity:.9}.user-selector-modal .flow-modal-title[data-v-2e74d226]{height:40px;background:#2b5fda;width:100%;text-indent:1em;color:#fff;line-height:40px}.cancle_btn[data-v-2e74d226]{min-width:60px;height:30px;background:#fff;border:1px solid #2b5fd9;color:#2b5fd9;border-radius:2px}.sure_btn[data-v-2e74d226]{min-width:60px;height:30px;background:#2b5fd9;border-radius:2px}.bsp-user-lt_center_ul[data-v-2e74d226]::-webkit-scrollbar,.bsp-user-lt_ul[data-v-2e74d226]::-webkit-scrollbar{width:10px;height:10px}.bsp-user-lt_center_ul[data-v-2e74d226]::-webkit-scrollbar-thumb,.bsp-user-lt_ul[data-v-2e74d226]::-webkit-scrollbar-thumb{border-radius:3px;background:#b7c7dd}.bsp-user-lt_center_ul[data-v-2e74d226]::-webkit-scrollbar-track,.bsp-user-lt_ul[data-v-2e74d226]::-webkit-scrollbar-track{border-radius:3px;background:#ededed}table[data-v-2e74d226]{border-collapse:collapse;border-spacing:0}td[data-v-2e74d226]{border:1px solid #cee0f0}.postName[data-v-2e74d226]{width:100px}.textOverflow[data-v-2e74d226]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}", ""]);
989
+ exports.push([module.i, "[data-v-bcedbce0].ivu-input:hover{border:1px solid #cee0f0}[data-v-bcedbce0].ivu-input:focus{border:1px solid #2b5fd9;box-shadow:none}[data-v-bcedbce0].user-selector-modal .ivu-modal-header{padding:0!important}[data-v-bcedbce0].user-selector-modal .ivu-modal-body{height:550px;padding:16px!important}[data-v-bcedbce0].user-selector-modal .ivu-modal-footer{height:50px;line-height:50px;background:#f7faff;padding:0 18px}[data-v-bcedbce0].user-selector-modal .ivu-modal-footer .ivu-btn>span{font-size:16px}[data-v-bcedbce0].user-selector-modal .ivu-input{font-size:16px;height:32px;line-height:1.5}[data-v-bcedbce0].user-selector-modal .ivu-checkbox-wrapper.ivu-checkbox-large{font-size:16px}[data-v-bcedbce0].user-selector-input .ivu-input-icon{right:66px;font-size:20px}[data-v-bcedbce0].user-selector-input .ivu-input{font-size:16px}[data-v-bcedbce0].user-selector-modal .ivu-icon-ios-close{font-size:32px;line-height:40px}[data-v-bcedbce0].user-selector-input .ivu-input-search{font-size:15px;padding:0!important;width:70px;max-width:70px}.user-selector-modal .bsp-warp[data-v-bcedbce0]{width:100%;height:100%;color:#333}.user-selector-modal .bsp-user-search-box[data-v-bcedbce0]{display:flex;box-sizing:border-box;padding-left:5px}.user-selector-modal .bsp-user-search-box>input[data-v-bcedbce0]{margin-left:0;font-size:16px;width:38%;height:30px;border:1px solid #e1e1e1;padding-left:10px;border-radius:2px}div.v-selectpage div.sp-input-container div.sp-input[data-v-bcedbce0]{font-size:16px}.user-selector-modal .bsp-user-search-box>label[data-v-bcedbce0]{font-size:16px;line-height:30px;margin:0 10px}[data-v-bcedbce0].user-selector-modal .ivu-input{height:30px;line-height:30px}.user-selector-modal .bsp-user-Chebox[data-v-bcedbce0]{line-height:30px;padding:0 0 0 16px}.user-selector-modal .bsp-user-center-in[data-v-bcedbce0]{margin:10px 0 0}.user-selector-modal .bsp-user-lt_center[data-v-bcedbce0]{width:100%;border-radius:2px}.user-selector-modal .bsp-user-lt_center>ul[data-v-bcedbce0]{list-style:none;height:433px;overflow:auto;border:1px solid #cee0f0;border-top:none}.user-selector-modal .bsp-user-lt_center .cli[data-v-bcedbce0],.user-selector-modal .bsp-user-lt_center_center .cli[data-v-bcedbce0]{display:flex;justify-content:space-between;align-items:center;height:36px;line-height:36px;box-sizing:border-box;background-size:16px;cursor:pointer;position:relative}.user-selector-modal .bsp-user-lt_center .cli[data-v-bcedbce0]{padding:22px 40px 22px 10px}.user-selector-modal .bsp-user-lt_center_center .cli[data-v-bcedbce0]{padding:22px 10px}.user-selector-modal .bsp-user-lt_center .cli[data-v-bcedbce0]{background:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAA4ElEQVQ4je3VsWrCYBTF8f/3WRJBTWJCXVpwEl2z1d36TNIHCH2m1r1O7qVLBzsaxUYIEZNyIwURh37NmvMAP85dzlXLzy3AAHgGJoCDWXbAHJiFffdDwCGwuOs2vaBt0dDKSDvmBesk42uTSrOHGyC695vebcc2LHaKFOg5NkrhreI00nKm37L+hZ1HrgOmAjqmZ16LVqXR1pWli9RgDdbgX8GdTFDV5EVpJALO4/2hMrhOSuNFBnYEvMkmBi0Lbbg8uQzsPmMVlwM7/n0BstoR8Ah0DMt9A6/AU9h3338A7TA+NnRfwIoAAAAASUVORK5CYII=\") no-repeat 96%;background-size:18px}.user-selector-modal .bsp-user-lt_center .cli.active[data-v-bcedbce0]{background:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABeklEQVQ4ja3U3ytDcRjH8fc5+RXapoxFSrKIe60lSpILUpPQLswF90palJEa7l240FZSygUlN0YUpUm51OQfIIn9yOWmZ2abOrNs53P5/Z7n1fN8zzlfpXPqEcAKbAD9gIH/JQKcA27gqQRoA4KA6Z/QT6QBB9AH2FTAWwSWHTG8ampMvTKgFnBmf6Va1RFLpiDQNVjD7XYrC5Pm4sGpwRrmJ8xUVag4eoz5wfJShZaGMk3M2W9ifjzT1d7Ze37Q527i2NvM+qwFNWt3tNeI21mHoqSwwDtbh29/g/KwtfG7u2G7gdVpS3JtpNuAx1Wfxg4uw2zuv2pOIb9eInthyG7AO2NBTRUHHz7paq9Md3t0HWbZ90IiocVpjHxyE2HFnymwdWQw2fP4c2OaoOTwKsza7u/C07soizvPxOO5MUlJrg05J0VRmBur5eI+luwsH4bWGRYbNXWf6ZWYgHI56pWAgEvAhw6iGEsChuTrkJcLRAuApEZqbUDoC8xYY482/HjCAAAAAElFTkSuQmCC\") no-repeat 96%;background-size:18px}.user-selector-modal .bsp-user-lt_center_center .cli .btn-icon[data-v-bcedbce0]{display:inline-block;width:25px;height:25px;background:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAABiklEQVQ4jY2UP08CQRTEfxwgoUAKCxrBwgYsSTRqA1FptUGpNbHw01jaaWUswMLaBDUmRv0CUBgbaCwsUCPyx2DeZU/21r3IJJvszXsz2Z3d29Dh2QMWlIBtYB1IA32gBdwCVeDSlESM7yxwBBQNPqpqMvaBa+AAaHoNjtZcAB4tJjYUVW/BNMoBF0BiAhMPCaXJekYh4BhI6l1TkfAfpYUTzYl4OCrQZb1ayGeolBaIx8YRyly4Yn7ONBPthhhVdDYWDZNJJZlJximv5VwDGTIXLp2adnsM7MjxPwHzOq8LXztdl/Pm51dNPr8GptGzo+6JD93ekFq94QrF4B8TwaxjY4MwGo0Ca2LUNklza97KvMwsaIvRnRm2biJb1LcpNUvYdTE61Zne4JvWy9uvieSlZyY16TFQlVMLqVX57pJcvv7QL7BxgPz1K7IiSXAPeNOrFoGN6wC74uGdWgPYBN5tSQbgA9hSWt/ffwMsAfcTmEjPotK4MM9S3pdV9bCVAx62mnrYxpcK+AFqcJJFhDD72QAAAABJRU5ErkJggg==\") no-repeat 96%;background-size:20px}.user-selector-modal .bsp-user-lt_center .cli[data-v-bcedbce0]:hover{background-color:#f0f5ff}.user-selector-modal .bsp-user-lt_center_center[data-v-bcedbce0]{width:100%;background:#fafbff}.user-selector-modal .bsp-user-lt_center_center .bsp-user-lt_center_ul[data-v-bcedbce0]{list-style:none;height:433px;overflow:auto;border:1px solid #cee0f0;border-top:none}.user-selector-modal .bsp-user-loginId[data-v-bcedbce0]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;margin:0 10px;width:70px;font-size:16px}.user-selector-modal .bsp-user-name[data-v-bcedbce0]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:80px;font-size:16px}.user-selector-modal .bsp-user-orgId[data-v-bcedbce0]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:200px;font-size:16px}.user-selector-modal .bsp-user-btn[data-v-bcedbce0]{text-align:right}.user-selector-modal .bsp-user-btn button[data-v-bcedbce0]{padding:4px 30px;margin:0 5px;outline:none;border:none;background:#0ea7e0;color:#fff;cursor:pointer;border-radius:2px}.user-selector-modal .btn button.no[data-v-bcedbce0]{background:none;border:1px solid #ddd;color:#666}.user-selector-modal .btn button[data-v-bcedbce0]:hover{opacity:.9}.user-selector-modal .flow-modal-title[data-v-bcedbce0]{height:40px;background:#2b5fda;width:100%;text-indent:1em;color:#fff;line-height:40px}.cancle_btn[data-v-bcedbce0]{min-width:60px;height:30px;background:#fff;border:1px solid #2b5fd9;color:#2b5fd9;border-radius:2px}.sure_btn[data-v-bcedbce0]{min-width:60px;height:30px;background:#2b5fd9;border-radius:2px}.bsp-user-lt_center_ul[data-v-bcedbce0]::-webkit-scrollbar,.bsp-user-lt_ul[data-v-bcedbce0]::-webkit-scrollbar{width:10px;height:10px}.bsp-user-lt_center_ul[data-v-bcedbce0]::-webkit-scrollbar-thumb,.bsp-user-lt_ul[data-v-bcedbce0]::-webkit-scrollbar-thumb{border-radius:3px;background:#b7c7dd}.bsp-user-lt_center_ul[data-v-bcedbce0]::-webkit-scrollbar-track,.bsp-user-lt_ul[data-v-bcedbce0]::-webkit-scrollbar-track{border-radius:3px;background:#ededed}table[data-v-bcedbce0]{border-collapse:collapse;border-spacing:0}td[data-v-bcedbce0]{border:1px solid #cee0f0}.postName[data-v-bcedbce0]{width:100px}.textOverflow[data-v-bcedbce0]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}", ""]);
813
990
 
814
991
  // exports
815
992
 
@@ -1264,7 +1441,10 @@ module.exports = function normalizeComponent (
1264
1441
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
1265
1442
 
1266
1443
  "use strict";
1267
- var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',[(_vm.$slots.func)?_vm._t("func"):_c('Input',{ref:"input",staticClass:"user-selector-input",attrs:{"disabled":_vm.disabled,"readonly":"","clearable":"","search":"","enter-button":_vm.button,"placeholder":""},on:{"on-clear":_vm.clearData,"on-search":_vm.openDialog},model:{value:(_vm.text),callback:function ($$v) {_vm.text=$$v},expression:"text"}}),_vm._v(" "),_c('div',[(_vm.showmModal)?_c('Modal',{attrs:{"class-name":"user-selector-modal","width":"1100","title":_vm.title,"closable":false,"mask-closable":false},on:{"on-cancel":_vm.cancel},model:{value:(_vm.modal),callback:function ($$v) {_vm.modal=$$v},expression:"modal"}},[_c('div',{staticClass:"flow-modal-title",attrs:{"slot":"header"},slot:"header"},[_c('span',{staticStyle:{"font-size":"17px"}},[_vm._v(_vm._s(_vm.tit))]),_vm._v(" "),_c('span',{staticStyle:{"position":"absolute","right":"6px","cursor":"pointer"},on:{"click":function($event){return _vm.cancel(true)}}},[_c('i',{staticClass:"ivu-icon ivu-icon-ios-close"})])]),_vm._v(" "),[_c('div',{staticClass:"bsp-warp"},[_c('div',{staticClass:"pos-box"},[_c('div',[_c('div',{staticClass:"bsp-user-search-box"},[_c('label',[_vm._v("机构单位: ")]),_vm._v(" "),_c('div',{staticClass:"dicgrid"},[_c('s-dicgrid',{ref:"dicGrid",staticStyle:{"width":"300px"},attrs:{"clear":false,"dicName":"ZD_ORG_ID","disabled":!_vm.orgChange || _vm.hasOthers == true},on:{"change":_vm.changeOrg},model:{value:(_vm.orgId),callback:function ($$v) {_vm.orgId=$$v},expression:"orgId"}})],1),_vm._v(" "),_c('div',{staticClass:"bsp-user-Chebox"},[(_vm.orgChange)?_c('Checkbox',{attrs:{"size":"large"},on:{"on-change":_vm.orgAll},model:{value:(_vm.hasOthers),callback:function ($$v) {_vm.hasOthers=$$v},expression:"hasOthers"}},[_vm._v("机构全选")]):_vm._e()],1),_vm._v(" "),(_vm.selectPost)?[_c('label',[_vm._v(" 岗位: ")]),_vm._v(" "),_c('div',{staticClass:"post-dic",staticStyle:{"width":"430px"}},[_c('s-dicgrid',{ref:"post",attrs:{"isSearch":false,"multiple":_vm.multiPost,"dicName":"ZD_POST"},on:{"change":_vm.changePost},model:{value:(_vm.postCode),callback:function ($$v) {_vm.postCode=$$v},expression:"postCode"}})],1)]:_vm._e()],2),_vm._v(" "),_c('div',{staticClass:"bsp-user-center-in"},[_c('table',{staticStyle:{"border-width":"0px"}},[_c('tr',[_c('td',{staticStyle:{"border-bottom":"none","display":"flex","justify-content":"space-between","align-items":"center","padding":"0px 17px","width":"476px","height":"40px","line-height":"40px","background":"#F2F6FC"}},[_c('p',{staticStyle:{"font-size":"16px","font-weight":"bold","color":"#333"}},[_vm._v("用户列表")]),_vm._v(" "),_c('div',{staticStyle:{"width":"300px"}},[_c('Input',{attrs:{"type":"text","suffix":"ios-search","placeholder":"请输入姓名、警号或身份证查询","clearable":""},on:{"on-keyup":_vm.onKeyUp,"on-enter":_vm.searchData,"on-clear":_vm.searchData},model:{value:(_vm.condition),callback:function ($$v) {_vm.condition=$$v},expression:"condition"}})],1)]),_vm._v(" "),_c('td',{staticStyle:{"border-width":"0px","min-width":"16px"}}),_vm._v(" "),_c('td',{staticStyle:{"box-sizing":"border-box","width":"476px"}},[_c('div',{staticStyle:{"height":"40px","line-height":"40px","background":"#F2F6FC","color":"#333","font-size":"16px","font-weight":"bold","padding-left":"17px"}},[_vm._v("\n 已选用户")])])]),_vm._v(" "),_c('tr',[_c('td',{staticStyle:{"width":"476px","border-width":"0px","text-align":"left","background":"#FFFFFF"}},[_c('div',{staticClass:"bsp-user-lt_center"},[_c('ul',{staticClass:"bsp-user-lt_ul"},_vm._l((_vm.policeList),function(item,index){return _c('li',{key:index + 'AA',staticClass:"cli",class:{ active: _vm.selectedIdCardArr.indexOf(item.keyId) != -1 },on:{"click":function($event){return _vm.selectPolice(index, item)}}},[_c('div',{staticClass:"bsp-user-name",attrs:{"title":item.name}},[_vm._v(_vm._s(item.name))]),_vm._v(" "),_c('div',{staticClass:"bsp-user-loginId",attrs:{"title":item.loginId}},[_vm._v(_vm._s(item.loginId))]),_vm._v(" "),_c('div',{staticClass:"bsp-user-orgId",attrs:{"title":item.orgName}},[_vm._v(_vm._s(item.orgName))]),_vm._v(" "),_c('div',{staticClass:"postName textOverflow",attrs:{"title":item.postName}},[_vm._v(_vm._s(item.postName))])])}),0)])]),_vm._v(" "),_c('td',{staticStyle:{"border-width":"0px","min-width":"16px"}}),_vm._v(" "),_c('td',{staticStyle:{"width":"491px","border-width":"0px","text-align":"left"}},[_c('div',{staticClass:"bsp-user-lt_center_center"},[_c('ul',{staticClass:"bsp-user-lt_center_ul"},_vm._l((_vm.selectedList),function(item,index){return _c('li',{key:item.loginId + item.idCard,staticClass:"cli"},[_c('div',{staticClass:"bsp-user-name",attrs:{"title":item.orgName}},[_vm._v(_vm._s(item.name))]),_vm._v(" "),_c('div',{staticClass:"bsp-user-loginId",attrs:{"title":item.orgName}},[_vm._v(_vm._s(item.loginId))]),_vm._v(" "),_c('div',{staticClass:"bsp-user-orgId"},[_vm._v(_vm._s(item.orgName))]),_vm._v(" "),_c('div',{staticClass:"postName textOverflow",attrs:{"title":item.postName}},[_vm._v(_vm._s(item.postName))]),_vm._v(" "),_c('div',{staticClass:"btn-icon",on:{"click":function($event){return _vm.cancelSelected(item, index)}}})])}),0)])])])])])])])])],_vm._v(" "),_c('div',{staticStyle:{"display":"flex","justify-content":"space-between"},attrs:{"slot":"footer"},slot:"footer"},[_c('div',[(_vm.numExp !== 'num==1')?_c('Checkbox',{nativeOn:{"click":function($event){$event.preventDefault();return _vm.handleAllChecked.apply(null, arguments)}},model:{value:(_vm.checkAll),callback:function ($$v) {_vm.checkAll=$$v},expression:"checkAll"}},[_vm._v("用户全选/反选")]):_vm._e()],1),_vm._v(" "),_c('div',[_c('Button',{staticClass:"cancle_btn",on:{"click":function($event){return _vm.cancel(true)}}},[_vm._v("取  消")]),_vm._v(" "),_c('Button',{staticClass:"sure_btn",attrs:{"type":"primary"},on:{"click":_vm.ok}},[_vm._v("确  认")])],1)])],2):_vm._e()],1)],2)}
1444
+ var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('span',[(_vm.$slots.func)?_vm._t("func"):_c('Input',{ref:"input",staticClass:"user-selector-input",attrs:{"disabled":_vm.disabled,"readonly":"","clearable":"","search":"","enter-button":_vm.button,"placeholder":""},on:{"on-clear":_vm.clearData,"on-search":_vm.openDialog},model:{value:(_vm.text),callback:function ($$v) {_vm.text=$$v},expression:"text"}}),_vm._v(" "),_c('div',[(_vm.showmModal)?_c('Modal',{attrs:{"class-name":"user-selector-modal","width":"1100","title":_vm.title,"closable":false,"mask-closable":false},on:{"on-cancel":_vm.cancel},model:{value:(_vm.modal),callback:function ($$v) {_vm.modal=$$v},expression:"modal"}},[_c('div',{staticClass:"flow-modal-title",attrs:{"slot":"header"},slot:"header"},[_c('span',{staticStyle:{"font-size":"17px"}},[_vm._v(_vm._s(_vm.tit))]),_vm._v(" "),_c('span',{staticStyle:{"position":"absolute","right":"6px","cursor":"pointer"},on:{"click":function($event){return _vm.cancel(true)}}},[_c('i',{staticClass:"ivu-icon ivu-icon-ios-close"})])]),_vm._v(" "),[_c('div',{staticClass:"bsp-warp"},[_c('div',{staticClass:"pos-box"},[_c('div',[_c('div',{staticClass:"bsp-user-search-box"},[_c('label',[_vm._v("机构单位: ")]),_vm._v(" "),_c('div',{staticClass:"dicgrid"},[_c('s-dicgrid',{ref:"dicGrid",staticStyle:{"width":"300px"},attrs:{"clear":false,"dicName":"ZD_ORG_ID","disabled":!_vm.orgChange || _vm.hasOthers == true},on:{"change":_vm.changeOrg},model:{value:(_vm.orgId),callback:function ($$v) {_vm.orgId=$$v},expression:"orgId"}})],1),_vm._v(" "),_c('div',{staticClass:"bsp-user-Chebox"},[(_vm.orgChange)?_c('Checkbox',{attrs:{"size":"large"},on:{"on-change":_vm.orgAll},model:{value:(_vm.hasOthers),callback:function ($$v) {_vm.hasOthers=$$v},expression:"hasOthers"}},[_vm._v("机构全选")]):_vm._e()],1),_vm._v(" "),(_vm.selectPost)?[_c('label',[_vm._v(" 岗位: ")]),_vm._v(" "),_c('div',{staticClass:"post-dic",staticStyle:{"width":"430px"}},[_c('s-dicgrid',{ref:"post",attrs:{"isSearch":false,"multiple":_vm.multiPost,"dicName":"ZD_POST"},on:{"change":_vm.changePost},model:{value:(_vm.postCode),callback:function ($$v) {_vm.postCode=$$v},expression:"postCode"}})],1)]:_vm._e()],2),_vm._v(" "),_c('div',{staticClass:"bsp-user-center-in"},[_c('table',{staticStyle:{"border-width":"0px"}},[_c('tr',[_c('td',{staticStyle:{"border-bottom":"none","display":"flex","justify-content":"space-between","align-items":"center","padding":"0px 17px","width":"476px","height":"40px","line-height":"40px","background":"#f2f6fc"}},[_c('p',{staticStyle:{"font-size":"16px","font-weight":"bold","color":"#333"}},[_vm._v("\n 用户列表\n ")]),_vm._v(" "),_c('div',{staticStyle:{"width":"300px"}},[_c('Input',{attrs:{"type":"text","suffix":"ios-search","placeholder":"请输入姓名、警号或身份证查询","clearable":""},on:{"on-keyup":_vm.onKeyUp,"on-enter":_vm.searchData,"on-clear":_vm.searchData},model:{value:(_vm.condition),callback:function ($$v) {_vm.condition=$$v},expression:"condition"}})],1)]),_vm._v(" "),_c('td',{staticStyle:{"border-width":"0px","min-width":"16px"}}),_vm._v(" "),_c('td',{staticStyle:{"box-sizing":"border-box","width":"476px"}},[_c('div',{staticStyle:{"height":"40px","line-height":"40px","background":"#f2f6fc","color":"#333","font-size":"16px","font-weight":"bold","padding-left":"17px"}},[_vm._v("\n 已选用户\n ")])])]),_vm._v(" "),_c('tr',[_c('td',{staticStyle:{"width":"476px","border-width":"0px","text-align":"left","background":"#ffffff"}},[_c('div',{staticClass:"bsp-user-lt_center"},[_c('ul',{staticClass:"bsp-user-lt_ul"},_vm._l((_vm.policeList),function(item,index){return _c('li',{key:index + 'AA',staticClass:"cli",class:{
1445
+ active:
1446
+ _vm.selectedIdCardArr.indexOf(item.keyId) != -1,
1447
+ },on:{"click":function($event){return _vm.selectPolice(index, item)}}},[_c('div',{staticClass:"bsp-user-name",attrs:{"title":item.name}},[_vm._v("\n "+_vm._s(item.name)+"\n ")]),_vm._v(" "),_c('div',{staticClass:"bsp-user-loginId",attrs:{"title":item.loginId}},[_vm._v("\n "+_vm._s(item.loginId)+"\n ")]),_vm._v(" "),_c('div',{staticClass:"bsp-user-orgId",attrs:{"title":item.orgName}},[_vm._v("\n "+_vm._s(item.orgName)+"\n ")]),_vm._v(" "),_c('div',{staticClass:"postName textOverflow",attrs:{"title":item.postName}},[_vm._v("\n "+_vm._s(item.postName)+"\n ")])])}),0)])]),_vm._v(" "),_c('td',{staticStyle:{"border-width":"0px","min-width":"16px"}}),_vm._v(" "),_c('td',{staticStyle:{"width":"491px","border-width":"0px","text-align":"left"}},[_c('div',{staticClass:"bsp-user-lt_center_center"},[_c('ul',{staticClass:"bsp-user-lt_center_ul"},_vm._l((_vm.selectedList),function(item,index){return _c('li',{key:item.loginId + item.idCard,staticClass:"cli"},[_c('div',{staticClass:"bsp-user-name",attrs:{"title":item.orgName}},[_vm._v("\n "+_vm._s(item.name)+"\n ")]),_vm._v(" "),_c('div',{staticClass:"bsp-user-loginId",attrs:{"title":item.orgName}},[_vm._v("\n "+_vm._s(item.loginId)+"\n ")]),_vm._v(" "),_c('div',{staticClass:"bsp-user-orgId"},[_vm._v("\n "+_vm._s(item.orgName)+"\n ")]),_vm._v(" "),_c('div',{staticClass:"postName textOverflow",attrs:{"title":item.postName}},[_vm._v("\n "+_vm._s(item.postName)+"\n ")]),_vm._v(" "),_c('div',{staticClass:"btn-icon",on:{"click":function($event){return _vm.cancelSelected(item, index)}}})])}),0)])])])])])])])])],_vm._v(" "),_c('div',{staticStyle:{"display":"flex","justify-content":"space-between"},attrs:{"slot":"footer"},slot:"footer"},[_c('div',[(_vm.numExp !== 'num==1')?_c('Checkbox',{nativeOn:{"click":function($event){$event.preventDefault();return _vm.handleAllChecked.apply(null, arguments)}},model:{value:(_vm.checkAll),callback:function ($$v) {_vm.checkAll=$$v},expression:"checkAll"}},[_vm._v("用户全选/反选")]):_vm._e()],1),_vm._v(" "),_c('div',[_c('Button',{staticClass:"cancle_btn",on:{"click":function($event){return _vm.cancel(true)}}},[_vm._v("取  消")]),_vm._v(" "),_c('Button',{staticClass:"sure_btn",attrs:{"type":"primary"},on:{"click":_vm.ok}},[_vm._v("确  认")])],1)])],2):_vm._e()],1)],2)}
1268
1448
  var staticRenderFns = []
1269
1449
  var esExports = { render: render, staticRenderFns: staticRenderFns }
1270
1450
  /* harmony default export */ __webpack_exports__["a"] = (esExports);