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
90ebad3c
authored
2025-12-03 16:25:14 +0800
by
lihua
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
添加bizApproveState
1 parent
a335bd10
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
8 deletions
src/utils/common.ts
src/views/data_facilitator/certificationAudit.vue
src/views/data_facilitator/settleManagement.vue
src/utils/common.ts
View file @
90ebad3
...
...
@@ -444,7 +444,7 @@ export const tagType = (row, type) => {
state
=
'warning'
;
break
;
}
}
else
if
(
type
==
'approveState'
)
{
}
else
if
(
type
==
'approveState'
||
type
==
'bizApproveState'
)
{
switch
(
row
[
type
])
{
case
"N"
:
state
=
'info'
;
...
...
@@ -455,6 +455,7 @@ export const tagType = (row, type) => {
case
"Y"
:
state
=
'success'
break
;
case
'E'
:
case
"R"
:
state
=
'danger'
break
;
...
...
@@ -754,7 +755,7 @@ export const tagMethod = (row, type) => {
tag
=
'待受理'
break
;
}
}
else
if
(
type
==
'approveState'
)
{
}
else
if
(
type
==
'approveState'
||
type
==
'bizApproveState'
)
{
switch
(
row
[
type
])
{
case
"N"
:
tag
=
'草稿中'
...
...
@@ -771,6 +772,9 @@ export const tagMethod = (row, type) => {
case
"C"
:
tag
=
'已撤销'
break
;
case
'E'
:
tag
=
'发起失败'
break
;
default
:
tag
=
'--'
break
;
...
...
src/views/data_facilitator/certificationAudit.vue
View file @
90ebad3
...
...
@@ -187,7 +187,7 @@ const tableInfo = ref({
const
getTableBtns
=
(
row
,
includeDetail
=
true
)
=>
{
let
btnsArr
:
any
[]
=
[];
const
currentStaffGuid
=
userData
.
userGuid
const
approveState
=
row
.
a
pproveState
;
const
approveState
=
row
.
bizA
pproveState
;
const
staffGuid
=
row
.
createUserId
||
''
;
let
flowState
;
if
(
approveState
==
'N'
&&
staffGuid
==
currentStaffGuid
)
{
...
...
src/views/data_facilitator/settleManagement.vue
View file @
90ebad3
...
...
@@ -36,7 +36,7 @@ const searchItemList = ref([
{
type
:
'select'
,
label
:
''
,
field
:
'
a
pproveState'
,
field
:
'
bizA
pproveState'
,
default
:
''
,
placeholder
:
'审核状态'
,
options
:
[
...
...
@@ -130,7 +130,7 @@ const page = ref({
{
label
:
"200"
,
value
:
200
},
],
connectorName
:
''
,
a
pproveState
:
''
bizA
pproveState
:
''
});
const
currTableData
:
any
=
ref
({});
const
tableInfo
=
ref
({
...
...
@@ -197,10 +197,10 @@ const toSearch = (val: any, clear: boolean = false) => {
if
(
clear
)
{
searchItemList
.
value
.
map
((
item
)
=>
(
item
.
default
=
""
));
page
.
value
.
connectorName
=
''
;
page
.
value
.
a
pproveState
=
""
;
page
.
value
.
bizA
pproveState
=
""
;
}
else
{
page
.
value
.
connectorName
=
val
.
connectorName
;
page
.
value
.
approveState
=
val
.
a
pproveState
;
page
.
value
.
bizApproveState
=
val
.
bizA
pproveState
;
}
getTableData
();
updateCheckConnector
();
...
...
@@ -212,7 +212,7 @@ const getTableData = () => {
pageIndex
:
page
.
value
.
curr
,
pageSize
:
page
.
value
.
limit
,
connectorName
:
page
.
value
.
connectorName
,
approveState
:
page
.
value
.
a
pproveState
,
bizApproveState
:
page
.
value
.
bizA
pproveState
,
currentStaffGuid
:
userData
.
staffGuid
}).
then
((
res
:
any
)
=>
{
if
(
res
?.
code
==
proxy
.
$passCode
)
{
...
...
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