Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
csbr-daop
/
fe-data-trusted-space
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
516029e7
authored
2025-01-23 10:27:00 +0800
by
xukangle
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix
1 parent
18d860d7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
8 deletions
Jenkinsfile
src/router/routes.ts
src/store/modules/user.ts
src/views/data_asset/registerCatalogCreate.vue
Jenkinsfile
View file @
516029e
...
...
@@ -114,8 +114,8 @@ pipeline {
//调用Publish Over SSH插件,上传docker-compose.yaml文件并且执行deploy脚本
sshPublisher(publishers: [sshPublisherDesc(configName: "csbr20", transfers: [sshTransfer(cleanRemote: false, excludes: '', execCommand: """
#使用k8s构建
kubectl delete -f /mnt/k8s/develop/daop-
jgjf
/fe-data-asset-management.yaml
kubectl apply -f /mnt/k8s/develop/daop-
jgjf
/fe-data-asset-management.yaml
kubectl delete -f /mnt/k8s/develop/daop-
zcgl
/fe-data-asset-management.yaml
kubectl apply -f /mnt/k8s/develop/daop-
zcgl
/fe-data-asset-management.yaml
""", execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaultExcludes: false, patternSeparator: '[, ]+', remoteDirectory: '/mnt/csbr/data', remoteDirectorySDF: false, removePrefix: '', sourceFiles: 'output/*.*')], usePromotionTimestamp: false, useWorkspaceInPromotion: false, verbose: false)])
echo 'Depoly ${SVN_FOLD} success ...'
...
...
src/router/routes.ts
View file @
516029e
...
...
@@ -106,7 +106,7 @@ const systemRoutes: RouteRecordRaw[] = [
const
asyncRoutes
:
Route
.
recordMainRaw
[]
=
[
{
meta
:{
title
:
'
首页
'
,
title
:
'
数据资产看板
'
,
},
children
:
[
...
AssetIndex
,
...
...
src/store/modules/user.ts
View file @
516029e
...
...
@@ -237,13 +237,11 @@ const useUserStore = defineStore(
mark
=
'data-quality'
}
else
if
(
item
.
meta
.
title
==
'数据盘点'
)
{
mark
=
'data-inventory'
}
else
if
(
item
.
meta
.
title
==
'
首页
'
)
{
}
else
if
(
item
.
meta
.
title
==
'
数据资产看板
'
)
{
mark
=
'data-asset-index'
}
else
if
(
item
.
meta
.
title
==
'数据资产登记'
)
{
mark
=
'data-asset-register'
}
else
if
(
item
.
meta
.
title
==
'首页'
)
{
mark
=
'data-asset-index'
}
else
if
(
item
.
meta
.
title
==
'数据产品管理'
)
{
}
else
if
(
item
.
meta
.
title
==
'数据产品管理'
)
{
mark
=
'data-asset'
}
else
if
(
item
.
meta
.
title
==
'入表交易融资'
)
{
mark
=
'data-transaction'
...
...
src/views/data_asset/registerCatalogCreate.vue
View file @
516029e
...
...
@@ -298,6 +298,8 @@ const baseInfoFormRules = ref({
sceneDescription
:
[
required
(
'请填写应用场景描述'
)],
sceneLimit
:
[
required
(
'请填写应用场景限制'
)],
rightMain
:
[
required
(
'请填写权利主体'
)],
dataSources
:
[
required
(
'请选择数据来源'
)],
isPublicData
:
[
required
(
'请选择是否公共数据'
)],
});
const
getTableFieldPromise
:
any
=
ref
({});
...
...
@@ -525,7 +527,7 @@ onBeforeMount(() => {
if
(
res
.
code
==
proxy
.
$passCode
)
{
detailInfo
.
value
=
res
.
data
||
{};
baseInfoFormItems
.
value
.
forEach
((
item
:
any
)
=>
{
item
.
default
=
detailInfo
.
value
[
item
.
field
]
||
''
;
item
.
default
=
detailInfo
.
value
[
item
.
field
]
==
null
?
''
:
detailInfo
.
value
[
item
.
field
]
;
if
(
item
.
field
==
'subjectDomain'
)
{
let
tree
=
detailInfo
.
value
.
subjectDomainTree
?.[
0
];
if
(
tree
)
{
...
...
@@ -581,6 +583,7 @@ onBeforeMount(() => {
baseInfoFormItems
.
value
[
5
].
disabled
=
true
;
}
}
console
.
log
(
baseInfoFormRef
.
value
,
baseInfoFormRef
.
value
.
ruleFormRef
,
'ruleFormRefbaseInfoFormRef'
);
checkedInfo
.
value
=
{};
nextTick
(()
=>
{
baseInfoFormRules
.
value
.
damName
[
1
]
=
checkExistName
(
checkedInfo
.
value
,
existDamName
,
detailInfo
.
value
,
'damName'
);
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment