1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
| import store from "@/store";
| const OPTIONS = store.state.rlc.OPTIONSMAP;
| // 管控额度管理列表查询条件
| export const QUOTACONTROLLISTCOND = [
| {
| name: "quotaObjectName",
| label: "额度对象编号",
| type: "input",
| value: ""
| },
| {
| name: "quotaProjectName",
| label: "额度对象名称",
| type: "input",
| value: ""
| },
| {
| name: "controlStatus",
| label: "额度状态",
| type: "select",
| options: OPTIONS["ControlStatus"] || [],
| value: ""
| },
| {
| name: "quotaObjectType",
| label: "额度对象类型",
| options: OPTIONS["QuotaObjectType"] || [],
| type: "select",
| value: ""
| },
| {
| name: "quotaControlType",
| label: "额度类型",
| type: "select",
| options: OPTIONS["QuotaControlType"] || [],
| value: ""
| },
| {
| name: "productIdArray",
| label: "产品",
| type: "multipleSelect",
| options: OPTIONS["products"] || [],
| value: ""
| },
| {
| name: "cityArray",
| label: "城市",
| type: "multipleSelect",
| options: OPTIONS["citys"] || [],
| value: ""
| },
| {
| name: "subCompany",
| label: "子公司",
| type: "input",
| value: ""
| },
| {
| name: "approveStatus",
| label: "修改审核状态",
| type: "select",
| options: OPTIONS["ApproveStatus"] || [],
| value: ""
| }
| ];
|
| // 管控额度管理列表查询form默认值
| export const QUOTACONTROLLISTCONDDEF = {
| quotaObjectName: "",
| quotaProjectName: "",
| controlStatus: "",
| quotaObjectType: "",
| quotaControlType: "",
| productIdArray: "",
| cityArray: "",
| subCompany: "",
| approveStatus: ""
| };
|
|