gcs-ui-lib 1.1.456 → 1.1.457

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.
@@ -1268,10 +1268,10 @@ var _default = exports.default = {
1268
1268
 
1269
1269
  "use strict";
1270
1270
  __webpack_require__.r(__webpack_exports__);
1271
- /* harmony import */ var _main_vue_vue_type_template_id_f87890e4_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("c6e7");
1271
+ /* harmony import */ var _main_vue_vue_type_template_id_1b277a2c_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("a8b2");
1272
1272
  /* harmony import */ var _main_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("3391");
1273
1273
  /* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _main_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__) if(["default"].indexOf(__WEBPACK_IMPORT_KEY__) < 0) (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _main_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__[key]; }) }(__WEBPACK_IMPORT_KEY__));
1274
- /* harmony import */ var _main_vue_vue_type_style_index_0_id_f87890e4_prod_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("a106");
1274
+ /* harmony import */ var _main_vue_vue_type_style_index_0_id_1b277a2c_prod_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("aede");
1275
1275
  /* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("2877");
1276
1276
 
1277
1277
 
@@ -1283,11 +1283,11 @@ __webpack_require__.r(__webpack_exports__);
1283
1283
 
1284
1284
  var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__[/* default */ "a"])(
1285
1285
  _main_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__["default"],
1286
- _main_vue_vue_type_template_id_f87890e4_scoped_true__WEBPACK_IMPORTED_MODULE_0__["render"],
1287
- _main_vue_vue_type_template_id_f87890e4_scoped_true__WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
1286
+ _main_vue_vue_type_template_id_1b277a2c_scoped_true__WEBPACK_IMPORTED_MODULE_0__["render"],
1287
+ _main_vue_vue_type_template_id_1b277a2c_scoped_true__WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
1288
1288
  false,
1289
1289
  null,
1290
- "f87890e4",
1290
+ "1b277a2c",
1291
1291
  null
1292
1292
 
1293
1293
  )
@@ -3093,13 +3093,6 @@ var _default = exports.default = {
3093
3093
  })));
3094
3094
 
3095
3095
 
3096
- /***/ }),
3097
-
3098
- /***/ "0aab":
3099
- /***/ (function(module, exports, __webpack_require__) {
3100
-
3101
- // extracted by mini-css-extract-plugin
3102
-
3103
3096
  /***/ }),
3104
3097
 
3105
3098
  /***/ "0b19":
@@ -41538,6 +41531,42 @@ function arrObjKeys(obj, inspect) {
41538
41531
 
41539
41532
  /***/ }),
41540
41533
 
41534
+ /***/ "2738":
41535
+ /***/ (function(module, exports, __webpack_require__) {
41536
+
41537
+ "use strict";
41538
+
41539
+
41540
+ Object.defineProperty(exports, "__esModule", {
41541
+ value: true
41542
+ });
41543
+ exports.getItem = getItem;
41544
+ exports.setItem = setItem;
41545
+ function setItem(key, obj, sync) {
41546
+ window['_keep_' + key] = obj;
41547
+ if (sync) {
41548
+ sessionStorage.setItem(key, JSON.stringify(obj));
41549
+ } else {
41550
+ setTimeout(function () {
41551
+ sessionStorage.setItem(key, JSON.stringify(obj));
41552
+ }, 100);
41553
+ }
41554
+ }
41555
+ function getItem(key) {
41556
+ let obj = window['_keep_' + key];
41557
+ if (!obj) {
41558
+ obj = JSON.parse(sessionStorage.getItem(key));
41559
+ if (key === 'relaNosGlobal' && !obj) {
41560
+ let relaNos = getItem('relaNos') || [];
41561
+ obj = relaNos.map(item => item.relaNos).flat();
41562
+ }
41563
+ window['_keep_' + key] = obj;
41564
+ }
41565
+ return obj;
41566
+ }
41567
+
41568
+ /***/ }),
41569
+
41541
41570
  /***/ "275a":
41542
41571
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
41543
41572
 
@@ -57257,6 +57286,33 @@ var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_
57257
57286
 
57258
57287
  /***/ }),
57259
57288
 
57289
+ /***/ "5df1":
57290
+ /***/ (function(module, exports, __webpack_require__) {
57291
+
57292
+ "use strict";
57293
+
57294
+
57295
+ Object.defineProperty(exports, "__esModule", {
57296
+ value: true
57297
+ });
57298
+ exports.default = void 0;
57299
+ function forEachs(arr, callback, branch = 'children', arrp = {}) {
57300
+ if (typeof callback === 'function') {
57301
+ _forEachs(arr, callback, branch, arrp);
57302
+ }
57303
+ }
57304
+ function _forEachs(arr, callback, branch, arrp) {
57305
+ arr.forEach(function (item, _i, _arr) {
57306
+ callback(item, _i, _arr, arrp);
57307
+ if (item[branch] && Array.isArray(item[branch])) {
57308
+ _forEachs(item[branch], callback, branch, item);
57309
+ }
57310
+ });
57311
+ }
57312
+ var _default = exports.default = forEachs;
57313
+
57314
+ /***/ }),
57315
+
57260
57316
  /***/ "5f02":
57261
57317
  /***/ (function(module, exports, __webpack_require__) {
57262
57318
 
@@ -57515,22 +57571,44 @@ var _default = exports.default = {
57515
57571
  components: {
57516
57572
  ImportRulesDialog: _ImportRulesDialog.default,
57517
57573
  ClPage: _n20CommonLib.Page,
57574
+ CLTablePro: _n20CommonLib.TablePro,
57518
57575
  ClPagination: _n20CommonLib.Pagination,
57519
57576
  ClAdvancedFilter: _n20CommonLib.AdvancedFilter,
57520
57577
  TableSetSize: _n20CommonLib.TableSetSize,
57521
57578
  StatisItem: _n20CommonLib.StatisItem,
57522
57579
  CLDialog: _n20CommonLib.Dialog,
57580
+ TableProOperateColumn: _n20CommonLib.TableProOperateColumn,
57523
57581
  AutoFillDetection: () => Promise.resolve().then(() => _interopRequireWildcard(__webpack_require__("dc85")))
57524
57582
  },
57525
57583
  props: {
57526
57584
  settingSource: {
57527
- type: String,
57585
+ type: [Number, String],
57528
57586
  default: 2
57587
+ },
57588
+ pageRelaNo: {
57589
+ type: Object,
57590
+ default: () => {
57591
+ return {
57592
+ add: null,
57593
+ //新增
57594
+ delete: null,
57595
+ //删除
57596
+ detection: null,
57597
+ //检测
57598
+ import: null,
57599
+ //导入
57600
+ export: null,
57601
+ //导出
57602
+ edit: null,
57603
+ //编辑
57604
+ copy: null //复制
57605
+ };
57606
+ }
57529
57607
  }
57530
57608
  },
57531
- data() {
57609
+ data(vm) {
57532
57610
  return {
57533
- visible: false,
57611
+ Dvisible: false,
57534
57612
  pagination: {
57535
57613
  size: 50,
57536
57614
  current: 1,
@@ -57542,6 +57620,22 @@ var _default = exports.default = {
57542
57620
  visible: false,
57543
57621
  selectCltNo: "",
57544
57622
  infoMsg: this.$l("仅适用于自用账户的付款流水自动补填,可填写一个或者多个匹配规则,银行付款流水和匹配规则匹配成功以后,可自动填入设置的‘补填信息’,默认关联业务为‘经营收款’。"),
57623
+ btns: [{
57624
+ // 根据权限和当前行数据显示
57625
+ label: "修改",
57626
+ isHas: row => vm.$hasG(vm.pageRelaNo.edit),
57627
+ command: "xg"
57628
+ }, {
57629
+ // 根据权限和当前行数据显示
57630
+ label: "复制",
57631
+ isHas: row => vm.$hasG(vm.pageRelaNo.copy),
57632
+ command: "fz"
57633
+ }, {
57634
+ // 根据权限和当前行数据显示
57635
+ label: "删除",
57636
+ isHas: row => vm.$hasG(vm.pageRelaNo.delete),
57637
+ command: "sc"
57638
+ }],
57545
57639
  formData: {
57546
57640
  cltNo: "",
57547
57641
  getNo: "",
@@ -57566,103 +57660,15 @@ var _default = exports.default = {
57566
57660
  budgetDicts: {},
57567
57661
  fillField: [],
57568
57662
  // 补填动态字段
57569
- filterList: [{
57570
- id: "cltName",
57571
- label: this.$l("适用单位"),
57572
- //适用单位
57573
- type: "text",
57574
- value: "cltName",
57575
- isDefault: true,
57576
- // static: true,
57577
- props: {
57578
- clearable: true
57579
- }
57580
- }, {
57581
- id: "ruleId",
57582
- label: this.$l("规则编号"),
57583
- //规则编号
57584
- type: "text",
57585
- value: "ruleId",
57586
- isDefault: true,
57587
- // static: true,
57588
- props: {
57589
- clearable: true
57590
- }
57591
- }, {
57592
- id: "ruleName",
57593
- label: this.$l("规则名称"),
57594
- //规则名称
57595
- type: "text",
57596
- value: "ruleName",
57597
- isDefault: true,
57598
- props: {
57599
- clearable: true
57600
- }
57601
- }, {
57602
- id: "applyRangeList",
57603
- label: this.$l("适用范围"),
57604
- //适用范围
57605
- type: "select",
57606
- value: "applyRangeList",
57607
- multiple: true,
57608
- width: "200px",
57609
- options: _config.SCOPE_OPTIONS,
57610
- props: {
57611
- clearable: true,
57612
- filterable: true
57613
- }
57614
- }, {
57615
- id: "matchPriority",
57616
- label: this.$l("匹配优先级"),
57617
- //匹配优先级
57618
- type: "number",
57619
- value: "matchPriority",
57620
- props: {
57621
- min: 0,
57622
- max: 9999999999999,
57623
- clearable: true,
57624
- isClearable: true,
57625
- "d-num": 0
57626
- }
57627
- }, {
57628
- id: "fillWayList",
57629
- label: this.$l("匹配补填方式"),
57630
- //匹配补填方式
57631
- type: "select",
57632
- multiple: true,
57633
- value: "fillWayList",
57634
- options: _config.FILL_METHOD_OPTIONS,
57635
- props: {
57636
- clearable: true,
57637
- filterable: true
57638
- }
57639
- }, {
57640
- id: "autoSubmitList",
57641
- label: this.$l("自动确认"),
57642
- //自动确认
57643
- type: "select",
57644
- value: "autoSubmitList",
57645
- isDefault: false,
57646
- multiple: true,
57647
- options: [{
57648
- value: 1,
57649
- label: this.$l("是")
57650
- }, {
57651
- value: 0,
57652
- label: this.$l("否")
57653
- }],
57654
- props: {
57655
- clearable: true,
57656
- filterable: true
57657
- }
57658
- }],
57663
+ filterList: _config.AutoFillListFilter,
57664
+ tableHeader: _config.AutoFillListHeader,
57659
57665
  orders: {
57660
57666
  orderType: "desc",
57661
57667
  columnName: "EFFECTTIME"
57662
57668
  }
57663
57669
  };
57664
57670
  },
57665
- async created() {
57671
+ async mounted() {
57666
57672
  await this.getMatchingFieldSetList({
57667
57673
  type: 2,
57668
57674
  isUse: 1
@@ -57685,13 +57691,12 @@ var _default = exports.default = {
57685
57691
  return doc[val] || "--";
57686
57692
  }
57687
57693
  },
57688
- mounted() {},
57689
57694
  activated() {
57690
57695
  this.queryData();
57691
57696
  },
57692
57697
  methods: {
57693
57698
  detection() {
57694
- this.visible = true;
57699
+ this.Dvisible = true;
57695
57700
  },
57696
57701
  async paginationChange(val) {
57697
57702
  this.pagination = val;
@@ -57780,7 +57785,6 @@ var _default = exports.default = {
57780
57785
  },
57781
57786
  // 获取动态匹配/补填字段
57782
57787
  async getMatchingFieldSetList(params, field) {
57783
- console.log(_setting.getMatchingFieldSetList, 8888);
57784
57788
  const data = await (0, _setting.getMatchingFieldSetList)(params);
57785
57789
  // 列表展示
57786
57790
  this[field] = data || [];
@@ -57809,25 +57813,24 @@ var _default = exports.default = {
57809
57813
  this.queryData();
57810
57814
  },
57811
57815
  clearSelect() {
57812
- this.$refs.rulesTable.clearSelection();
57816
+ var _this$$refs$vTable, _this$$refs$vTable$$r, _this$$refs$vTable$$r2;
57817
+ this.$refs["vTable"].$refs["vxeTable"].clearCheckboxRow();
57818
+ (_this$$refs$vTable = this.$refs.vTable) === null || _this$$refs$vTable === void 0 ? void 0 : (_this$$refs$vTable$$r = _this$$refs$vTable.$refs) === null || _this$$refs$vTable$$r === void 0 ? void 0 : (_this$$refs$vTable$$r2 = _this$$refs$vTable$$r[`vxeTable`]) === null || _this$$refs$vTable$$r2 === void 0 ? void 0 : _this$$refs$vTable$$r2.clearCheckboxReserve();
57813
57819
  this.selectRows = [];
57814
57820
  },
57815
- sortChange({
57816
- column,
57817
- prop,
57818
- order
57819
- }) {
57820
- if (order) {
57821
- this.orders = {
57822
- orderType: order === "ascending" ? "asc" : "desc",
57823
- columnName: prop
57824
- };
57825
- } else {
57821
+ sortChange(data) {
57822
+ if (!data.length) {
57826
57823
  this.orders = {
57827
57824
  orderType: "desc",
57828
57825
  columnName: "EFFECTTIME"
57829
57826
  };
57827
+ return;
57830
57828
  }
57829
+ let obj = data[0] || {};
57830
+ this.orders = {
57831
+ orderType: obj.asc ? "asc" : "desc",
57832
+ columnName: obj.column
57833
+ };
57831
57834
  this.queryData();
57832
57835
  },
57833
57836
  async queryData() {
@@ -57895,7 +57898,6 @@ var _default = exports.default = {
57895
57898
  };
57896
57899
  });
57897
57900
  this.setPagination(total);
57898
- this.doLayout();
57899
57901
  },
57900
57902
  delFnBatch() {
57901
57903
  if (!this.selectRowIds.length) {
@@ -57946,11 +57948,6 @@ var _default = exports.default = {
57946
57948
  this.$message.error(this.$l("删除失败"));
57947
57949
  }
57948
57950
  });
57949
- },
57950
- doLayout() {
57951
- setTimeout(() => {
57952
- this.$refs.rulesTable.doLayout();
57953
- }, 100);
57954
57951
  }
57955
57952
  }
57956
57953
  };
@@ -67242,6 +67239,13 @@ var _default = exports.default = forEachs;
67242
67239
 
67243
67240
  /***/ }),
67244
67241
 
67242
+ /***/ "7d64":
67243
+ /***/ (function(module, exports, __webpack_require__) {
67244
+
67245
+ // extracted by mini-css-extract-plugin
67246
+
67247
+ /***/ }),
67248
+
67245
67249
  /***/ "7d72":
67246
67250
  /***/ (function(module, exports, __webpack_require__) {
67247
67251
 
@@ -69462,482 +69466,6 @@ module.exports = reflectGetProto
69462
69466
  : null;
69463
69467
 
69464
69468
 
69465
- /***/ }),
69466
-
69467
- /***/ "835f":
69468
- /***/ (function(module, exports, __webpack_require__) {
69469
-
69470
- "use strict";
69471
-
69472
-
69473
- Object.defineProperty(exports, "__esModule", {
69474
- value: true
69475
- });
69476
- exports.staticRenderFns = exports.render = void 0;
69477
- var render = exports.render = function render() {
69478
- var _vm = this,
69479
- _c = _vm._self._c;
69480
- return _c('ClPage', [_c('div', {
69481
- ref: "formWrap",
69482
- attrs: {
69483
- "slot": "header"
69484
- },
69485
- slot: "header"
69486
- }, [_c('div', {
69487
- staticClass: "flex-box flex-r"
69488
- }, [_c('el-button', {
69489
- attrs: {
69490
- "icon": "n20-icon-shuaxin",
69491
- "plain": "",
69492
- "onlyicon": "",
69493
- "size": "mini"
69494
- },
69495
- on: {
69496
- "click": _vm.refresh
69497
- }
69498
- }), _c('el-button', {
69499
- staticClass: "m-l-s",
69500
- attrs: {
69501
- "icon": "n20-icon-iconfontshaixuan ",
69502
- "plain": "",
69503
- "onlyicon": "",
69504
- "size": "mini"
69505
- },
69506
- on: {
69507
- "click": function ($event) {
69508
- _vm.multiple = !_vm.multiple;
69509
- }
69510
- }
69511
- }), _c('el-button', {
69512
- staticClass: "m-l-s",
69513
- attrs: {
69514
- "type": "primary",
69515
- "size": "mini"
69516
- },
69517
- on: {
69518
- "click": function ($event) {
69519
- _vm.$linkPush('/payment/AddRules', {
69520
- t: Date.now()
69521
- });
69522
- }
69523
- }
69524
- }, [_vm._v(_vm._s(_vm.$l("新增")))]), _c('el-button', {
69525
- staticClass: "m-l-s",
69526
- attrs: {
69527
- "plain": "",
69528
- "size": "mini"
69529
- },
69530
- on: {
69531
- "click": _vm.delFnBatch
69532
- }
69533
- }, [_vm._v(_vm._s(_vm.$l("删除")))]), _c('el-button', {
69534
- staticClass: "m-l-s",
69535
- attrs: {
69536
- "plain": "",
69537
- "size": "mini"
69538
- },
69539
- on: {
69540
- "click": _vm.detection
69541
- }
69542
- }, [_vm._v(_vm._s(_vm.$l("检测")))]), _c('el-button', {
69543
- staticClass: "m-l-s",
69544
- attrs: {
69545
- "plain": "",
69546
- "size": "mini"
69547
- },
69548
- on: {
69549
- "click": function ($event) {
69550
- _vm.visible = true;
69551
- }
69552
- }
69553
- }, [_vm._v(_vm._s(_vm.$l("导入")))]), _c('el-dropdown', {
69554
- staticClass: "m-l-s",
69555
- attrs: {
69556
- "trigger": "click"
69557
- },
69558
- on: {
69559
- "command": _vm.exportFn
69560
- }
69561
- }, [_c('span', {
69562
- staticClass: "el-dropdown-link"
69563
- }, [_c('el-button', {
69564
- attrs: {
69565
- "size": "mini",
69566
- "plain": ""
69567
- }
69568
- }, [_vm._v(" " + _vm._s(_vm.$l("导出"))), _c('i', {
69569
- staticClass: "el-icon-arrow-down"
69570
- })])], 1), _c('el-dropdown-menu', {
69571
- attrs: {
69572
- "slot": "dropdown"
69573
- },
69574
- slot: "dropdown"
69575
- }, [_c('el-dropdown-item', {
69576
- attrs: {
69577
- "command": "xls"
69578
- }
69579
- }, [_vm._v(_vm._s(_vm.$l(".xls格式")))]), _c('el-dropdown-item', {
69580
- attrs: {
69581
- "command": "xlsx"
69582
- }
69583
- }, [_vm._v(_vm._s(_vm.$l(".xlsx格式")))])], 1)], 1)], 1), _c('ClAdvancedFilter', {
69584
- attrs: {
69585
- "visible": _vm.multiple,
69586
- "filterId": `RulesManage-payment-filterIdNew-${_vm.settingSource}`,
69587
- "model": _vm.formData,
69588
- "onlyKey": "id",
69589
- "filter-list": _vm.filterList
69590
- },
69591
- on: {
69592
- "update:visible": function ($event) {
69593
- _vm.multiple = $event;
69594
- },
69595
- "search": _vm.refresh,
69596
- "enter": _vm.refresh,
69597
- "clear": _vm.clearSearch
69598
- }
69599
- })], 1), _c('div', {
69600
- staticStyle: {
69601
- "flex": "1",
69602
- "position": "relative",
69603
- "height": "100%"
69604
- }
69605
- }, [_c('div', {
69606
- staticStyle: {
69607
- "position": "absolute",
69608
- "width": "100%",
69609
- "height": "100%"
69610
- }
69611
- }, [_c('el-table', _vm._b({
69612
- key: _vm.size,
69613
- ref: "rulesTable",
69614
- attrs: {
69615
- "data": _vm.tableData,
69616
- "border": "",
69617
- "row-key": "RULEID",
69618
- "height": "100%"
69619
- },
69620
- on: {
69621
- "sort-change": _vm.sortChange,
69622
- "selection-change": _vm.handleSelectionChange
69623
- }
69624
- }, 'el-table', _vm.sizeBind, false), [_c('el-table-column', {
69625
- attrs: {
69626
- "type": "selection",
69627
- "reserve-selection": true,
69628
- "width": "38",
69629
- "fixed": "left"
69630
- }
69631
- }), _c('el-table-column', {
69632
- attrs: {
69633
- "prop": "idx",
69634
- "label": _vm.$l('序号'),
69635
- "width": '62',
69636
- "align": "center",
69637
- "fixed": "left"
69638
- },
69639
- scopedSlots: _vm._u([{
69640
- key: "default",
69641
- fn: function ({
69642
- $index
69643
- }) {
69644
- return [_vm._v(" " + _vm._s($index + 1) + " ")];
69645
- }
69646
- }])
69647
- }), _c('el-table-column', {
69648
- attrs: {
69649
- "prop": "matchingId",
69650
- "show-overflow-tooltip": "",
69651
- "label": _vm.$l('规则编号'),
69652
- "width": 114,
69653
- "align": "center"
69654
- },
69655
- scopedSlots: _vm._u([{
69656
- key: "default",
69657
- fn: function ({
69658
- row
69659
- }) {
69660
- return [_c('el-button', {
69661
- attrs: {
69662
- "type": "text"
69663
- },
69664
- on: {
69665
- "click": function ($event) {
69666
- return _vm.$router.push({
69667
- path: '/RulesDetail',
69668
- query: {
69669
- id: row.matchingId
69670
- }
69671
- });
69672
- }
69673
- }
69674
- }, [_vm._v(_vm._s(row.matchingId))])];
69675
- }
69676
- }])
69677
- }), _c('el-table-column', {
69678
- attrs: {
69679
- "prop": "matchingRuleName",
69680
- "show-overflow-tooltip": "",
69681
- "label": _vm.$l('规则名称'),
69682
- "width": 240,
69683
- "align": "center"
69684
- },
69685
- scopedSlots: _vm._u([{
69686
- key: "default",
69687
- fn: function ({
69688
- row
69689
- }) {
69690
- return [_vm._v(" " + _vm._s(row.matchingRuleName || "--") + " ")];
69691
- }
69692
- }])
69693
- }), _c('el-table-column', {
69694
- attrs: {
69695
- "prop": "usedScope",
69696
- "show-overflow-tooltip": "",
69697
- "label": _vm.$l('适用范围'),
69698
- "width": 200,
69699
- "align": "center"
69700
- },
69701
- scopedSlots: _vm._u([{
69702
- key: "default",
69703
- fn: function ({
69704
- row
69705
- }) {
69706
- return [_vm._v(" " + _vm._s(_vm._f("usedScopeFilter")(row.usedScope)) + " ")];
69707
- }
69708
- }])
69709
- }), _c('el-table-column', {
69710
- attrs: {
69711
- "prop": "usedUnit",
69712
- "show-overflow-tooltip": "",
69713
- "label": _vm.$l('适用单位'),
69714
- "width": 200,
69715
- "header-align": "center",
69716
- "align": "left"
69717
- },
69718
- scopedSlots: _vm._u([{
69719
- key: "default",
69720
- fn: function ({
69721
- row
69722
- }) {
69723
- return [_c('span', {
69724
- attrs: {
69725
- "title": row.usedUnits
69726
- },
69727
- domProps: {
69728
- "innerHTML": _vm._s(row.usedUnit)
69729
- }
69730
- })];
69731
- }
69732
- }])
69733
- }), _c('el-table-column', {
69734
- attrs: {
69735
- "prop": "matchingPriority",
69736
- "show-overflow-tooltip": "",
69737
- "label": _vm.$l('匹配优先级'),
69738
- "width": 130,
69739
- "align": "center",
69740
- "sortable": "custom"
69741
- },
69742
- scopedSlots: _vm._u([{
69743
- key: "default",
69744
- fn: function ({
69745
- row
69746
- }) {
69747
- return [_vm._v(" " + _vm._s(row.matchingPriority) + " ")];
69748
- }
69749
- }])
69750
- }), _c('el-table-column', {
69751
- attrs: {
69752
- "label": _vm.$l('补填信息'),
69753
- "align": "center"
69754
- }
69755
- }, _vm._l(_vm.fillField, function (item) {
69756
- return _c('el-table-column', {
69757
- key: item.prop,
69758
- attrs: {
69759
- "show-overflow-tooltip": "",
69760
- "prop": item.prop,
69761
- "label": item.label,
69762
- "align": "center",
69763
- "width": 200
69764
- },
69765
- scopedSlots: _vm._u([{
69766
- key: "default",
69767
- fn: function (scope) {
69768
- return [_c('div', [_vm._v(" " + _vm._s(scope.row[item.prop] || "--") + " ")])];
69769
- }
69770
- }], null, true)
69771
- });
69772
- }), 1), _c('el-table-column', {
69773
- attrs: {
69774
- "prop": "isAutoConfirm",
69775
- "show-overflow-tooltip": "",
69776
- "label": _vm.$l('自动确认'),
69777
- "align": "center",
69778
- "width": 116
69779
- },
69780
- scopedSlots: _vm._u([{
69781
- key: "default",
69782
- fn: function ({
69783
- row
69784
- }) {
69785
- return [_vm._v(" " + _vm._s(_vm._f("isAutoConfirmFilter")(row.isAutoConfirm)) + " ")];
69786
- }
69787
- }])
69788
- }), _c('el-table-column', {
69789
- attrs: {
69790
- "prop": "updateTime",
69791
- "show-overflow-tooltip": "",
69792
- "label": _vm.$l('生效时间'),
69793
- "align": "center",
69794
- "sortable": "custom",
69795
- "width": 180
69796
- },
69797
- scopedSlots: _vm._u([{
69798
- key: "default",
69799
- fn: function ({
69800
- row
69801
- }) {
69802
- return [_vm._v(" " + _vm._s(row.updateTime || "--") + " ")];
69803
- }
69804
- }])
69805
- }), _c('el-table-column', {
69806
- attrs: {
69807
- "prop": "creator",
69808
- "show-overflow-tooltip": "",
69809
- "label": _vm.$l('操作人'),
69810
- "align": "center",
69811
- "width": 100
69812
- }
69813
- }), _c('el-table-column', {
69814
- attrs: {
69815
- "label": _vm.$l('操作'),
69816
- "align": "center",
69817
- "show-overflow-tooltip": "",
69818
- "width": 140,
69819
- "fixed": "right"
69820
- },
69821
- scopedSlots: _vm._u([{
69822
- key: "default",
69823
- fn: function ({
69824
- row
69825
- }) {
69826
- return [_c('el-link', {
69827
- staticClass: "m-r-s",
69828
- attrs: {
69829
- "underline": false,
69830
- "type": "primary"
69831
- },
69832
- on: {
69833
- "click": function ($event) {
69834
- return _vm.editFn(row);
69835
- }
69836
- }
69837
- }, [_vm._v(_vm._s(_vm.$l("修改")))]), _c('el-link', {
69838
- staticClass: "m-r-s",
69839
- attrs: {
69840
- "underline": false,
69841
- "type": "primary"
69842
- },
69843
- on: {
69844
- "click": function ($event) {
69845
- return _vm.copyFn(row);
69846
- }
69847
- }
69848
- }, [_vm._v(_vm._s(_vm.$l("复制")))]), _c('el-link', {
69849
- attrs: {
69850
- "underline": false,
69851
- "type": "primary"
69852
- },
69853
- on: {
69854
- "click": function ($event) {
69855
- return _vm.delFn([row]);
69856
- }
69857
- }
69858
- }, [_vm._v(_vm._s(_vm.$l("删除")))])];
69859
- }
69860
- }])
69861
- }), _c('TableSetSize', {
69862
- attrs: {
69863
- "size": _vm.size
69864
- },
69865
- on: {
69866
- "update:size": function ($event) {
69867
- _vm.size = $event;
69868
- },
69869
- "resize": el => _vm.sizeBind = el
69870
- }
69871
- })], 1)], 1)]), _c('div', {
69872
- staticClass: "page-footer-shadow flex-box flex-lr flex-v pt-4 pb-4",
69873
- attrs: {
69874
- "slot": "footer"
69875
- },
69876
- slot: "footer"
69877
- }, [_c('div', {
69878
- staticClass: "flex-box flex-v"
69879
- }, [_c('StatisItem', {
69880
- attrs: {
69881
- "type": _vm.$l('已选合计'),
69882
- "list": [{
69883
- label: _vm.$l('笔数'),
69884
- value: _vm.selectRows.length
69885
- }]
69886
- }
69887
- }), _c('StatisItem', {
69888
- attrs: {
69889
- "type": _vm.$l('全部合计'),
69890
- "list": [{
69891
- label: _vm.$l('笔数'),
69892
- value: _vm.pagination.total
69893
- }]
69894
- }
69895
- })], 1), _c('ClPagination', {
69896
- attrs: {
69897
- "page-obj": _vm.pagination,
69898
- "page-key": {
69899
- no: 'current',
69900
- size: 'size',
69901
- total: 'total'
69902
- }
69903
- },
69904
- on: {
69905
- "change": _vm.paginationChange
69906
- }
69907
- })], 1), _c('ImportRulesDialog', {
69908
- attrs: {
69909
- "settingSource": _vm.settingSource
69910
- },
69911
- on: {
69912
- "refresh": _vm.refresh
69913
- },
69914
- model: {
69915
- value: _vm.visible,
69916
- callback: function ($$v) {
69917
- _vm.visible = $$v;
69918
- },
69919
- expression: "visible"
69920
- }
69921
- }), _c('CLDialog', {
69922
- attrs: {
69923
- "title": _vm.$l('检测'),
69924
- "visible": _vm.visible,
69925
- "width": "85%",
69926
- "max-dialog": ""
69927
- },
69928
- on: {
69929
- "update:visible": function ($event) {
69930
- _vm.visible = $event;
69931
- }
69932
- }
69933
- }, [_c('AutoFillDetection', {
69934
- attrs: {
69935
- "ettingSource": _vm.ettingSource
69936
- }
69937
- })], 1)], 1);
69938
- };
69939
- var staticRenderFns = exports.staticRenderFns = [];
69940
-
69941
69469
  /***/ }),
69942
69470
 
69943
69471
  /***/ "83b9":
@@ -78252,17 +77780,6 @@ var _default = exports.default = {
78252
77780
  }
78253
77781
  };
78254
77782
 
78255
- /***/ }),
78256
-
78257
- /***/ "a106":
78258
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
78259
-
78260
- "use strict";
78261
- /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_style_index_0_id_f87890e4_prod_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("0aab");
78262
- /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_style_index_0_id_f87890e4_prod_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_style_index_0_id_f87890e4_prod_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0__);
78263
- /* unused harmony reexport * */
78264
-
78265
-
78266
77783
  /***/ }),
78267
77784
 
78268
77785
  /***/ "a15e":
@@ -78288,6 +77805,110 @@ var _default = exports.default = {
78288
77805
 
78289
77806
 
78290
77807
 
77808
+ /***/ }),
77809
+
77810
+ /***/ "a215":
77811
+ /***/ (function(module, exports, __webpack_require__) {
77812
+
77813
+ "use strict";
77814
+
77815
+
77816
+ Object.defineProperty(exports, "__esModule", {
77817
+ value: true
77818
+ });
77819
+ exports.getCltRela = getCltRela;
77820
+ exports.getRela = getRela;
77821
+ exports.setRela = setRela;
77822
+ var _forEachs = _interopRequireDefault(__webpack_require__("5df1"));
77823
+ var _storageEdit = __webpack_require__("2738");
77824
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
77825
+ const name = Object({"NODE_ENV":"production","VUE_APP_BASE_API":"","VUE_APP_TestProduction":"true","BASE_URL":"/"}).VUE_APP_RelaAppNo || Object({"NODE_ENV":"production","VUE_APP_BASE_API":"","VUE_APP_TestProduction":"true","BASE_URL":"/"}).VUE_APP_NAME;
77826
+ let relaObj = undefined;
77827
+ let cltrelaNos = undefined;
77828
+ function getRela() {
77829
+ if (!relaObj) setRela();
77830
+ return relaObj;
77831
+ }
77832
+ function setRela() {
77833
+ let _relaNos = (0, _storageEdit.getItem)('relaNos'); // sessionStorage.getItem('relaNos')
77834
+ if (_relaNos) {
77835
+ let relaNos = _relaNos;
77836
+ relaObj = relaNos.find(r => r.appNo === name) || {
77837
+ appNo: name,
77838
+ relaNos: []
77839
+ };
77840
+ let relaNosG = (0, _storageEdit.getItem)('relaNosGlobal');
77841
+ console.log({
77842
+ relaObj,
77843
+ relaNosGlobal: relaNosG
77844
+ }, 'has权限列表');
77845
+ return;
77846
+ }
77847
+ /* 兼容旧门户 */
77848
+ let _resources = (0, _storageEdit.getItem)('resources'); // sessionStorage.getItem('resources')
77849
+ if (_resources) {
77850
+ let resources = _resources;
77851
+ let relaNos = [];
77852
+ (0, _forEachs.default)(resources, item => {
77853
+ relaNos.push(item.relaNo);
77854
+ });
77855
+ relaObj = {
77856
+ appNo: name,
77857
+ relaNos: relaNos,
77858
+ relaNosGlobal: relaNos
77859
+ };
77860
+ }
77861
+ }
77862
+ function getCltRela(clt) {
77863
+ /* 获取全部单位权限 */
77864
+ if (!cltrelaNos) {
77865
+ let _cltrelaNos = (0, _storageEdit.getItem)('cltrelaNos'); // sessionStorage.getItem('cltrelaNos')
77866
+ if (_cltrelaNos) {
77867
+ cltrelaNos = _cltrelaNos;
77868
+ } else {
77869
+ cltrelaNos = {};
77870
+ }
77871
+ }
77872
+ if (Array.isArray(clt)) {
77873
+ let clts = clt;
77874
+ let cltI = clts[0];
77875
+ let cltRela = [];
77876
+ for (let id in cltrelaNos) {
77877
+ let ids = id.split(',');
77878
+ if (ids.includes(cltI)) {
77879
+ cltRela.push(...cltrelaNos[id]);
77880
+ }
77881
+ }
77882
+ for (let i = 1; i < clt.length; i++) {
77883
+ let cltRela2 = [];
77884
+ for (let id in cltrelaNos) {
77885
+ let ids = id.split(',');
77886
+ if (ids.includes(clts[i])) {
77887
+ cltRela2.push(...cltrelaNos[id]);
77888
+ }
77889
+ }
77890
+ cltRela = aandb(cltRela, cltRela2);
77891
+ }
77892
+ return cltRela || [];
77893
+ } else {
77894
+ let cltRela = [];
77895
+ for (let id in cltrelaNos) {
77896
+ let ids = id.split(',');
77897
+ if (ids.includes(clt)) {
77898
+ cltRela.push(...cltrelaNos[id]);
77899
+ }
77900
+ }
77901
+ return cltRela;
77902
+ }
77903
+ }
77904
+ function aandb(a = [], b = []) {
77905
+ if (a.length === 0 || b.length === 0) {
77906
+ return [];
77907
+ } else {
77908
+ return a.filter(ai => b.includes(ai));
77909
+ }
77910
+ }
77911
+
78291
77912
  /***/ }),
78292
77913
 
78293
77914
  /***/ "a256":
@@ -79007,6 +78628,20 @@ var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_
79007
78628
 
79008
78629
  /* harmony default export */ __webpack_exports__["default"] = (component.exports);
79009
78630
 
78631
+ /***/ }),
78632
+
78633
+ /***/ "a8b2":
78634
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
78635
+
78636
+ "use strict";
78637
+ /* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_f2943136_vue_loader_template_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_thread_loader_dist_cjs_js_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ref_6_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_template_id_1b277a2c_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("fc30");
78638
+ /* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_f2943136_vue_loader_template_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_thread_loader_dist_cjs_js_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ref_6_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_template_id_1b277a2c_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_f2943136_vue_loader_template_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_thread_loader_dist_cjs_js_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ref_6_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_template_id_1b277a2c_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
78639
+ /* harmony reexport (checked) */ if(__webpack_require__.o(_node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_f2943136_vue_loader_template_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_thread_loader_dist_cjs_js_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ref_6_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_template_id_1b277a2c_scoped_true__WEBPACK_IMPORTED_MODULE_0__, "render")) __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_f2943136_vue_loader_template_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_thread_loader_dist_cjs_js_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ref_6_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_template_id_1b277a2c_scoped_true__WEBPACK_IMPORTED_MODULE_0__["render"]; });
78640
+
78641
+ /* harmony reexport (checked) */ if(__webpack_require__.o(_node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_f2943136_vue_loader_template_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_thread_loader_dist_cjs_js_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ref_6_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_template_id_1b277a2c_scoped_true__WEBPACK_IMPORTED_MODULE_0__, "staticRenderFns")) __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_f2943136_vue_loader_template_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_thread_loader_dist_cjs_js_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ref_6_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_template_id_1b277a2c_scoped_true__WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
78642
+
78643
+
78644
+
79010
78645
  /***/ }),
79011
78646
 
79012
78647
  /***/ "a90c":
@@ -79018,8 +78653,9 @@ var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_
79018
78653
  Object.defineProperty(exports, "__esModule", {
79019
78654
  value: true
79020
78655
  });
79021
- exports.tableHeader = exports.SCOPE_OPTIONS = exports.NODE_GROUP = exports.MATCHE_OPTIONS = exports.MATCHE_FIELD = exports.FILL_METHOD_OPTIONS = exports.FILL_FIELD = exports.ASSOCIATED_BUSINESS_OPTIONS = void 0;
78656
+ exports.tableHeader = exports.SCOPE_OPTIONS = exports.NODE_GROUP = exports.MATCHE_OPTIONS = exports.MATCHE_FIELD = exports.FILL_METHOD_OPTIONS = exports.FILL_FIELD = exports.AutoFillListHeader = exports.AutoFillListFilter = exports.ASSOCIATED_BUSINESS_OPTIONS = void 0;
79022
78657
  var _i18n = __webpack_require__("e890");
78658
+ var _index = __webpack_require__("a96c");
79023
78659
  /*
79024
78660
  * @Author: yuehong yuehong@nstc.com.cn
79025
78661
  * @Date: 2023-10-09 17:51:51
@@ -79201,215 +78837,215 @@ const FILL_FIELD = exports.FILL_FIELD = [{
79201
78837
 
79202
78838
  // 关联业务
79203
78839
  const ASSOCIATED_BUSINESS_OPTIONS = exports.ASSOCIATED_BUSINESS_OPTIONS = [{
79204
- label: (0, _i18n.$l)('资金上收'),
79205
- name: (0, _i18n.$l)('资金上收'),
79206
- code: 'FTS_001',
79207
- typeCode: 'FTS.FLOW.001',
79208
- type: 'up',
78840
+ label: (0, _i18n.$l)("资金上收"),
78841
+ name: (0, _i18n.$l)("资金上收"),
78842
+ code: "FTS_001",
78843
+ typeCode: "FTS.FLOW.001",
78844
+ type: "up",
79209
78845
  isCross: false
79210
78846
  }, {
79211
- label: (0, _i18n.$l)('资金下拨'),
79212
- name: (0, _i18n.$l)('资金下拨'),
79213
- code: 'FTS_002',
79214
- typeCode: 'FTS.FLOW.002',
79215
- type: 'down',
78847
+ label: (0, _i18n.$l)("资金下拨"),
78848
+ name: (0, _i18n.$l)("资金下拨"),
78849
+ code: "FTS_002",
78850
+ typeCode: "FTS.FLOW.002",
78851
+ type: "down",
79216
78852
  isCross: false
79217
78853
  }, {
79218
- label: (0, _i18n.$l)('主动上存'),
79219
- name: (0, _i18n.$l)('主动上存'),
79220
- code: 'FTS_003',
79221
- typeCode: 'FTS.FLOW.006',
79222
- type: 'up',
78854
+ label: (0, _i18n.$l)("主动上存"),
78855
+ name: (0, _i18n.$l)("主动上存"),
78856
+ code: "FTS_003",
78857
+ typeCode: "FTS.FLOW.006",
78858
+ type: "up",
79223
78859
  isCross: false
79224
78860
  }, {
79225
- label: (0, _i18n.$l)('请款下拨'),
79226
- name: (0, _i18n.$l)('请款下拨'),
79227
- code: 'FTS_004',
79228
- typeCode: 'FTS.FLOW.009',
79229
- type: 'down',
78861
+ label: (0, _i18n.$l)("请款下拨"),
78862
+ name: (0, _i18n.$l)("请款下拨"),
78863
+ code: "FTS_004",
78864
+ typeCode: "FTS.FLOW.009",
78865
+ type: "down",
79230
78866
  isCross: false
79231
78867
  }, {
79232
- label: (0, _i18n.$l)('资金调入'),
79233
- name: (0, _i18n.$l)('资金调入'),
79234
- code: 'FTS_005',
79235
- typeCode: 'FTS.FLOW.003',
79236
- type: 'up',
78868
+ label: (0, _i18n.$l)("资金调入"),
78869
+ name: (0, _i18n.$l)("资金调入"),
78870
+ code: "FTS_005",
78871
+ typeCode: "FTS.FLOW.003",
78872
+ type: "up",
79237
78873
  isCross: false
79238
78874
  }, {
79239
- label: (0, _i18n.$l)('资金调出'),
79240
- name: (0, _i18n.$l)('资金调出'),
79241
- code: 'FTS_006',
79242
- typeCode: 'FTS.FLOW.004',
79243
- type: 'down',
78875
+ label: (0, _i18n.$l)("资金调出"),
78876
+ name: (0, _i18n.$l)("资金调出"),
78877
+ code: "FTS_006",
78878
+ typeCode: "FTS.FLOW.004",
78879
+ type: "down",
79244
78880
  isCross: false
79245
78881
  }, {
79246
- label: (0, _i18n.$l)('外债借入'),
79247
- name: (0, _i18n.$l)('外债借入'),
79248
- code: 'FTS_007',
79249
- typeCode: 'FTS.FLOW.017',
79250
- type: 'up',
78882
+ label: (0, _i18n.$l)("外债借入"),
78883
+ name: (0, _i18n.$l)("外债借入"),
78884
+ code: "FTS_007",
78885
+ typeCode: "FTS.FLOW.017",
78886
+ type: "up",
79251
78887
  isCross: true
79252
78888
  }, {
79253
- label: (0, _i18n.$l)('对外放款'),
79254
- name: (0, _i18n.$l)('对外放款'),
79255
- code: 'FTS_008',
79256
- typeCode: 'FTS.FLOW.018',
79257
- type: 'down',
78889
+ label: (0, _i18n.$l)("对外放款"),
78890
+ name: (0, _i18n.$l)("对外放款"),
78891
+ code: "FTS_008",
78892
+ typeCode: "FTS.FLOW.018",
78893
+ type: "down",
79258
78894
  isCross: true
79259
78895
  }, {
79260
- label: (0, _i18n.$l)('外债借入还款'),
79261
- name: (0, _i18n.$l)('外债借入还款'),
79262
- code: 'FTS_009',
79263
- typeCode: 'FTS.FLOW.019',
79264
- type: 'down',
78896
+ label: (0, _i18n.$l)("外债借入还款"),
78897
+ name: (0, _i18n.$l)("外债借入还款"),
78898
+ code: "FTS_009",
78899
+ typeCode: "FTS.FLOW.019",
78900
+ type: "down",
79265
78901
  isCross: true
79266
78902
  }, {
79267
- label: (0, _i18n.$l)('对外放款还款'),
79268
- name: (0, _i18n.$l)('对外放款还款'),
79269
- code: 'FTS_010',
79270
- typeCode: 'FTS.FLOW.020',
79271
- type: 'up',
78903
+ label: (0, _i18n.$l)("对外放款还款"),
78904
+ name: (0, _i18n.$l)("对外放款还款"),
78905
+ code: "FTS_010",
78906
+ typeCode: "FTS.FLOW.020",
78907
+ type: "up",
79272
78908
  isCross: true
79273
78909
  }, {
79274
- label: (0, _i18n.$l)('结息'),
79275
- name: (0, _i18n.$l)('结息'),
79276
- code: 'FTS_011',
79277
- typeCode: '',
79278
- type: '',
78910
+ label: (0, _i18n.$l)("结息"),
78911
+ name: (0, _i18n.$l)("结息"),
78912
+ code: "FTS_011",
78913
+ typeCode: "",
78914
+ type: "",
79279
78915
  isCross: false
79280
78916
  }, {
79281
- label: (0, _i18n.$l)('手续费'),
79282
- name: (0, _i18n.$l)('手续费'),
79283
- code: 'FTS_012',
79284
- typeCode: '',
79285
- type: '',
78917
+ label: (0, _i18n.$l)("手续费"),
78918
+ name: (0, _i18n.$l)("手续费"),
78919
+ code: "FTS_012",
78920
+ typeCode: "",
78921
+ type: "",
79286
78922
  isCross: true
79287
78923
  }];
79288
78924
  const tableHeader = exports.tableHeader = [{
79289
78925
  label: (0, _i18n.$l)(`收款单位`),
79290
78926
  // '收款单位'
79291
- prop: 'RULEID',
79292
- align: 'left',
79293
- width: '200',
78927
+ prop: "RULEID",
78928
+ align: "left",
78929
+ width: "200",
79294
78930
  isDefault: true
79295
78931
  }, {
79296
78932
  label: (0, _i18n.$l)(`规则名称`),
79297
78933
  // '规则名称'
79298
- prop: 'RULENAME',
79299
- align: 'left',
79300
- width: '200',
78934
+ prop: "RULENAME",
78935
+ align: "left",
78936
+ width: "200",
79301
78937
  isDefault: true
79302
78938
  }, {
79303
78939
  label: (0, _i18n.$l)(`适用范围`),
79304
78940
  // '适用范围'
79305
- prop: 'APPLYRANGENAME',
79306
- align: 'left',
79307
- width: '200',
78941
+ prop: "APPLYRANGENAME",
78942
+ align: "left",
78943
+ width: "200",
79308
78944
  isDefault: true
79309
78945
  }, {
79310
78946
  label: (0, _i18n.$l)(`适用单位`),
79311
78947
  // '适用单位'
79312
- prop: 'CLTNO',
79313
- align: 'left',
79314
- width: '200',
78948
+ prop: "CLTNO",
78949
+ align: "left",
78950
+ width: "200",
79315
78951
  isDefault: true
79316
78952
  }, {
79317
78953
  label: (0, _i18n.$l)(`匹配优先级`),
79318
78954
  // '匹配优先级'
79319
- prop: 'MATCHPRIORITY',
79320
- align: 'left',
79321
- width: '200',
78955
+ prop: "MATCHPRIORITY",
78956
+ align: "left",
78957
+ width: "200",
79322
78958
  isDefault: true
79323
78959
  }, {
79324
78960
  label: (0, _i18n.$l)(`匹配补填方式`),
79325
78961
  // '匹配补填方式'
79326
- prop: 'FILLWAYNAME',
79327
- align: 'left',
79328
- width: '200',
78962
+ prop: "FILLWAYNAME",
78963
+ align: "left",
78964
+ width: "200",
79329
78965
  isDefault: true
79330
78966
  }, {
79331
78967
  label: (0, _i18n.$l)(`收款金融机构(大行)`),
79332
78968
  // '收款金融机构(大行)'
79333
- prop: 'payBankNo',
79334
- align: 'left',
79335
- width: '200',
78969
+ prop: "payBankNo",
78970
+ align: "left",
78971
+ width: "200",
79336
78972
  isDefault: true
79337
78973
  }, {
79338
78974
  label: (0, _i18n.$l)(`收款金融机构(支行)`),
79339
78975
  // '收款金融机构(支行)'
79340
- prop: 'payBranchBankNo',
79341
- align: 'left',
79342
- width: '200',
78976
+ prop: "payBranchBankNo",
78977
+ align: "left",
78978
+ width: "200",
79343
78979
  isDefault: true
79344
78980
  }, {
79345
78981
  label: (0, _i18n.$l)(`收款账号`),
79346
78982
  // '收款账号'
79347
- prop: 'recAcc',
79348
- align: 'left',
79349
- width: '200',
78983
+ prop: "recAcc",
78984
+ align: "left",
78985
+ width: "200",
79350
78986
  isDefault: true
79351
78987
  }, {
79352
78988
  label: (0, _i18n.$l)(`对方户名`),
79353
78989
  // '对方户名'
79354
- prop: 'recAccountName',
79355
- align: 'left',
79356
- width: '200',
78990
+ prop: "recAccountName",
78991
+ align: "left",
78992
+ width: "200",
79357
78993
  isDefault: true
79358
78994
  }, {
79359
78995
  label: (0, _i18n.$l)(`摘要`),
79360
78996
  // '摘要'
79361
- prop: 'explain',
79362
- align: 'left',
79363
- width: '200',
78997
+ prop: "explain",
78998
+ align: "left",
78999
+ width: "200",
79364
79000
  isDefault: true
79365
79001
  }, {
79366
79002
  label: (0, _i18n.$l)(`预算科目`),
79367
79003
  // '预算科目'
79368
- prop: 'budgetCode',
79369
- align: 'left',
79370
- width: '200',
79004
+ prop: "budgetCode",
79005
+ align: "left",
79006
+ width: "200",
79371
79007
  isDefault: true
79372
79008
  }, {
79373
79009
  label: (0, _i18n.$l)(`现金流`),
79374
79010
  // '现金流'
79375
- prop: 'cashFlowNo',
79376
- align: 'left',
79377
- width: '200',
79011
+ prop: "cashFlowNo",
79012
+ align: "left",
79013
+ width: "200",
79378
79014
  isDefault: true
79379
79015
  }, {
79380
79016
  label: (0, _i18n.$l)(`款项类别`),
79381
79017
  // '款项类别'
79382
- prop: 'propNo',
79383
- align: 'left',
79384
- width: '200',
79018
+ prop: "propNo",
79019
+ align: "left",
79020
+ width: "200",
79385
79021
  isDefault: true
79386
79022
  }, {
79387
79023
  label: (0, _i18n.$l)(`关联业务`),
79388
79024
  // '关联业务'
79389
- prop: 'docmType',
79390
- align: 'left',
79391
- width: '200',
79025
+ prop: "docmType",
79026
+ align: "left",
79027
+ width: "200",
79392
79028
  isDefault: true
79393
79029
  }, {
79394
79030
  label: (0, _i18n.$l)(`自动确认`),
79395
79031
  // '自动确认'
79396
- prop: 'AUTOSUBMIT',
79397
- align: 'left',
79398
- width: '200',
79032
+ prop: "AUTOSUBMIT",
79033
+ align: "left",
79034
+ width: "200",
79399
79035
  isDefault: true
79400
79036
  }, {
79401
79037
  label: (0, _i18n.$l)(`生效时间`),
79402
79038
  // '生效时间'
79403
- prop: 'EFFECTTIME',
79404
- align: 'left',
79405
- width: '200',
79039
+ prop: "EFFECTTIME",
79040
+ align: "left",
79041
+ width: "200",
79406
79042
  isDefault: true
79407
79043
  }, {
79408
79044
  label: (0, _i18n.$l)(`操作人`),
79409
79045
  // '操作人'
79410
- prop: 'CREATORNO',
79411
- align: 'left',
79412
- width: '200',
79046
+ prop: "CREATORNO",
79047
+ align: "left",
79048
+ width: "200",
79413
79049
  isDefault: true
79414
79050
  }];
79415
79051
  const NODE_GROUP = exports.NODE_GROUP = {
@@ -79420,6 +79056,179 @@ const NODE_GROUP = exports.NODE_GROUP = {
79420
79056
  mValues: "",
79421
79057
  key: Math.random()
79422
79058
  };
79059
+ const AutoFillListHeader = exports.AutoFillListHeader = [{
79060
+ type: "checkbox",
79061
+ static: "pre" // 静态不被"显示列"显示的,且最终会被拼接到"显示列"排序后的表格的"前面"
79062
+ }, {
79063
+ type: "seq",
79064
+ label: "序号",
79065
+ width: "56",
79066
+ align: "center"
79067
+ }, {
79068
+ slotName: "matchingId",
79069
+ label: "规则编号",
79070
+ prop: "matchingId",
79071
+ align: "center",
79072
+ minWidth: "114",
79073
+ "show-overflow-tooltip": true
79074
+ }, {
79075
+ label: "规则名称",
79076
+ prop: "matchingRuleName",
79077
+ width: "240",
79078
+ "show-overflow-tooltip": true
79079
+ }, {
79080
+ label: "适用范围",
79081
+ prop: "usedScope",
79082
+ align: "center",
79083
+ width: "200",
79084
+ formatter: ({
79085
+ row
79086
+ }) => {
79087
+ let doc = {
79088
+ all: (0, _i18n.$l)(`全集团`),
79089
+ unit: (0, _i18n.$l)(`所选单位`),
79090
+ unit_and_sub: (0, _i18n.$l)(`所选单位及所有下级`)
79091
+ };
79092
+ return doc[row.usedScope] || "--";
79093
+ }
79094
+ }, {
79095
+ label: "适用单位",
79096
+ prop: "usedUnit",
79097
+ slotName: "usedUnit",
79098
+ align: "center",
79099
+ width: "200"
79100
+ }, {
79101
+ label: "匹配优先级",
79102
+ prop: "matchingPriority",
79103
+ align: "center",
79104
+ width: "130",
79105
+ formatter: ({
79106
+ row
79107
+ }) => {
79108
+ return row.matchingPriority;
79109
+ }
79110
+ }, {
79111
+ label: "补填信息",
79112
+ prop: "fillInfo",
79113
+ align: "center",
79114
+ slotName: "fillInfo",
79115
+ width: "120"
79116
+ }, {
79117
+ label: "自动确认",
79118
+ prop: "isAutoConfirm",
79119
+ align: "center",
79120
+ width: "120",
79121
+ formatter: row => {
79122
+ return row.isAutoConfirm ? "是" : "否";
79123
+ }
79124
+ }, {
79125
+ label: "生效时间",
79126
+ prop: "updateTime",
79127
+ align: "center",
79128
+ width: "180",
79129
+ sortable: true,
79130
+ "show-overflow-tooltip": true
79131
+ }, {
79132
+ label: "操作人",
79133
+ prop: "creator",
79134
+ align: "center",
79135
+ width: "160",
79136
+ "show-overflow-tooltip": true
79137
+ }, {
79138
+ slotName: "operate",
79139
+ label: "操作",
79140
+ static: "next" // 静态不被"显示列"显示的,且最终会被拼接到"显示列"排序后的表格的"后面"
79141
+ }];
79142
+ const AutoFillListFilter = exports.AutoFillListFilter = [{
79143
+ id: "cltName",
79144
+ label: (0, _i18n.$l)("适用单位"),
79145
+ //适用单位
79146
+ type: "text",
79147
+ value: "cltName",
79148
+ isDefault: true,
79149
+ // static: true,
79150
+ props: {
79151
+ clearable: true
79152
+ }
79153
+ }, {
79154
+ id: "ruleId",
79155
+ label: (0, _i18n.$l)("规则编号"),
79156
+ //规则编号
79157
+ type: "text",
79158
+ value: "ruleId",
79159
+ isDefault: true,
79160
+ // static: true,
79161
+ props: {
79162
+ clearable: true
79163
+ }
79164
+ }, {
79165
+ id: "ruleName",
79166
+ label: (0, _i18n.$l)("规则名称"),
79167
+ //规则名称
79168
+ type: "text",
79169
+ value: "ruleName",
79170
+ isDefault: true,
79171
+ props: {
79172
+ clearable: true
79173
+ }
79174
+ }, {
79175
+ id: "applyRangeList",
79176
+ label: (0, _i18n.$l)("适用范围"),
79177
+ //适用范围
79178
+ type: "select",
79179
+ value: "applyRangeList",
79180
+ multiple: true,
79181
+ width: "200px",
79182
+ options: SCOPE_OPTIONS,
79183
+ props: {
79184
+ clearable: true,
79185
+ filterable: true
79186
+ }
79187
+ }, {
79188
+ id: "matchPriority",
79189
+ label: (0, _i18n.$l)("匹配优先级"),
79190
+ //匹配优先级
79191
+ type: "number",
79192
+ value: "matchPriority",
79193
+ props: {
79194
+ min: 0,
79195
+ max: 9999999999999,
79196
+ clearable: true,
79197
+ isClearable: true,
79198
+ "d-num": 0
79199
+ }
79200
+ }, {
79201
+ id: "fillWayList",
79202
+ label: (0, _i18n.$l)("匹配补填方式"),
79203
+ //匹配补填方式
79204
+ type: "select",
79205
+ multiple: true,
79206
+ value: "fillWayList",
79207
+ options: FILL_METHOD_OPTIONS,
79208
+ props: {
79209
+ clearable: true,
79210
+ filterable: true
79211
+ }
79212
+ }, {
79213
+ id: "autoSubmitList",
79214
+ label: (0, _i18n.$l)("自动确认"),
79215
+ //自动确认
79216
+ type: "select",
79217
+ value: "autoSubmitList",
79218
+ isDefault: false,
79219
+ multiple: true,
79220
+ options: [{
79221
+ value: 1,
79222
+ label: (0, _i18n.$l)("是")
79223
+ }, {
79224
+ value: 0,
79225
+ label: (0, _i18n.$l)("否")
79226
+ }],
79227
+ props: {
79228
+ clearable: true,
79229
+ filterable: true
79230
+ }
79231
+ }];
79423
79232
 
79424
79233
  /***/ }),
79425
79234
 
@@ -81711,6 +81520,76 @@ var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_
81711
81520
 
81712
81521
  /***/ }),
81713
81522
 
81523
+ /***/ "a96c":
81524
+ /***/ (function(module, exports, __webpack_require__) {
81525
+
81526
+ "use strict";
81527
+
81528
+
81529
+ Object.defineProperty(exports, "__esModule", {
81530
+ value: true
81531
+ });
81532
+ exports.default = void 0;
81533
+ exports.has = has;
81534
+ exports.hasG = hasG;
81535
+ var _relaNo = __webpack_require__("a215");
81536
+ var _storageEdit = __webpack_require__("2738");
81537
+ function has(vals, clt) {
81538
+ let relaNos = [];
81539
+ if (clt) {
81540
+ relaNos = (0, _relaNo.getCltRela)(clt);
81541
+ } else {
81542
+ // 判断此处有没有同步更新的标识,有标识代表权限更新过重新再取一次数据
81543
+ let isSync = sessionStorage.getItem('isSync');
81544
+ if (isSync === 'true') {
81545
+ (0, _relaNo.setRela)();
81546
+ sessionStorage.setItem('isSync', false);
81547
+ }
81548
+ relaNos = (0, _relaNo.getRela)().relaNos;
81549
+ }
81550
+ if (typeof vals === 'string') {
81551
+ return relaNos.includes(vals);
81552
+ } else if (Array.isArray(vals)) {
81553
+ return vals.some(val => relaNos.includes(val));
81554
+ }
81555
+ }
81556
+ function hasG(vals, clt) {
81557
+ let relaNos = [];
81558
+ if (clt) {
81559
+ relaNos = (0, _relaNo.getCltRela)(clt);
81560
+ } else {
81561
+ relaNos = (0, _storageEdit.getItem)('relaNosGlobal');
81562
+ }
81563
+ if (typeof vals === 'string') {
81564
+ return relaNos.includes(vals);
81565
+ } else if (Array.isArray(vals)) {
81566
+ return vals.some(val => relaNos.includes(val));
81567
+ }
81568
+ }
81569
+ const directive = {};
81570
+ directive.install = Vue => {
81571
+ Vue.prototype.$has = has;
81572
+ Vue.filter('isHas', has);
81573
+ Vue.filter('noHas', (v, arg) => !has(v, arg));
81574
+ Vue.directive('has', {
81575
+ inserted(el, binding) {
81576
+ !has(binding.value, binding.arg) && el.parentNode.removeChild(el);
81577
+ }
81578
+ });
81579
+ // 全局查找
81580
+ Vue.prototype.$hasG = hasG;
81581
+ Vue.filter('isHasG', hasG);
81582
+ Vue.filter('noHasG', (v, arg) => !hasG(v, arg));
81583
+ Vue.directive('hasG', {
81584
+ inserted(el, binding) {
81585
+ !hasG(binding.value, binding.arg) && el.parentNode.removeChild(el);
81586
+ }
81587
+ });
81588
+ };
81589
+ var _default = exports.default = directive;
81590
+
81591
+ /***/ }),
81592
+
81714
81593
  /***/ "a978":
81715
81594
  /***/ (function(module, exports, __webpack_require__) {
81716
81595
 
@@ -83480,6 +83359,17 @@ var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_
83480
83359
  })));
83481
83360
 
83482
83361
 
83362
+ /***/ }),
83363
+
83364
+ /***/ "aede":
83365
+ /***/ (function(module, __webpack_exports__, __webpack_require__) {
83366
+
83367
+ "use strict";
83368
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_style_index_0_id_1b277a2c_prod_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("7d64");
83369
+ /* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_style_index_0_id_1b277a2c_prod_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_ref_6_oneOf_1_0_node_modules_css_loader_dist_cjs_js_ref_6_oneOf_1_1_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_ref_6_oneOf_1_2_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_style_index_0_id_1b277a2c_prod_scoped_true_lang_css__WEBPACK_IMPORTED_MODULE_0__);
83370
+ /* unused harmony reexport * */
83371
+
83372
+
83483
83373
  /***/ }),
83484
83374
 
83485
83375
  /***/ "af09":
@@ -87177,7 +87067,7 @@ service.interceptors.request.use(config => {
87177
87067
  requestKey: (0, _index.randomString)(16),
87178
87068
  OperationDesc: 'yYarJp'
87179
87069
  };
87180
- config.headers.Authorization = `Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOlsiTlNfV0VCUyJdLCJ1c2VyX25hbWUiOiJ7XCJicmFuY2hOYW1lXCI6XCLkuZ3mgZLmmJ_otKLliqHlhazlj7hcIixcImJyYW5jaE5vXCI6XCIwMDFcIixcImNlcnRETlwiOlwiMzQ1M1wiLFwiY3VyckN1c3ROb1wiOlwiMTcyMTEyNTU2MDI1NVwiLFwiY3VzdE5hbWVcIjpcIuS5neaBkuaYn-mbhuWbolwiLFwiY3VzdE5vXCI6XCIxNzIxMTI1NTYwMjU1XCIsXCJjdXN0U2hvcnROYW1lXCI6XCLmnKrnn6VcIixcImN1c3RUcmVlTm9cIjpcIjAwMDFcIixcImN1c3RUeXBlXCI6XCI1XCIsXCJkZXB0Tm9cIjpcIjE3MjExMzM1NDEzODlcIixcImRldmljZXNcIjpbXSxcImZpcnN0RW50ZXJcIjowLFwidVR5cGVcIjpcIjBcIixcInVzZXJJZFwiOjAsXCJ1c2VyTmFtZVwiOlwic3VuaHVhblwiLFwidXNlck5vXCI6XCJzaFwifSIsInNjb3BlIjpbIlJPTEVfQVBJIl0sImV4cCI6MTc1NDk5MjM4OSwiYXV0aG9yaXRpZXMiOlsiYWRtaW4iXSwianRpIjoiODMxOWIwOTEtZmI0ZS00YWM5LTlhNWYtNjNjOTIyZTRhNzk5IiwiY2xpZW50X2lkIjoiTlNUQyJ9.0h0xudYpieCuyXLeZi22VkDZDr4gtZ0kFvWkiBjc4V8`;
87070
+ config.headers.Authorization = `Bearer ${(0, _auth.getToken)()}`;
87181
87071
  // console.log('Authorization===>',config.headers.Authorization)
87182
87072
  return config;
87183
87073
  }, error => {
@@ -96193,20 +96083,6 @@ var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_
96193
96083
 
96194
96084
  /* harmony default export */ __webpack_exports__["default"] = (component.exports);
96195
96085
 
96196
- /***/ }),
96197
-
96198
- /***/ "c6e7":
96199
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
96200
-
96201
- "use strict";
96202
- /* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_f2943136_vue_loader_template_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_thread_loader_dist_cjs_js_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ref_6_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_template_id_f87890e4_scoped_true__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("835f");
96203
- /* harmony import */ var _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_f2943136_vue_loader_template_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_thread_loader_dist_cjs_js_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ref_6_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_template_id_f87890e4_scoped_true__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_f2943136_vue_loader_template_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_thread_loader_dist_cjs_js_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ref_6_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_template_id_f87890e4_scoped_true__WEBPACK_IMPORTED_MODULE_0__);
96204
- /* harmony reexport (checked) */ if(__webpack_require__.o(_node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_f2943136_vue_loader_template_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_thread_loader_dist_cjs_js_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ref_6_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_template_id_f87890e4_scoped_true__WEBPACK_IMPORTED_MODULE_0__, "render")) __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_f2943136_vue_loader_template_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_thread_loader_dist_cjs_js_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ref_6_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_template_id_f87890e4_scoped_true__WEBPACK_IMPORTED_MODULE_0__["render"]; });
96205
-
96206
- /* harmony reexport (checked) */ if(__webpack_require__.o(_node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_f2943136_vue_loader_template_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_thread_loader_dist_cjs_js_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ref_6_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_template_id_f87890e4_scoped_true__WEBPACK_IMPORTED_MODULE_0__, "staticRenderFns")) __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_cache_loader_dist_cjs_js_cacheDirectory_node_modules_cache_vue_loader_cacheIdentifier_f2943136_vue_loader_template_node_modules_cache_loader_dist_cjs_js_ref_12_0_node_modules_thread_loader_dist_cjs_js_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ref_6_node_modules_cache_loader_dist_cjs_js_ref_0_0_node_modules_vue_loader_lib_index_js_vue_loader_options_main_vue_vue_type_template_id_f87890e4_scoped_true__WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
96207
-
96208
-
96209
-
96210
96086
  /***/ }),
96211
96087
 
96212
96088
  /***/ "c71b":
@@ -109586,6 +109462,377 @@ var staticRenderFns = exports.staticRenderFns = [];
109586
109462
 
109587
109463
  /***/ }),
109588
109464
 
109465
+ /***/ "fc30":
109466
+ /***/ (function(module, exports, __webpack_require__) {
109467
+
109468
+ "use strict";
109469
+
109470
+
109471
+ Object.defineProperty(exports, "__esModule", {
109472
+ value: true
109473
+ });
109474
+ exports.staticRenderFns = exports.render = void 0;
109475
+ var render = exports.render = function render() {
109476
+ var _vm = this,
109477
+ _c = _vm._self._c;
109478
+ return _c('ClPage', {
109479
+ staticStyle: {
109480
+ "height": "100%"
109481
+ }
109482
+ }, [_c('div', {
109483
+ ref: "formWrap",
109484
+ attrs: {
109485
+ "slot": "header"
109486
+ },
109487
+ slot: "header"
109488
+ }, [_c('div', {
109489
+ staticClass: "flex-box flex-r"
109490
+ }, [_c('el-button', {
109491
+ attrs: {
109492
+ "icon": "n20-icon-shuaxin",
109493
+ "plain": "",
109494
+ "onlyicon": "",
109495
+ "size": "mini"
109496
+ },
109497
+ on: {
109498
+ "click": _vm.refresh
109499
+ }
109500
+ }), _c('el-button', {
109501
+ staticClass: "m-l-s",
109502
+ attrs: {
109503
+ "icon": "n20-icon-iconfontshaixuan ",
109504
+ "plain": "",
109505
+ "onlyicon": "",
109506
+ "size": "mini"
109507
+ },
109508
+ on: {
109509
+ "click": function ($event) {
109510
+ _vm.multiple = !_vm.multiple;
109511
+ }
109512
+ }
109513
+ }), _c('el-button', {
109514
+ directives: [{
109515
+ name: "hasG",
109516
+ rawName: "v-hasG",
109517
+ value: _vm.pageRelaNo.add,
109518
+ expression: "pageRelaNo.add"
109519
+ }],
109520
+ staticClass: "m-l-s",
109521
+ attrs: {
109522
+ "type": "primary",
109523
+ "size": "mini"
109524
+ },
109525
+ on: {
109526
+ "click": function ($event) {
109527
+ _vm.$linkPush('/payment/AddRules', {
109528
+ t: Date.now()
109529
+ });
109530
+ }
109531
+ }
109532
+ }, [_vm._v(_vm._s(_vm.$l("新增")))]), _c('el-button', {
109533
+ directives: [{
109534
+ name: "hasG",
109535
+ rawName: "v-hasG",
109536
+ value: _vm.pageRelaNo.delete,
109537
+ expression: "pageRelaNo.delete"
109538
+ }],
109539
+ staticClass: "m-l-s",
109540
+ attrs: {
109541
+ "plain": "",
109542
+ "size": "mini"
109543
+ },
109544
+ on: {
109545
+ "click": _vm.delFnBatch
109546
+ }
109547
+ }, [_vm._v(_vm._s(_vm.$l("删除")))]), _c('el-button', {
109548
+ directives: [{
109549
+ name: "hasG",
109550
+ rawName: "v-hasG",
109551
+ value: _vm.pageRelaNo.detection,
109552
+ expression: "pageRelaNo.detection"
109553
+ }],
109554
+ staticClass: "m-l-s",
109555
+ attrs: {
109556
+ "plain": "",
109557
+ "size": "mini"
109558
+ },
109559
+ on: {
109560
+ "click": _vm.detection
109561
+ }
109562
+ }, [_vm._v(_vm._s(_vm.$l("检测")))]), _c('el-button', {
109563
+ directives: [{
109564
+ name: "hasG",
109565
+ rawName: "v-hasG",
109566
+ value: _vm.pageRelaNo.import,
109567
+ expression: "pageRelaNo.import"
109568
+ }],
109569
+ staticClass: "m-l-s",
109570
+ attrs: {
109571
+ "plain": "",
109572
+ "size": "mini"
109573
+ },
109574
+ on: {
109575
+ "click": function ($event) {
109576
+ _vm.visible = true;
109577
+ }
109578
+ }
109579
+ }, [_vm._v(_vm._s(_vm.$l("导入")))]), _c('el-dropdown', {
109580
+ staticClass: "m-l-s",
109581
+ attrs: {
109582
+ "trigger": "click"
109583
+ },
109584
+ on: {
109585
+ "command": _vm.exportFn
109586
+ }
109587
+ }, [_c('span', {
109588
+ staticClass: "el-dropdown-link"
109589
+ }, [_c('el-button', {
109590
+ directives: [{
109591
+ name: "hasG",
109592
+ rawName: "v-hasG",
109593
+ value: _vm.pageRelaNo.export,
109594
+ expression: "pageRelaNo.export"
109595
+ }],
109596
+ attrs: {
109597
+ "size": "mini",
109598
+ "plain": ""
109599
+ }
109600
+ }, [_vm._v(" " + _vm._s(_vm.$l("导出"))), _c('i', {
109601
+ staticClass: "el-icon-arrow-down"
109602
+ })])], 1), _c('el-dropdown-menu', {
109603
+ attrs: {
109604
+ "slot": "dropdown"
109605
+ },
109606
+ slot: "dropdown"
109607
+ }, [_c('el-dropdown-item', {
109608
+ attrs: {
109609
+ "command": "xls"
109610
+ }
109611
+ }, [_vm._v(_vm._s(_vm.$l(".xls格式")))]), _c('el-dropdown-item', {
109612
+ attrs: {
109613
+ "command": "xlsx"
109614
+ }
109615
+ }, [_vm._v(_vm._s(_vm.$l(".xlsx格式")))])], 1)], 1)], 1), _c('ClAdvancedFilter', {
109616
+ attrs: {
109617
+ "visible": _vm.multiple,
109618
+ "filterId": `RulesManage-payment-filterIdNew-${_vm.settingSource}`,
109619
+ "model": _vm.formData,
109620
+ "onlyKey": "id",
109621
+ "filter-list": _vm.filterList
109622
+ },
109623
+ on: {
109624
+ "update:visible": function ($event) {
109625
+ _vm.multiple = $event;
109626
+ },
109627
+ "search": _vm.refresh,
109628
+ "enter": _vm.refresh,
109629
+ "clear": _vm.clearSearch
109630
+ }
109631
+ })], 1), _c('div', {
109632
+ staticStyle: {
109633
+ "flex": "1",
109634
+ "position": "relative",
109635
+ "height": "100%"
109636
+ }
109637
+ }, [_c('div', {
109638
+ staticStyle: {
109639
+ "position": "absolute",
109640
+ "width": "100%",
109641
+ "height": "100%"
109642
+ }
109643
+ }, [_c('CLTablePro', {
109644
+ key: `table-pro-${_vm.fillField.length}`,
109645
+ ref: "vTable",
109646
+ attrs: {
109647
+ "data": _vm.tableData,
109648
+ "columns": _vm.tableHeader,
109649
+ "height": '100%',
109650
+ "clearSelect": false,
109651
+ "auto-resize": "",
109652
+ "rowConfig": {
109653
+ keyField: 'matchingId'
109654
+ },
109655
+ "checkboxConfig": {
109656
+ reserve: true
109657
+ }
109658
+ },
109659
+ on: {
109660
+ "selection-change-method": _vm.handleSelectionChange,
109661
+ "sort-change-method": _vm.sortChange
109662
+ },
109663
+ scopedSlots: _vm._u([{
109664
+ key: "usedUnit",
109665
+ fn: function ({
109666
+ column
109667
+ }) {
109668
+ return _c('vxe-column', _vm._b({
109669
+ attrs: {
109670
+ "field": column.prop,
109671
+ "title": column.label
109672
+ },
109673
+ scopedSlots: _vm._u([{
109674
+ key: "default",
109675
+ fn: function ({
109676
+ row
109677
+ }) {
109678
+ return [_c('div', {
109679
+ attrs: {
109680
+ "title": row.usedUnits
109681
+ },
109682
+ domProps: {
109683
+ "innerHTML": _vm._s(row.usedUnit || '--')
109684
+ }
109685
+ })];
109686
+ }
109687
+ }])
109688
+ }, 'vxe-column', column, false));
109689
+ }
109690
+ }, {
109691
+ key: "matchingId",
109692
+ fn: function ({
109693
+ column
109694
+ }) {
109695
+ return _c('vxe-column', _vm._b({
109696
+ attrs: {
109697
+ "field": column.prop,
109698
+ "title": column.label
109699
+ },
109700
+ scopedSlots: _vm._u([{
109701
+ key: "default",
109702
+ fn: function ({
109703
+ row
109704
+ }) {
109705
+ return [_c('el-button', {
109706
+ attrs: {
109707
+ "type": "text"
109708
+ },
109709
+ on: {
109710
+ "click": function ($event) {
109711
+ return _vm.$router.push({
109712
+ path: '/RulesDetail',
109713
+ query: {
109714
+ id: row.matchingId
109715
+ }
109716
+ });
109717
+ }
109718
+ }
109719
+ }, [_vm._v(_vm._s(row.matchingId))])];
109720
+ }
109721
+ }])
109722
+ }, 'vxe-column', column, false));
109723
+ }
109724
+ }])
109725
+ }, [_c('vxe-colgroup', {
109726
+ attrs: {
109727
+ "slot": "fillInfo",
109728
+ "width": "220",
109729
+ "title": _vm.$l('补填信息'),
109730
+ "align": "center"
109731
+ },
109732
+ slot: "fillInfo"
109733
+ }, [_vm._l(_vm.fillField, function (item) {
109734
+ return [_vm.fillField.length ? _c('vxe-column', {
109735
+ key: item.prop,
109736
+ attrs: {
109737
+ "field": item.prop,
109738
+ "title": item.label,
109739
+ "align": "center",
109740
+ "width": 200
109741
+ },
109742
+ scopedSlots: _vm._u([{
109743
+ key: "default",
109744
+ fn: function (scope) {
109745
+ return [_c('div', [_vm._v(" " + _vm._s(scope.row[item.prop] || "--") + " ")])];
109746
+ }
109747
+ }], null, true)
109748
+ }) : _vm._e()];
109749
+ })], 2), _c('TableProOperateColumn', {
109750
+ attrs: {
109751
+ "slot": "operate",
109752
+ "btn-list": _vm.btns,
109753
+ "label": "操作",
109754
+ "width": "144",
109755
+ "fixed": "right",
109756
+ "align": "center"
109757
+ },
109758
+ on: {
109759
+ "xg": _vm.editFn,
109760
+ "fz": _vm.copyFn,
109761
+ "sc": _vm.delFn
109762
+ },
109763
+ slot: "operate"
109764
+ })], 1)], 1)]), _c('div', {
109765
+ staticClass: "page-footer-shadow flex-box flex-lr flex-v pt-4 pb-4",
109766
+ attrs: {
109767
+ "slot": "footer"
109768
+ },
109769
+ slot: "footer"
109770
+ }, [_c('div', {
109771
+ staticClass: "flex-box flex-v"
109772
+ }, [_c('StatisItem', {
109773
+ attrs: {
109774
+ "type": _vm.$l('已选合计'),
109775
+ "list": [{
109776
+ label: _vm.$l('笔数'),
109777
+ value: _vm.selectRows.length
109778
+ }]
109779
+ }
109780
+ }), _c('StatisItem', {
109781
+ attrs: {
109782
+ "type": _vm.$l('全部合计'),
109783
+ "list": [{
109784
+ label: _vm.$l('笔数'),
109785
+ value: _vm.pagination.total
109786
+ }]
109787
+ }
109788
+ })], 1), _c('ClPagination', {
109789
+ attrs: {
109790
+ "page-obj": _vm.pagination,
109791
+ "page-key": {
109792
+ no: 'current',
109793
+ size: 'size',
109794
+ total: 'total'
109795
+ }
109796
+ },
109797
+ on: {
109798
+ "change": _vm.paginationChange
109799
+ }
109800
+ })], 1), _c('ImportRulesDialog', {
109801
+ attrs: {
109802
+ "settingSource": _vm.settingSource
109803
+ },
109804
+ on: {
109805
+ "refresh": _vm.refresh
109806
+ },
109807
+ model: {
109808
+ value: _vm.visible,
109809
+ callback: function ($$v) {
109810
+ _vm.visible = $$v;
109811
+ },
109812
+ expression: "visible"
109813
+ }
109814
+ }), _c('CLDialog', {
109815
+ attrs: {
109816
+ "title": _vm.$l('检测'),
109817
+ "visible": _vm.Dvisible,
109818
+ "width": "85%",
109819
+ "max-dialog": ""
109820
+ },
109821
+ on: {
109822
+ "update:visible": function ($event) {
109823
+ _vm.Dvisible = $event;
109824
+ }
109825
+ }
109826
+ }, [_c('AutoFillDetection', {
109827
+ attrs: {
109828
+ "settingSource": _vm.settingSource
109829
+ }
109830
+ })], 1)], 1);
109831
+ };
109832
+ var staticRenderFns = exports.staticRenderFns = [];
109833
+
109834
+ /***/ }),
109835
+
109589
109836
  /***/ "fcb7":
109590
109837
  /***/ (function(module, exports, __webpack_require__) {
109591
109838