Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
杨炀
/
ztx_wx_gzt
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
91e9e0c4
authored
2026-05-08 13:28:07 +0800
by
lttnew
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
容错
1 parent
8ac0bb4d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
10 deletions
level/ztx/institutionInfo.vue
level/ztx/memberAudit.vue
level/ztx/institutionInfo.vue
View file @
91e9e0c
...
...
@@ -26,7 +26,11 @@
</view>
<view
class=
"info-row"
>
<text
class=
"label"
>
认证地址
</text>
<text
class=
"value"
>
{{
form
.
provinceStr
+
form
.
cityStr
+
form
.
regionStr
||
'-'
}}
</text>
<text
class=
"value"
>
{{
(
form
.
provinceStr
||
''
)
+
(
form
.
cityStr
||
''
)
+
(
form
.
regionStr
||
''
)
}}
</text>
</view>
<view
class=
"info-row"
>
<text
class=
"label"
>
详细地址
</text>
...
...
level/ztx/memberAudit.vue
View file @
91e9e0c
...
...
@@ -135,17 +135,24 @@ async function getList() {
renewYear
:
0
,
newCount
:
0
}
const
res
=
await
api
.
listNewAPI
(
queryParams
.
value
)
list
.
value
=
res
.
rows
for
(
const
val
of
list
.
value
)
{
statistical
.
value
.
renewYear
+=
val
.
renewYear
statistical
.
value
.
totalCost
+=
val
.
finalPrice
*
1
if
(
val
.
isNew
==
1
)
{
statistical
.
value
.
newCount
+=
1
try
{
const
res
=
await
api
.
listNewAPI
(
queryParams
.
value
)
list
.
value
=
res
.
rows
||
[]
for
(
const
val
of
list
.
value
)
{
statistical
.
value
.
renewYear
+=
val
.
renewYear
statistical
.
value
.
totalCost
+=
val
.
finalPrice
*
1
if
(
val
.
isNew
==
1
)
{
statistical
.
value
.
newCount
+=
1
}
statistical
.
value
.
allCount
+=
1
}
statistical
.
value
.
allCount
+=
1
total
.
value
=
res
.
total
}
catch
(
e
)
{
console
.
error
(
'获取列表失败'
,
e
)
list
.
value
=
[]
}
finally
{
uni
.
hideLoading
()
}
total
.
value
=
res
.
total
}
function
audit
(
recordId
,
flag
)
{
...
...
@@ -201,6 +208,13 @@ function doApproval(recordId, flag, reason) {
icon
:
'none'
})
getList
()
}).
catch
((
e
)
=>
{
console
.
error
(
'审批操作失败'
,
e
)
uni
.
hideLoading
()
uni
.
showToast
({
title
:
'操作失败'
,
icon
:
'none'
})
})
}
...
...
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