Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cust-app
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
李伟
cust-app
Commits
dd4c083c
Commit
dd4c083c
authored
Mar 03, 2025
by
liwei
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
38e799b7
83cb433e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
articleDetail.vue
pagesArticle/articleDetail.vue
+12
-0
No files found.
pagesArticle/articleDetail.vue
View file @
dd4c083c
...
...
@@ -108,6 +108,7 @@
<!--
</view>
-->
</view>
<ELM
ref=
"elm"
:msg=
"tipMsg"
:isConfirm=
"isConfirm"
@
confirm=
"confirm"
></ELM>
<ELM
ref=
"elmReject"
:msg=
"tipMsg"
:isConfirm=
"isRejectConfirm"
:isCancel=
"false"
@
confirm=
"rejectConfirm"
></ELM>
</view>
</
template
>
...
...
@@ -141,6 +142,7 @@ export default{
parentId
:
null
,
tipMsg
:
''
,
isConfirm
:
false
,
isRejectConfirm
:
false
,
}
},
onLoad
(
params
){
...
...
@@ -260,6 +262,13 @@ export default{
comment
(
params
).
then
(
res
=>
{
if
(
res
.
data
.
code
==
200
){
//方便回到动态页的时候刷新数据
if
(
res
.
data
.
data
.
examStatus
==
'3'
){
const
remarks
=
JSON
.
parse
(
res
.
data
.
data
.
remarks
)
this
.
tipMsg
=
remarks
[
0
].
msg
;
this
.
isRejectConfirm
=
true
;
this
.
$refs
.
elmReject
.
showDialog
();
return
}
uni
.
setStorageSync
(
"isRefresh"
,
true
)
this
.
getArticleDetail
()
}
else
{
...
...
@@ -354,6 +363,9 @@ export default{
url
:
"/pagesme/me/doubleauth"
})
},
rejectConfirm
(){
this
.
isRejectConfirm
=
false
;
}
}
}
</
script
>
...
...
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