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
c6bfb5f5
authored
2025-02-11 17:39:15 +0800
by
lihua
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'develop' into release-test
2 parents
ce17d68e
61654c4c
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
32 additions
and
17 deletions
src/views/data_asset/qualityEvaluate.vue
src/views/data_asset/valueEvaluate.vue
src/views/indexNewBigScreen.vue
src/views/data_asset/qualityEvaluate.vue
View file @
c6bfb5f
...
...
@@ -45,13 +45,6 @@ const tableFields = ref([
const
deploymentId
=
ref
(
''
);
onMounted
(()
=>
{
getCamundaDeploymentId
(
'10018'
,
userData
.
tenantGuid
,
userData
.
staffGuid
).
then
((
res
:
any
)
=>
{
if
(
res
.
code
==
proxy
.
$passCode
)
{
deploymentId
.
value
=
res
.
data
;
}
else
{
proxy
.
$ElMessage
.
error
(
res
.
msg
);
}
})
});
onActivated
(()
=>
{
...
...
@@ -412,6 +405,7 @@ const dialogInfo = ref({
const
dialogBtnClick
=
(
btn
,
info
)
=>
{
if
(
btn
.
value
==
'submit'
)
{
dialogInfo
.
value
.
footer
.
btns
[
1
].
loading
=
true
;
let
submitFunc
=
()
=>
{
getProcessNodesPromise
({
deploymentId
:
deploymentId
.
value
,
processInstanceId
:
null
,
...
...
@@ -480,6 +474,20 @@ const dialogBtnClick = (btn, info) => {
ElMessage
.
error
(
res
.
msg
);
}
})
}
if
(
deploymentId
.
value
)
{
submitFunc
();
}
else
{
getCamundaDeploymentId
(
'10018'
,
userData
.
tenantGuid
,
userData
.
staffGuid
).
then
((
res
:
any
)
=>
{
if
(
res
.
code
==
proxy
.
$passCode
)
{
deploymentId
.
value
=
res
.
data
;
submitFunc
();
}
else
{
dialogInfo
.
value
.
footer
.
btns
[
1
].
loading
=
false
;
proxy
.
$ElMessage
.
error
(
res
.
msg
);
}
})
}
}
else
if
(
btn
.
value
==
'cancel'
)
{
dialogInfo
.
value
.
visible
=
false
;
}
...
...
src/views/data_asset/valueEvaluate.vue
View file @
c6bfb5f
...
...
@@ -96,13 +96,6 @@ onBeforeMount(() => {
// ElMessage.error(res.msg);
// }
// })
getCamundaDeploymentId
(
'10019'
,
userData
.
tenantGuid
,
userData
.
staffGuid
).
then
((
res
:
any
)
=>
{
if
(
res
.
code
==
proxy
.
$passCode
)
{
deploymentId
.
value
=
res
.
data
;
}
else
{
proxy
.
$ElMessage
.
error
(
res
.
msg
);
}
})
});
onActivated
(()
=>
{
...
...
@@ -680,7 +673,7 @@ const dialogInfo = ref({
footer
:
{
btns
:
[
{
type
:
"default"
,
label
:
"取消"
,
value
:
"cancel"
},
{
type
:
"primary"
,
label
:
"确定"
,
value
:
"submit"
},
{
type
:
"primary"
,
label
:
"确定"
,
value
:
"submit"
,
loading
:
false
},
],
},
});
...
...
@@ -738,6 +731,7 @@ const reSubmitPromise: any = ref(null);
const
dialogBtnClick
=
(
btn
,
info
)
=>
{
console
.
log
(
'btn'
,
btn
,
info
);
if
(
btn
.
value
==
'submit'
)
{
let
submitFunc
=
()
=>
{
getProcessNodesPromise
({
deploymentId
:
deploymentId
.
value
,
processInstanceId
:
null
,
...
...
@@ -848,6 +842,19 @@ const dialogBtnClick = (btn, info) => {
}
});
})
}
if
(
deploymentId
.
value
)
{
submitFunc
();
}
else
{
getCamundaDeploymentId
(
'10019'
,
userData
.
tenantGuid
,
userData
.
staffGuid
).
then
((
res
:
any
)
=>
{
if
(
res
.
code
==
proxy
.
$passCode
)
{
deploymentId
.
value
=
res
.
data
;
submitFunc
();
}
else
{
proxy
.
$ElMessage
.
error
(
res
.
msg
);
}
})
}
}
else
if
(
btn
.
value
==
'cancel'
)
{
dialogInfo
.
value
.
visible
=
false
;
}
...
...
src/views/indexNewBigScreen.vue
View file @
c6bfb5f
...
...
@@ -341,11 +341,11 @@ const financingTableInfo = ref({
// columClass: 'text_btn',
// value: "detail",
},
// { label: "授信日期", field: "creditGrantingTime", width: 110
},
{
label
:
"调用数"
,
field
:
"callApiNumber"
,
width
:
100
,
align
:
"right"
,
},
{
label
:
"调用次数"
,
field
:
"callApiCount"
,
width
:
1
4
0
,
width
:
1
0
0
,
align
:
"right"
,
// getName: (scope) => {
// return changeNum(scope.row.creditGrantingMoney ?? 0, 2, true) + '万元';
...
...
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