Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
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
bf5a4253
Commit
bf5a4253
authored
Jul 27, 2024
by
wanghao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1 应急处置-应急预案 详情界面优化 替换调之前的 readonly方式
parent
0f0c0156
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
133 additions
and
27 deletions
+133
-27
TEmergencyDrillsMapper.xml
...c/main/resources/mapper/system/TEmergencyDrillsMapper.xml
+2
-2
index.vue
zh-baseversion-web/src/views/system/eventInfo/index.vue
+1
-1
DetailInfo.vue
zh-baseversion-web/src/views/system/planInfo/DetailInfo.vue
+110
-0
index.vue
zh-baseversion-web/src/views/system/planInfo/index.vue
+20
-24
No files found.
zh-baseversion-system/src/main/resources/mapper/system/TEmergencyDrillsMapper.xml
View file @
bf5a4253
...
...
@@ -27,8 +27,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<where>
<if
test=
"fDrillsId != null "
>
and f_drills_id = #{fDrillsId}
</if>
<if
test=
"fDrillsTime != null and fDrillsTime != ''"
>
and f_drills_time = #{fDrillsTime}
</if>
<if
test=
"fEvent != null and fEvent != ''"
>
and f_event
= #{fEvent}
</if>
<if
test=
"fPlace != null and fPlace != ''"
>
and f_place
= #{fPlace}
</if>
<if
test=
"fEvent != null and fEvent != ''"
>
and f_event
like concat('%', #{fEvent}, '%')
</if>
<if
test=
"fPlace != null and fPlace != ''"
>
and f_place
like concat('%', #{fPlace}, '%')
</if>
<if
test=
"fPerDep != null and fPerDep != ''"
>
and f_per_dep = #{fPerDep}
</if>
<if
test=
"fDrillsContent != null and fDrillsContent != ''"
>
and f_drills_content = #{fDrillsContent}
</if>
<if
test=
"fDrillDepartment != null and fDrillDepartment != ''"
>
and f_drill_department = #{fDrillDepartment}
</if>
...
...
zh-baseversion-web/src/views/system/eventInfo/index.vue
View file @
bf5a4253
...
...
@@ -40,7 +40,7 @@
/>
</el-form-item>
<el-form-item
label=
"所属企业"
prop=
"beyondEnterpriseId"
>
<el-select
v-model=
"queryParams.beyondEnterpriseId"
placeholder=
"请选择
预案等级
"
clearable
size=
"small"
>
<el-select
v-model=
"queryParams.beyondEnterpriseId"
placeholder=
"请选择
企业
"
clearable
size=
"small"
>
<el-option
v-for =
"dict in enterpriseList"
:key =
"dict.enterpriseId"
...
...
zh-baseversion-web/src/views/system/planInfo/DetailInfo.vue
0 → 100644
View file @
bf5a4253
<
template
>
<el-dialog
title=
"应急预案详情"
:visible
.
sync=
"detailOpen"
@
closed=
"dialogClose"
@
open=
"dialogOpen"
width=
"1200px"
append-to-body
>
<el-form
label-width=
"100px"
>
<div
class=
"division"
>
<div
style=
"width: 40%;"
>
<el-form-item
label=
"预案标题"
>
<span
v-if=
"detailInfo.planTitle"
>
{{
detailInfo
.
planTitle
}}
</span>
<span
v-else
>
-
</span>
</el-form-item>
<el-form-item
label=
"预案类型"
>
<span
v-if=
"detailInfo.planType"
>
{{
$parent
.
planTypeFormat
(
detailInfo
)
}}
</span>
<span
v-else
>
-
</span>
</el-form-item>
<el-form-item
label=
"预案等级"
>
<span
v-if=
"detailInfo.planLevel"
>
{{
$parent
.
planLevelFormat
(
detailInfo
)
}}
</span>
<span
v-else
>
-
</span>
</el-form-item>
<el-form-item
label=
"所属企业"
>
<span
v-if=
"detailInfo.beyondEnterpriseName"
>
{{
detailInfo
.
beyondEnterpriseName
}}
</span>
<span
v-else
>
-
</span>
</el-form-item>
<el-form-item
label=
"应急设备车辆"
>
<span
v-if=
"detailInfo.planEquipment"
>
{{
detailInfo
.
planEquipment
}}
</span>
<span
v-else
>
-
</span>
</el-form-item>
<el-form-item
label=
"备注"
>
<span
v-if=
"detailInfo.remarks"
>
{{
detailInfo
.
remarks
}}
</span>
<span
v-else
>
-
</span>
</el-form-item>
<el-form-item
label=
"预案附件"
prop=
"iconUrl"
>
<span
class=
"dbtn"
@
click=
"checkFile(detailInfo.iconUrl)"
v-if=
"detailInfo.iconUrl!=null && detailInfo.iconUrl != ''"
>
<i
class=
"el-icon el-icon-view"
></i>
查看/下载
</span>
<span
v-else
>
-
</span>
</el-form-item>
</div>
<div
style=
"width: 58%;margin-left: 2%"
>
<div
class=
"titletitle"
>
方案内容
</div>
<editor
id=
"editor"
v-model=
"detailInfo.planContents"
:min-height=
"300"
:readOnly=
"true"
/>
</div>
</div>
</el-form>
</el-dialog>
</
template
>
<
script
>
import
Editor
from
'@/components/Editor'
;
import
{
getPlanInfo
}
from
"@/api/system/planInfo"
;
let
uploadfile
=
require
(
"@/assets/uploadfile.png"
);
export
default
{
name
:
"detail-info"
,
components
:
{
Editor
},
data
(){
return
{
detailInfo
:
{},
detailOpen
:
false
,
isOpen
:
false
,
fileList
:[],
fileurl
:
''
,
}
},
methods
:{
dialogClose
(){
this
.
detailOpen
=
false
;
},
dialogOpen
(){
this
.
detailOpen
=
true
;
},
checkFile
(
url
)
{
window
.
open
(
url
,
'_blank'
);
},
getDetailInfo
(
id
){
getPlanInfo
(
id
).
then
(
res
=>
{
if
(
res
.
code
==
200
&&
res
.
data
){
this
.
detailInfo
=
res
.
data
;
this
.
fileList
=
[{
name
:
'附件'
,
url
:
uploadfile
}];
this
.
fileurl
=
this
.
detailInfo
.
iconUrl
;
this
.
detailOpen
=
true
;
}
})
}
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
.division
{
display
:flex
;
flex-direction
:row
;
justify-content
:flex-start
;
}
</
style
>
zh-baseversion-web/src/views/system/planInfo/index.vue
View file @
bf5a4253
...
...
@@ -31,7 +31,7 @@
</el-select>
</el-form-item>
<el-form-item
label=
"所属企业"
prop=
"beyondEnterpriseId"
>
<el-select
v-model=
"queryParams.beyondEnterpriseId"
placeholder=
"请选择
预案等级
"
clearable
size=
"small"
>
<el-select
v-model=
"queryParams.beyondEnterpriseId"
placeholder=
"请选择
所属企业
"
clearable
size=
"small"
>
<el-option
v-for =
"dict in enterpriseList"
:key =
"dict.enterpriseId"
...
...
@@ -202,9 +202,6 @@
/>
<
el
-
input
v
-
show
=
"false"
disabled
v
-
model
=
"form.iconUrl"
><
/el-input
>
<!--
<
el
-
dialog
:
visible
.
sync
=
"dialogVisible"
>-->
<!--
<
img
width
=
"100%"
:
src
=
"dialogImageUrl"
alt
=
""
>-->
<!--
<
/el-dialog>--
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"预案附件"
v
-
if
=
"readonly"
prop
=
"iconUrl"
>
<
span
...
...
@@ -223,20 +220,16 @@
<!--
<
editor
v
-
model
=
"form.planContents"
style
=
"height: 300px;"
readonly
=
"false"
/>-->
<
editor
v
-
if
=
"isOpen"
id
=
"editor"
v
-
model
=
"form.planContents"
:
min
-
height
=
"300"
:
readOnly
=
"readonly"
/>
<
/div
>
<
/div
>
<!--
<
el
-
form
-
item
label
=
"所属企业名称"
prop
=
"beyondEnterpriseName"
>-->
<!--
<
el
-
input
v
-
model
=
"form.beyondEnterpriseName"
placeholder
=
"请输入所属企业名称"
/>-->
<!--
<
/el-form-item>--
>
<
/div>
<
/el-form
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
el
-
button
type
=
"primary"
v
-
if
=
"!readonly"
@
click
=
"submitForm"
>
确
定
<
/el-button
>
<
el
-
button
@
click
=
"cancel"
>
取
消
<
/el-button
>
<
/div
>
<
/el-dialog
>
<!--
详情
-->
<
DetailInfo
ref
=
"detail"
/>
<
/div
>
<
/template
>
...
...
@@ -244,11 +237,12 @@
import
{
listPlanInfo
,
getPlanInfo
,
delPlanInfo
,
addPlanInfo
,
updatePlanInfo
,
exportPlanInfo
,
enterpriseList
}
from
"@/api/system/planInfo"
;
import
Editor
from
'@/components/Editor'
;
import
FileUpload
from
'@/components/FileUpload'
;
import
DetailInfo
from
"./DetailInfo"
;
let
uploadfile
=
require
(
"@/assets/uploadfile.png"
);
export
default
{
name
:
"PlanInfo"
,
components
:
{
Editor
,
FileUpload
Editor
,
FileUpload
,
DetailInfo
}
,
data
()
{
return
{
...
...
@@ -437,17 +431,19 @@ export default {
this
.
title
=
"添加应急预案"
;
}
,
handleDtail
(
row
){
this
.
readonly
=
true
;
this
.
open
=
true
;
this
.
fileList
=
[];
this
.
reset
();
const
planId
=
row
.
planId
||
this
.
ids
getPlanInfo
(
planId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
title
=
"应急预案详情"
;
this
.
fileList
=
[{
name
:
'附件'
,
url
:
uploadfile
}
];
this
.
fileurl
=
row
.
iconUrl
;
}
);
// this.readonly=true;
// this.open = true;
// this.fileList = [];
// this.reset();
// const planId = row.planId || this.ids
// getPlanInfo(planId).then(response =>
{
// this.form = response.data;
// this.title = "应急预案详情";
// this.fileList = [
{
name
:
'附件'
,
url
:
uploadfile
}
];
// this.fileurl = row.iconUrl;
//
}
);
this
.
$refs
.
detail
.
getDetailInfo
(
row
.
planId
);
}
,
/** 修改按钮操作 */
handleUpdate
(
row
)
{
...
...
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