gcs-ui-lib 1.2.34 → 1.2.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/gcs-ui-lib.common.js +3493 -4211
- package/lib/gcs-ui-lib.css +1 -1
- package/lib/gcs-ui-lib.umd.js +3493 -4211
- package/lib/gcs-ui-lib.umd.min.js +85 -85
- package/package.json +2 -9
- package/packages/AutoFillDetail/src/main.vue +4 -4
- package/packages/AutoFillDetection/src/components/SelectEntries.vue +1 -1
- package/packages/AutoFillDetection/src/components/THIRD_ACCOUNT.vue +1 -1
- package/packages/AutoFillDetection/src/components/config.js +68 -68
- package/packages/AutoFillDetection/src/main.vue +1 -1
- package/packages/AutoFillList/src/components/config.js +11 -11
- package/packages/AutoFillList/src/main.vue +2 -2
- package/packages/AutoFillRuleHistory/src/components/config.js +14 -14
- package/packages/AutoFillRuleHistory/src/main.vue +1 -1
- package/packages/AutoFillService/src/components/ConditionGroup.vue +18 -18
- package/packages/AutoFillService/src/components/basic.vue +2 -2
- package/packages/AutoFillService/src/components/config.js +1 -1
- package/packages/AutoFillService/src/components/fillDetail.vue +8 -8
- package/packages/AutoFillService/src/components/fillRules.vue +5 -5
- package/packages/AutoFillService/src/components/paymentCategory.vue +1 -1
- package/packages/MergeAutoFill/merge/merageBasic.vue +3 -3
- package/packages/MergeAutoFill/merge/merageFillService.vue +2 -2
- package/packages/MergeAutoFill/merge/merageHistoryRules.vue +1 -1
- package/packages/MergeAutoFill/merge/mergeFillDetail.vue +4 -4
- package/packages/StreamRefill/src/main.vue +1 -1
- package/packages/Trade/src/components/i18n.json +3337 -3337
- package/src/index.js +8 -1
- package/src/lang/i18n.json +1184 -0
- package/src/lang/mergeI18n.js +27 -0
- package/src/preview/router.js +0 -5
- package/src/utils/exportPageSnapshot.js +728 -1037
- package/packages/ExportPageSnapshot/index.js +0 -7
- package/packages/ExportPageSnapshot/src/demo/index.vue +0 -352
- package/packages/ExportPageSnapshot/src/main.vue +0 -108
|
@@ -421,21 +421,21 @@ const AutoFillListHeader = [
|
|
|
421
421
|
},
|
|
422
422
|
{
|
|
423
423
|
type: "seq",
|
|
424
|
-
label: "序号",
|
|
424
|
+
label: $l("序号"),
|
|
425
425
|
width: "56",
|
|
426
426
|
fixed: "left",
|
|
427
427
|
align: "center",
|
|
428
428
|
},
|
|
429
429
|
{
|
|
430
430
|
slotName: "matchingId",
|
|
431
|
-
label: "规则编号",
|
|
431
|
+
label: $l("规则编号"),
|
|
432
432
|
prop: "matchingId",
|
|
433
433
|
align: "center",
|
|
434
434
|
minWidth: "114",
|
|
435
435
|
"show-overflow-tooltip": true,
|
|
436
436
|
},
|
|
437
437
|
{
|
|
438
|
-
label: "规则名称",
|
|
438
|
+
label: $l("规则名称"),
|
|
439
439
|
prop: "matchingRuleName",
|
|
440
440
|
width: "240",
|
|
441
441
|
"show-overflow-tooltip": true,
|
|
@@ -469,7 +469,7 @@ const AutoFillListHeader = [
|
|
|
469
469
|
},
|
|
470
470
|
},
|
|
471
471
|
{
|
|
472
|
-
label: "适用范围",
|
|
472
|
+
label: $l("适用范围"),
|
|
473
473
|
prop: "usedScope",
|
|
474
474
|
align: "center",
|
|
475
475
|
width: "200",
|
|
@@ -483,7 +483,7 @@ const AutoFillListHeader = [
|
|
|
483
483
|
},
|
|
484
484
|
},
|
|
485
485
|
{
|
|
486
|
-
label: "适用单位",
|
|
486
|
+
label: $l("适用单位"),
|
|
487
487
|
prop: "usedUnit",
|
|
488
488
|
slotName: "usedUnit",
|
|
489
489
|
align: "center",
|
|
@@ -503,7 +503,7 @@ const AutoFillListHeader = [
|
|
|
503
503
|
// },
|
|
504
504
|
// },
|
|
505
505
|
{
|
|
506
|
-
label: "匹配优先级",
|
|
506
|
+
label: $l("匹配优先级"),
|
|
507
507
|
prop: "matchingPriority",
|
|
508
508
|
align: "center",
|
|
509
509
|
width: "130",
|
|
@@ -512,14 +512,14 @@ const AutoFillListHeader = [
|
|
|
512
512
|
},
|
|
513
513
|
},
|
|
514
514
|
{
|
|
515
|
-
label: "补填信息",
|
|
515
|
+
label: $l("补填信息"),
|
|
516
516
|
prop: "fillInfo",
|
|
517
517
|
align: "center",
|
|
518
518
|
slotName: "fillInfo",
|
|
519
519
|
width: "120",
|
|
520
520
|
},
|
|
521
521
|
{
|
|
522
|
-
label: "自动确认",
|
|
522
|
+
label: $l("自动确认"),
|
|
523
523
|
prop: "isAutoConfirm",
|
|
524
524
|
align: "center",
|
|
525
525
|
width: "120",
|
|
@@ -528,7 +528,7 @@ const AutoFillListHeader = [
|
|
|
528
528
|
},
|
|
529
529
|
},
|
|
530
530
|
{
|
|
531
|
-
label: "生效时间",
|
|
531
|
+
label: $l("生效时间"),
|
|
532
532
|
prop: "updateTime",
|
|
533
533
|
align: "center",
|
|
534
534
|
width: "180",
|
|
@@ -537,7 +537,7 @@ const AutoFillListHeader = [
|
|
|
537
537
|
},
|
|
538
538
|
|
|
539
539
|
{
|
|
540
|
-
label: "操作人",
|
|
540
|
+
label: $l("操作人"),
|
|
541
541
|
prop: "updator",
|
|
542
542
|
align: "center",
|
|
543
543
|
width: "160",
|
|
@@ -545,7 +545,7 @@ const AutoFillListHeader = [
|
|
|
545
545
|
},
|
|
546
546
|
{
|
|
547
547
|
slotName: "operate",
|
|
548
|
-
label: "操作",
|
|
548
|
+
label: $l("操作"),
|
|
549
549
|
static: "next", // 静态不被"显示列"显示的,且最终会被拼接到"显示列"排序后的表格的"后面"
|
|
550
550
|
},
|
|
551
551
|
];
|
|
@@ -408,7 +408,7 @@ const NODE_GROUP = {
|
|
|
408
408
|
matchingFieldCode: "accountNo",
|
|
409
409
|
logicalOperation: "",
|
|
410
410
|
matchingOperation: "",
|
|
411
|
-
matchingFieldName: "本方账号",
|
|
411
|
+
matchingFieldName: $l("本方账号"),
|
|
412
412
|
mValues: "",
|
|
413
413
|
key: Math.random(),
|
|
414
414
|
};
|
|
@@ -420,21 +420,21 @@ const AutoFillListHeader = [
|
|
|
420
420
|
},
|
|
421
421
|
{
|
|
422
422
|
type: "seq",
|
|
423
|
-
label: "序号",
|
|
423
|
+
label: $l("序号"),
|
|
424
424
|
width: "56",
|
|
425
425
|
fixed: "left",
|
|
426
426
|
align: "center",
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
429
|
slotName: "matchingId",
|
|
430
|
-
label: "规则编号",
|
|
430
|
+
label: $l("规则编号"),
|
|
431
431
|
prop: "matchingId",
|
|
432
432
|
align: "center",
|
|
433
433
|
minWidth: "114",
|
|
434
434
|
"show-overflow-tooltip": true,
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
label: "规则名称",
|
|
437
|
+
label: $l("规则名称"),
|
|
438
438
|
prop: "matchingRuleName",
|
|
439
439
|
width: "240",
|
|
440
440
|
"show-overflow-tooltip": true,
|
|
@@ -468,7 +468,7 @@ const AutoFillListHeader = [
|
|
|
468
468
|
},
|
|
469
469
|
},
|
|
470
470
|
{
|
|
471
|
-
label: "适用范围",
|
|
471
|
+
label: $l("适用范围"),
|
|
472
472
|
prop: "usedScope",
|
|
473
473
|
align: "center",
|
|
474
474
|
width: "200",
|
|
@@ -482,7 +482,7 @@ const AutoFillListHeader = [
|
|
|
482
482
|
},
|
|
483
483
|
},
|
|
484
484
|
{
|
|
485
|
-
label: "适用单位",
|
|
485
|
+
label: $l("适用单位"),
|
|
486
486
|
prop: "usedUnit",
|
|
487
487
|
slotName: "usedUnit",
|
|
488
488
|
align: "center",
|
|
@@ -502,7 +502,7 @@ const AutoFillListHeader = [
|
|
|
502
502
|
// },
|
|
503
503
|
// },
|
|
504
504
|
{
|
|
505
|
-
label: "匹配优先级",
|
|
505
|
+
label: $l("匹配优先级"),
|
|
506
506
|
prop: "matchingPriority",
|
|
507
507
|
align: "center",
|
|
508
508
|
width: "130",
|
|
@@ -511,23 +511,23 @@ const AutoFillListHeader = [
|
|
|
511
511
|
},
|
|
512
512
|
},
|
|
513
513
|
{
|
|
514
|
-
label: "补填信息",
|
|
514
|
+
label: $l("补填信息"),
|
|
515
515
|
prop: "fillInfo",
|
|
516
516
|
align: "center",
|
|
517
517
|
slotName: "fillInfo",
|
|
518
518
|
width: "120",
|
|
519
519
|
},
|
|
520
520
|
{
|
|
521
|
-
label: "自动确认",
|
|
521
|
+
label: $l("自动确认"),
|
|
522
522
|
prop: "isAutoConfirm",
|
|
523
523
|
align: "center",
|
|
524
524
|
width: "120",
|
|
525
525
|
formatter: ({ row }) => {
|
|
526
|
-
return row.isAutoConfirm ? "是" : "否";
|
|
526
|
+
return row.isAutoConfirm ? $l("是") : $l("否");
|
|
527
527
|
},
|
|
528
528
|
},
|
|
529
529
|
{
|
|
530
|
-
label: "失效时间",
|
|
530
|
+
label: $l("失效时间"),
|
|
531
531
|
prop: "updateTime",
|
|
532
532
|
align: "center",
|
|
533
533
|
width: "180",
|
|
@@ -535,7 +535,7 @@ const AutoFillListHeader = [
|
|
|
535
535
|
"show-overflow-tooltip": true,
|
|
536
536
|
},
|
|
537
537
|
{
|
|
538
|
-
label: "生效时间",
|
|
538
|
+
label: $l("生效时间"),
|
|
539
539
|
prop: "effectiveTime",
|
|
540
540
|
align: "center",
|
|
541
541
|
width: "180",
|
|
@@ -544,7 +544,7 @@ const AutoFillListHeader = [
|
|
|
544
544
|
},
|
|
545
545
|
|
|
546
546
|
{
|
|
547
|
-
label: "操作人",
|
|
547
|
+
label: $l("操作人"),
|
|
548
548
|
prop: "updator",
|
|
549
549
|
align: "center",
|
|
550
550
|
width: "160",
|
|
@@ -552,7 +552,7 @@ const AutoFillListHeader = [
|
|
|
552
552
|
},
|
|
553
553
|
{
|
|
554
554
|
slotName: "operate",
|
|
555
|
-
label: "操作",
|
|
555
|
+
label: $l("操作"),
|
|
556
556
|
static: "next", // 静态不被"显示列"显示的,且最终会被拼接到"显示列"排序后的表格的"后面"
|
|
557
557
|
},
|
|
558
558
|
];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<ClPage :style="{ height: test ? '100%' : '' }">
|
|
3
3
|
<div slot="header" ref="formWrap">
|
|
4
|
-
<cl-page-header @back="$goBackCommon" content="历史规则查询">
|
|
4
|
+
<cl-page-header @back="$goBackCommon" :content="$l('历史规则查询')">
|
|
5
5
|
</cl-page-header>
|
|
6
6
|
<div
|
|
7
7
|
class="flex-box flex-r"
|
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
</span>
|
|
8
8
|
<el-dropdown-menu slot="dropdown">
|
|
9
9
|
<el-dropdown-item icon="el-icon-plus" command="a"
|
|
10
|
-
|
|
10
|
+
>{{ $l("条件") }}</el-dropdown-item
|
|
11
11
|
>
|
|
12
12
|
<el-dropdown-item icon="el-icon-plus" command="b"
|
|
13
|
-
|
|
13
|
+
>{{ $l("条件组") }}</el-dropdown-item
|
|
14
14
|
>
|
|
15
15
|
</el-dropdown-menu>
|
|
16
16
|
</el-dropdown>
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
class="auto-group-item"
|
|
40
40
|
:class="{ 'auto-group-item-disabled': disabled }"
|
|
41
41
|
>
|
|
42
|
-
<label class="auto-group-item-label"
|
|
42
|
+
<label class="auto-group-item-label">{{ $l("匹配字段") }}</label>
|
|
43
43
|
<el-select
|
|
44
44
|
v-model="item.matchingFieldCode"
|
|
45
45
|
:placeholder="$l('请选择')"
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
'auto-group-item-disabled': disabled,
|
|
65
65
|
}"
|
|
66
66
|
>
|
|
67
|
-
<label class="auto-group-item-label"
|
|
67
|
+
<label class="auto-group-item-label">{{ $l("匹配关系") }}</label>
|
|
68
68
|
<el-select
|
|
69
69
|
v-model="item.matchingOperation"
|
|
70
70
|
:placeholder="$l('请选择')"
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
'auto-group-item-disabled': disabled,
|
|
89
89
|
}"
|
|
90
90
|
>
|
|
91
|
-
<label class="auto-group-item-label"
|
|
91
|
+
<label class="auto-group-item-label">{{ $l("匹配值") }}</label>
|
|
92
92
|
<el-select
|
|
93
93
|
v-model="item.matchingValueType"
|
|
94
94
|
:placeholder="$l('请选择')"
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
'auto-group-item-disabled': disabled,
|
|
112
112
|
}"
|
|
113
113
|
>
|
|
114
|
-
<label class="auto-group-item-label"
|
|
114
|
+
<label class="auto-group-item-label">{{ $l("匹配内容") }}</label>
|
|
115
115
|
<el-cascader
|
|
116
116
|
v-if="item.matchingValueType === 'DYNAMIC'"
|
|
117
117
|
:placeholder="$l('请选择')"
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
></el-cascader>
|
|
126
126
|
<inputTag
|
|
127
127
|
v-model="item.mValues"
|
|
128
|
-
placeholder="请输入内容,按回车添加"
|
|
128
|
+
:placeholder="$l('请输入内容,按回车添加')"
|
|
129
129
|
:disabled="disabled || emptyList.includes(item.matchingOperation)"
|
|
130
130
|
:tagEffect="'plain'"
|
|
131
131
|
:key="item.key"
|
|
@@ -184,7 +184,7 @@
|
|
|
184
184
|
type="textarea"
|
|
185
185
|
rows="10"
|
|
186
186
|
v-model="textarea"
|
|
187
|
-
placeholder="请输入1000字以内"
|
|
187
|
+
:placeholder="$l('请输入1000字以内')"
|
|
188
188
|
maxlength="1000"
|
|
189
189
|
show-word-limit
|
|
190
190
|
></el-input>
|
|
@@ -246,21 +246,21 @@ export default {
|
|
|
246
246
|
data(vm) {
|
|
247
247
|
return {
|
|
248
248
|
valueList: [
|
|
249
|
-
{ label: "固定值", value: "FIXED" },
|
|
250
|
-
{ label: "动态值", value: "DYNAMIC" },
|
|
249
|
+
{ label: vm.$l("固定值"), value: "FIXED" },
|
|
250
|
+
{ label: vm.$l("动态值"), value: "DYNAMIC" },
|
|
251
251
|
],
|
|
252
252
|
textarea: "",
|
|
253
253
|
visible: false,
|
|
254
254
|
currentIndex: 0,
|
|
255
255
|
matchList: [
|
|
256
|
-
{ label: "包含", value: "CONTAINS" },
|
|
257
|
-
{ label: "不包含", value: "NOT_CONTAINS" },
|
|
258
|
-
{ label: "等于", value: "EQUALS" },
|
|
259
|
-
{ label: "不等于", value: "NOT_EQUALS" },
|
|
260
|
-
{ label: "为空", value: "IS_EMPTY" },
|
|
261
|
-
{ label: "不为空", value: "IS_NOT_EMPTY" },
|
|
262
|
-
{ label: "开头包含", value: "STARTS_WITH" },
|
|
263
|
-
{ label: "结尾包含", value: "ENDS_WITH" },
|
|
256
|
+
{ label: vm.$l("包含"), value: "CONTAINS" },
|
|
257
|
+
{ label: vm.$l("不包含") , value: "NOT_CONTAINS" },
|
|
258
|
+
{ label: vm.$l("等于") , value: "EQUALS" },
|
|
259
|
+
{ label: vm.$l("不等于") , value: "NOT_EQUALS" },
|
|
260
|
+
{ label: vm.$l("为空") , value: "IS_EMPTY" },
|
|
261
|
+
{ label: vm.$l("不为空") , value: "IS_NOT_EMPTY" },
|
|
262
|
+
{ label: vm.$l("开头包含") , value: "STARTS_WITH" },
|
|
263
|
+
{ label: vm.$l("结尾包含") , value: "ENDS_WITH" },
|
|
264
264
|
],
|
|
265
265
|
};
|
|
266
266
|
},
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
8
8
|
*/
|
|
9
9
|
import { $l } from "n20-common-lib/src/utils/i18n";
|
|
10
|
-
import {uuid} from "
|
|
10
|
+
import { uuid } from "../../../../src/utils/index.js";
|
|
11
11
|
// 适用范围
|
|
12
12
|
const SCOPE_OPTIONS = [
|
|
13
13
|
{
|
|
@@ -77,25 +77,25 @@ export default {
|
|
|
77
77
|
default: () => {},
|
|
78
78
|
},
|
|
79
79
|
},
|
|
80
|
-
data() {
|
|
80
|
+
data(vm) {
|
|
81
81
|
return {
|
|
82
82
|
FillFieldHeader: [
|
|
83
83
|
{
|
|
84
84
|
type: "index",
|
|
85
|
-
label: "序号",
|
|
85
|
+
label: vm.$l("序号"),
|
|
86
86
|
width: "56",
|
|
87
87
|
align: "center",
|
|
88
88
|
static: "pre",
|
|
89
89
|
},
|
|
90
90
|
{
|
|
91
|
-
label: "补填字段",
|
|
91
|
+
label: vm.$l("补填字段"),
|
|
92
92
|
prop: "fillFieldName",
|
|
93
93
|
align: "center",
|
|
94
94
|
width: "430",
|
|
95
95
|
"show-overflow-tooltip": true,
|
|
96
96
|
},
|
|
97
97
|
{
|
|
98
|
-
label: "补填内容",
|
|
98
|
+
label: vm.$l("补填内容"),
|
|
99
99
|
prop: "fillValue",
|
|
100
100
|
align: "left",
|
|
101
101
|
minWidth: "230",
|
|
@@ -105,27 +105,27 @@ export default {
|
|
|
105
105
|
BudgetSubjectHeader: [
|
|
106
106
|
{
|
|
107
107
|
type: "index",
|
|
108
|
-
label: "序号",
|
|
108
|
+
label: vm.$l("序号"),
|
|
109
109
|
width: "56",
|
|
110
110
|
align: "center",
|
|
111
111
|
static: "pre",
|
|
112
112
|
},
|
|
113
113
|
{
|
|
114
|
-
label: "单位名称",
|
|
114
|
+
label: vm.$l("单位名称"),
|
|
115
115
|
prop: "dimensionName",
|
|
116
116
|
align: "left",
|
|
117
117
|
width: "430",
|
|
118
118
|
"show-overflow-tooltip": true,
|
|
119
119
|
},
|
|
120
120
|
{
|
|
121
|
-
label: "预算科目",
|
|
121
|
+
label: vm.$l("预算科目"),
|
|
122
122
|
prop: "budgetAccountName",
|
|
123
123
|
align: "center",
|
|
124
124
|
minWidth: "230",
|
|
125
125
|
"show-overflow-tooltip": true,
|
|
126
126
|
},
|
|
127
127
|
{
|
|
128
|
-
label: "预算单位",
|
|
128
|
+
label: vm.$l("预算单位"),
|
|
129
129
|
prop: "budgetUnitName",
|
|
130
130
|
align: "left",
|
|
131
131
|
minWidth: "230",
|
|
@@ -371,12 +371,12 @@ export default {
|
|
|
371
371
|
default: () => [],
|
|
372
372
|
},
|
|
373
373
|
},
|
|
374
|
-
data() {
|
|
374
|
+
data(vm) {
|
|
375
375
|
return {
|
|
376
376
|
selectKey: 0,
|
|
377
377
|
valueList: [
|
|
378
|
-
{ label: "固定值", value: "FIXED" },
|
|
379
|
-
{ label: "动态值", value: "DYNAMIC" },
|
|
378
|
+
{ label: vm.$l("固定值"), value: "FIXED" },
|
|
379
|
+
{ label: vm.$l("动态值"), value: "DYNAMIC" },
|
|
380
380
|
],
|
|
381
381
|
v_fillOptions: [],
|
|
382
382
|
size: "small",
|
|
@@ -538,7 +538,7 @@ export default {
|
|
|
538
538
|
"REL_CORP_NAME",
|
|
539
539
|
]);
|
|
540
540
|
let vas = {
|
|
541
|
-
name: "客商.客商名称",
|
|
541
|
+
name: this.$l("客商.客商名称"),
|
|
542
542
|
value: "VW_DATASET_RECORD_CUSTOMER_SUPPLIER.REL_CORP_NAME",
|
|
543
543
|
};
|
|
544
544
|
this.$set(row, "fillValue", JSON.stringify(vas));
|
|
@@ -748,7 +748,7 @@ export default {
|
|
|
748
748
|
...this.basicForm.matchingFillDimensions[idx],
|
|
749
749
|
...map,
|
|
750
750
|
fillFieldCode: "budgetAccountCode",
|
|
751
|
-
fillFieldName: "预算科目",
|
|
751
|
+
fillFieldName: this.$l("预算科目"),
|
|
752
752
|
fillValue: JSON.stringify(map),
|
|
753
753
|
fValues: budgetObj.budgetAccountName,
|
|
754
754
|
};
|
|
@@ -214,7 +214,7 @@ export default {
|
|
|
214
214
|
created() {
|
|
215
215
|
this.$set(this.form, "usedAccountType", "THIRD_ACCOUNT");
|
|
216
216
|
this.$set(this.form, "frequencyMerging", "day");
|
|
217
|
-
this.$set(this.form, "frequencyMergingName", "日");
|
|
217
|
+
this.$set(this.form, "frequencyMergingName", this.$l("日"));
|
|
218
218
|
this.$set(this.form, "dimensionsMergingList", ["unitName", "currencyName"]);
|
|
219
219
|
this.$set(this.form, "matchingRuleType", "INDEPENDENT");
|
|
220
220
|
// this.extendInit();
|
|
@@ -235,11 +235,11 @@ export default {
|
|
|
235
235
|
],
|
|
236
236
|
methodOptions: [
|
|
237
237
|
{
|
|
238
|
-
label: "预先补填",
|
|
238
|
+
label: $l("预先补填"),
|
|
239
239
|
value: "GENERAL",
|
|
240
240
|
},
|
|
241
241
|
{
|
|
242
|
-
label: "完结补填",
|
|
242
|
+
label: $l("完结补填"),
|
|
243
243
|
value: "INDEPENDENT",
|
|
244
244
|
},
|
|
245
245
|
],
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
this.$goBackCommon();
|
|
8
8
|
}
|
|
9
9
|
"
|
|
10
|
-
:content="headerTitle"
|
|
10
|
+
:content="$l(headerTitle)"
|
|
11
11
|
slot="header"
|
|
12
12
|
class="m-b-s"
|
|
13
13
|
></n20-page-header>
|
|
@@ -135,7 +135,7 @@ export default {
|
|
|
135
135
|
let treeData = { ...res.matchingHierarchy, root: true };
|
|
136
136
|
flatData(treeData, this);
|
|
137
137
|
this.tree = treeData;
|
|
138
|
-
this.form.frequencyMergingName = "日";
|
|
138
|
+
this.form.frequencyMergingName = this.$l("日");
|
|
139
139
|
//修改复制时,通过选中的维度,设置匹配字段的下拉值.
|
|
140
140
|
this.$refs.basicRef?.changeDimensions(this.form.dimensionsMergingList);
|
|
141
141
|
},
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
<el-descriptions-item :label="$l('是否自动确认')">{{
|
|
39
39
|
detail.isAutoConfirm | isAutoConfirmFilter
|
|
40
40
|
}}</el-descriptions-item>
|
|
41
|
-
<el-descriptions-item :label="$l('合并频次')"
|
|
41
|
+
<el-descriptions-item :label="$l('合并频次')">{{$l('日')}}</el-descriptions-item>
|
|
42
42
|
<el-descriptions-item :label="$l('生效时间')">{{
|
|
43
43
|
detail.updateTime || "--"
|
|
44
44
|
}}</el-descriptions-item>
|
|
@@ -88,12 +88,12 @@ export default {
|
|
|
88
88
|
tableData: [],
|
|
89
89
|
list: [
|
|
90
90
|
{
|
|
91
|
-
name: "匹配规则",
|
|
91
|
+
name: $l("匹配规则"),
|
|
92
92
|
value: "ConditionGroup",
|
|
93
93
|
},
|
|
94
|
-
{ name: "补填信息", value: "FillDetail" },
|
|
94
|
+
{ name: $l("补填信息"), value: "FillDetail" },
|
|
95
95
|
],
|
|
96
|
-
activeName: "匹配规则",
|
|
96
|
+
activeName: $l("匹配规则"),
|
|
97
97
|
activeValue: "ConditionGroup",
|
|
98
98
|
detail: {
|
|
99
99
|
matchingFillDimensions: [],
|