Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gassafety-progress
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
耿迪迪
gassafety-progress
Commits
0937891a
Commit
0937891a
authored
Feb 14, 2022
by
王晓倩
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
台账管理详情bug修复
parent
48b21ea8
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
281 additions
and
204 deletions
+281
-204
index.vue
...typrogress-web/src/views/standingBook/equipment/index.vue
+142
-117
index.vue
...afetyprogress-web/src/views/standingBook/hidden/index.vue
+69
-47
index.vue
...fetyprogress-web/src/views/standingBook/trouble/index.vue
+70
-40
No files found.
gassafetyprogress-web/src/views/standingBook/equipment/index.vue
View file @
0937891a
...
...
@@ -116,9 +116,8 @@
/>
<!-- 添加或修改用户加装安全装置台账对话框 -->
<el-dialog
:title=
"title
"
:visible
.
sync=
"open"
width=
"800px"
append-to-body
@
cancel=
"cancel
"
>
<el-dialog
:title=
"title
1"
:visible
.
sync=
"open1"
width=
"800px"
append-to-body
@
cancel=
"cancel1
"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"120px"
>
<div
v-if=
"title != '用户加装安全装置台账详情'"
>
<el-row>
<el-col
:span=
"11"
>
<el-form-item
label=
"用户名称"
prop=
"userName"
>
...
...
@@ -175,52 +174,54 @@
</el-form-item>
</el-col>
</el-row>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel1"
>
取 消
</el-button>
</div>
</el-dialog>
<div
v-else
>
<el-dialog
:title=
"title2"
:visible
.
sync=
"open2"
width=
"800px"
append-to-body
@
cancel=
"cancel2"
>
<el-form
ref=
"detailForm"
:model=
"detailForm"
label-width=
"120px"
>
<el-row>
<el-col
:span=
"11"
>
<el-form-item
label=
"用户名称:"
>
<font>
{{f
orm.userName}}
</font>
<font>
{{detailF
orm.userName}}
</font>
</el-form-item>
<el-form-item
label=
"身份证号:"
>
<font>
{{f
orm.idCard}}
</font>
<font>
{{detailF
orm.idCard}}
</font>
</el-form-item>
<el-form-item
label=
"品牌名称:"
>
<font
v-if=
"form.brandName != '' && form.brandName != null"
>
{{f
orm.brandName}}
</font>
<font
v-if=
"detailForm.brandName != '' && detailForm.brandName != null"
>
{{detailF
orm.brandName}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"用户编号:"
>
<font
v-if=
"form.userNo != '' && form.userNo != null"
>
{{f
orm.userNo}}
</font>
<font
v-if=
"detailForm.userNo != '' && detailForm.userNo != null"
>
{{detailF
orm.userNo}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
<el-form-item
label=
"联系电话:"
>
<font>
{{f
orm.linkMobile}}
</font>
<font>
{{detailF
orm.linkMobile}}
</font>
</el-form-item>
<el-form-item
label=
"安装时间:"
>
<font>
{{f
orm.installTime}}
</font>
<font>
{{detailF
orm.installTime}}
</font>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-form-item
label=
"详细地址:"
>
<font>
{{f
orm.userAddress}}
</font>
<font>
{{detailF
orm.userAddress}}
</font>
</el-form-item>
</el-row>
<el-row>
<el-form-item
label=
"备注信息:"
>
<font
v-if=
"form.remarks != '' && form.remarks != null"
>
{{f
orm.remarks}}
</font>
<font
v-if=
"detailForm.remarks != '' && detailForm.remarks != null"
>
{{detailF
orm.remarks}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
</div>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
v-if=
"title != '用户加装安全装置台账详情'"
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
</div>
</el-dialog>
</div>
</template>
...
...
@@ -251,9 +252,11 @@ export default {
// 用户加装安全装置台账表格数据
equipmentList
:
[],
// 弹出层标题
title
:
""
,
title1
:
""
,
title2
:
""
,
// 是否显示弹出层
open
:
false
,
open1
:
false
,
open2
:
false
,
// 查询参数
queryParams
:
{
pageNum
:
1
,
...
...
@@ -266,6 +269,7 @@ export default {
},
// 表单参数
form
:
{},
detailForm
:
{},
// 表单校验
rules
:
{
userName
:
[
...
...
@@ -302,12 +306,16 @@ export default {
});
},
// 取消按钮
cancel
()
{
this
.
open
=
false
;
this
.
reset
();
cancel1
()
{
this
.
open1
=
false
;
this
.
reset1
();
},
cancel2
()
{
this
.
open2
=
false
;
this
.
reset2
();
},
// 表单重置
reset
()
{
reset
1
()
{
this
.
form
=
{
safeEquipmentId
:
null
,
userName
:
null
,
...
...
@@ -326,6 +334,25 @@ export default {
};
this
.
resetForm
(
"form"
);
},
reset2
()
{
this
.
detailForm
=
{
safeEquipmentId
:
null
,
userName
:
null
,
userNo
:
null
,
userAddress
:
null
,
idCard
:
null
,
linkMobile
:
null
,
installTime
:
null
,
brandName
:
null
,
createBy
:
null
,
createTime
:
null
,
updateBy
:
null
,
updateTime
:
null
,
isDel
:
null
,
remarks
:
null
};
this
.
resetForm
(
"detailForm"
);
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
...
...
@@ -338,18 +365,17 @@ export default {
},
/** 新增按钮操作 */
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加用户加装安全装置台账"
;
this
.
reset
1
();
this
.
open
1
=
true
;
this
.
title
1
=
"添加用户加装安全装置台账"
;
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
this
.
reset
();
this
.
reset
1
();
getEquipment
(
row
.
safeEquipmentId
).
then
(
response
=>
{
console
.
log
(
"data"
,
response
.
data
);
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"修改用户加装安全装置台账"
;
this
.
open
1
=
true
;
this
.
title
1
=
"修改用户加装安全装置台账"
;
});
},
/** 提交按钮 */
...
...
@@ -404,12 +430,11 @@ export default {
},
/** 详细信息跳转 */
showDetail
(
row
)
{
this
.
reset
();
this
.
reset
2
();
getEquipment
(
row
.
safeEquipmentId
).
then
(
response
=>
{
console
.
log
(
"data"
,
response
.
data
);
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"用户加装安全装置台账详情"
;
this
.
detailForm
=
response
.
data
;
this
.
open2
=
true
;
this
.
title2
=
"用户加装安全装置台账详情"
;
});
},
}
...
...
gassafetyprogress-web/src/views/standingBook/hidden/index.vue
View file @
0937891a
...
...
@@ -131,9 +131,8 @@
/>
<!-- 添加或修改隐患整治台账对话框 -->
<el-dialog
:title=
"title"
:visible
.
sync=
"open"
width=
"800px"
append-to-body
@
cancel=
"cancel
"
>
<el-dialog
:title=
"title1"
:visible
.
sync=
"open1"
width=
"800px"
append-to-body
@
cancel=
"cancel1
"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"120px"
>
<div
v-if=
"title != '隐患整治台账详情'"
>
<el-row>
<el-col
:span=
"11"
>
<el-form-item
label=
"隐患名称"
prop=
"hiddenTitle"
>
...
...
@@ -227,35 +226,41 @@
</el-form-item>
</el-col>
</el-row>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel1"
>
取 消
</el-button>
</div>
</el-dialog>
<div
v-else
>
<el-dialog
:title=
"title2"
:visible
.
sync=
"open2"
width=
"800px"
append-to-body
@
cancel=
"cancel2"
>
<el-form
ref=
"detailForm"
:model=
"detailForm"
label-width=
"120px"
>
<el-row>
<el-col
:span=
"11"
>
<el-form-item
label=
"隐患名称:"
>
<font>
{{
f
orm.hiddenTitle}}
</font>
<font>
{{
detailF
orm.hiddenTitle}}
</font>
</el-form-item>
<el-form-item
label=
"隐患发现人员:"
>
<font>
{{
f
orm.hiddenFindPeople}}
</font>
<font>
{{
detailF
orm.hiddenFindPeople}}
</font>
</el-form-item>
<el-form-item
label=
"隐患位置:"
>
<font>
{{
f
orm.hiddenLocation}}
</font>
<font>
{{
detailF
orm.hiddenLocation}}
</font>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"隐患等级:"
>
<font
v-if=
"
f
orm.hiddenType == '1'"
>
一级隐患
</font>
<font
v-if=
"
f
orm.hiddenType == '2'"
>
二级隐患
</font>
<font
v-if=
"
f
orm.hiddenType == '3'"
>
三级隐患
</font>
<font
v-if=
"
detailF
orm.hiddenType == '1'"
>
一级隐患
</font>
<font
v-if=
"
detailF
orm.hiddenType == '2'"
>
二级隐患
</font>
<font
v-if=
"
detailF
orm.hiddenType == '3'"
>
三级隐患
</font>
</el-form-item>
<el-form-item
label=
"发现时间:"
>
<font>
{{
f
orm.hiddenFindDate}}
</font>
<font>
{{
detailF
orm.hiddenFindDate}}
</font>
</el-form-item>
<el-form-item
label=
"处理方案:"
>
<span
class=
"dbtn"
@
click=
"checkFile(
f
orm.dealPlanUrl)"
v-if=
"
f
orm.dealPlan != ''"
@
click=
"checkFile(
detailF
orm.dealPlanUrl)"
v-if=
"
detailF
orm.dealPlan != ''"
>
<i
class=
"el-icon el-icon-view"
></i>
查看/下载
</span>
...
...
@@ -265,27 +270,22 @@
</el-row>
<el-row>
<el-form-item
label=
"隐患内容:"
>
<font>
{{
f
orm.hiddenContent}}
</font>
<font>
{{
detailF
orm.hiddenContent}}
</font>
</el-form-item>
</el-row>
<el-row>
<el-form-item
label=
"整治情况:"
>
<font
v-if=
"
form.remediation != '' && form.remediation != null"
>
{{f
orm.remediation}}
</font>
<font
v-if=
"
detailForm.remediation != '' && detailForm.remediation != null"
>
{{detailF
orm.remediation}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
<el-row>
<el-form-item
label=
"备注信息:"
>
<font
v-if=
"
form.remarks != '' && form.remarks != null"
>
{{f
orm.remarks}}
</font>
<font
v-if=
"
detailForm.remarks != '' && detailForm.remarks != null"
>
{{detailF
orm.remarks}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
</div>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
v-if=
"title != '隐患整治台账详情'"
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
</div>
</el-dialog>
<GetPos
...
...
@@ -332,9 +332,11 @@ export default {
// 隐患整治台账表格数据
hiddenList
:
[],
// 弹出层标题
title
:
""
,
title1
:
""
,
title2
:
""
,
// 是否显示弹出层
open
:
false
,
open1
:
false
,
open2
:
false
,
// 隐患类型字典
typeOptions
:
[],
// 上传文件列表
...
...
@@ -353,6 +355,7 @@ export default {
},
// 表单参数
form
:
{},
detailForm
:
{},
// 表单校验
rules
:
{
hiddenTitle
:
[
...
...
@@ -368,7 +371,7 @@ export default {
{
required
:
true
,
message
:
"请输入隐患位置"
,
trigger
:
"blur"
},
],
longitude
:
[
{
required
:
true
,
message
:
"请输入经纬度"
,
trigger
:
[
"blur"
,
"change"
]
},
{
required
:
true
,
message
:
"请输入经纬度"
,
trigger
:
"blur"
},
],
hiddenFindPeople
:
[
{
required
:
true
,
message
:
"请输入隐患发现人员"
,
trigger
:
"blur"
},
...
...
@@ -399,14 +402,18 @@ export default {
});
},
// 取消按钮
cancel
()
{
this
.
open
=
false
;
this
.
reset
();
cancel
1
()
{
this
.
open
1
=
false
;
this
.
reset
1
();
this
.
fileList
=
[];
this
.
devicePos
=
[];
},
cancel2
()
{
this
.
open2
=
false
;
this
.
reset2
();
},
// 表单重置
reset
()
{
reset
1
()
{
this
.
form
=
{
hiddenId
:
null
,
hiddenTitle
:
null
,
...
...
@@ -430,6 +437,28 @@ export default {
this
.
fileList
=
[];
this
.
devicePos
=
[];
},
reset2
()
{
this
.
detailForm
=
{
hiddenId
:
null
,
hiddenTitle
:
null
,
hiddenContent
:
null
,
hiddenLocation
:
null
,
longitude
:
null
,
latitude
:
null
,
hiddenType
:
null
,
hiddenFindPeople
:
null
,
hiddenFindDate
:
null
,
dealPlan
:
null
,
remediation
:
null
,
createBy
:
null
,
createTime
:
null
,
updateBy
:
null
,
updateTime
:
null
,
isDel
:
null
,
remarks
:
null
};
this
.
resetForm
(
"detailForm"
);
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
...
...
@@ -442,13 +471,13 @@ export default {
},
/** 新增按钮操作 */
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加隐患整治台账"
;
this
.
reset
1
();
this
.
open
1
=
true
;
this
.
title
1
=
"添加隐患整治台账"
;
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
this
.
reset
();
this
.
reset
1
();
getHidden
(
row
.
hiddenId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
if
(
this
.
form
.
dealPlan
)
{
...
...
@@ -458,8 +487,8 @@ export default {
});
}
this
.
devicePos
=
[
this
.
form
.
longitude
,
this
.
form
.
latitude
];
this
.
open
=
true
;
this
.
title
=
"修改隐患整治台账"
;
this
.
open
1
=
true
;
this
.
title
1
=
"修改隐患整治台账"
;
});
},
/** 提交按钮 */
...
...
@@ -469,13 +498,13 @@ export default {
if
(
this
.
form
.
hiddenId
!=
null
)
{
updateHidden
(
this
.
form
).
then
(
response
=>
{
this
.
msgSuccess
(
"修改成功"
);
this
.
open
=
false
;
this
.
open
1
=
false
;
this
.
getList
();
});
}
else
{
addHidden
(
this
.
form
).
then
(
response
=>
{
this
.
msgSuccess
(
"新增成功"
);
this
.
open
=
false
;
this
.
open
1
=
false
;
this
.
getList
();
});
}
...
...
@@ -514,18 +543,11 @@ export default {
},
/** 详细信息跳转 */
showDetail
(
row
)
{
this
.
reset
();
this
.
reset
2
();
getHidden
(
row
.
hiddenId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
if
(
this
.
form
.
dealPlan
)
{
this
.
fileList
.
push
({
name
:
this
.
form
.
dealPlan
,
url
:
uploadfile
,
});
}
this
.
devicePos
=
[
this
.
form
.
longitude
,
this
.
form
.
latitude
];
this
.
open
=
true
;
this
.
title
=
"隐患整治台账详情"
;
this
.
detailForm
=
response
.
data
;
this
.
open2
=
true
;
this
.
title2
=
"隐患整治台账详情"
;
});
},
checkFile
(
url
)
{
...
...
gassafetyprogress-web/src/views/standingBook/trouble/index.vue
View file @
0937891a
...
...
@@ -130,9 +130,8 @@
/>
<!-- 添加或修改事故台账对话框 -->
<el-dialog
:title=
"title
"
:visible
.
sync=
"open"
width=
"800px"
append-to-body
@
cancel=
"cancel
"
>
<el-dialog
:title=
"title
1"
:visible
.
sync=
"open1"
width=
"800px"
append-to-body
@
cancel=
"cancel1
"
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"120px"
>
<div
v-if=
"title != '燃气事故台账详情'"
>
<el-row>
<el-col
:span=
"11"
>
<el-form-item
label=
"事故名称"
prop=
"troubleName"
>
...
...
@@ -235,68 +234,69 @@
</el-form-item>
</el-col>
</el-row>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel1"
>
取 消
</el-button>
</div>
</el-dialog>
<div
v-else
>
<el-dialog
:title=
"title2"
:visible
.
sync=
"open2"
width=
"800px"
append-to-body
@
cancel=
"cancel2"
>
<el-form
ref=
"detailForm"
:model=
"detailForm"
label-width=
"120px"
>
<el-row>
<el-col
:span=
"11"
>
<el-form-item
label=
"事故名称:"
>
<font>
{{
f
orm.troubleName}}
</font>
<font>
{{
detailF
orm.troubleName}}
</font>
</el-form-item>
<el-form-item
label=
"事故原因:"
>
<font>
{{
f
orm.troubleReason}}
</font>
<font>
{{
detailF
orm.troubleReason}}
</font>
</el-form-item>
<el-form-item
label=
"责任单位:"
>
<font
v-if=
"
form.responsibleUnit != '' && form.responsibleUnit != null"
>
{{f
orm.responsibleUnit}}
</font>
<font
v-if=
"
detailForm.responsibleUnit != '' && detailForm.responsibleUnit != null"
>
{{detailF
orm.responsibleUnit}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"事故类型:"
>
<font
v-if=
"
f
orm.troubleType == '1'"
>
安全生产事故
</font>
<font
v-if=
"
f
orm.troubleType == '2'"
>
非生产安全事故
</font>
<font
v-if=
"
detailF
orm.troubleType == '1'"
>
安全生产事故
</font>
<font
v-if=
"
detailF
orm.troubleType == '2'"
>
非生产安全事故
</font>
</el-form-item>
<el-form-item
label=
"事故地点:"
>
<font>
{{
f
orm.troubleLocation}}
</font>
<font>
{{
detailF
orm.troubleLocation}}
</font>
</el-form-item>
<el-form-item
label=
"责任人员:"
>
<font
v-if=
"
form.responsiblePeople != '' && form.responsiblePeople != null"
>
{{f
orm.responsiblePeople}}
</font>
<font
v-if=
"
detailForm.responsiblePeople != '' && detailForm.responsiblePeople != null"
>
{{detailF
orm.responsiblePeople}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-form-item
label=
"简要经过:"
>
<font
v-if=
"
form.briefProcess != '' && form.briefProcess != null"
>
{{f
orm.briefProcess}}
</font>
<font
v-if=
"
detailForm.briefProcess != '' && detailForm.briefProcess != null"
>
{{detailF
orm.briefProcess}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
<el-row>
<el-col
:span=
"11"
>
<el-form-item
label=
"是否处理:"
>
<font
v-if=
"
f
orm.isDeal == '1'"
>
已处理
</font>
<font
v-if=
"
f
orm.isDeal == '2'"
>
未处理
</font>
<font
v-if=
"
detailF
orm.isDeal == '1'"
>
已处理
</font>
<font
v-if=
"
detailF
orm.isDeal == '2'"
>
未处理
</font>
</el-form-item>
</el-col>
<el-col
:span=
"12"
>
<el-form-item
label=
"处理完成时间:"
>
<font>
{{
f
orm.dealDate}}
</font>
<font>
{{
detailF
orm.dealDate}}
</font>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-form-item
label=
"备注信息:"
>
<font
v-if=
"
form.remarks != '' && form.remarks != null"
>
{{f
orm.remarks}}
</font>
<font
v-if=
"
detailForm.remarks != '' && detailForm.remarks != null"
>
{{detailF
orm.remarks}}
</font>
<font
v-else
>
-
</font>
</el-form-item>
</el-row>
</div>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
v-if=
"title != '燃气事故台账详情'"
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
</div>
</el-dialog>
<GetPos
...
...
@@ -344,9 +344,11 @@ export default {
dialogTableVisible
:
false
,
devicePos
:
[],
// 弹出层标题
title
:
""
,
title1
:
""
,
title2
:
""
,
// 是否显示弹出层
open
:
false
,
open1
:
false
,
open2
:
false
,
// 查询参数
queryParams
:
{
pageNum
:
1
,
...
...
@@ -361,6 +363,7 @@ export default {
},
// 表单参数
form
:
{},
detailForm
:
{},
// 表单校验
rules
:
{
troubleName
:
[
...
...
@@ -373,7 +376,7 @@ export default {
{
required
:
true
,
message
:
"请输入事故地点"
,
trigger
:
"blur"
},
],
longitude
:
[
{
required
:
true
,
message
:
"请输入经纬度"
,
trigger
:
[
"blur"
,
"change"
]
},
{
required
:
true
,
message
:
"请输入经纬度"
,
trigger
:
"blur"
},
],
happenDate
:
[
{
required
:
true
,
message
:
"请选择事故发生时间"
,
trigger
:
"blur"
},
...
...
@@ -410,13 +413,17 @@ export default {
});
},
// 取消按钮
cancel
()
{
this
.
open
=
false
;
this
.
reset
();
cancel
1
()
{
this
.
open
1
=
false
;
this
.
reset
1
();
this
.
devicePos
=
[];
},
cancel2
()
{
this
.
open2
=
false
;
this
.
reset2
();
},
// 表单重置
reset
()
{
reset
1
()
{
this
.
form
=
{
troubleId
:
null
,
troubleName
:
null
,
...
...
@@ -441,6 +448,30 @@ export default {
this
.
resetForm
(
"form"
);
this
.
devicePos
=
[];
},
reset2
()
{
this
.
detailForm
=
{
troubleId
:
null
,
troubleName
:
null
,
troubleLocation
:
null
,
longitude
:
null
,
latitude
:
null
,
troubleType
:
null
,
briefProcess
:
null
,
troubleReason
:
null
,
responsibleUnit
:
null
,
responsiblePeople
:
null
,
isDeal
:
null
,
happenDate
:
null
,
dealDate
:
null
,
createBy
:
null
,
createTime
:
null
,
updateBy
:
null
,
updateTime
:
null
,
isDel
:
null
,
remarks
:
null
};
this
.
resetForm
(
"detailForm"
);
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
...
...
@@ -453,18 +484,18 @@ export default {
},
/** 新增按钮操作 */
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加燃气事故台账"
;
this
.
reset
1
();
this
.
open
1
=
true
;
this
.
title
1
=
"添加燃气事故台账"
;
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
this
.
reset
();
this
.
reset
1
();
getTrouble
(
row
.
troubleId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
devicePos
=
[
this
.
form
.
longitude
,
this
.
form
.
latitude
];
this
.
open
=
true
;
this
.
title
=
"修改燃气事故台账"
;
this
.
open
1
=
true
;
this
.
title
1
=
"修改燃气事故台账"
;
});
},
/** 提交按钮 */
...
...
@@ -519,12 +550,11 @@ export default {
},
/** 详细信息跳转 */
showDetail
(
row
)
{
this
.
reset
();
this
.
reset
2
();
getTrouble
(
row
.
troubleId
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
devicePos
=
[
this
.
form
.
longitude
,
this
.
form
.
latitude
];
this
.
open
=
true
;
this
.
title
=
"燃气事故台账详情"
;
this
.
detailForm
=
response
.
data
;
this
.
open2
=
true
;
this
.
title2
=
"燃气事故台账详情"
;
});
},
MapdialogFun
()
{
...
...
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