Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bigDataSystem
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张伯涛
bigDataSystem
Commits
a867a708
Commit
a867a708
authored
Dec 04, 2024
by
罗林杰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改数据库到数据库
parent
c4931b53
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
212 additions
and
33 deletions
+212
-33
addBaseRulesModal.vue
...ews/realTimeSync/dataBaseToDataBase/addBaseRulesModal.vue
+55
-17
addFieldRulesModal.vue
...ws/realTimeSync/dataBaseToDataBase/addFieldRulesModal.vue
+4
-3
data.ts
src/views/realTimeSync/dataBaseToDataBase/data.ts
+109
-5
dataBaseData.ts
src/views/realTimeSync/dataBaseToDataBase/dataBaseData.ts
+2
-2
optionPage.vue
src/views/realTimeSync/dataBaseToDataBase/optionPage.vue
+42
-6
No files found.
src/views/realTimeSync/dataBaseToDataBase/addBaseRulesModal.vue
View file @
a867a708
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
>
>
<BasicForm
@
register=
"registerForm"
>
<BasicForm
@
register=
"registerForm"
>
<template
#
tableName
>
<template
#
tableName
>
<div>
<BasicTable
@
register=
"registerTable"
>
<BasicTable
@
register=
"registerTable"
>
<template
#
toolbar
>
<template
#
toolbar
>
<a-button
type=
"primary"
@
click=
"handleAdd"
>
添加
</a-button>
<a-button
type=
"primary"
@
click=
"handleAdd"
>
添加
</a-button>
...
@@ -25,6 +26,14 @@
...
@@ -25,6 +26,14 @@
</
template
>
</
template
>
</template>
</template>
</BasicTable>
</BasicTable>
</div>
<div>
<BasicTable
@
register=
"registerPreviewTable"
>
<
template
#
toolbar
>
<a-button
type=
"primary"
@
click=
"handlePreview"
>
预览
</a-button>
</
template
>
</BasicTable>
</div>
</template>
</template>
<
template
#
choseTable
>
<
template
#
choseTable
>
<BasicTable
@
register=
"registerChoseTable"
>
<BasicTable
@
register=
"registerChoseTable"
>
...
@@ -66,6 +75,7 @@
...
@@ -66,6 +75,7 @@
const
{
createMessage
}
=
useMessage
();
const
{
createMessage
}
=
useMessage
();
const
title
=
ref
();
const
title
=
ref
();
const
tableData
=
ref
([]);
const
tableData
=
ref
([]);
const
previewTableData
=
ref
([]);
//获取接口数据并放在下拉框里(这里是打开了一个弹框)
//获取接口数据并放在下拉框里(这里是打开了一个弹框)
//初始化表单
//初始化表单
const
[
registerForm
,
{
resetFields
}]
=
useForm
({
const
[
registerForm
,
{
resetFields
}]
=
useForm
({
...
@@ -103,11 +113,35 @@
...
@@ -103,11 +113,35 @@
title
:
'操作'
,
title
:
'操作'
,
dataIndex
:
'action'
,
dataIndex
:
'action'
,
},
},
scroll
:
{
y
:
500
},
scroll
:
{
y
:
300
},
bordered
:
true
,
showIndexColumn
:
false
,
});
const
[
registerPreviewTable
,
{
reload
:
reloadPreviewTable
}]
=
useTable
({
api
:
async
()
=>
{
const
response
=
{
pageNum
:
'1'
,
pageSize
:
'10'
,
pages
:
'1'
,
total
:
previewTableData
.
value
.
length
,
code
:
''
,
message
:
''
,
data
:
[],
};
let
data
=
[];
data
=
previewTableData
.
value
;
return
{
...
response
,
data
:
data
};
},
pagination
:
false
,
columns
:
addBaseRulesColumns
,
useSearchForm
:
false
,
showTableSetting
:
false
,
scroll
:
{
y
:
300
},
bordered
:
true
,
bordered
:
true
,
showIndexColumn
:
false
,
showIndexColumn
:
false
,
});
});
const
[
registerChoseTable
,
{
reload
:
reloadChoseTable
}]
=
useTable
({
const
[
registerChoseTable
,
{
reload
:
reloadChoseTable
}]
=
useTable
({
title
:
'已选数据库: 0/2'
,
api
:
async
()
=>
{
api
:
async
()
=>
{
const
response
=
{
const
response
=
{
pageNum
:
'1'
,
pageNum
:
'1'
,
...
@@ -152,6 +186,10 @@
...
@@ -152,6 +186,10 @@
reload
();
reload
();
reloadChoseTable
();
reloadChoseTable
();
}
}
function
handlePreview
()
{
previewTableData
.
value
=
tableData
.
value
;
reloadPreviewTable
();
}
/** 删除按钮*/
/** 删除按钮*/
function
handleDeleteRule
(
record
:
Recordable
)
{
function
handleDeleteRule
(
record
:
Recordable
)
{
tableData
.
value
.
splice
(
tableData
.
value
.
splice
(
...
...
src/views/realTimeSync/dataBaseToDataBase/addFieldRulesModal.vue
View file @
a867a708
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
</BasicForm>
</BasicForm>
<BasicTable
@
register=
"registerAddTable"
>
<BasicTable
@
register=
"registerAddTable"
>
<
template
#
toolbar
>
<
template
#
toolbar
>
<a-button
type=
"primary"
@
click=
"handleAdd"
>
添加
</a-button>
<a-button
type=
"primary"
@
click=
"handleAdd"
>
添加
字段
</a-button>
</
template
>
</
template
>
<
template
#
bodyCell=
"{ column, record }"
>
<
template
#
bodyCell=
"{ column, record }"
>
<template
v-if=
"column.key === 'action'"
>
<template
v-if=
"column.key === 'action'"
>
...
@@ -60,7 +60,7 @@
...
@@ -60,7 +60,7 @@
import
{
useMessage
}
from
'@/hooks/web/useMessage'
;
import
{
useMessage
}
from
'@/hooks/web/useMessage'
;
import
{
BasicForm
,
useForm
}
from
'@/components/Form'
;
import
{
BasicForm
,
useForm
}
from
'@/components/Form'
;
import
{
import
{
addFieldRulesColumns
,
addFieldRulesColumns
,
addFieldRulesSchema
,
addTableRulesSchema
,
addTableRulesSchema
,
getMetadataColumns
,
getMetadataColumns
,
}
from
'@/views/realTimeSync/dataBaseToDataBase/data'
;
}
from
'@/views/realTimeSync/dataBaseToDataBase/data'
;
...
@@ -81,7 +81,7 @@
...
@@ -81,7 +81,7 @@
labelWidth
:
100
,
labelWidth
:
100
,
labelAlign
:
'left'
,
labelAlign
:
'left'
,
baseColProps
:
{
lg
:
24
,
md
:
24
},
baseColProps
:
{
lg
:
24
,
md
:
24
},
schemas
:
add
Table
RulesSchema
,
schemas
:
add
Field
RulesSchema
,
showActionButtonGroup
:
false
,
showActionButtonGroup
:
false
,
actionColOptions
:
{
actionColOptions
:
{
span
:
23
,
span
:
23
,
...
@@ -114,6 +114,7 @@
...
@@ -114,6 +114,7 @@
});
});
const
[
registerAddTable
,
{
reload
}]
=
useTable
({
const
[
registerAddTable
,
{
reload
}]
=
useTable
({
title
:
'新增字段'
,
api
:
async
()
=>
{
api
:
async
()
=>
{
const
response
=
{
const
response
=
{
pageNum
:
'1'
,
pageNum
:
'1'
,
...
...
src/views/realTimeSync/dataBaseToDataBase/data.ts
View file @
a867a708
...
@@ -294,6 +294,33 @@ export const mappingRuleConfigurationColumns: BasicColumn[] = [
...
@@ -294,6 +294,33 @@ export const mappingRuleConfigurationColumns: BasicColumn[] = [
slots
:
{
customRender
:
'executionSequence'
},
slots
:
{
customRender
:
'executionSequence'
},
},
},
];
];
export
const
mappingRuleConfigurationFormSchema
:
FormSchema
[]
=
[
{
field
:
'name'
,
label
:
' '
,
labelWidth
:
20
,
componentProps
:
{
placeholder
:
'输入关键字搜索'
,
},
component
:
'Input'
,
colProps
:
{
span
:
4
},
},
{
field
:
'ruleType'
,
label
:
' '
,
labelWidth
:
20
,
componentProps
:
{
placeholder
:
'规则类型'
,
options
:
[
{
label
:
'数据操作过滤'
,
value
:
'1'
},
{
label
:
'数据值过滤'
,
value
:
'2'
},
{
label
:
'字段过滤'
,
value
:
'3'
},
],
},
component
:
'Select'
,
colProps
:
{
span
:
4
},
},
];
export
const
dataDirectionColumns
:
BasicColumn
[]
=
[
export
const
dataDirectionColumns
:
BasicColumn
[]
=
[
{
{
title
:
'源库'
,
title
:
'源库'
,
...
@@ -306,6 +333,18 @@ export const dataDirectionColumns: BasicColumn[] = [
...
@@ -306,6 +333,18 @@ export const dataDirectionColumns: BasicColumn[] = [
width
:
120
,
width
:
120
,
},
},
];
];
export
const
dataDirectionFormSchema
:
FormSchema
[]
=
[
{
field
:
'name'
,
label
:
' '
,
labelWidth
:
20
,
componentProps
:
{
placeholder
:
'输入关键字搜索'
,
},
component
:
'Input'
,
colProps
:
{
span
:
4
},
},
];
export
const
getMetadataColumns
:
BasicColumn
[]
=
[
export
const
getMetadataColumns
:
BasicColumn
[]
=
[
{
{
title
:
'数据库'
,
title
:
'数据库'
,
...
@@ -592,6 +631,18 @@ export const mappingRulesTableColumns: BasicColumn[] = [
...
@@ -592,6 +631,18 @@ export const mappingRulesTableColumns: BasicColumn[] = [
width
:
120
,
width
:
120
,
},
},
];
];
export
const
mappingRulesTableFormSchema
:
FormSchema
[]
=
[
{
field
:
'name'
,
label
:
' '
,
labelWidth
:
20
,
componentProps
:
{
placeholder
:
'输入关键字搜索'
,
},
component
:
'Input'
,
colProps
:
{
span
:
6
},
},
];
export
const
tableMappingFormSchema
:
FormSchema
[]
=
[
export
const
tableMappingFormSchema
:
FormSchema
[]
=
[
{
{
field
:
'dataSource'
,
field
:
'dataSource'
,
...
@@ -640,7 +691,7 @@ export const writePolicyColumns: BasicColumn[] = [
...
@@ -640,7 +691,7 @@ export const writePolicyColumns: BasicColumn[] = [
width
:
120
,
width
:
120
,
},
},
{
{
title
:
'条数'
,
title
:
'
写入策略
条数'
,
dataIndex
:
'num'
,
dataIndex
:
'num'
,
edit
:
true
,
edit
:
true
,
editable
:
true
,
editable
:
true
,
...
@@ -858,7 +909,7 @@ export const addBaseRulesChoseTableColumns: BasicColumn[] = [
...
@@ -858,7 +909,7 @@ export const addBaseRulesChoseTableColumns: BasicColumn[] = [
},
},
},
},
];
];
export
const
add
Table
RulesSchema
:
FormSchema
[]
=
[
export
const
add
Field
RulesSchema
:
FormSchema
[]
=
[
{
{
field
:
'name'
,
field
:
'name'
,
label
:
'规则名称'
,
label
:
'规则名称'
,
...
@@ -917,6 +968,59 @@ export const addTableRulesSchema: FormSchema[] = [
...
@@ -917,6 +968,59 @@ export const addTableRulesSchema: FormSchema[] = [
colProps
:
{
lg
:
12
,
md
:
12
},
colProps
:
{
lg
:
12
,
md
:
12
},
},
},
];
];
export
const
addTableRulesSchema
:
FormSchema
[]
=
[
{
field
:
'name'
,
label
:
'规则名称'
,
component
:
'Input'
,
colProps
:
{
lg
:
24
,
md
:
24
},
required
:
true
,
},
{
field
:
'range'
,
label
:
'作用范围'
,
component
:
'RadioGroup'
,
defaultValue
:
'1'
,
componentProps
:
{
options
:
[
{
label
:
'全局'
,
value
:
'1'
},
{
label
:
'自定义范围'
,
value
:
'2'
},
],
},
},
{
field
:
'choseTable'
,
label
:
''
,
slot
:
'choseTable'
,
ifShow
:
({
model
})
=>
model
.
range
===
'2'
,
colProps
:
{
lg
:
24
,
md
:
24
},
},
{
field
:
'prefix'
,
label
:
'添加前缀'
,
component
:
'Input'
,
colProps
:
{
lg
:
24
,
md
:
24
},
},
{
field
:
'suffix'
,
label
:
'添加后缀'
,
component
:
'Input'
,
colProps
:
{
lg
:
24
,
md
:
24
},
},
{
field
:
'change'
,
label
:
'替换'
,
component
:
'Input'
,
colProps
:
{
lg
:
12
,
md
:
12
},
},
{
field
:
'onChange'
,
label
:
'替换为'
,
component
:
'Input'
,
labelWidth
:
50
,
colProps
:
{
lg
:
12
,
md
:
12
},
},
];
export
const
fieldMappingColumns
:
BasicColumn
[]
=
[
export
const
fieldMappingColumns
:
BasicColumn
[]
=
[
{
{
title
:
'规则名称'
,
title
:
'规则名称'
,
...
@@ -961,7 +1065,7 @@ export const addFieldRulesColumns: BasicColumn[] = [
...
@@ -961,7 +1065,7 @@ export const addFieldRulesColumns: BasicColumn[] = [
export
const
fieldMappingFormSchema
:
FormSchema
[]
=
[
export
const
fieldMappingFormSchema
:
FormSchema
[]
=
[
{
{
field
:
'sourceTable'
,
field
:
'sourceTable'
,
label
:
''
,
label
:
'
'
,
component
:
'Select'
,
component
:
'Select'
,
defaultValue
:
'GXXADMIN'
,
defaultValue
:
'GXXADMIN'
,
componentProps
:
{
componentProps
:
{
...
@@ -975,7 +1079,7 @@ export const fieldMappingFormSchema: FormSchema[] = [
...
@@ -975,7 +1079,7 @@ export const fieldMappingFormSchema: FormSchema[] = [
},
},
{
{
field
:
'topicTable'
,
field
:
'topicTable'
,
label
:
''
,
label
:
'
'
,
component
:
'Select'
,
component
:
'Select'
,
defaultValue
:
'FLASH_ORCL'
,
defaultValue
:
'FLASH_ORCL'
,
componentProps
:
{
componentProps
:
{
...
@@ -995,7 +1099,7 @@ export const fieldMappingRulesTableColumns: BasicColumn[] = [
...
@@ -995,7 +1099,7 @@ export const fieldMappingRulesTableColumns: BasicColumn[] = [
width
:
120
,
width
:
120
,
},
},
{
{
title
:
'目标字段名'
,
title
:
'目标
表
字段名'
,
dataIndex
:
'topicName'
,
dataIndex
:
'topicName'
,
width
:
120
,
width
:
120
,
},
},
...
...
src/views/realTimeSync/dataBaseToDataBase/dataBaseData.ts
View file @
a867a708
...
@@ -1041,12 +1041,12 @@ export const tableMappingData: any[] = [
...
@@ -1041,12 +1041,12 @@ export const tableMappingData: any[] = [
export
const
fieldMappingData
:
any
[]
=
[
export
const
fieldMappingData
:
any
[]
=
[
{
{
businessId
:
'1'
,
businessId
:
'1'
,
name
:
'
字段规则1
'
,
name
:
'
gxxadmin.FLASH_TEST4添加前缀
'
,
type
:
'字段名规则1'
,
type
:
'字段名规则1'
,
},
},
{
{
businessId
:
'1'
,
businessId
:
'1'
,
name
:
'
字段规则2
'
,
name
:
'
gxxadmin.flashsync5替换文案
'
,
type
:
'字段名规则2'
,
type
:
'字段名规则2'
,
},
},
];
];
...
...
src/views/realTimeSync/dataBaseToDataBase/optionPage.vue
View file @
a867a708
...
@@ -388,7 +388,7 @@
...
@@ -388,7 +388,7 @@
<div
style=
"width: 50%"
>
<div
style=
"width: 50%"
>
<BasicTable
title=
"规则配置"
@
register=
"registerFieldMappingTable"
>
<BasicTable
title=
"规则配置"
@
register=
"registerFieldMappingTable"
>
<
template
#
toolbar
>
<
template
#
toolbar
>
<a-button
type=
"primary"
@
click=
"addFieldRules"
>
字段映射
</a-button>
<a-button
type=
"primary"
@
click=
"addFieldRules"
>
字段
名
映射
</a-button>
</
template
>
</
template
>
<
template
#
executionSequence=
"{ index }"
>
<
template
#
executionSequence=
"{ index }"
>
<div
style=
"display: flex; justify-content: center; color: dimgray"
>
<div
style=
"display: flex; justify-content: center; color: dimgray"
>
...
@@ -427,13 +427,20 @@
...
@@ -427,13 +427,20 @@
<Description
size=
"middle"
title=
"数据表"
:bordered=
"false"
/>
<Description
size=
"middle"
title=
"数据表"
:bordered=
"false"
/>
<BasicForm
@
register=
"registerFieldMappingForm"
>
<BasicForm
@
register=
"registerFieldMappingForm"
>
<
template
#
formFooter
>
<
template
#
formFooter
>
<a-button
type=
"primary"
>
保存并预览
</a-button>
<a-button
style=
"margin-left: 20px"
type=
"primary"
@
click=
"saveAndPreviewFieldMapping"
>
保存并预览
</a-button
>
</
template
>
</
template
>
</BasicForm>
</BasicForm>
<Description
size=
"middle"
title=
"相关规则"
:bordered=
"false"
/>
<div
v-if=
"relevantRules === 'true'"
>
<span
style=
"margin-left: 20px; font-size: 15px; font-weight: bold"
>
相关规则
</span>
<BasicTable
@
register=
"registerFieldMappingRulesTable"
/>
<BasicTable
@
register=
"registerFieldMappingRulesTable"
/>
</div>
</div>
</div>
</div>
</div>
</TabPane>
</TabPane>
<TabPane
v-if=
"tabKey === '3'"
key=
"7"
tab=
"策略"
>
<TabPane
v-if=
"tabKey === '3'"
key=
"7"
tab=
"策略"
>
<Description
size=
"middle"
title=
"写入速率策略"
:bordered=
"false"
/>
<Description
size=
"middle"
title=
"写入速率策略"
:bordered=
"false"
/>
...
@@ -624,6 +631,9 @@
...
@@ -624,6 +631,9 @@
fieldMappingFormSchema
,
fieldMappingFormSchema
,
fieldMappingRulesTableColumns
,
fieldMappingRulesTableColumns
,
messageFormSchema
,
messageFormSchema
,
mappingRuleConfigurationFormSchema
,
mappingRulesTableFormSchema
,
dataDirectionFormSchema
,
}
from
'./data'
;
}
from
'./data'
;
import
Icon
from
'@/components/Icon/Icon.vue'
;
import
Icon
from
'@/components/Icon/Icon.vue'
;
import
{
useMessage
}
from
'@/hooks/web/useMessage'
;
import
{
useMessage
}
from
'@/hooks/web/useMessage'
;
...
@@ -653,6 +663,7 @@
...
@@ -653,6 +663,7 @@
import
AddBaseRulesModal
from
'./addBaseRulesModal.vue'
;
import
AddBaseRulesModal
from
'./addBaseRulesModal.vue'
;
import
AddTableRulesModal
from
'./addTableRulesModal.vue'
;
import
AddTableRulesModal
from
'./addTableRulesModal.vue'
;
import
AddFieldRulesModal
from
'./addFieldRulesModal.vue'
;
import
AddFieldRulesModal
from
'./addFieldRulesModal.vue'
;
import
{
associationSearchInfoFormSchema
}
from
'@/views/mallResourceDevelopment/file/fileByApply/data'
;
const
emit
=
defineEmits
([
'success'
,
'register'
]);
const
emit
=
defineEmits
([
'success'
,
'register'
]);
const
{
createMessage
,
createConfirm
}
=
useMessage
();
const
{
createMessage
,
createConfirm
}
=
useMessage
();
...
@@ -664,6 +675,7 @@
...
@@ -664,6 +675,7 @@
const
tabKey
=
ref
(
'1'
);
const
tabKey
=
ref
(
'1'
);
const
n
=
ref
(
1
);
const
n
=
ref
(
1
);
const
scene
=
ref
();
const
scene
=
ref
();
const
relevantRules
=
ref
(
'false'
);
const
isEdit
=
ref
(
true
);
const
isEdit
=
ref
(
true
);
const
version
=
ref
(
'V1'
);
const
version
=
ref
(
'V1'
);
const
isStart
=
ref
(
'false'
);
const
isStart
=
ref
(
'false'
);
...
@@ -801,7 +813,7 @@
...
@@ -801,7 +813,7 @@
},
},
});
});
const
[
registerFieldMappingForm
]
=
useForm
({
const
[
registerFieldMappingForm
]
=
useForm
({
labelWidth
:
1
8
0
,
labelWidth
:
10
,
labelAlign
:
'left'
,
labelAlign
:
'left'
,
baseColProps
:
{
lg
:
24
,
md
:
24
},
baseColProps
:
{
lg
:
24
,
md
:
24
},
schemas
:
fieldMappingFormSchema
,
schemas
:
fieldMappingFormSchema
,
...
@@ -850,17 +862,30 @@
...
@@ -850,17 +862,30 @@
showIndexColumn
:
false
,
showIndexColumn
:
false
,
rowSelection
:
true
,
rowSelection
:
true
,
bordered
:
false
,
bordered
:
false
,
useSearchForm
:
true
,
formConfig
:
{
labelWidth
:
120
,
showActionButtonGroup
:
false
,
schemas
:
mappingRuleConfigurationFormSchema
,
autoSubmitOnEnter
:
true
,
},
actionColumn
:
{
actionColumn
:
{
width
:
50
,
width
:
50
,
title
:
'操作'
,
title
:
'操作'
,
dataIndex
:
'action'
,
dataIndex
:
'action'
,
// slots: { customRender: 'action' },
},
},
});
});
const
[
registerDataDirectionTable
]
=
useTable
({
const
[
registerDataDirectionTable
]
=
useTable
({
dataSource
:
dataDirectionData
,
dataSource
:
dataDirectionData
,
columns
:
dataDirectionColumns
,
columns
:
dataDirectionColumns
,
useSearchForm
:
true
,
formConfig
:
{
labelWidth
:
120
,
showActionButtonGroup
:
false
,
schemas
:
dataDirectionFormSchema
,
autoSubmitOnEnter
:
true
,
},
pagination
:
true
,
pagination
:
true
,
showIndexColumn
:
false
,
showIndexColumn
:
false
,
scroll
:
{
y
:
500
},
scroll
:
{
y
:
500
},
...
@@ -888,6 +913,13 @@
...
@@ -888,6 +913,13 @@
const
[
registerMappingRulesTable
]
=
useTable
({
const
[
registerMappingRulesTable
]
=
useTable
({
dataSource
:
mappingRulesTableData
,
dataSource
:
mappingRulesTableData
,
columns
:
mappingRulesTableColumns
,
columns
:
mappingRulesTableColumns
,
useSearchForm
:
true
,
formConfig
:
{
labelWidth
:
120
,
showActionButtonGroup
:
false
,
schemas
:
mappingRulesTableFormSchema
,
autoSubmitOnEnter
:
true
,
},
pagination
:
true
,
pagination
:
true
,
showIndexColumn
:
false
,
showIndexColumn
:
false
,
scroll
:
{
y
:
500
},
scroll
:
{
y
:
500
},
...
@@ -1176,6 +1208,10 @@
...
@@ -1176,6 +1208,10 @@
});
});
}
}
function
saveAndPreviewFieldMapping
()
{
relevantRules
.
value
=
'true'
;
}
/**新增属性*/
/**新增属性*/
function
addProperty
(
type
)
{
function
addProperty
(
type
)
{
const
data
=
{
const
data
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment