Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
BCDH-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
首开风险隐患双控平台
BCDH-APP
Commits
2f2b058f
Commit
2f2b058f
authored
Jan 24, 2022
by
13841799530
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
待办功能
解润东 20220124
parent
8cc54b36
Pipeline
#7918
passed with stage
in 18 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
37 additions
and
12 deletions
+37
-12
src/views/checked/problem/index.vue
src/views/checked/problem/index.vue
+2
-1
src/views/checkedConfirm/confirmNote/index.vue
src/views/checkedConfirm/confirmNote/index.vue
+2
-2
src/views/checkedConfirm/index.vue
src/views/checkedConfirm/index.vue
+1
-1
src/views/messageCenter/waitEvent/index.vue
src/views/messageCenter/waitEvent/index.vue
+7
-1
src/views/notice/index.vue
src/views/notice/index.vue
+1
-1
src/views/notice/noticeList/index.vue
src/views/notice/noticeList/index.vue
+24
-6
No files found.
src/views/checked/problem/index.vue
View file @
2f2b058f
...
...
@@ -45,7 +45,7 @@ export default {
id
:
''
,
//问题上报清单列表列表id
nums
:{},
//问题上报清单列表
text
:
'
问题上报
'
,
//顶部文本
finish
:
''
,
//提交状态
finish
:
'
false
'
,
//提交状态
submitTroubleNumber
:
0
//问题记录问题提交数量
}
},
...
...
@@ -54,6 +54,7 @@ export default {
if
(
this
.
$route
.
params
.
id
){
this
.
id
=
sessionStorage
.
getItem
(
'
id
'
)
this
.
finish
=
sessionStorage
.
getItem
(
'
finish
'
)
console
.
log
(
this
.
finish
)
this
.
init
()
}
//缓存数据获取---不更新检查执行id时,获取缓存执行id
...
...
src/views/checkedConfirm/confirmNote/index.vue
View file @
2f2b058f
...
...
@@ -135,8 +135,8 @@ export default {
if
(
sessionStorage
.
getItem
(
'
ConfirmFinish
'
)){
this
.
finish
=
sessionStorage
.
getItem
(
'
ConfirmFinish
'
)
}
if
(
sessionStorage
.
getItem
(
'
ConfirmI
d
'
)){
this
.
id
=
sessionStorage
.
getItem
(
'
ConfirmI
d
'
)
if
(
sessionStorage
.
getItem
(
'
i
d
'
)){
this
.
id
=
sessionStorage
.
getItem
(
'
i
d
'
)
}
this
.
problem
()
},
...
...
src/views/checkedConfirm/index.vue
View file @
2f2b058f
...
...
@@ -92,7 +92,7 @@ export default {
},
cardLocation
(
item
){
sessionStorage
.
setItem
(
'
ConfirmFinish
'
,
item
.
finish
)
sessionStorage
.
setItem
(
'
ConfirmI
d
'
,
item
.
id
)
sessionStorage
.
setItem
(
'
i
d
'
,
item
.
id
)
this
.
$router
.
push
({
name
:
'
confirmNote
'
,
params
:{
name
:
'
checkedConfirm
'
,
id
:
item
.
id
}})
//此id来判断是否加载问题上报新数据
},
//切换显示内容
...
...
src/views/messageCenter/waitEvent/index.vue
View file @
2f2b058f
...
...
@@ -182,9 +182,15 @@ export default {
this
.
$router
.
push
({
name
:
item
.
appUrl
,
params
:
{
id
:
item
.
pid
id
:
item
.
pid
,
pageName
:
'
noticeWait
'
},
});
sessionStorage
.
setItem
(
'
projectId
'
,
item
.
projectId
?
item
.
projectId
:
'
null
'
)
sessionStorage
.
setItem
(
'
id
'
,
item
.
pid
)
sessionStorage
.
setItem
(
'
finish
'
,
item
.
appTableFinish
)
sessionStorage
.
setItem
(
'
noticeFinish
'
,
item
.
appTableFinish
)
sessionStorage
.
setItem
(
'
ConfirmFinish
'
,
item
.
appTableFinish
)
}
},
// touchstart(index, item) {
...
...
src/views/notice/index.vue
View file @
2f2b058f
...
...
@@ -114,7 +114,7 @@ export default {
},
cardLocation
(
item
){
sessionStorage
.
setItem
(
'
projectId
'
,
item
.
projectId
)
sessionStorage
.
setItem
(
'
f
inish
'
,
item
.
finish
)
sessionStorage
.
setItem
(
'
noticeF
inish
'
,
item
.
finish
)
sessionStorage
.
setItem
(
'
id
'
,
item
.
id
)
this
.
$router
.
push
({
name
:
'
noticeList
'
,
...
...
src/views/notice/noticeList/index.vue
View file @
2f2b058f
...
...
@@ -253,8 +253,8 @@ export default {
this
.
projectId
=
sessionStorage
.
getItem
(
'
projectId
'
)
}
//获取检查状态
if
(
sessionStorage
.
getItem
(
'
f
inish
'
)){
this
.
finish
=
sessionStorage
.
getItem
(
'
f
inish
'
)
if
(
sessionStorage
.
getItem
(
'
noticeF
inish
'
)){
this
.
finish
=
sessionStorage
.
getItem
(
'
noticeF
inish
'
)
}
this
.
init
()
}
...
...
@@ -285,8 +285,8 @@ export default {
this
.
id
=
sessionStorage
.
getItem
(
'
id
'
)
}
//获取检查状态
if
(
sessionStorage
.
getItem
(
'
f
inish
'
)){
this
.
finish
=
sessionStorage
.
getItem
(
'
f
inish
'
)
if
(
sessionStorage
.
getItem
(
'
noticeF
inish
'
)){
this
.
finish
=
sessionStorage
.
getItem
(
'
noticeF
inish
'
)
}
//获取人员匹配projectId
if
(
sessionStorage
.
getItem
(
'
projectId
'
)){
...
...
@@ -295,6 +295,23 @@ export default {
this
.
active
=
1
this
.
init
()
}
//判断是否待办跳转进来
if
(
this
.
$route
.
params
.
pageName
==
'
noticeWait
'
){
//获取检查id
if
(
sessionStorage
.
getItem
(
'
id
'
)){
this
.
id
=
sessionStorage
.
getItem
(
'
id
'
)
}
//获取检查状态
if
(
sessionStorage
.
getItem
(
'
noticeFinish
'
)){
this
.
finish
=
sessionStorage
.
getItem
(
'
noticeFinish
'
)
console
.
log
(
this
.
finish
)
}
//获取人员匹配projectId
if
(
sessionStorage
.
getItem
(
'
projectId
'
)){
this
.
projectId
=
sessionStorage
.
getItem
(
'
projectId
'
)
}
this
.
init
()
}
},
mounted
()
{
//获取检查id
...
...
@@ -302,8 +319,8 @@ export default {
this
.
id
=
sessionStorage
.
getItem
(
'
id
'
)
}
//获取检查状态
if
(
sessionStorage
.
getItem
(
'
f
inish
'
)){
this
.
finish
=
sessionStorage
.
getItem
(
'
f
inish
'
)
if
(
sessionStorage
.
getItem
(
'
noticeF
inish
'
)){
this
.
finish
=
sessionStorage
.
getItem
(
'
noticeF
inish
'
)
}
//获取人员匹配projectId
if
(
sessionStorage
.
getItem
(
'
projectId
'
)){
...
...
@@ -328,6 +345,7 @@ export default {
//请求人员匹配下拉菜单
Selection
(){
this
.
columns
=
[];
console
.
log
(
sessionStorage
.
getItem
(
'
projectId
'
))
if
(
this
.
projectId
!=
'
null
'
){
//请求下拉菜单
getFun
(
'
check/project/user/list/
'
+
this
.
projectId
).
then
((
Response
)
=>
{
...
...
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