Commit 77e76c21 authored by 王晓倩's avatar 王晓倩

隐患信息详情

parent 844789d2
......@@ -55,7 +55,7 @@
<font v-if="form.orderId == null || form.orderId == ''">未生成工单</font>
<font
v-if="(form.dealStatus == null || form.dealStatus == '') && form.orderId != null && form.orderId != ''">
未处理</font>
未处理</font>
<font v-if="form.dealStatus == 1">不需处理</font>
<font v-if="form.dealStatus == 2">已处理完成</font>
<font v-if="form.dealStatus == 3">未处理完成</font>
......@@ -95,7 +95,7 @@
<template slot-scope="scope">
<span v-if="scope.row.orderId == null || scope.row.orderId == ''">未生成工单</span>
<span v-if="(scope.row.dealStatus == null || scope.row.dealStatus == '') &&
scope.row.orderId != null && scope.row.orderId != ''">未处理</span>
scope.row.orderId != null && scope.row.orderId != ''">未处理</span>
<span v-if="scope.row.dealStatus == 1">不需处理</span>
<span v-if="scope.row.dealStatus == 2">已处理完成</span>
<span v-if="scope.row.dealStatus == 3">未处理完成</span>
......@@ -522,7 +522,7 @@ export default {
]
});
},
/** 详细信息跳转 */
showDetail(orderId) {
this.$router.push({
......
......@@ -80,7 +80,7 @@
<!-- 接单信息 -->
<el-row>
<el-row v-if="this.form.orderId != null && this.form.orderId != ''">
<el-divider></el-divider>
<el-col :span="24">
<div style="color: #31EAEA;width: 100%;height: 40px;">
......@@ -258,7 +258,7 @@ export default {
};
this.resetForm("form");
},
/** 详细信息跳转 */
showDetail(orderId) {
this.$router.push({
......
......@@ -221,7 +221,7 @@
<el-input v-model="form2.orderName" placeholder="请输入工单名称" />
</el-form-item>
<el-form-item label="指定执行人员" prop="appointInspector" >
<el-select v-model="form2.appointInspector" placeholder="请选择执行人员" clearable size="small" >
<el-select v-model="form2.appointInspector" placeholder="请选择执行人员" clearable size="small" style="width: 600px">
<el-option
v-for="item in inspector"
:key="item.userId"
......@@ -390,7 +390,7 @@ export default {
this.$router.push({
path: '/riskManagement/hiddenTroubleDetail',
query:{
toubleId : row.toubleId
troubleId : row.troubleId
}
})
},
......@@ -438,6 +438,7 @@ export default {
cancel() {
this.open1 = false;
this.open2 = false;
this.fileList = [];
this.reset();
},
// 表单重置
......
......@@ -263,7 +263,6 @@
</div>
</div>
</div>
</div>
</template>
<script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment