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
7dc3b64e
Commit
7dc3b64e
authored
Dec 09, 2024
by
LiXuyang
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
5e6bc29d
29182373
Changes
7
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
468 additions
and
442 deletions
+468
-442
index.vue
src/views/dataIntegration/taskOM/index.vue
+443
-390
editModal.vue
...views/mallResourceDevelopment/API/publicAPI/editModal.vue
+2
-1
editModal.vue
...llResourceDevelopment/dataSet/commonDataSet/editModal.vue
+4
-2
index.vue
...s/mallResourceDevelopment/dataSet/commonDataSet/index.vue
+4
-0
mock.ts
...ews/mallResourceDevelopment/dataSet/commonDataSet/mock.ts
+0
-45
optionPage.vue
src/views/realTimeSync/dataBaseToDataBase/optionPage.vue
+14
-3
index.vue
src/views/scriptDevelopment/functionManagement/index.vue
+1
-1
No files found.
src/views/dataIntegration/taskOM/index.vue
View file @
7dc3b64e
This diff is collapsed.
Click to expand it.
src/views/mallResourceDevelopment/API/publicAPI/editModal.vue
View file @
7dc3b64e
...
...
@@ -154,12 +154,13 @@
descriptionData
.
value
=
cardList
.
filter
((
item
)
=>
item
.
title
===
data
.
title
);
console
.
log
(
'descriptionData.value'
,
descriptionData
.
value
);
setModalProps
({
confirmLoading
:
false
});
setDescProps
({
data
:
descriptionData
.
value
[
0
]
});
});
const
[
registerApplyForPushNotificationsModal
,
{
openModal
:
openApplyForPushNotificationsModal
},
]
=
useModal
();
const
[
register1
]
=
useDescription
({
const
[
register1
,
{
setDescProps
}
]
=
useDescription
({
bordered
:
false
,
data
:
descriptionData
.
value
[
0
],
schema
:
schema
,
...
...
src/views/mallResourceDevelopment/dataSet/commonDataSet/editModal.vue
View file @
7dc3b64e
...
...
@@ -152,14 +152,16 @@
setModalProps
({
confirmLoading
:
true
});
title
.
value
=
data
.
title
;
descriptionData
.
value
=
cardList
.
filter
((
item
)
=>
item
.
title
===
data
.
title
);
console
.
log
(
'descriptionData.value'
,
descriptionData
.
value
);
console
.
log
(
'data'
,
data
)
console
.
log
(
'descriptionData.value'
,
descriptionData
.
value
[
0
]);
setModalProps
({
confirmLoading
:
false
});
setDescProps
({
data
:
descriptionData
.
value
[
0
]
});
});
const
[
registerApplyForPushNotificationsModal
,
{
openModal
:
openApplyForPushNotificationsModal
},
]
=
useModal
();
const
[
register1
]
=
useDescription
({
const
[
register1
,
{
setDescProps
}
]
=
useDescription
({
bordered
:
false
,
data
:
descriptionData
.
value
[
0
],
schema
:
schema
,
...
...
src/views/mallResourceDevelopment/dataSet/commonDataSet/index.vue
View file @
7dc3b64e
...
...
@@ -265,6 +265,10 @@
// console.log(node);
workSpaceName
.
value
=
node
.
workSpaceName
;
if
([
101
,
102
].
includes
(
node
.
parentId
))
{
openEditModal
(
true
,
cardList
.
find
((
item
)
=>
item
.
title
===
node
.
workSpaceName
),
);
//跳转详情页
}
else
{
onSearch
();
...
...
src/views/mallResourceDevelopment/dataSet/commonDataSet/mock.ts
View file @
7dc3b64e
...
...
@@ -169,51 +169,6 @@ export const TreeData: any[] = [
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
206
,
parentWorkSpaceName
:
'党建建设'
,
workSpaceName
:
'红色文化展览'
,
parentId
:
101
,
'code:'
:
'003'
,
ancestors
:
'0,100'
,
orderNum
:
1
,
children
:
[],
selectType
:
null
,
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
207
,
parentWorkSpaceName
:
'党建建设'
,
workSpaceName
:
'志愿服务活动'
,
parentId
:
101
,
'code:'
:
'003'
,
ancestors
:
'0,100'
,
orderNum
:
1
,
children
:
[],
selectType
:
null
,
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
businessId
:
208
,
parentWorkSpaceName
:
'党建建设'
,
workSpaceName
:
'党员风采展示'
,
parentId
:
101
,
'code:'
:
'003'
,
ancestors
:
'0,100'
,
orderNum
:
1
,
children
:
[],
selectType
:
null
,
createTime
:
'2024-10-24 10:04:04'
,
createBy
:
'admin'
,
},
{
delFlag
:
'0'
,
flag
:
'1'
,
...
...
src/views/realTimeSync/dataBaseToDataBase/optionPage.vue
View file @
7dc3b64e
...
...
@@ -122,14 +122,14 @@
<a-button
@
click=
"handleGetMetadata('preview')"
type=
"primary"
>
预览
</a-button>
</
template
>
</BasicForm>
<div
v-if=
"tableDetail"
style=
"width: 40%; padding: 0 5px 5px"
>
<div
v-if=
"tableDetail"
style=
"width: 40%; padding: 0 5px 5px
; margin-left: 20px
"
>
<div
class=
"title"
>
已获取元数据
</div>
<div
style=
"display: flex; justify-content: space-between"
>
<a-input-search
style=
"width: 220px"
/>
</div>
<BasicTable
@
register=
"registerDataSourceTable"
/>
</div>
<div
v-if=
"tableDetail"
style=
"width: 40%; padding: 0 5px 5px"
>
<div
v-if=
"tableDetail"
style=
"width: 40%; padding: 0 5px 5px
; margin-left: 20px
"
>
<div
class=
"title"
>
唯一键
</div>
<Alert
show-icon
...
...
@@ -209,7 +209,11 @@
:actions=
"[
{
icon: 'ic:outline-delete-outline',
onClick: handleDeleteRule.bind(null, record),
popConfirm: {
title: '是否确认删除',
placement: 'left',
confirm: handleDeleteRule.bind(null, record),
},
},
]"
/>
...
...
@@ -852,6 +856,7 @@
},
});
const
[
registerMappingRuleConfigurationTable
,
{
getRowSelection
,
reload
}]
=
useTable
({
title
:
' '
,
api
:
async
()
=>
{
const
response
=
{
pageNu
:
'1'
,
...
...
@@ -1274,6 +1279,12 @@
reload
();
}
function
handleOperation
()
{
router
.
push
({
path
:
'/dataIntegration/taskOM/index'
,
});
}
function
handleMoveTop
(
source
)
{
[
mappingRuleConfigurationTable
.
value
[
source
],
mappingRuleConfigurationTable
.
value
[
0
]]
=
[
mappingRuleConfigurationTable
.
value
[
0
],
...
...
src/views/scriptDevelopment/functionManagement/index.vue
View file @
7dc3b64e
...
...
@@ -13,7 +13,7 @@
<div
style=
"margin-left: 10px"
>
<span
class=
"title"
>
test
</span>
<div>
<span
class=
"path"
>
自助建表文件
/test
</span>
<span
class=
"path"
>
函数
/test
</span>
</div>
</div>
<a-button
style=
"margin-left: 700px"
type=
"primary"
@
click=
"handleDeleteIds"
>
删除
</a-button>
...
...
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