Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rongtong-app
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
融通安全管理系统
rongtong-app
Commits
c1d986a4
Commit
c1d986a4
authored
May 16, 2024
by
陈晓晋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
待办任务和待办消息修改20240516
parent
d5dbfecd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
7 deletions
+34
-7
src/views/messageCenter/infoTip/index.vue
src/views/messageCenter/infoTip/index.vue
+9
-1
src/views/messageCenter/waitEvent/index.vue
src/views/messageCenter/waitEvent/index.vue
+25
-6
No files found.
src/views/messageCenter/infoTip/index.vue
View file @
c1d986a4
...
@@ -158,7 +158,7 @@ export default {
...
@@ -158,7 +158,7 @@ export default {
let
formData
let
formData
if
(
this
.
activeIndex
==
0
)
{
if
(
this
.
activeIndex
==
0
)
{
formData
=
new
FormData
();
formData
=
new
FormData
();
formData
.
append
(
"
status
"
,
0
);
formData
.
append
(
"
status
"
,
0
);
}
else
if
(
this
.
activeIndex
==
1
)
{
}
else
if
(
this
.
activeIndex
==
1
)
{
formData
=
new
FormData
();
formData
=
new
FormData
();
formData
.
append
(
"
status
"
,
1
);
formData
.
append
(
"
status
"
,
1
);
...
@@ -196,7 +196,15 @@ export default {
...
@@ -196,7 +196,15 @@ export default {
this
.
showIndex
=
null
;
this
.
showIndex
=
null
;
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
item
.
appUrl
,
path
:
item
.
appUrl
,
params
:
{
id
:
item
.
pid
,
buildingId
:
item
.
mainId
}
});
});
sessionStorage
.
setItem
(
"
planId
"
,
item
.
pid
);
sessionStorage
.
setItem
(
"
pathAuth
"
,
""
);
sessionStorage
.
setItem
(
"
buildingId
"
,
item
.
mainId
);
})
})
},
},
touchstart
(
index
,
item
)
{
touchstart
(
index
,
item
)
{
...
...
src/views/messageCenter/waitEvent/index.vue
View file @
c1d986a4
...
@@ -46,7 +46,7 @@
...
@@ -46,7 +46,7 @@
</div>
</div>
<div
class=
"bot_but"
v-if=
" item.theme != '检查'"
>
<div
class=
"bot_but"
v-if=
" item.theme != '检查'"
>
<van-button
color=
"#33CCFF"
size=
"mini"
>
{{
<van-button
color=
"#33CCFF"
size=
"mini"
>
{{
item
.
status
==
0
?
"
立即处理
"
:
"
待办事项
"
item
.
status
==
0
?
"
立即处理
"
:
"
查看详情
"
}}
</van-button>
}}
</van-button>
</div>
</div>
</div>
</div>
...
@@ -147,7 +147,7 @@ export default {
...
@@ -147,7 +147,7 @@ export default {
let
formData
let
formData
if
(
this
.
activeIndex
==
0
)
{
if
(
this
.
activeIndex
==
0
)
{
formData
=
new
FormData
();
formData
=
new
FormData
();
formData
.
append
(
"
status
"
,
0
);
formData
.
append
(
"
status
"
,
0
);
}
else
if
(
this
.
activeIndex
==
1
)
{
}
else
if
(
this
.
activeIndex
==
1
)
{
formData
=
new
FormData
();
formData
=
new
FormData
();
formData
.
append
(
"
status
"
,
1
);
formData
.
append
(
"
status
"
,
1
);
...
@@ -169,17 +169,36 @@ export default {
...
@@ -169,17 +169,36 @@ export default {
}
}
// this.$parent.$parent.$parent.$parent.getBadgeNumber();
// this.$parent.$parent.$parent.$parent.getBadgeNumber();
})
})
},
},
touchstart
(
index
,
item
)
{
touchstart
(
index
,
item
)
{
console
.
log
(
'
==========================
'
,
item
)
//return
let
formData
=
new
FormData
()
let
formData
=
new
FormData
()
formData
.
append
(
'
id
'
,
item
.
id
)
formData
.
append
(
'
id
'
,
item
.
id
)
postFun
(
"
message
Info/changeRead
"
,
formData
)
postFun
(
"
backlog
Info/changeRead
"
,
formData
)
.
then
(
res
=>
{
.
then
(
res
=>
{
this
.
showIndex
=
null
;
this
.
showIndex
=
null
;
this
.
$router
.
push
({
this
.
$router
.
push
({
path
:
item
.
appUrl
,
name
:
item
.
appUrl
,
});
params
:
{
id
:
item
.
pid
,
buildingId
:
item
.
mainId
}
}
);
sessionStorage
.
setItem
(
"
planId
"
,
item
.
pid
);
if
(
item
.
menuName
==
'
风险审批
'
){
sessionStorage
.
setItem
(
"
pathAuth
"
,
"
riskApprove0
"
);
sessionStorage
.
setItem
(
"
status
"
,
"
2
"
);
}
else
{
sessionStorage
.
setItem
(
"
pathAuth
"
,
"
riskAssess
"
);
}
if
(
item
.
status
==
1
){
//已办查看详情
sessionStorage
.
setItem
(
"
pathAuth
"
,
""
);
}
sessionStorage
.
setItem
(
"
buildingId
"
,
item
.
mainId
);
})
})
// if (this.showIndex != null) {
// if (this.showIndex != null) {
// this.showIndex = null;
// this.showIndex = null;
...
...
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