Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
Z
zh-baseversion-project
Project
Project
Details
Activity
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
王浩
zh-baseversion-project
Commits
f1ad2daa
Commit
f1ad2daa
authored
Mar 18, 2026
by
zhangjianqian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
应急预案关联展示
parent
27acb673
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
6 deletions
+13
-6
Timeline.vue
zh-baseversion-web/src/components/emergency/Timeline.vue
+3
-2
rightBar.vue
zh-baseversion-web/src/components/emergency/rightBar.vue
+9
-1
index.vue
...sion-web/src/views/operationMonitor/gassVehicle/index.vue
+1
-3
No files found.
zh-baseversion-web/src/components/emergency/Timeline.vue
View file @
f1ad2daa
...
@@ -32,7 +32,8 @@
...
@@ -32,7 +32,8 @@
<!--
<div
class=
"classType"
v-if=
"t.eventType==2"
>
预案指引
</div>
-->
<!--
<div
class=
"classType"
v-if=
"t.eventType==2"
>
预案指引
</div>
-->
<!--
<div
class=
"classType"
v-if=
"t.eventType==1"
>
信息处置
</div>
-->
<!--
<div
class=
"classType"
v-if=
"t.eventType==1"
>
信息处置
</div>
-->
</div>
</div>
<div
class=
"timeline-title"
style=
"margin-left: 32px"
>
内容:
{{
t
.
management
}}
</div>
<div
class=
"timeline-title"
style=
"margin-left: 32px"
>
预案名称:
{{
t
.
planTitle
}}
</div>
<div
class=
"timeline-title"
style=
"margin-left: 32px"
>
指导意见:
{{
t
.
management
}}
</div>
<div
class=
"timeline-desc"
style=
"margin-left: 32px"
>
<div
class=
"timeline-desc"
style=
"margin-left: 32px"
>
<span
<span
class=
"dbtn"
class=
"dbtn"
...
@@ -161,7 +162,7 @@
...
@@ -161,7 +162,7 @@
border-radius
:
3px
;
border-radius
:
3px
;
border-style
:
solid
;
border-style
:
solid
;
border-width
:
0
;
border-width
:
0
;
color
:
#20FFFF
;
color
:
rgb
(
48
,
180
,
107
)
;
}
}
.timeline-item
:last-of-type
.timeline-content
{
.timeline-item
:last-of-type
.timeline-content
{
margin-bottom
:
0
;
margin-bottom
:
0
;
...
...
zh-baseversion-web/src/components/emergency/rightBar.vue
View file @
f1ad2daa
...
@@ -137,8 +137,13 @@
...
@@ -137,8 +137,13 @@
<el-input
v-model=
"form.management"
type=
"textarea"
placeholder=
"请输入处置信息"
/>
<el-input
v-model=
"form.management"
type=
"textarea"
placeholder=
"请输入处置信息"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"指导意见"
prop=
"management"
v-if=
"form.eventType==2"
>
<el-form-item
label=
"指导意见"
prop=
"management"
v-if=
"form.eventType==2"
>
<el-input
v-model=
"form.management"
type=
"textarea"
placeholder=
"请输入指导意见"
/>
<el-input
v-model=
"form.management"
type=
"textarea"
placeholder=
"请输入指导意见"
:readonly=
"readonly"
/>
</el-form-item>
</el-form-item>
<el-form-item
label=
"预案名称"
v-if=
"form.eventType==2&&readonly"
>
<el-input
v-model=
"form.planTitle"
placeholder=
"请输入指导意见"
:readonly=
"readonly"
/>
</el-form-item>
<el-form-item
label=
"预案附件"
:style=
"display2"
v-if=
"form.eventType==2"
>
<el-form-item
label=
"预案附件"
:style=
"display2"
v-if=
"form.eventType==2"
>
<span
<span
class=
"dbtn"
class=
"dbtn"
...
@@ -434,6 +439,7 @@ export default {
...
@@ -434,6 +439,7 @@ export default {
// this.title2 = "预案指引";
// this.title2 = "预案指引";
this
.
form
.
eventId
=
this
.
queryParams2
.
eventId
this
.
form
.
eventId
=
this
.
queryParams2
.
eventId
this
.
form
.
eventType
=
2
;
this
.
form
.
eventType
=
2
;
this
.
readonly
=
false
;
this
.
yuanList
();
this
.
yuanList
();
},
},
yuanList
(){
yuanList
(){
...
@@ -470,6 +476,7 @@ export default {
...
@@ -470,6 +476,7 @@ export default {
},
},
/** 提交按钮 处置信息*/
/** 提交按钮 处置信息*/
submitForm
()
{
submitForm
()
{
this
.
readonly
=
true
;
this
.
display2
=
""
;
this
.
display2
=
""
;
this
.
display
=
"display:none"
;
this
.
display
=
"display:none"
;
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
...
@@ -507,6 +514,7 @@ export default {
...
@@ -507,6 +514,7 @@ export default {
},
},
// 取消按钮
// 取消按钮
cancel
()
{
cancel
()
{
this
.
readonly
=
true
;
this
.
display2
=
""
;
this
.
display2
=
""
;
this
.
display
=
"display:none"
;
this
.
display
=
"display:none"
;
//this.reset();
//this.reset();
...
...
zh-baseversion-web/src/views/operationMonitor/gassVehicle/index.vue
View file @
f1ad2daa
...
@@ -483,8 +483,6 @@ export default {
...
@@ -483,8 +483,6 @@ export default {
.el-table --border, .el-table --group{
.el-table --border, .el-table --group{
border: none;
border: none;
}*/
}*/
.el-table
{
background-color
:
#00afff
!
important
;
}
</
style
>
</
style
>
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