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
5ef36e23
Commit
5ef36e23
authored
Feb 14, 2022
by
耿迪迪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
任务下发 gengdidi
parent
d2426e87
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
196 additions
and
65 deletions
+196
-65
index.vue
...ogress-web/src/views/operationMonitor/workOrder/index.vue
+196
-65
No files found.
gassafetyprogress-web/src/views/operationMonitor/workOrder/index.vue
View file @
5ef36e23
...
@@ -20,9 +20,10 @@
...
@@ -20,9 +20,10 @@
</el-form-item>
</el-form-item>
<el-form-item
label=
"任务状态"
prop=
"workStatus"
>
<el-form-item
label=
"任务状态"
prop=
"workStatus"
>
<el-select
v-model=
"queryParams.workStatus"
placeholder=
"请选择任务状态"
clearable
size=
"small"
>
<el-select
v-model=
"queryParams.workStatus"
placeholder=
"请选择任务状态"
clearable
size=
"small"
>
<el-option
label=
"派发中"
value=
"1"
/>
<el-option
label=
"派发中"
value=
"0"
/>
<el-option
label=
"反馈"
value=
"2"
/>
<el-option
label=
"已接单"
value=
"1"
/>
<el-option
label=
"归档"
value=
"3"
/>
<el-option
label=
"已反馈"
value=
"2"
/>
<el-option
label=
"已归档"
value=
"3"
/>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
<el-form-item>
<el-form-item>
...
@@ -92,12 +93,13 @@
...
@@ -92,12 +93,13 @@
<!-- <el-table-column label="任务内容" align="center" prop="workContent" />-->
<!-- <el-table-column label="任务内容" align="center" prop="workContent" />-->
<el-table-column
label=
"创建单位"
align=
"center"
prop=
"workCreateEnterpriseName"
/>
<el-table-column
label=
"创建单位"
align=
"center"
prop=
"workCreateEnterpriseName"
/>
<el-table-column
label=
"指派单位"
align=
"center"
prop=
"workAssignEnterproseName"
/>
<el-table-column
label=
"指派单位"
align=
"center"
prop=
"workAssignEnterproseName"
/>
<el-table-column
label=
"指派人"
align=
"center"
prop=
"workAssignMan
Id
"
/>
<el-table-column
label=
"指派人"
align=
"center"
prop=
"workAssignMan"
/>
<el-table-column
label=
"任务状态"
align=
"center"
prop=
"workStatus"
>
<el-table-column
label=
"任务状态"
align=
"center"
prop=
"workStatus"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.workStatus == 1"
>
派发中
</span>
<span
v-if=
"scope.row.workStatus == 0"
>
派发中
</span>
<span
v-if=
"scope.row.workStatus == 2"
>
反馈
</span>
<span
v-if=
"scope.row.workStatus == 1"
>
已接单
</span>
<span
v-if=
"scope.row.workStatus == 3"
>
归档
</span>
<span
v-if=
"scope.row.workStatus == 2"
>
已反馈
</span>
<span
v-if=
"scope.row.workStatus == 3"
>
已归档
</span>
</
template
>
</
template
>
</el-table-column>
>
</el-table-column>
>
<!--<el-table-column label="巡检时间" align="center" prop="inspectionDate" width="180">
<!--<el-table-column label="巡检时间" align="center" prop="inspectionDate" width="180">
...
@@ -145,25 +147,25 @@
...
@@ -145,25 +147,25 @@
@
click
=
"handleDelete(scope.row)"
@
click
=
"handleDelete(scope.row)"
v
-
hasPermi
=
"['system:order:remove']"
v
-
hasPermi
=
"['system:order:remove']"
>
删除
<
/el-button
>
>
删除
<
/el-button
>
<
el
-
button
v
-
if
=
"'inpector'!= roleType
&& (scope.row.workAssignManId == '' || scope.row.workAssignManId == null) && scope.row.workStatus == '1
'"
<
el
-
button
v
-
if
=
"'inpector'!= roleType
&& (scope.row.workAssignManId == '' || scope.row.workAssignManId == null) && scope.row.workStatus == '0
'"
size
=
"mini"
size
=
"mini"
type
=
"text"
type
=
"text"
icon
=
"el-icon-edit"
icon
=
"el-icon-edit"
@
click
=
"workIssue(scope.row)"
@
click
=
"workIssue(scope.row)"
>
任务下发
<
/el-button
>
>
任务下发
<
/el-button
>
<
el
-
button
v
-
if
=
" 'inpector'== roleType && scope.row.workStatus == '
1
'"
<
el
-
button
v
-
if
=
" 'inpector'== roleType && scope.row.workStatus == '
0
'"
size
=
"mini"
size
=
"mini"
type
=
"text"
type
=
"text"
icon
=
"el-icon-edit"
icon
=
"el-icon-edit"
@
click
=
"takingOrder(scope.row)"
@
click
=
"takingOrder(scope.row)"
>
接单
<
/el-button
>
>
接单
<
/el-button
>
<
el
-
button
v
-
if
=
"'zhengfu'!= roleType && scope.row.workStatus == '
2
'"
<
el
-
button
v
-
if
=
"'zhengfu'!= roleType && scope.row.workStatus == '
1
'"
size
=
"mini"
size
=
"mini"
type
=
"text"
type
=
"text"
icon
=
"el-icon-edit"
icon
=
"el-icon-edit"
@
click
=
"feedbookWork(scope.row)"
@
click
=
"feedbookWork(scope.row)"
>
反馈
<
/el-button
>
>
反馈
<
/el-button
>
<
el
-
button
v
-
if
=
"'zhengfu'!= roleType && scope.row.workStatus == '
3
'"
<
el
-
button
v
-
if
=
"'zhengfu'!= roleType && scope.row.workStatus == '
2
'"
size
=
"mini"
size
=
"mini"
type
=
"text"
type
=
"text"
icon
=
"el-icon-edit"
icon
=
"el-icon-edit"
...
@@ -182,7 +184,7 @@
...
@@ -182,7 +184,7 @@
/>
/>
<!--
添加或修改燃气任务对话框
-->
<!--
添加或修改燃气任务对话框
-->
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"open"
width
=
"900px"
append
-
to
-
body
>
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"open"
width
=
"900px"
@
closed
=
"dialogClose"
@
open
=
"dialogOpen"
>
<
el
-
form
ref
=
"form"
:
model
=
"form"
:
rules
=
"rules"
label
-
width
=
"80px"
>
<
el
-
form
ref
=
"form"
:
model
=
"form"
:
rules
=
"rules"
label
-
width
=
"80px"
>
<
el
-
row
>
<
el
-
row
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
...
@@ -192,7 +194,7 @@
...
@@ -192,7 +194,7 @@
<
/el-col
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"任务类型"
prop
=
"workType"
>
<
el
-
form
-
item
label
=
"任务类型"
prop
=
"workType"
>
<
el
-
select
v
-
model
=
"form.workType"
placeholder
=
"请选择任务类型"
style
=
"width: 350px"
@
change
=
"selectWorkType($event)"
:
disabled
=
"isDetail"
>
<
el
-
select
v
-
model
=
"form.workType"
placeholder
=
"请选择任务类型"
style
=
"width: 350px"
:
disabled
=
"isDetail"
>
<
el
-
option
label
=
"入户安检"
value
=
"1"
/>
<
el
-
option
label
=
"入户安检"
value
=
"1"
/>
<
el
-
option
label
=
"巡检"
value
=
"2"
/>
<
el
-
option
label
=
"巡检"
value
=
"2"
/>
<
el
-
option
label
=
"报警巡查"
value
=
"3"
/>
<
el
-
option
label
=
"报警巡查"
value
=
"3"
/>
...
@@ -201,8 +203,10 @@
...
@@ -201,8 +203,10 @@
<
/el-form-item
>
<
/el-form-item
>
<
/el-col
>
<
/el-col
>
<
/el-row
>
<
/el-row
>
<
el
-
form
-
item
label
=
"任务内容"
>
<
el
-
form
-
item
label
=
"任务内容"
prop
=
"workContent"
>
<
editor
v
-
model
=
"form.workContent"
:
min
-
height
=
"192"
:
readOnly
=
"isDetail"
/>
<!--
<
editor
v
-
model
=
"form.workContent"
:
min
-
height
=
"192"
:
readOnly
=
"!s"
/>-->
<
editor
v
-
if
=
"isOpen"
v
-
model
=
"form.workContent"
:
min
-
height
=
"192"
:
readOnly
=
"isDetail"
/>
<
/el-form-item
>
<
/el-form-item
>
<
el
-
row
>
<
el
-
row
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
...
@@ -219,9 +223,9 @@
...
@@ -219,9 +223,9 @@
<
/el-form-item
>
<
/el-form-item
>
<
/el-col
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"指派人"
prop
=
"workAssignMan
Id
"
>
<
el
-
form
-
item
label
=
"指派人"
prop
=
"workAssignMan"
>
<!--
<
el
-
input
v
-
model
=
"form.workAssignManId"
placeholder
=
"请输入指派人"
/>-->
<!--
<
el
-
input
v
-
model
=
"form.workAssignManId"
placeholder
=
"请输入指派人"
/>-->
<
el
-
select
v
-
model
=
"form.workAssignManId"
placeholder
=
"请输入指派人"
style
=
"width: 350px"
@
change
=
"selectInspection($event)"
:
disabled
=
"isDetail"
>
<
el
-
select
v
-
model
=
"form.workAssignManId"
placeholder
=
"请输入指派人"
style
=
"width: 350px"
@
change
=
"selectInspection($event
,'edit'
)"
:
disabled
=
"isDetail"
>
<
el
-
option
<
el
-
option
v
-
for
=
"item in inspectors"
v
-
for
=
"item in inspectors"
:
key
=
"item.userId "
:
key
=
"item.userId "
...
@@ -239,7 +243,7 @@
...
@@ -239,7 +243,7 @@
<
/el-form-item
>
<
/el-form-item
>
<
/el-col
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"巡检时间"
prop
=
"inspectionDate"
v
-
show
=
inspectorInfoIsShow
>
<
el
-
form
-
item
label
=
"巡检时间"
prop
=
"inspectionDate"
v
-
show
=
"form.workType=='2'"
>
<
el
-
date
-
picker
clearable
size
=
"small"
<
el
-
date
-
picker
clearable
size
=
"small"
v
-
model
=
"form.inspectionDate"
v
-
model
=
"form.inspectionDate"
type
=
"date"
type
=
"date"
...
@@ -250,13 +254,16 @@
...
@@ -250,13 +254,16 @@
<
/el-col
>
<
/el-col
>
<
/el-row
>
<
/el-row
>
<
el
-
form
-
item
label
=
"巡检路线"
prop
=
"inspectionRoute"
v
-
show
=
inspectorInfoIsShow
>
<
el
-
form
-
item
label
=
"巡检路线"
prop
=
"inspectionRoute"
v
-
show
=
"form.workType=='2'"
>
<
el
-
input
v
-
model
=
"form.inspectionRoute"
type
=
"textarea"
placeholder
=
"请输入巡检路线"
:
disabled
=
"isDetail"
/>
<
el
-
input
v
-
model
=
"form.inspectionRoute"
type
=
"textarea"
placeholder
=
"请输入巡检路线"
:
disabled
=
"isDetail"
/>
<
/el-form-item
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"问题描述"
prop
=
"problemDescription"
>
<
el
-
form
-
item
label
=
"问题描述"
prop
=
"problemDescription"
>
<
el
-
input
v
-
model
=
"form.problemDescription"
type
=
"textarea"
placeholder
=
"请输入问题描述"
:
disabled
=
"isDetail"
/>
<
el
-
input
v
-
model
=
"form.problemDescription"
type
=
"textarea"
placeholder
=
"请输入问题描述"
:
disabled
=
"isDetail"
/>
<
/el-form-item
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"问题图片"
prop
=
"iconUrl"
>
<
el
-
form
-
item
label
=
"整改方案"
prop
=
"rectificationPlan"
v
-
show
=
"form.workType=='3' && isDetail && (form.workStatus =='2' || form.workStatus =='3')"
>
<
el
-
input
v
-
model
=
"form.rectificationPlan"
type
=
"textarea"
placeholder
=
"请输入整改方案"
:
disabled
=
"isDetail"
/>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"反馈图片"
prop
=
"iconUrl"
v
-
show
=
"isDetail && (form.workStatus =='2' || form.workStatus =='3')"
>
<
MyFileUpload
<
MyFileUpload
listType
=
"picture-card"
listType
=
"picture-card"
@
resFun
=
"getFileInfo"
@
resFun
=
"getFileInfo"
...
@@ -266,12 +273,9 @@
...
@@ -266,12 +273,9 @@
/>
/>
<
el
-
input
v
-
show
=
"false"
disabled
v
-
model
=
"form.iconUrl"
><
/el-input
>
<
el
-
input
v
-
show
=
"false"
disabled
v
-
model
=
"form.iconUrl"
><
/el-input
>
<
/el-form-item
>
<
/el-form-item
>
<!--
<
el
-
form
-
item
label
=
"整改方案"
prop
=
"rectificationPlan
"
>
<
el
-
form
-
item
label
=
"反馈信息"
prop
=
"rectificationResult"
v
-
show
=
"isDetail && (form.workStatus =='2' || form.workStatus =='3')
"
>
<
el
-
input
v
-
model
=
"form.rectification
Plan"
type
=
"textarea"
placeholder
=
"请输入整改方案"
/>
<
el
-
input
v
-
model
=
"form.rectification
Result"
type
=
"textarea"
placeholder
=
"请输入整改结果"
:
disabled
=
"isDetail"
/>
<
/el-form-item
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"整改结果"
prop
=
"rectificationResult"
>
<
el
-
input
v
-
model
=
"form.rectificationResult"
type
=
"textarea"
placeholder
=
"请输入整改结果"
/>
<
/el-form-item>--
>
<
el
-
row
>
<
el
-
row
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"责任单位"
prop
=
"responsibleUnit"
>
<
el
-
form
-
item
label
=
"责任单位"
prop
=
"responsibleUnit"
>
...
@@ -295,27 +299,26 @@
...
@@ -295,27 +299,26 @@
<
/el-form-item
>
<
/el-form-item
>
<
/el-form
>
<
/el-form
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
el
-
button
type
=
"primary"
@
click
=
"submitForm"
>
确
定
<
/el-button
>
<
el
-
button
type
=
"primary"
@
click
=
"submitForm"
v
-
show
=
"!isDetail"
>
确
定
<
/el-button
>
<
el
-
button
@
click
=
"cancel"
>
取
消
<
/el-button
>
<
el
-
button
@
click
=
"cancel"
>
取
消
<
/el-button
>
<
/div
>
<
/div
>
<
/el-dialog
>
<
/el-dialog
>
<!--
任务下发
-->
<!--
任务下发
-->
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"workOpen"
width
=
"900px"
append
-
to
-
body
>
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"workOpen"
width
=
"900px"
append
-
to
-
body
>
<
el
-
form
ref
=
"workForm"
:
model
=
"workForm"
:
rules
=
"
r
ules"
label
-
width
=
"80px"
>
<
el
-
form
ref
=
"workForm"
:
model
=
"workForm"
:
rules
=
"
workR
ules"
label
-
width
=
"80px"
>
<
el
-
row
>
<
el
-
row
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"任务标题"
prop
=
"workTitle"
>
<
el
-
form
-
item
label
=
"任务标题"
prop
=
"workTitle"
>
<
el
-
input
v
-
model
=
"workForm.workTitle"
placeholder
=
"请输入任务标题"
/>
<!--
<
el
-
input
v
-
model
=
"workForm.workTitle"
placeholder
=
"请输入任务标题"
/>-->
<
span
>
{{
workForm
.
workTitle
}}
<
/span
>
<
/el-form-item
>
<
/el-form-item
>
<
/el-col
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"任务类型"
prop
=
"workType"
>
<
el
-
form
-
item
label
=
"任务类型"
prop
=
"workType"
>
<
el
-
select
v
-
model
=
"workForm.workType"
placeholder
=
"请选择任务类型"
style
=
"width: 350px"
@
change
=
"selectWorkType($event)"
>
<
span
v
-
if
=
"workForm.workType == '1'"
>
入户安检
<
/span
>
<
el
-
option
label
=
"入户安检"
value
=
"1"
/>
<
span
v
-
if
=
"workForm.workType == '2'"
>
巡检
<
/span
>
<
el
-
option
label
=
"巡检"
value
=
"2"
/>
<
span
v
-
if
=
"workForm.workType == '3'"
>
报警巡查
<
/span
>
<
el
-
option
label
=
"报警巡查"
value
=
"3"
/>
<
span
v
-
if
=
"workForm.workType == '4'"
>
其他
<
/span
>
<
el
-
option
label
=
"其他"
value
=
"4"
/>
<
/el-select
>
<
/el-form-item
>
<
/el-form-item
>
<
/el-col
>
<
/el-col
>
<
/el-row
>
<
/el-row
>
...
@@ -335,9 +338,9 @@
...
@@ -335,9 +338,9 @@
<
/el-form-item
>
<
/el-form-item
>
<
/el-col
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"指派人"
prop
=
"workAssignMan
Id
"
>
<
el
-
form
-
item
label
=
"指派人"
prop
=
"workAssignMan"
>
<!--
<
el
-
input
v
-
model
=
"form.workAssignManId"
placeholder
=
"请输入指派人"
/>-->
<!--
<
el
-
input
v
-
model
=
"form.workAssignManId"
placeholder
=
"请输入指派人"
/>-->
<
el
-
select
v
-
model
=
"workForm.workAssignManId"
placeholder
=
"请输入指派人"
style
=
"width: 350px"
@
change
=
"selectInspection($event)"
>
<
el
-
select
v
-
model
=
"workForm.workAssignManId"
placeholder
=
"请输入指派人"
style
=
"width: 350px"
@
change
=
"selectInspection($event
,'work'
)"
>
<
el
-
option
<
el
-
option
v
-
for
=
"item in inspectors"
v
-
for
=
"item in inspectors"
:
key
=
"item.userId "
:
key
=
"item.userId "
...
@@ -350,31 +353,34 @@
...
@@ -350,31 +353,34 @@
<
/el-row
>
<
/el-row
>
<
/el-form
>
<
/el-form
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
el
-
button
type
=
"primary"
@
click
=
"submitForm"
>
确
定
<
/el-button
>
<
el
-
button
type
=
"primary"
@
click
=
"submit
Work
Form"
>
确
定
<
/el-button
>
<
el
-
button
@
click
=
"cancel"
>
取
消
<
/el-button
>
<
el
-
button
@
click
=
"cancel
WorkForm
"
>
取
消
<
/el-button
>
<
/div
>
<
/div
>
<
/el-dialog
>
<
/el-dialog
>
<!--
反馈
-->
<!--
反馈
-->
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"feedBookOpen"
width
=
"900px"
append
-
to
-
body
>
<
el
-
dialog
:
title
=
"title"
:
visible
.
sync
=
"feedBookOpen"
width
=
"900px"
append
-
to
-
body
>
<
el
-
form
ref
=
"feedBookForm"
:
model
=
"feedBookForm"
:
rules
=
"
r
ules"
label
-
width
=
"80px"
>
<
el
-
form
ref
=
"feedBookForm"
:
model
=
"feedBookForm"
:
rules
=
"
feedBookR
ules"
label
-
width
=
"80px"
>
<
el
-
row
>
<
el
-
row
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"任务标题"
prop
=
"workTitle"
>
<
el
-
form
-
item
label
=
"任务标题"
prop
=
"workTitle"
>
<
el
-
input
v
-
model
=
"feedBookForm.workTitle"
placeholder
=
"请输入任务标题"
/>
<!--
<
el
-
input
v
-
model
=
"feedBookForm.workTitle"
placeholder
=
"请输入任务标题"
/>-->
<
span
>
{{
feedBookForm
.
workTitle
}}
<
/span
>
<
/el-form-item
>
<
/el-form-item
>
<
/el-col
>
<
/el-col
>
<
el
-
col
:
span
=
"12"
>
<
el
-
col
:
span
=
"12"
>
<
el
-
form
-
item
label
=
"任务类型"
prop
=
"workType"
>
<
el
-
form
-
item
label
=
"任务类型"
prop
=
"workType"
>
<
el
-
select
v
-
model
=
"feedBookForm.workType"
placeholder
=
"请选择任务类型"
style
=
"width: 350px"
@
change
=
"selectWorkType($event)"
>
<
span
v
-
if
=
"feedBookForm.workType == '1'"
>
入户安检
<
/span
>
<
el
-
option
label
=
"入户安检"
value
=
"1"
/>
<
span
v
-
if
=
"feedBookForm.workType == '2'"
>
巡检
<
/span
>
<
el
-
option
label
=
"巡检"
value
=
"2"
/>
<
span
v
-
if
=
"feedBookForm.workType == '3'"
>
报警巡查
<
/span
>
<
el
-
option
label
=
"报警巡查"
value
=
"3"
/>
<
span
v
-
if
=
"feedBookForm.workType == '4'"
>
其他
<
/span
>
<
el
-
option
label
=
"其他"
value
=
"4"
/>
<
/el-select
>
<
/el-form-item
>
<
/el-form-item
>
<
/el-col
>
<
/el-col
>
<
/el-row
>
<
/el-row
>
<
el
-
form
-
item
label
=
"整改方案"
prop
=
"rectificationPlan"
v
-
show
=
"feedBookForm.workType=='3'"
>
<
el
-
input
v
-
model
=
"form.rectificationPlan"
type
=
"textarea"
placeholder
=
"请输入整改方案"
/>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"反馈图片"
prop
=
"iconUrl"
>
<
el
-
form
-
item
label
=
"反馈图片"
prop
=
"iconUrl"
>
<
MyFileUpload
<
MyFileUpload
listType
=
"picture-card"
listType
=
"picture-card"
...
@@ -392,8 +398,8 @@
...
@@ -392,8 +398,8 @@
<
/el-form
>
<
/el-form
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
div
slot
=
"footer"
class
=
"dialog-footer"
>
<
el
-
button
type
=
"primary"
@
click
=
"submitForm"
>
确
定
<
/el-button
>
<
el
-
button
type
=
"primary"
@
click
=
"submitF
eedBookF
orm"
>
确
定
<
/el-button
>
<
el
-
button
@
click
=
"cancel"
>
取
消
<
/el-button
>
<
el
-
button
@
click
=
"cancel
FeedBook
"
>
取
消
<
/el-button
>
<
/div
>
<
/div
>
<
/el-dialog
>
<
/el-dialog
>
<
/div
>
<
/div
>
...
@@ -405,14 +411,17 @@ import Editor from '@/components/Editor';
...
@@ -405,14 +411,17 @@ import Editor from '@/components/Editor';
import
MyFileUpload
from
'@/components/MyFileUpload'
;
import
MyFileUpload
from
'@/components/MyFileUpload'
;
import
{
enterpriseLists
}
from
"@/api/regulation/info"
;
import
{
enterpriseLists
}
from
"@/api/regulation/info"
;
import
{
getInspectionUsers
}
from
"@/api/system/user"
;
import
{
getInspectionUsers
}
from
"@/api/system/user"
;
import
ScrollPane
from
"../../../layout/components/TagsView/ScrollPane"
;
export
default
{
export
default
{
name
:
"Order"
,
name
:
"Order"
,
components
:
{
components
:
{
ScrollPane
,
Editor
,
Editor
,
MyFileUpload
MyFileUpload
}
,
}
,
data
()
{
data
()
{
return
{
return
{
isOpen
:
false
,
// 遮罩层
// 遮罩层
loading
:
true
,
loading
:
true
,
// 导出遮罩层
// 导出遮罩层
...
@@ -473,8 +482,40 @@ export default {
...
@@ -473,8 +482,40 @@ export default {
form
:
{
}
,
form
:
{
}
,
// 表单校验
// 表单校验
rules
:
{
rules
:
{
workTitle
:
[
{
required
:
true
,
message
:
"任务标题"
,
trigger
:
"blur"
}
],
workType
:
[
{
required
:
true
,
message
:
"任务类型"
,
trigger
:
"blur"
}
],
workContent
:
[
{
required
:
true
,
message
:
"任务内容"
,
trigger
:
"blur"
}
],
workAssignEnterproseName
:
[
{
required
:
true
,
message
:
"指派单位"
,
trigger
:
"blur"
}
],
expiryDate
:
[
{
required
:
true
,
message
:
"截止时间"
,
trigger
:
"blur"
}
]
}
,
//任务下发表单校验
workRules
:
{
workAssignEnterproseName
:
[
{
required
:
true
,
message
:
"指派单位"
,
trigger
:
"blur"
}
],
workAssignMan
:
[
{
required
:
true
,
message
:
"指派人"
,
trigger
:
"blur"
}
]
}
,
//反馈校验
feedBookRules
:
{
iconUrl
:
[
{
required
:
true
,
message
:
"指派单位"
,
trigger
:
"blur"
}
],
rectificationResult
:
[
{
required
:
true
,
message
:
"指派人"
,
trigger
:
"blur"
}
]
}
,
}
,
inspectorInfoIsShow
:
false
,
roleType
:
"zhengfu"
,
roleType
:
"zhengfu"
,
workForm
:{
}
,
workForm
:{
}
,
workOpen
:
false
,
workOpen
:
false
,
...
@@ -483,6 +524,9 @@ export default {
...
@@ -483,6 +524,9 @@ export default {
}
;
}
;
}
,
}
,
created
()
{
created
()
{
window
.
func
=
()
=>
{
this
.
isDetail
=!
this
.
isDetail
;
}
this
.
getList
();
this
.
getList
();
let
enterpriseId
=
this
.
$store
.
state
.
user
.
enterpriseId
;
let
enterpriseId
=
this
.
$store
.
state
.
user
.
enterpriseId
;
let
post
=
this
.
$store
.
state
.
user
.
posts
.
find
(
item
=>
item
.
postCode
===
"se"
);
let
post
=
this
.
$store
.
state
.
user
.
posts
.
find
(
item
=>
item
.
postCode
===
"se"
);
...
@@ -496,6 +540,13 @@ export default {
...
@@ -496,6 +540,13 @@ export default {
}
,
}
,
methods
:
{
methods
:
{
dialogClose
(){
this
.
isOpen
=
false
;
}
,
dialogOpen
(){
this
.
isOpen
=
true
;
}
,
/** 查询燃气任务列表 */
/** 查询燃气任务列表 */
getList
()
{
getList
()
{
this
.
loading
=
true
;
this
.
loading
=
true
;
...
@@ -562,6 +613,7 @@ export default {
...
@@ -562,6 +613,7 @@ export default {
handleAdd
()
{
handleAdd
()
{
this
.
reset
();
this
.
reset
();
this
.
open
=
true
;
this
.
open
=
true
;
this
.
isDetail
=
false
;
this
.
title
=
"添加燃气任务"
;
this
.
title
=
"添加燃气任务"
;
this
.
getEnterpriseLists
();
this
.
getEnterpriseLists
();
}
,
}
,
...
@@ -576,6 +628,7 @@ export default {
...
@@ -576,6 +628,7 @@ export default {
this
.
title
=
"修改燃气任务"
;
this
.
title
=
"修改燃气任务"
;
}
);
}
);
this
.
getEnterpriseLists
();
this
.
getEnterpriseLists
();
this
.
getInspectionUserList
(
row
.
workAssignEnterproseId
);
}
,
}
,
/** 提交按钮 */
/** 提交按钮 */
submitForm
()
{
submitForm
()
{
...
@@ -657,32 +710,51 @@ export default {
...
@@ -657,32 +710,51 @@ export default {
this
.
form
.
workAssignEnterproseName
=
enterpriseName
;
this
.
form
.
workAssignEnterproseName
=
enterpriseName
;
}
,
}
,
//获取指派人
//获取指派人
selectInspection
(
userId
){
selectInspection
(
userId
,
type
){
let
userName
=
this
.
inspectors
.
find
(
val
=>
val
.
userId
==
userId
).
userName
;
let
userName
=
this
.
inspectors
.
find
(
val
=>
val
.
userId
==
userId
).
userName
;
if
(
"edit"
==
type
){
this
.
form
.
workAssignMan
=
userName
;
this
.
form
.
workAssignMan
=
userName
;
}
else
{
this
.
workForm
.
workAssignMan
=
userName
;
}
}
,
}
,
//选择任务类型
/
*/
/选择任务类型
selectWorkType(workType){
selectWorkType(workType){
if("2" == workType){
if("2" == workType){
this.inspectorInfoIsShow = true;
this.inspectorInfoIsShow = true;
}
else{
}
else{
this.inspectorInfoIsShow = false;
this.inspectorInfoIsShow = false;
}
}
}
,
}
,
*/
//详情
//详情
workDetail
(
row
){
workDetail
(
row
){
this
.
isDetail
=
true
;
this
.
open
=
true
;
this
.
open
=
true
;
this
.
title
=
"燃气任务详情"
;
this
.
title
=
"燃气任务详情"
;
this
.
isDetail
=
true
;
this
.
form
=
row
;
this
.
form
=
row
;
this
.
getEnterpriseLists
();
this
.
getEnterpriseLists
();
}
,
}
,
//任务下发
//任务下发
workIssue
(
row
){
workIssue
(
row
){
this
.
title
=
"任务下发"
;
this
.
title
=
"任务下发"
;
this
.
workForm
=
row
;
this
.
workForm
.
workId
=
row
.
workId
;
this
.
workForm
.
workTitle
=
row
.
workTitle
;
this
.
workForm
.
workType
=
row
.
workType
;
if
(
row
.
workAssignEnterproseId
){
this
.
workForm
.
workAssignEnterproseId
=
row
.
workAssignEnterproseId
;
this
.
workForm
.
workAssignEnterproseName
=
row
.
workAssignEnterproseName
;
}
if
(
row
.
workAssignManId
){
this
.
workForm
.
workAssignManId
=
row
.
workAssignManId
;
this
.
workForm
.
workAssignMan
=
row
.
workAssignMan
;
}
//this.workForm = row;
this
.
workForm
.
workStatus
=
'1'
;
this
.
workOpen
=
true
;
this
.
workOpen
=
true
;
this
.
getEnterpriseLists
();
this
.
getEnterpriseLists
();
this
.
getInspectionUserList
(
row
.
workAssignEnterproseId
);
}
,
}
,
//接单
//接单
takingOrder
(
row
){
takingOrder
(
row
){
...
@@ -691,18 +763,34 @@ export default {
...
@@ -691,18 +763,34 @@ export default {
cancelButtonText
:
"取消"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
type
:
"warning"
}
).
then
(()
=>
{
}
).
then
(()
=>
{
/* this.exportLoading = true;
this
.
workForm
=
{
}
;
return exportOrder(queryParams);*/
this
.
workForm
.
workId
=
row
.
workId
;
this
.
workForm
.
workStatus
=
'1'
;
if
(
this
.
workForm
.
workId
!=
null
)
{
updateOrder
(
this
.
workForm
);
}
}
).
then
(
response
=>
{
}
).
then
(
response
=>
{
/* this.download(response.msg
);
this
.
getList
(
);
this.
exportLoading = false;*/
this
.
msgSuccess
(
"接单成功"
);
}
).
catch
(()
=>
{
}
);
}
).
catch
(()
=>
{
}
);
}
,
}
,
//反馈
//反馈
feedbookWork
(
row
){
feedbookWork
(
row
){
this
.
title
=
"反馈信息"
;
this
.
title
=
"反馈信息"
;
this
.
feedBookOpen
=
true
;
this
.
feedBookOpen
=
true
;
this
.
feedBookForm
=
row
;
this
.
feedBookForm
.
workId
=
row
.
workId
;
this
.
feedBookForm
.
workTitle
=
row
.
workTitle
;
this
.
feedBookForm
.
workType
=
row
.
workType
;
if
(
row
.
iconUrl
){
this
.
feedBookForm
.
iconUrl
=
row
.
iconUrl
;
}
if
(
row
.
rectificationPlan
){
this
.
feedBookForm
.
rectificationPlan
=
row
.
rectificationPlan
;
}
if
(
row
.
rectificationResult
){
this
.
feedBookForm
.
rectificationResult
=
row
.
rectificationResult
;
}
//this.feedBookForm = row;
this
.
getEnterpriseLists
();
this
.
getEnterpriseLists
();
}
,
}
,
//归档
//归档
...
@@ -712,13 +800,56 @@ export default {
...
@@ -712,13 +800,56 @@ export default {
cancelButtonText
:
"取消"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
type
:
"warning"
}
).
then
(()
=>
{
}
).
then
(()
=>
{
/* this.exportLoading = true;
this
.
workForm
=
{
}
;
return exportOrder(queryParams);*/
this
.
workForm
.
workId
=
row
.
workId
;
this
.
workForm
.
workStatus
=
'3'
;
if
(
this
.
workForm
.
workId
!=
null
)
{
updateOrder
(
this
.
workForm
);
}
}
).
then
(
response
=>
{
}
).
then
(
response
=>
{
/* this.download(response.msg
);
this
.
getList
(
);
this.
exportLoading = false;*/
this
.
msgSuccess
(
"归档成功"
);
}
).
catch
(()
=>
{
}
);
}
).
catch
(()
=>
{
}
);
}
,
//任务下发提交
submitWorkForm
()
{
this
.
$refs
[
"workForm"
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
this
.
workForm
.
workId
!=
null
)
{
updateOrder
(
this
.
workForm
).
then
(
response
=>
{
this
.
msgSuccess
(
"任务下发成功"
);
this
.
workOpen
=
false
;
this
.
getList
();
}
);
}
}
}
);
}
,
//任务下发取消
cancelWorkForm
(){
this
.
workOpen
=
false
;
this
.
workForm
=
{
}
;
}
,
//反馈提交
submitFeedBookForm
(){
this
.
$refs
[
"feedBookForm"
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
this
.
feedBookForm
.
workId
!=
null
)
{
this
.
feedBookForm
.
workStatus
=
'2'
;
updateOrder
(
this
.
feedBookForm
).
then
(
response
=>
{
this
.
msgSuccess
(
"反馈成功"
);
this
.
feedBookOpen
=
false
;
this
.
getList
();
}
);
}
}
}
}
);
}
,
//反馈取消
cancelFeedBook
(){
this
.
feedBookOpen
=
false
;
this
.
feedBookForm
=
{
}
;
}
,
}
}
}
;
}
;
<
/script
>
<
/script
>
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