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
29d4d99e
Commit
29d4d99e
authored
Nov 25, 2021
by
罗新东
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加了隐患标签页面,修改了页面某些字段。
parent
269c15a5
Pipeline
#7269
passed with stage
in 27 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
30 additions
and
21 deletions
+30
-21
src/views/danger/confirmeDanger/confirmeDanger.vue
src/views/danger/confirmeDanger/confirmeDanger.vue
+3
-3
src/views/danger/confirmeDanger/index.vue
src/views/danger/confirmeDanger/index.vue
+1
-1
src/views/danger/delayApproval/index.vue
src/views/danger/delayApproval/index.vue
+21
-12
src/views/danger/reviewDanger/index.vue
src/views/danger/reviewDanger/index.vue
+1
-1
src/views/risk/my-insert/index.vue
src/views/risk/my-insert/index.vue
+1
-1
src/views/risk/riskConfirme/index.vue
src/views/risk/riskConfirme/index.vue
+3
-3
No files found.
src/views/danger/confirmeDanger/confirmeDanger.vue
View file @
29d4d99e
...
...
@@ -5,7 +5,7 @@
inset
v-for=
"(item, index) in messageList"
:key=
"index"
@
click=
"goDetail(item
.taskId
)"
@
click=
"goDetail(item)"
>
<van-row
gutter=
""
>
<van-col
span=
"6"
>
隐患编号:
</van-col>
...
...
@@ -312,11 +312,11 @@ export default {
this
.
showPickerReview
=
false
;
},
// 详情
goDetail
(
taskId
)
{
goDetail
(
data
)
{
this
.
$router
.
push
({
name
:
"
normal-detail
"
,
params
:
{
id
:
taskI
d
,
id
:
data
.
taskId
||
data
.
i
d
,
},
});
},
...
...
src/views/danger/confirmeDanger/index.vue
View file @
29d4d99e
...
...
@@ -151,7 +151,7 @@ export default {
postFun
(
this
.
tabs
[
this
.
active
][
'
api
'
],
formdata
)
.
then
((
res
)
=>
{
this
.
$toast
.
clear
();
this
.
messageList
=
res
.
rows
;
this
.
messageList
=
res
.
data
||
res
.
rows
;
// 判断有无数据返回
if
(
this
.
messageList
.
length
==
0
)
{
this
.
isHaveNews
=
true
;
...
...
src/views/danger/delayApproval/index.vue
View file @
29d4d99e
...
...
@@ -51,15 +51,24 @@
<van-row
gutter=
""
>
<van-col
span=
"6"
>
隐患级别:
</van-col>
<van-col
span=
"18"
>
{{ item.hdLev | dangerText }}
</van-col>
</van-row>
<van-row
gutter=
""
>
<van-col
span=
"6"
>
是否通过:
</van-col>
<van-col
span=
"17"
>
{{ item.examineResult }}
</van-col>
</van-row>
<van-row
gutter=
""
>
<van-col
span=
"6"
>
意见:
</van-col>
<van-col
span=
"18"
>
{{ item.examineReason }}
</van-col>
</van-row>
<!-- 长按显示遮罩层 -->
<
template
v-if=
"active == 0"
>
<
template
>
<van-overlay
:show=
"showIndex == index"
>
<div
class=
"wrapper"
@
click.stop=
"showIndex = null"
>
<
!--
<
van-button
round
type=
"primary"
@
click=
"goDetail(item)"
<van-button
round
type=
"primary"
@
click=
"goDetail(item)"
>
详情
</van-button
>
-->
>
<van-button
round
type=
"info"
@
click=
"goConfirm(item)"
v-if=
"active == 0"
>
审批
</van-button>
</div>
...
...
@@ -144,15 +153,15 @@ export default {
},
// 详情
//
goDetail(data) {
//
this.$router.push({
//
name: "normal-detail",
//
params: {
//
id: data.businessId,
//
},
//
});
//
this.showIndex = null;
//
},
goDetail
(
data
)
{
this
.
$router
.
push
({
name
:
"
normal-detail
"
,
params
:
{
id
:
data
.
businessId
,
},
});
this
.
showIndex
=
null
;
},
// 审批
goConfirm
(
data
)
{
this
.
$router
.
push
({
...
...
src/views/danger/reviewDanger/index.vue
View file @
29d4d99e
...
...
@@ -183,7 +183,7 @@ export default {
this
.
$router
.
push
({
name
:
"
normal-detail
"
,
params
:
{
id
:
data
.
taskId
,
id
:
data
.
taskId
||
data
.
id
,
},
});
this
.
showIndex
=
null
;
...
...
src/views/risk/my-insert/index.vue
View file @
29d4d99e
...
...
@@ -152,7 +152,7 @@ export default {
// name: "insert-danger-detail",
name
:
"
risk-big-detail
"
,
params
:
{
id
:
data
.
processinstanceI
d
,
id
:
data
.
i
d
,
},
});
this
.
showIndex
=
null
;
...
...
src/views/risk/riskConfirme/index.vue
View file @
29d4d99e
...
...
@@ -42,11 +42,11 @@
>
<van-row
gutter=
""
>
<van-col
span=
"6"
>
风险编号:
</van-col>
<van-col
span=
"18"
>
{{ item[
['businessId','id'][active]]
}}
</van-col>
<van-col
span=
"18"
>
{{ item[
'businessId']||item['id']
}}
</van-col>
</van-row>
<van-row
gutter=
""
>
<van-col
span=
"6"
>
所属项目:
</van-col>
<van-col
span=
"18"
>
{{
item[['proId','pId'][active]]
}}
</van-col>
<van-col
span=
"18"
>
{{
item['proId']||item['pId']
}}
</van-col>
</van-row>
<van-row
gutter=
""
>
<van-col
span=
"6"
>
风险级别:
</van-col>
...
...
@@ -159,7 +159,7 @@ export default {
postFun
(
this
.
tabs
[
this
.
active
][
'
api
'
],
formdata
)
.
then
((
res
)
=>
{
this
.
$toast
.
clear
();
this
.
messageList
=
res
.
rows
;
this
.
messageList
=
res
.
data
||
res
.
rows
;
// 判断有无数据返回
if
(
this
.
messageList
.
length
==
0
)
{
this
.
isHaveNews
=
true
;
...
...
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