|
|
|
@ -42,7 +42,7 @@
|
|
|
|
|
<el-table-column label="负责部门" width="150" prop="chargeDeptName"/>
|
|
|
|
|
<el-table-column label="设备数量" width="150" prop="deviceCount"/>
|
|
|
|
|
<el-table-column label="执行情况" width="150" prop="chargeDeptName">
|
|
|
|
|
<template scope="scope">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-tag v-if="scope.row.isActive==true" type="success">已进入周期</el-tag>
|
|
|
|
|
<el-tag v-if="scope.row.isActive==false" type="info">未进入周期</el-tag>
|
|
|
|
|
</template>
|
|
|
|
@ -50,14 +50,14 @@
|
|
|
|
|
<el-table-column label="开始日期" width="150" prop="startDate"/>
|
|
|
|
|
<el-table-column label="结束日期" width="150" prop="endDate"/>
|
|
|
|
|
<el-table-column label="执行周期(次)" width="160" prop="frequency">
|
|
|
|
|
<template scope="scope">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ `${scope.row.frequency}天` }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="已执行次数" width="200" prop="execCount"/>
|
|
|
|
|
<el-table-column label="备注" width="200" prop="remark"/>
|
|
|
|
|
<el-table-column label="操作" width="240" fixed="right">
|
|
|
|
|
<template scope="scope">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" @click.stop="openCreate(scope.row.planId)">
|
|
|
|
|
编辑
|
|
|
|
|
</el-button>
|
|
|
|
@ -131,7 +131,7 @@
|
|
|
|
|
<el-table-column label="生产企业" prop="manufactory"/>
|
|
|
|
|
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"/>
|
|
|
|
|
<el-table-column label="操作" width="120">
|
|
|
|
|
<template scope="prop">
|
|
|
|
|
<template slot-scope="prop">
|
|
|
|
|
<el-button type="text" @click="openCreate(prop.row.planId,prop.row,2,true)"
|
|
|
|
|
>巡检项目
|
|
|
|
|
</el-button>
|
|
|
|
@ -160,7 +160,7 @@
|
|
|
|
|
<el-table-column label="生产企业" prop="manufactory"/>
|
|
|
|
|
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"/>
|
|
|
|
|
<el-table-column label="操作" width="120">
|
|
|
|
|
<template scope="scope">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" @click.stop="openCreate(scope.row.planId,scope.row,2)"
|
|
|
|
|
>巡检项目
|
|
|
|
|
</el-button>
|
|
|
|
@ -308,7 +308,7 @@
|
|
|
|
|
<el-table-column label="生产企业" prop="manufactory"/>
|
|
|
|
|
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"/>
|
|
|
|
|
<el-table-column label="操作" width="120">
|
|
|
|
|
<template scope="prop">
|
|
|
|
|
<template slot-scope="prop">
|
|
|
|
|
<el-button type="text" @click="openCreate(prop.row.planId,prop.row,2,true)"
|
|
|
|
|
>巡检项目
|
|
|
|
|
</el-button>
|
|
|
|
@ -338,7 +338,7 @@
|
|
|
|
|
<el-table-column label="生产企业" prop="manufactory"/>
|
|
|
|
|
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"/>
|
|
|
|
|
<el-table-column label="操作" width="120">
|
|
|
|
|
<template scope="scope">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" @click.stop="changeActive(true,scope.row)"
|
|
|
|
|
>巡检项目
|
|
|
|
|
</el-button>
|
|
|
|
@ -369,7 +369,7 @@
|
|
|
|
|
<el-table-column label="项目名称" width="150" prop="name"/>
|
|
|
|
|
<el-table-column label="项目内容" width="500" prop="content"/>
|
|
|
|
|
<el-table-column label="操作" width="50">
|
|
|
|
|
<template scope="scope">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text"
|
|
|
|
|
v-if="!itemQuery.deviceCode&&!scope.row.deviceCode || itemQuery.deviceCode&&scope.row.deviceCode"
|
|
|
|
|
@click="delDetailItem(scope.row)"
|
|
|
|
|