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
20eb5fb1
Commit
20eb5fb1
authored
Mar 16, 2026
by
xulihui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
巡检结果采集
parent
c08901c2
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
960 additions
and
0 deletions
+960
-0
TInspectionResultController.java
...troller/operationMonitor/TInspectionResultController.java
+97
-0
TInspectionResult.java
...main/java/com/zehong/system/domain/TInspectionResult.java
+163
-0
TInspectionResultMapper.java
...ava/com/zehong/system/mapper/TInspectionResultMapper.java
+61
-0
ITInspectionResultService.java
.../com/zehong/system/service/ITInspectionResultService.java
+61
-0
TInspectionResultServiceImpl.java
...ong/system/service/impl/TInspectionResultServiceImpl.java
+94
-0
TInspectionResultMapper.xml
.../main/resources/mapper/system/TInspectionResultMapper.xml
+100
-0
inspectionResult.js
...eversion-web/src/api/operationMonitor/inspectionResult.js
+53
-0
index.vue
...n-web/src/views/inspectionWork/inspectionResult/index.vue
+331
-0
No files found.
zh-baseversion-admin/src/main/java/com/zehong/web/controller/operationMonitor/TInspectionResultController.java
0 → 100644
View file @
20eb5fb1
package
com
.
zehong
.
web
.
controller
.
operationMonitor
;
import
java.util.List
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.PutMapping
;
import
org.springframework.web.bind.annotation.DeleteMapping
;
import
org.springframework.web.bind.annotation.PathVariable
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
com.zehong.common.annotation.Log
;
import
com.zehong.common.core.controller.BaseController
;
import
com.zehong.common.core.domain.AjaxResult
;
import
com.zehong.common.enums.BusinessType
;
import
com.zehong.system.domain.TInspectionResult
;
import
com.zehong.system.service.ITInspectionResultService
;
import
com.zehong.common.utils.poi.ExcelUtil
;
import
com.zehong.common.core.page.TableDataInfo
;
/**
* 巡检结果采集Controller
*
* @author zehong
* @date 2026-03-14
*/
@RestController
@RequestMapping
(
"/inspection/result"
)
public
class
TInspectionResultController
extends
BaseController
{
@Autowired
private
ITInspectionResultService
tInspectionResultService
;
/**
* 查询巡检结果采集列表
*/
@GetMapping
(
"/list"
)
public
TableDataInfo
list
(
TInspectionResult
tInspectionResult
)
{
startPage
();
List
<
TInspectionResult
>
list
=
tInspectionResultService
.
selectTInspectionResultList
(
tInspectionResult
);
return
getDataTable
(
list
);
}
/**
* 导出巡检结果采集列表
*/
@Log
(
title
=
"巡检结果采集"
,
businessType
=
BusinessType
.
EXPORT
)
@GetMapping
(
"/export"
)
public
AjaxResult
export
(
TInspectionResult
tInspectionResult
)
{
List
<
TInspectionResult
>
list
=
tInspectionResultService
.
selectTInspectionResultList
(
tInspectionResult
);
ExcelUtil
<
TInspectionResult
>
util
=
new
ExcelUtil
<
TInspectionResult
>(
TInspectionResult
.
class
);
return
util
.
exportExcel
(
list
,
"巡检结果采集数据"
);
}
/**
* 获取巡检结果采集详细信息
*/
@GetMapping
(
value
=
"/{id}"
)
public
AjaxResult
getInfo
(
@PathVariable
(
"id"
)
Long
id
)
{
return
AjaxResult
.
success
(
tInspectionResultService
.
selectTInspectionResultById
(
id
));
}
/**
* 新增巡检结果采集
*/
@Log
(
title
=
"巡检结果采集"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
public
AjaxResult
add
(
@RequestBody
TInspectionResult
tInspectionResult
)
{
return
toAjax
(
tInspectionResultService
.
insertTInspectionResult
(
tInspectionResult
));
}
/**
* 修改巡检结果采集
*/
@Log
(
title
=
"巡检结果采集"
,
businessType
=
BusinessType
.
UPDATE
)
@PutMapping
public
AjaxResult
edit
(
@RequestBody
TInspectionResult
tInspectionResult
)
{
return
toAjax
(
tInspectionResultService
.
updateTInspectionResult
(
tInspectionResult
));
}
/**
* 删除巡检结果采集
*/
@Log
(
title
=
"巡检结果采集"
,
businessType
=
BusinessType
.
DELETE
)
@DeleteMapping
(
"/{ids}"
)
public
AjaxResult
remove
(
@PathVariable
Long
[]
ids
)
{
return
toAjax
(
tInspectionResultService
.
deleteTInspectionResultByIds
(
ids
));
}
}
\ No newline at end of file
zh-baseversion-system/src/main/java/com/zehong/system/domain/TInspectionResult.java
0 → 100644
View file @
20eb5fb1
package
com
.
zehong
.
system
.
domain
;
import
org.apache.commons.lang3.builder.ToStringBuilder
;
import
org.apache.commons.lang3.builder.ToStringStyle
;
import
com.zehong.common.annotation.Excel
;
import
com.zehong.common.core.domain.BaseEntity
;
/**
* 巡检结果采集对象 t_inspection_result
*
* @author zehong
* @date 2026-03-14
*/
public
class
TInspectionResult
extends
BaseEntity
{
private
static
final
long
serialVersionUID
=
1L
;
/** $column.columnComment */
private
Long
id
;
/** 所属企业id */
private
String
enterpriseId
;
/** 企业名称 */
@Excel
(
name
=
"企业名称"
)
private
String
enterpriseName
;
/** 巡检月份 */
@Excel
(
name
=
"巡检月份"
)
private
String
inspectionMonth
;
/** 名称 */
@Excel
(
name
=
"名称"
)
private
String
inspectionName
;
/** 巡检类型(1,管道;2,设备设施) */
@Excel
(
name
=
"巡检类型(1,管道;2,设备设施)"
)
private
String
inspectionType
;
/** 应巡数量 */
@Excel
(
name
=
"应巡数量"
)
private
String
shouldInspectionNum
;
/** 已巡数量 */
@Excel
(
name
=
"已巡数量"
)
private
String
completeInspectionNum
;
/** 异常数量 */
@Excel
(
name
=
"异常数量"
)
private
String
anomalyNum
;
/** 已整改数量 */
@Excel
(
name
=
"已整改数量"
)
private
String
rectifyNum
;
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
Long
getId
()
{
return
id
;
}
public
void
setEnterpriseId
(
String
enterpriseId
)
{
this
.
enterpriseId
=
enterpriseId
;
}
public
String
getEnterpriseId
()
{
return
enterpriseId
;
}
public
void
setEnterpriseName
(
String
enterpriseName
)
{
this
.
enterpriseName
=
enterpriseName
;
}
public
String
getEnterpriseName
()
{
return
enterpriseName
;
}
public
void
setInspectionMonth
(
String
inspectionMonth
)
{
this
.
inspectionMonth
=
inspectionMonth
;
}
public
String
getInspectionMonth
()
{
return
inspectionMonth
;
}
public
void
setInspectionName
(
String
inspectionName
)
{
this
.
inspectionName
=
inspectionName
;
}
public
String
getInspectionName
()
{
return
inspectionName
;
}
public
void
setInspectionType
(
String
inspectionType
)
{
this
.
inspectionType
=
inspectionType
;
}
public
String
getInspectionType
()
{
return
inspectionType
;
}
public
void
setShouldInspectionNum
(
String
shouldInspectionNum
)
{
this
.
shouldInspectionNum
=
shouldInspectionNum
;
}
public
String
getShouldInspectionNum
()
{
return
shouldInspectionNum
;
}
public
void
setCompleteInspectionNum
(
String
completeInspectionNum
)
{
this
.
completeInspectionNum
=
completeInspectionNum
;
}
public
String
getCompleteInspectionNum
()
{
return
completeInspectionNum
;
}
public
void
setAnomalyNum
(
String
anomalyNum
)
{
this
.
anomalyNum
=
anomalyNum
;
}
public
String
getAnomalyNum
()
{
return
anomalyNum
;
}
public
void
setRectifyNum
(
String
rectifyNum
)
{
this
.
rectifyNum
=
rectifyNum
;
}
public
String
getRectifyNum
()
{
return
rectifyNum
;
}
@Override
public
String
toString
()
{
return
new
ToStringBuilder
(
this
,
ToStringStyle
.
MULTI_LINE_STYLE
)
.
append
(
"id"
,
getId
())
.
append
(
"enterpriseId"
,
getEnterpriseId
())
.
append
(
"enterpriseName"
,
getEnterpriseName
())
.
append
(
"inspectionMonth"
,
getInspectionMonth
())
.
append
(
"inspectionName"
,
getInspectionName
())
.
append
(
"inspectionType"
,
getInspectionType
())
.
append
(
"shouldInspectionNum"
,
getShouldInspectionNum
())
.
append
(
"completeInspectionNum"
,
getCompleteInspectionNum
())
.
append
(
"anomalyNum"
,
getAnomalyNum
())
.
append
(
"rectifyNum"
,
getRectifyNum
())
.
append
(
"createTime"
,
getCreateTime
())
.
toString
();
}
}
\ No newline at end of file
zh-baseversion-system/src/main/java/com/zehong/system/mapper/TInspectionResultMapper.java
0 → 100644
View file @
20eb5fb1
package
com
.
zehong
.
system
.
mapper
;
import
java.util.List
;
import
com.zehong.system.domain.TInspectionResult
;
/**
* 巡检结果采集Mapper接口
*
* @author zehong
* @date 2026-03-14
*/
public
interface
TInspectionResultMapper
{
/**
* 查询巡检结果采集
*
* @param id 巡检结果采集ID
* @return 巡检结果采集
*/
public
TInspectionResult
selectTInspectionResultById
(
Long
id
);
/**
* 查询巡检结果采集列表
*
* @param tInspectionResult 巡检结果采集
* @return 巡检结果采集集合
*/
public
List
<
TInspectionResult
>
selectTInspectionResultList
(
TInspectionResult
tInspectionResult
);
/**
* 新增巡检结果采集
*
* @param tInspectionResult 巡检结果采集
* @return 结果
*/
public
int
insertTInspectionResult
(
TInspectionResult
tInspectionResult
);
/**
* 修改巡检结果采集
*
* @param tInspectionResult 巡检结果采集
* @return 结果
*/
public
int
updateTInspectionResult
(
TInspectionResult
tInspectionResult
);
/**
* 删除巡检结果采集
*
* @param id 巡检结果采集ID
* @return 结果
*/
public
int
deleteTInspectionResultById
(
Long
id
);
/**
* 批量删除巡检结果采集
*
* @param ids 需要删除的数据ID
* @return 结果
*/
public
int
deleteTInspectionResultByIds
(
Long
[]
ids
);
}
\ No newline at end of file
zh-baseversion-system/src/main/java/com/zehong/system/service/ITInspectionResultService.java
0 → 100644
View file @
20eb5fb1
package
com
.
zehong
.
system
.
service
;
import
java.util.List
;
import
com.zehong.system.domain.TInspectionResult
;
/**
* 巡检结果采集Service接口
*
* @author zehong
* @date 2026-03-14
*/
public
interface
ITInspectionResultService
{
/**
* 查询巡检结果采集
*
* @param id 巡检结果采集ID
* @return 巡检结果采集
*/
public
TInspectionResult
selectTInspectionResultById
(
Long
id
);
/**
* 查询巡检结果采集列表
*
* @param tInspectionResult 巡检结果采集
* @return 巡检结果采集集合
*/
public
List
<
TInspectionResult
>
selectTInspectionResultList
(
TInspectionResult
tInspectionResult
);
/**
* 新增巡检结果采集
*
* @param tInspectionResult 巡检结果采集
* @return 结果
*/
public
int
insertTInspectionResult
(
TInspectionResult
tInspectionResult
);
/**
* 修改巡检结果采集
*
* @param tInspectionResult 巡检结果采集
* @return 结果
*/
public
int
updateTInspectionResult
(
TInspectionResult
tInspectionResult
);
/**
* 批量删除巡检结果采集
*
* @param ids 需要删除的巡检结果采集ID
* @return 结果
*/
public
int
deleteTInspectionResultByIds
(
Long
[]
ids
);
/**
* 删除巡检结果采集信息
*
* @param id 巡检结果采集ID
* @return 结果
*/
public
int
deleteTInspectionResultById
(
Long
id
);
}
\ No newline at end of file
zh-baseversion-system/src/main/java/com/zehong/system/service/impl/TInspectionResultServiceImpl.java
0 → 100644
View file @
20eb5fb1
package
com
.
zehong
.
system
.
service
.
impl
;
import
java.util.List
;
import
com.zehong.common.utils.DateUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
com.zehong.system.mapper.TInspectionResultMapper
;
import
com.zehong.system.domain.TInspectionResult
;
import
com.zehong.system.service.ITInspectionResultService
;
/**
* 巡检结果采集Service业务层处理
*
* @author zehong
* @date 2026-03-14
*/
@Service
public
class
TInspectionResultServiceImpl
implements
ITInspectionResultService
{
@Autowired
private
TInspectionResultMapper
tInspectionResultMapper
;
/**
* 查询巡检结果采集
*
* @param id 巡检结果采集ID
* @return 巡检结果采集
*/
@Override
public
TInspectionResult
selectTInspectionResultById
(
Long
id
)
{
return
tInspectionResultMapper
.
selectTInspectionResultById
(
id
);
}
/**
* 查询巡检结果采集列表
*
* @param tInspectionResult 巡检结果采集
* @return 巡检结果采集
*/
@Override
public
List
<
TInspectionResult
>
selectTInspectionResultList
(
TInspectionResult
tInspectionResult
)
{
return
tInspectionResultMapper
.
selectTInspectionResultList
(
tInspectionResult
);
}
/**
* 新增巡检结果采集
*
* @param tInspectionResult 巡检结果采集
* @return 结果
*/
@Override
public
int
insertTInspectionResult
(
TInspectionResult
tInspectionResult
)
{
tInspectionResult
.
setCreateTime
(
DateUtils
.
getNowDate
());
return
tInspectionResultMapper
.
insertTInspectionResult
(
tInspectionResult
);
}
/**
* 修改巡检结果采集
*
* @param tInspectionResult 巡检结果采集
* @return 结果
*/
@Override
public
int
updateTInspectionResult
(
TInspectionResult
tInspectionResult
)
{
return
tInspectionResultMapper
.
updateTInspectionResult
(
tInspectionResult
);
}
/**
* 批量删除巡检结果采集
*
* @param ids 需要删除的巡检结果采集ID
* @return 结果
*/
@Override
public
int
deleteTInspectionResultByIds
(
Long
[]
ids
)
{
return
tInspectionResultMapper
.
deleteTInspectionResultByIds
(
ids
);
}
/**
* 删除巡检结果采集信息
*
* @param id 巡检结果采集ID
* @return 结果
*/
@Override
public
int
deleteTInspectionResultById
(
Long
id
)
{
return
tInspectionResultMapper
.
deleteTInspectionResultById
(
id
);
}
}
\ No newline at end of file
zh-baseversion-system/src/main/resources/mapper/system/TInspectionResultMapper.xml
0 → 100644
View file @
20eb5fb1
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.zehong.system.mapper.TInspectionResultMapper"
>
<resultMap
type=
"com.zehong.system.domain.TInspectionResult"
id=
"TInspectionResultResult"
>
<result
property=
"id"
column=
"id"
/>
<result
property=
"enterpriseId"
column=
"enterprise_id"
/>
<result
property=
"enterpriseName"
column=
"enterprise_name"
/>
<result
property=
"inspectionMonth"
column=
"inspection_month"
/>
<result
property=
"inspectionName"
column=
"inspection_name"
/>
<result
property=
"inspectionType"
column=
"inspection_type"
/>
<result
property=
"shouldInspectionNum"
column=
"should_inspection_num"
/>
<result
property=
"completeInspectionNum"
column=
"complete_inspection_num"
/>
<result
property=
"anomalyNum"
column=
"anomaly_num"
/>
<result
property=
"rectifyNum"
column=
"rectify_num"
/>
<result
property=
"createTime"
column=
"create_time"
/>
</resultMap>
<sql
id=
"selectTInspectionResultVo"
>
select id, enterprise_id, enterprise_name, inspection_month, inspection_name, inspection_type, should_inspection_num, complete_inspection_num, anomaly_num, rectify_num, create_time from t_inspection_result
</sql>
<select
id=
"selectTInspectionResultList"
parameterType=
"com.zehong.system.domain.TInspectionResult"
resultMap=
"TInspectionResultResult"
>
<include
refid=
"selectTInspectionResultVo"
/>
<where>
<if
test=
"enterpriseId != null and enterpriseId != ''"
>
and enterprise_id = #{enterpriseId}
</if>
<if
test=
"enterpriseName != null and enterpriseName != ''"
>
and enterprise_name like concat('%', #{enterpriseName}, '%')
</if>
<if
test=
"inspectionMonth != null and inspectionMonth != ''"
>
and inspection_month = #{inspectionMonth}
</if>
<if
test=
"inspectionName != null and inspectionName != ''"
>
and inspection_name like concat('%', #{inspectionName}, '%')
</if>
<if
test=
"inspectionType != null and inspectionType != ''"
>
and inspection_type = #{inspectionType}
</if>
<if
test=
"shouldInspectionNum != null and shouldInspectionNum != ''"
>
and should_inspection_num = #{shouldInspectionNum}
</if>
<if
test=
"completeInspectionNum != null and completeInspectionNum != ''"
>
and complete_inspection_num = #{completeInspectionNum}
</if>
<if
test=
"anomalyNum != null and anomalyNum != ''"
>
and anomaly_num = #{anomalyNum}
</if>
<if
test=
"rectifyNum != null and rectifyNum != ''"
>
and rectify_num = #{rectifyNum}
</if>
</where>
</select>
<select
id=
"selectTInspectionResultById"
parameterType=
"Long"
resultMap=
"TInspectionResultResult"
>
<include
refid=
"selectTInspectionResultVo"
/>
where id = #{id}
</select>
<insert
id=
"insertTInspectionResult"
parameterType=
"com.zehong.system.domain.TInspectionResult"
useGeneratedKeys=
"true"
keyProperty=
"id"
>
insert into t_inspection_result
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"enterpriseId != null"
>
enterprise_id,
</if>
<if
test=
"enterpriseName != null"
>
enterprise_name,
</if>
<if
test=
"inspectionMonth != null"
>
inspection_month,
</if>
<if
test=
"inspectionName != null"
>
inspection_name,
</if>
<if
test=
"inspectionType != null"
>
inspection_type,
</if>
<if
test=
"shouldInspectionNum != null"
>
should_inspection_num,
</if>
<if
test=
"completeInspectionNum != null"
>
complete_inspection_num,
</if>
<if
test=
"anomalyNum != null"
>
anomaly_num,
</if>
<if
test=
"rectifyNum != null"
>
rectify_num,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"enterpriseId != null"
>
#{enterpriseId},
</if>
<if
test=
"enterpriseName != null"
>
#{enterpriseName},
</if>
<if
test=
"inspectionMonth != null"
>
#{inspectionMonth},
</if>
<if
test=
"inspectionName != null"
>
#{inspectionName},
</if>
<if
test=
"inspectionType != null"
>
#{inspectionType},
</if>
<if
test=
"shouldInspectionNum != null"
>
#{shouldInspectionNum},
</if>
<if
test=
"completeInspectionNum != null"
>
#{completeInspectionNum},
</if>
<if
test=
"anomalyNum != null"
>
#{anomalyNum},
</if>
<if
test=
"rectifyNum != null"
>
#{rectifyNum},
</if>
<if
test=
"createTime != null"
>
#{createTime},
</if>
</trim>
</insert>
<update
id=
"updateTInspectionResult"
parameterType=
"com.zehong.system.domain.TInspectionResult"
>
update t_inspection_result
<trim
prefix=
"SET"
suffixOverrides=
","
>
<if
test=
"enterpriseId != null"
>
enterprise_id = #{enterpriseId},
</if>
<if
test=
"enterpriseName != null"
>
enterprise_name = #{enterpriseName},
</if>
<if
test=
"inspectionMonth != null"
>
inspection_month = #{inspectionMonth},
</if>
<if
test=
"inspectionName != null"
>
inspection_name = #{inspectionName},
</if>
<if
test=
"inspectionType != null"
>
inspection_type = #{inspectionType},
</if>
<if
test=
"shouldInspectionNum != null"
>
should_inspection_num = #{shouldInspectionNum},
</if>
<if
test=
"completeInspectionNum != null"
>
complete_inspection_num = #{completeInspectionNum},
</if>
<if
test=
"anomalyNum != null"
>
anomaly_num = #{anomalyNum},
</if>
<if
test=
"rectifyNum != null"
>
rectify_num = #{rectifyNum},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime},
</if>
</trim>
where id = #{id}
</update>
<delete
id=
"deleteTInspectionResultById"
parameterType=
"Long"
>
delete from t_inspection_result where id = #{id}
</delete>
<delete
id=
"deleteTInspectionResultByIds"
parameterType=
"String"
>
delete from t_inspection_result where id in
<foreach
item=
"id"
collection=
"array"
open=
"("
separator=
","
close=
")"
>
#{id}
</foreach>
</delete>
</mapper>
\ No newline at end of file
zh-baseversion-web/src/api/operationMonitor/inspectionResult.js
0 → 100644
View file @
20eb5fb1
import
request
from
'@/utils/request'
// 查询巡检结果采集列表
export
function
listResult
(
query
)
{
return
request
({
url
:
'/inspection/result/list'
,
method
:
'get'
,
params
:
query
})
}
// 查询巡检结果采集详细
export
function
getResult
(
id
)
{
return
request
({
url
:
'/inspection/result/'
+
id
,
method
:
'get'
})
}
// 新增巡检结果采集
export
function
addResult
(
data
)
{
return
request
({
url
:
'/inspection/result'
,
method
:
'post'
,
data
:
data
})
}
// 修改巡检结果采集
export
function
updateResult
(
data
)
{
return
request
({
url
:
'/inspection/result'
,
method
:
'put'
,
data
:
data
})
}
// 删除巡检结果采集
export
function
delResult
(
id
)
{
return
request
({
url
:
'/inspection/result/'
+
id
,
method
:
'delete'
})
}
// 导出巡检结果采集
export
function
exportResult
(
query
)
{
return
request
({
url
:
'/inspection/result/export'
,
method
:
'get'
,
params
:
query
})
}
zh-baseversion-web/src/views/inspectionWork/inspectionResult/index.vue
0 → 100644
View file @
20eb5fb1
<
template
>
<div
class=
"app-container"
>
<el-form
:model=
"queryParams"
ref=
"queryForm"
:inline=
"true"
v-show=
"showSearch"
label-width=
"68px"
>
<el-form-item
label=
"企业名称"
prop=
"enterpriseName"
>
<el-input
v-model=
"queryParams.enterpriseName"
placeholder=
"请输入企业名称"
clearable
size=
"small"
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"巡检月份"
prop=
"inspectionMonth"
>
<el-date-picker
clearable
size=
"small"
v-model=
"queryParams.inspectionMonth"
type=
"month"
placeholder=
"请选择巡检月份"
value-format=
"yyyy-MM"
/>
</el-form-item>
<el-form-item
label=
"名称"
prop=
"inspectionName"
>
<el-input
v-model=
"queryParams.inspectionName"
placeholder=
"请输入名称"
clearable
size=
"small"
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"巡检类型"
prop=
"inspectionType"
>
<el-select
v-model=
"queryParams.inspectionType"
placeholder=
"请选择巡检类型"
clearable
size=
"small"
>
<el-option
label=
"管道"
value=
"1"
/>
<el-option
label=
"设备设施"
value=
"2"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
size=
"mini"
@
click=
"handleQuery"
>
搜索
</el-button>
<el-button
icon=
"el-icon-refresh"
size=
"mini"
@
click=
"resetQuery"
>
重置
</el-button>
</el-form-item>
</el-form>
<el-row
:gutter=
"10"
class=
"mb8"
>
<!--
<el-col
:span=
"1.5"
>
<el-button
type=
"primary"
plain
icon=
"el-icon-plus"
size=
"mini"
@
click=
"handleAdd"
>
新增
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"success"
plain
icon=
"el-icon-edit"
size=
"mini"
:disabled=
"single"
@
click=
"handleUpdate"
>
修改
</el-button>
</el-col>
<el-col
:span=
"1.5"
>
<el-button
type=
"danger"
plain
icon=
"el-icon-delete"
size=
"mini"
:disabled=
"multiple"
@
click=
"handleDelete"
>
删除
</el-button>
</el-col>
-->
<el-col
:span=
"1.5"
>
<el-button
type=
"warning"
plain
icon=
"el-icon-download"
size=
"mini"
:loading=
"exportLoading"
@
click=
"handleExport"
>
导出
</el-button>
</el-col>
<right-toolbar
:showSearch
.
sync=
"showSearch"
@
queryTable=
"getList"
></right-toolbar>
</el-row>
<el-table
v-loading=
"loading"
:data=
"resultList"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
label=
"企业名称"
align=
"center"
prop=
"enterpriseName"
/>
<el-table-column
label=
"巡检月份"
align=
"center"
prop=
"inspectionMonth"
/>
<el-table-column
label=
"名称"
align=
"center"
prop=
"inspectionName"
/>
<el-table-column
label=
"巡检类型"
align=
"center"
prop=
"inspectionType"
>
<template
slot-scope=
"scope"
>
<span
v-if=
"scope.row.inspectionType == 1"
>
管道
</span>
<span
v-if=
"scope.row.inspectionType == 2"
>
设备设施
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"应巡数量"
align=
"center"
prop=
"shouldInspectionNum"
/>
<el-table-column
label=
"已巡数量"
align=
"center"
prop=
"completeInspectionNum"
/>
<el-table-column
label=
"异常数量"
align=
"center"
prop=
"anomalyNum"
/>
<el-table-column
label=
"已整改数量"
align=
"center"
prop=
"rectifyNum"
/>
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
>删除</el-button>
</template>
</el-table-column>-->
</el-table>
<pagination
v-show=
"total>0"
:total=
"total"
:page
.
sync=
"queryParams.pageNum"
:limit
.
sync=
"queryParams.pageSize"
@
pagination=
"getList"
/>
<!-- 添加或修改巡检结果采集对话框 -->
<el-dialog
:title=
"title"
:visible
.
sync=
"open"
width=
"500px"
append-to-body
>
<el-form
ref=
"form"
:model=
"form"
:rules=
"rules"
label-width=
"80px"
>
<el-form-item
label=
"所属企业id"
prop=
"enterpriseId"
>
<el-input
v-model=
"form.enterpriseId"
placeholder=
"请输入所属企业id"
/>
</el-form-item>
<el-form-item
label=
"企业名称"
prop=
"enterpriseName"
>
<el-input
v-model=
"form.enterpriseName"
placeholder=
"请输入企业名称"
/>
</el-form-item>
<el-form-item
label=
"巡检月份"
prop=
"inspectionMonth"
>
<el-input
v-model=
"form.inspectionMonth"
placeholder=
"请输入巡检月份"
/>
</el-form-item>
<el-form-item
label=
"名称"
prop=
"inspectionName"
>
<el-input
v-model=
"form.inspectionName"
placeholder=
"请输入名称"
/>
</el-form-item>
<el-form-item
label=
"巡检类型(1,管道;2,设备设施)"
prop=
"inspectionType"
>
<el-select
v-model=
"form.inspectionType"
placeholder=
"请选择巡检类型(1,管道;2,设备设施)"
>
<el-option
label=
"请选择字典生成"
value=
""
/>
</el-select>
</el-form-item>
<el-form-item
label=
"应巡数量"
prop=
"shouldInspectionNum"
>
<el-input
v-model=
"form.shouldInspectionNum"
placeholder=
"请输入应巡数量"
/>
</el-form-item>
<el-form-item
label=
"已巡数量"
prop=
"completeInspectionNum"
>
<el-input
v-model=
"form.completeInspectionNum"
placeholder=
"请输入已巡数量"
/>
</el-form-item>
<el-form-item
label=
"异常数量"
prop=
"anomalyNum"
>
<el-input
v-model=
"form.anomalyNum"
placeholder=
"请输入异常数量"
/>
</el-form-item>
<el-form-item
label=
"已整改数量"
prop=
"rectifyNum"
>
<el-input
v-model=
"form.rectifyNum"
placeholder=
"请输入已整改数量"
/>
</el-form-item>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
type=
"primary"
@
click=
"submitForm"
>
确 定
</el-button>
<el-button
@
click=
"cancel"
>
取 消
</el-button>
</div>
</el-dialog>
</div>
</template>
<
script
>
import
{
listResult
,
getResult
,
delResult
,
addResult
,
updateResult
,
exportResult
}
from
"@/api/operationMonitor/inspectionResult"
;
export
default
{
name
:
"InspectionResult"
,
components
:
{
},
data
()
{
return
{
// 遮罩层
loading
:
true
,
// 导出遮罩层
exportLoading
:
false
,
// 选中数组
ids
:
[],
// 非单个禁用
single
:
true
,
// 非多个禁用
multiple
:
true
,
// 显示搜索条件
showSearch
:
true
,
// 总条数
total
:
0
,
// 巡检结果采集表格数据
resultList
:
[],
// 弹出层标题
title
:
""
,
// 是否显示弹出层
open
:
false
,
// 查询参数
queryParams
:
{
pageNum
:
1
,
pageSize
:
10
,
enterpriseId
:
null
,
enterpriseName
:
null
,
inspectionMonth
:
null
,
inspectionName
:
null
,
inspectionType
:
null
,
shouldInspectionNum
:
null
,
completeInspectionNum
:
null
,
anomalyNum
:
null
,
rectifyNum
:
null
,
},
// 表单参数
form
:
{},
// 表单校验
rules
:
{
}
};
},
created
()
{
this
.
getList
();
},
methods
:
{
/** 查询巡检结果采集列表 */
getList
()
{
this
.
loading
=
true
;
console
.
log
(
"查询参数"
,
this
.
queryParams
);
listResult
(
this
.
queryParams
).
then
(
response
=>
{
this
.
resultList
=
response
.
rows
;
this
.
total
=
response
.
total
;
this
.
loading
=
false
;
});
},
// 取消按钮
cancel
()
{
this
.
open
=
false
;
this
.
reset
();
},
// 表单重置
reset
()
{
this
.
form
=
{
id
:
null
,
enterpriseId
:
null
,
enterpriseName
:
null
,
inspectionMonth
:
null
,
inspectionName
:
null
,
inspectionType
:
null
,
shouldInspectionNum
:
null
,
completeInspectionNum
:
null
,
anomalyNum
:
null
,
rectifyNum
:
null
,
createTime
:
null
};
this
.
resetForm
(
"form"
);
},
/** 搜索按钮操作 */
handleQuery
()
{
this
.
queryParams
.
pageNum
=
1
;
this
.
getList
();
},
/** 重置按钮操作 */
resetQuery
()
{
this
.
resetForm
(
"queryForm"
);
this
.
handleQuery
();
},
// 多选框选中数据
handleSelectionChange
(
selection
)
{
this
.
ids
=
selection
.
map
(
item
=>
item
.
id
)
this
.
single
=
selection
.
length
!==
1
this
.
multiple
=
!
selection
.
length
},
/** 新增按钮操作 */
handleAdd
()
{
this
.
reset
();
this
.
open
=
true
;
this
.
title
=
"添加巡检结果采集"
;
},
/** 修改按钮操作 */
handleUpdate
(
row
)
{
this
.
reset
();
const
id
=
row
.
id
||
this
.
ids
getResult
(
id
).
then
(
response
=>
{
this
.
form
=
response
.
data
;
this
.
open
=
true
;
this
.
title
=
"修改巡检结果采集"
;
});
},
/** 提交按钮 */
submitForm
()
{
this
.
$refs
[
"form"
].
validate
(
valid
=>
{
if
(
valid
)
{
if
(
this
.
form
.
id
!=
null
)
{
updateResult
(
this
.
form
).
then
(
response
=>
{
this
.
msgSuccess
(
"修改成功"
);
this
.
open
=
false
;
this
.
getList
();
});
}
else
{
addResult
(
this
.
form
).
then
(
response
=>
{
this
.
msgSuccess
(
"新增成功"
);
this
.
open
=
false
;
this
.
getList
();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete
(
row
)
{
const
ids
=
row
.
id
||
this
.
ids
;
this
.
$confirm
(
'是否确认删除巡检结果采集编号为"'
+
ids
+
'"的数据项?'
,
"警告"
,
{
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}).
then
(
function
()
{
return
delResult
(
ids
);
}).
then
(()
=>
{
this
.
getList
();
this
.
msgSuccess
(
"删除成功"
);
}).
catch
(()
=>
{});
},
/** 导出按钮操作 */
handleExport
()
{
const
queryParams
=
this
.
queryParams
;
this
.
$confirm
(
'是否确认导出所有巡检结果采集数据项?'
,
"警告"
,
{
confirmButtonText
:
"确定"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
}).
then
(()
=>
{
this
.
exportLoading
=
true
;
return
exportResult
(
queryParams
);
}).
then
(
response
=>
{
this
.
download
(
response
.
msg
);
this
.
exportLoading
=
false
;
}).
catch
(()
=>
{});
}
}
};
</
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