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
d65866c2
Commit
d65866c2
authored
Nov 18, 2024
by
liwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改了基础标准页面
parent
1fbdfe5e
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
293 additions
and
26 deletions
+293
-26
CopyModal.vue
src/views/dataStandards/basicStandards/CopyModal.vue
+1
-1
basicStandards.data.ts
...views/dataStandards/basicStandards/basicStandards.data.ts
+22
-4
basicStandardsContrast.vue
...s/dataStandards/basicStandards/basicStandardsContrast.vue
+18
-2
basicStandardsData.ts
src/views/dataStandards/basicStandards/basicStandardsData.ts
+222
-10
createStandardsType.vue
...iews/dataStandards/basicStandards/createStandardsType.vue
+3
-2
detailStandard.vue
src/views/dataStandards/basicStandards/detailStandard.vue
+8
-1
editDetailStandard.vue
...views/dataStandards/basicStandards/editDetailStandard.vue
+3
-3
relatedQualityModal.vue
...iews/dataStandards/basicStandards/relatedQualityModal.vue
+2
-2
relatedRelationships.vue
...ews/dataStandards/basicStandards/relatedRelationships.vue
+14
-1
No files found.
src/views/dataStandards/basicStandards/CopyModal.vue
View file @
d65866c2
...
@@ -47,7 +47,7 @@
...
@@ -47,7 +47,7 @@
/**确定按钮*/
/**确定按钮*/
async
function
handleSubmit
()
{
async
function
handleSubmit
()
{
createMessage
.
success
(
'
移动
成功'
);
createMessage
.
success
(
'
复制
成功'
);
closeModal
()
closeModal
()
}
}
...
...
src/views/dataStandards/basicStandards/basicStandards.data.ts
View file @
d65866c2
...
@@ -232,7 +232,7 @@ export const createBasicTypeFormSchema: FormSchema[] = [
...
@@ -232,7 +232,7 @@ export const createBasicTypeFormSchema: FormSchema[] = [
colProps
:
{
lg
:
24
,
md
:
24
},
colProps
:
{
lg
:
24
,
md
:
24
},
componentProps
:
{
componentProps
:
{
fieldNames
:
{
fieldNames
:
{
label
:
'
standardChinese
Name'
,
label
:
'
model
Name'
,
value
:
'businessId'
,
value
:
'businessId'
,
},
},
getPopupContainer
:
()
=>
document
.
body
,
getPopupContainer
:
()
=>
document
.
body
,
...
@@ -2746,15 +2746,33 @@ export const relatedDocumentSchema: any[] = [
...
@@ -2746,15 +2746,33 @@ export const relatedDocumentSchema: any[] = [
{
{
field
:
'relatedRelationship'
,
field
:
'relatedRelationship'
,
label
:
'关联关系'
,
label
:
'关联关系'
,
component
:
'
Inpu
t'
,
component
:
'
Selec
t'
,
rules
:
[
rules
:
[
{
{
required
:
true
,
required
:
true
,
message
:
'请
输入
关联关系'
,
message
:
'请
选择
关联关系'
,
},
},
],
],
componentProps
:
{
componentProps
:
{
placeholder
:
'请输入关联关系'
,
options
:[
{
label
:
'引用'
,
value
:
'引用'
},
{
label
:
'同义词'
,
value
:
'同义词'
},
{
label
:
'依赖'
,
value
:
'依赖'
},
{
label
:
'从属'
,
value
:
'从属'
}
],
placeholder
:
'请选择关联关系'
,
},
},
colProps
:
{
lg
:
24
,
md
:
24
},
colProps
:
{
lg
:
24
,
md
:
24
},
},
},
...
...
src/views/dataStandards/basicStandards/basicStandardsContrast.vue
View file @
d65866c2
...
@@ -42,11 +42,11 @@
...
@@ -42,11 +42,11 @@
<div
style=
"font-size: 15px;padding-left: 10px;padding-left: 50px"
>
<div
style=
"font-size: 15px;padding-left: 10px;padding-left: 50px"
>
<div>
<div>
版本
<Select
版本
<Select
v-model:value=
"optionValue"
v-model:value=
"optionValue
1
"
show-search
show-search
placeholder=
"请选择版本"
placeholder=
"请选择版本"
style=
"width: 200px;margin-left: 10px"
style=
"width: 200px;margin-left: 10px"
:options=
"options"
:options=
"options
1
"
@
change=
"handleChange"
@
change=
"handleChange"
></Select>
></Select>
</div>
</div>
...
@@ -85,6 +85,13 @@
...
@@ -85,6 +85,13 @@
{
value
:
'V2'
,
label
:
'V2'
},
{
value
:
'V2'
,
label
:
'V2'
},
{
value
:
'V3'
,
label
:
'V3'
},
{
value
:
'V3'
,
label
:
'V3'
},
]);
]);
const
options1
=
ref
<
any
>
([
{
value
:
'V1'
,
label
:
'V1'
},
{
value
:
'V2'
,
label
:
'V2'
},
{
value
:
'V3'
,
label
:
'V3'
},
]);
const
optionValue
=
ref
(
''
)
const
optionValue1
=
ref
(
''
)
const
{
createMessage
}
=
useMessage
();
const
{
createMessage
}
=
useMessage
();
const
[
registerLeftForm
,{
setFieldsValue
:
setLeftFieldsValue
}]
=
useForm
({
const
[
registerLeftForm
,{
setFieldsValue
:
setLeftFieldsValue
}]
=
useForm
({
labelWidth
:
100
,
labelWidth
:
100
,
...
@@ -107,9 +114,18 @@
...
@@ -107,9 +114,18 @@
function
endContrast
()
{
function
endContrast
()
{
createMessage
.
info
(
'结束对比'
);
createMessage
.
info
(
'结束对比'
);
startContrastFlag
.
value
=
false
startContrastFlag
.
value
=
false
router
.
push
({
path
:
'/dataStandards/basicStandards/detailStandard'
,
query
:
{
businessId
:
route
.
query
.
businessId
,
},
});
}
}
onMounted
(()
=>
{
onMounted
(()
=>
{
optionValue
.
value
=
'V3'
optionValue1
.
value
=
'V1'
setLeftFieldsValue
({
setLeftFieldsValue
({
...
leftContrastData
[
0
],
...
leftContrastData
[
0
],
})
})
...
...
src/views/dataStandards/basicStandards/basicStandardsData.ts
View file @
d65866c2
...
@@ -466,7 +466,153 @@ export const treeDataListTwo = [
...
@@ -466,7 +466,153 @@ export const treeDataListTwo = [
],
],
},
},
]
]
/**首页 新增基础分类 基础元模型树*/
export
const
dataBasicTreeData
:
any
[]
=
[
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
100
,
modelName
:
'数据标准模型'
,
parentId
:
0
,
code
:
'001'
,
ancestors
:
'0'
,
orderNum
:
0
,
holder
:
'admin'
,
createDate
:
'2024-10-24 10:04:04'
,
updateDate
:
'2024-10-24 10:04:04'
,
selectType
:
null
,
type
:
'MySQL'
,
icon
:
'ion:settings-outline'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
101
,
modelName
:
'数据标准模型文件夹1'
,
parentId
:
100
,
code
:
'002'
,
ancestors
:
'0,100'
,
orderNum
:
1
,
selectType
:
null
,
holder
:
'admin'
,
createDate
:
'2024-10-24 10:04:04'
,
updateDate
:
'2024-10-24 10:04:04'
,
type
:
'MySQL'
,
icon
:
'ant-design:folder-open-outlined'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
102
,
modelName
:
'数据标准模型文件夹2'
,
parentId
:
100
,
code
:
'002'
,
ancestors
:
'0,100'
,
orderNum
:
1
,
selectType
:
null
,
holder
:
'admin'
,
createDate
:
'2024-10-24 10:04:04'
,
updateDate
:
'2024-10-24 10:04:04'
,
type
:
'MySQL'
,
icon
:
'ant-design:folder-open-outlined'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
103
,
modelName
:
'数据标准模型文件夹3'
,
parentId
:
100
,
code
:
'002'
,
ancestors
:
'0,100'
,
orderNum
:
1
,
selectType
:
null
,
holder
:
'admin'
,
createDate
:
'2024-10-24 10:04:04'
,
updateDate
:
'2024-10-24 10:04:04'
,
type
:
'MySQL'
,
icon
:
'ant-design:folder-open-outlined'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
201
,
modelName
:
'argodb元模型'
,
parentId
:
101
,
'code:'
:
'002'
,
ancestors
:
'0,100,101'
,
orderNum
:
1
,
selectType
:
null
,
holder
:
'admin'
,
createDate
:
'2024-10-24 10:04:04'
,
updateDate
:
'2024-10-24 10:04:04'
,
type
:
'MySQL'
,
icon
:
'ant-design:codepen-outlined'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
202
,
modelName
:
'inceptor元模型'
,
parentId
:
101
,
'code:'
:
'002'
,
ancestors
:
'0,100,101'
,
orderNum
:
1
,
selectType
:
null
,
holder
:
'admin'
,
createDate
:
'2024-10-24 10:04:04'
,
updateDate
:
'2024-10-24 10:04:04'
,
type
:
'MySQL'
,
icon
:
'ant-design:codepen-outlined'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
203
,
modelName
:
'acc元模型'
,
parentId
:
102
,
'code:'
:
'002'
,
ancestors
:
'0,100,102'
,
orderNum
:
1
,
selectType
:
null
,
holder
:
'admin'
,
createDate
:
'2024-10-24 10:04:04'
,
updateDate
:
'2024-10-24 10:04:04'
,
type
:
'MySQL'
,
icon
:
'ant-design:codepen-outlined'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
204
,
modelName
:
'ctor元模型'
,
parentId
:
102
,
'code:'
:
'002'
,
ancestors
:
'0,100,102'
,
orderNum
:
1
,
selectType
:
null
,
holder
:
'admin'
,
createDate
:
'2024-10-24 10:04:04'
,
updateDate
:
'2024-10-24 10:04:04'
,
type
:
'MySQL'
,
icon
:
'ant-design:codepen-outlined'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
205
,
modelName
:
'octp元模型'
,
parentId
:
103
,
'code:'
:
'002'
,
ancestors
:
'0,100,103'
,
orderNum
:
1
,
selectType
:
null
,
holder
:
'admin'
,
createDate
:
'2024-10-24 10:04:04'
,
updateDate
:
'2024-10-24 10:04:04'
,
type
:
'MySQL'
,
icon
:
'ant-design:codepen-outlined'
,
},
];
/**编辑页 选择字典树 数据*/
/**编辑页 选择字典树 数据*/
export
const
chooseDictoryTreeData
=
[
export
const
chooseDictoryTreeData
=
[
...
@@ -901,7 +1047,6 @@ export const meteDataTreeData: any[] = [
...
@@ -901,7 +1047,6 @@ export const meteDataTreeData: any[] = [
businessId
:
100
,
businessId
:
100
,
workSpaceName
:
'数据库对象资源'
,
workSpaceName
:
'数据库对象资源'
,
parentId
:
0
,
parentId
:
0
,
'code:'
:
'001'
,
ancestors
:
'0'
,
ancestors
:
'0'
,
orderNum
:
0
,
orderNum
:
0
,
children
:
[],
children
:
[],
...
@@ -915,7 +1060,6 @@ export const meteDataTreeData: any[] = [
...
@@ -915,7 +1060,6 @@ export const meteDataTreeData: any[] = [
businessId
:
101
,
businessId
:
101
,
workSpaceName
:
'admin-个人工作区'
,
workSpaceName
:
'admin-个人工作区'
,
parentId
:
100
,
parentId
:
100
,
'code:'
:
'002'
,
ancestors
:
'0,100'
,
ancestors
:
'0,100'
,
orderNum
:
1
,
orderNum
:
1
,
children
:
[],
children
:
[],
...
@@ -926,10 +1070,9 @@ export const meteDataTreeData: any[] = [
...
@@ -926,10 +1070,9 @@ export const meteDataTreeData: any[] = [
{
{
delFlag
:
'0'
,
delFlag
:
'0'
,
flag
:
'1'
,
flag
:
'1'
,
businessId
:
10
7
,
businessId
:
10
2
,
workSpaceName
:
'共享工作区'
,
workSpaceName
:
'共享工作区'
,
parentId
:
100
,
parentId
:
100
,
'code:'
:
'003'
,
ancestors
:
'0,100'
,
ancestors
:
'0,100'
,
orderNum
:
2
,
orderNum
:
2
,
children
:
[],
children
:
[],
...
@@ -940,17 +1083,81 @@ export const meteDataTreeData: any[] = [
...
@@ -940,17 +1083,81 @@ export const meteDataTreeData: any[] = [
{
{
delFlag
:
'0'
,
delFlag
:
'0'
,
flag
:
'0'
,
flag
:
'0'
,
businessId
:
2
03
,
businessId
:
1
03
,
workSpaceName
:
'高级工作区'
,
workSpaceName
:
'高级工作区'
,
parentId
:
100
,
parentId
:
100
,
'code:'
:
'010'
,
ancestors
:
'0,100'
,
ancestors
:
'0,100,107'
,
orderNum
:
2
,
orderNum
:
2
,
children
:
[],
children
:
[],
selectType
:
null
,
selectType
:
null
,
createTime
:
'2024-10-24 10:04:04'
,
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
createBy
:
'admin'
,
},
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
201
,
workSpaceName
:
'mysql'
,
parentId
:
101
,
ancestors
:
'0,100,101'
,
orderNum
:
1
,
children
:
[],
selectType
:
null
,
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
301
,
workSpaceName
:
'gxx'
,
parentId
:
201
,
ancestors
:
'0,100,101,201'
,
orderNum
:
1
,
children
:
[],
selectType
:
null
,
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
401
,
workSpaceName
:
'batch3_prc'
,
parentId
:
301
,
ancestors
:
'0,100,101,201,301'
,
orderNum
:
1
,
children
:
[],
selectType
:
null
,
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
202
,
workSpaceName
:
'oracle'
,
parentId
:
102
,
ancestors
:
'0,100,102'
,
orderNum
:
1
,
children
:
[],
selectType
:
null
,
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
203
,
workSpaceName
:
'localhost'
,
parentId
:
103
,
ancestors
:
'0,100,103'
,
orderNum
:
1
,
children
:
[],
selectType
:
null
,
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
},
]
]
/**关联关系-指标标准-树 数据*/
/**关联关系-指标标准-树 数据*/
export
const
indicatorTreeData
:
any
[]
=
[
export
const
indicatorTreeData
:
any
[]
=
[
...
@@ -1065,6 +1272,7 @@ export const publicCodeTreeData: any[] = [
...
@@ -1065,6 +1272,7 @@ export const publicCodeTreeData: any[] = [
/**关联关系-智能推荐元数据 数据*/
/**关联关系-智能推荐元数据 数据*/
export
const
recommendedMetadataData
=
[
export
const
recommendedMetadataData
=
[
{
{
businessId
:
'1'
,
fieldName
:
'current_school'
,
fieldName
:
'current_school'
,
fieldComment
:
'数值类'
,
fieldComment
:
'数值类'
,
fieldType
:
'string'
,
fieldType
:
'string'
,
...
@@ -1072,20 +1280,23 @@ export const recommendedMetadataData = [
...
@@ -1072,20 +1280,23 @@ export const recommendedMetadataData = [
mappingDescription
:
''
mappingDescription
:
''
},
},
{
{
businessId
:
'2'
,
fieldName
:
'current_school'
,
fieldName
:
'current_school'
,
fieldComment
:
'数值类'
,
fieldComment
:
'数值类'
,
fieldType
:
'string'
,
fieldType
:
'string'
,
recommendationLevel
:
'98%'
,
recommendationLevel
:
'98%'
,
mappingDescription
:
''
mappingDescription
:
''
},{
},
{
businessId
:
'3'
,
fieldName
:
'current_school'
,
fieldName
:
'current_school'
,
fieldComment
:
'数值类'
,
fieldComment
:
'数值类'
,
fieldType
:
'string'
,
fieldType
:
'string'
,
recommendationLevel
:
'99%'
,
recommendationLevel
:
'99%'
,
mappingDescription
:
''
mappingDescription
:
''
},
},
{
{
businessId
:
'4'
,
fieldName
:
'current_school'
,
fieldName
:
'current_school'
,
fieldComment
:
'数值类'
,
fieldComment
:
'数值类'
,
fieldType
:
'string'
,
fieldType
:
'string'
,
...
@@ -1093,6 +1304,7 @@ export const recommendedMetadataData = [
...
@@ -1093,6 +1304,7 @@ export const recommendedMetadataData = [
mappingDescription
:
''
mappingDescription
:
''
},
},
{
{
businessId
:
'5'
,
fieldName
:
'current_school'
,
fieldName
:
'current_school'
,
fieldComment
:
'数值类'
,
fieldComment
:
'数值类'
,
fieldType
:
'string'
,
fieldType
:
'string'
,
...
...
src/views/dataStandards/basicStandards/createStandardsType.vue
View file @
d65866c2
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
import
{
getDeptList
}
from
'@/api/system/dept/dept'
;
import
{
getDeptList
}
from
'@/api/system/dept/dept'
;
import
{
addUserApi
,
UserDetailApi
,
UserUpdataApi
}
from
'@/api/system/user/user'
;
import
{
addUserApi
,
UserDetailApi
,
UserUpdataApi
}
from
'@/api/system/user/user'
;
import
{
useMessage
}
from
'@/hooks/web/useMessage'
;
import
{
useMessage
}
from
'@/hooks/web/useMessage'
;
import
{
TreeData
}
from
'@/views/dataStandards/basicStandards/basicStandardsData'
;
import
{
TreeData
,
dataBasicTreeData
}
from
'@/views/dataStandards/basicStandards/basicStandardsData'
;
import
TreeTwo
from
'@/views/dataStandards/basicStandards/TreeTwo.vue'
;
import
TreeTwo
from
'@/views/dataStandards/basicStandards/TreeTwo.vue'
;
defineOptions
({
name
:
'AccountModal'
});
defineOptions
({
name
:
'AccountModal'
});
...
@@ -71,6 +71,7 @@
...
@@ -71,6 +71,7 @@
...
formData
,
...
formData
,
});
});
const
treeList
=
handleTree
(
TreeData
,
'businessId'
,
undefined
,
undefined
,
undefined
);
const
treeList
=
handleTree
(
TreeData
,
'businessId'
,
undefined
,
undefined
,
undefined
);
const
treeList1
=
handleTree
(
dataBasicTreeData
,
'businessId'
,
undefined
,
undefined
,
undefined
);
updateSchema
([
updateSchema
([
{
{
field
:
'standardsTree'
,
field
:
'standardsTree'
,
...
@@ -81,7 +82,7 @@
...
@@ -81,7 +82,7 @@
{
{
field
:
'ModelTree'
,
field
:
'ModelTree'
,
componentProps
:
{
componentProps
:
{
treeData
:
treeList
,
treeData
:
treeList
1
,
},
},
},
},
]);
]);
...
...
src/views/dataStandards/basicStandards/detailStandard.vue
View file @
d65866c2
...
@@ -139,7 +139,14 @@ function handleChange(value) {
...
@@ -139,7 +139,14 @@ function handleChange(value) {
/**回滚*/
/**回滚*/
function
resetButton
(
value
)
{
function
resetButton
(
value
)
{
createMessage
.
success
(
'回滚成功!'
)
createConfirm
({
iconType
:
'warning'
,
title
:
'确认回滚'
,
content
:
'是否确认进行回滚?'
,
onOk
()
{
createMessage
.
success
(
'回滚成功!'
);
},
});
}
}
...
...
src/views/dataStandards/basicStandards/editDetailStandard.vue
View file @
d65866c2
...
@@ -13,9 +13,9 @@
...
@@ -13,9 +13,9 @@
</div>
</div>
<Divider
/>
<Divider
/>
<BasicForm
@
register=
"registerForm1"
/>
<BasicForm
@
register=
"registerForm1"
/>
<div
style=
"margin-left: 10px"
>
<!--
<div
style=
"margin-left: 10px"
>
--
>
命名字典映射
<a-button
style=
"margin-left: 10px;border-color: #4aabfe"
@
click=
"chooseButton"
>
选择
</a-button
>
<!-- 命名字典映射
<a-button
style=
"margin-left: 10px;border-color: #4aabfe"
@
click=
"chooseButton"
>
选择
</a-button>
--
>
</div
>
<!--
</div>
--
>
<Divider
/>
<Divider
/>
<BasicForm
@
register=
"registerForm2"
/>
<BasicForm
@
register=
"registerForm2"
/>
<Divider
/>
<Divider
/>
...
...
src/views/dataStandards/basicStandards/relatedQualityModal.vue
View file @
d65866c2
...
@@ -59,13 +59,13 @@
...
@@ -59,13 +59,13 @@
pageNu
:
"1"
,
pageNu
:
"1"
,
pageSize
:
"10"
,
pageSize
:
"10"
,
pages
:
"1"
,
pages
:
"1"
,
total
:
relatedQualityData
.
length
,
total
:
0
,
code
:
''
,
code
:
''
,
message
:
''
,
message
:
''
,
data
:
[],
data
:
[],
};
};
//过滤data中的数据,取出等于params.deptId的数据
//过滤data中的数据,取出等于params.deptId的数据
return
{
...
response
,
data
:
relatedQualityData
};
return
{
...
response
,
data
:
[]
};
},
},
columns
:
relatedQualityColumns
,
columns
:
relatedQualityColumns
,
useSearchForm
:
false
,
useSearchForm
:
false
,
...
...
src/views/dataStandards/basicStandards/relatedRelationships.vue
View file @
d65866c2
...
@@ -12,8 +12,9 @@
...
@@ -12,8 +12,9 @@
<TableAction
<TableAction
:actions=
"[
:actions=
"[
{
{
//解绑
icon: 'ant-design:link-outlined',
icon: 'ant-design:link-outlined',
onClick: Button.bind(null, record),
onClick:
unbind
Button.bind(null, record),
},
},
]"
]"
/>
/>
...
@@ -363,6 +364,18 @@ const [registerTable6] = useTable({
...
@@ -363,6 +364,18 @@ const [registerTable6] = useTable({
});
});
/**解绑 按钮*/
function
unbindButton
(
record
)
{
createConfirm
({
iconType
:
'warning'
,
title
:
'确认解绑'
,
content
:
'确认解绑选中的数据吗?'
,
onOk
()
{
createMessage
.
success
(
'解绑成功!'
);
},
});
}
/**引用指标标准 按钮*/
/**引用指标标准 按钮*/
function
referenceIndicatorStandardsButton
(
record
)
{
function
referenceIndicatorStandardsButton
(
record
)
{
openIndicatorStandardsModal
(
true
,{
openIndicatorStandardsModal
(
true
,{
...
...
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