2025-09-24 13:56:50 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
|
|
<el-form-item label="方案编号" prop="planCode">
|
|
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="queryParams.planCode"
|
|
|
|
|
|
placeholder="请输入方案编号"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="方案名称" prop="planName">
|
|
|
|
|
|
<el-input
|
|
|
|
|
|
v-model="queryParams.planName"
|
|
|
|
|
|
placeholder="请输入方案名称"
|
|
|
|
|
|
clearable
|
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="方案类型" prop="planType">
|
|
|
|
|
|
<el-select v-model="queryParams.planType" placeholder="请选择类型" clearable>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="dict in dv_plan_type"
|
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="状态" prop="status">
|
|
|
|
|
|
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable>
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="dict in mes_order_status"
|
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item>
|
|
|
|
|
|
<el-button type="primary" icon="Search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
|
|
|
<el-button 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="Plus"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
@click="handleAdd"
|
|
|
|
|
|
>新增</el-button>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
type="success"
|
|
|
|
|
|
plain
|
|
|
|
|
|
icon="Edit"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
:disabled="single"
|
|
|
|
|
|
@click="handleUpdate"
|
|
|
|
|
|
>修改</el-button>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
type="danger"
|
|
|
|
|
|
plain
|
|
|
|
|
|
icon="Delete"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
:disabled="multiple"
|
|
|
|
|
|
@click="handleDelete"
|
|
|
|
|
|
>删除</el-button>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
type="warning"
|
|
|
|
|
|
plain
|
|
|
|
|
|
icon="Download"
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
@click="handleExport"
|
|
|
|
|
|
>导出</el-button>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="checkplanList" @selection-change="handleSelectionChange">
|
|
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
|
|
<el-table-column label="方案编号" align="center" prop="planCode" >
|
2025-09-24 15:23:07 +08:00
|
|
|
|
<template #default="scope">
|
2025-09-24 13:56:50 +08:00
|
|
|
|
<el-button
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
@click="handleView(scope.row)"
|
|
|
|
|
|
>{{scope.row.planCode}}</el-button>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="方案名称" align="center" prop="planName" />
|
|
|
|
|
|
<el-table-column label="方案类型" align="center" width="120px" prop="planType">
|
2025-09-24 15:23:07 +08:00
|
|
|
|
<template #default="scope">
|
2025-09-24 13:56:50 +08:00
|
|
|
|
<dict-tag :options="dv_plan_type" :value="scope.row.planType"/>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="开始日期" align="center" prop="startDate" width="180">
|
2025-09-24 15:23:07 +08:00
|
|
|
|
<template #default="scope">
|
2025-09-24 13:56:50 +08:00
|
|
|
|
<span>{{ parseTime(scope.row.startDate, '{y}-{m}-{d}') }}</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="结束日期" align="center" prop="endDate" width="180">
|
2025-09-24 15:23:07 +08:00
|
|
|
|
<template #default="scope">
|
2025-09-24 13:56:50 +08:00
|
|
|
|
<span>{{ parseTime(scope.row.endDate, '{y}-{m}-{d}') }}</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="频率" width="100px" align="center" prop="cycleType">
|
2025-09-24 15:23:07 +08:00
|
|
|
|
<template #default="scope">
|
2025-09-24 13:56:50 +08:00
|
|
|
|
<span style="display: inline-flex;">
|
|
|
|
|
|
{{scope.row.cycleCount}}
|
|
|
|
|
|
<dict-tag :options="mes_cycle_type" :value="scope.row.cycleType"/>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="状态" align="center" prop="status">
|
2025-09-24 15:23:07 +08:00
|
|
|
|
<template #default="scope">
|
2025-09-24 13:56:50 +08:00
|
|
|
|
<dict-tag :options="mes_order_status" :value="scope.row.status"/>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column label="操作" align="center" width="130px" class-name="small-padding fixed-width">
|
2025-09-24 15:23:07 +08:00
|
|
|
|
<template #default="scope">
|
2025-09-24 13:56:50 +08:00
|
|
|
|
<el-button
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
icon="Edit"
|
|
|
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
|
|
|
v-if="scope.row.status =='PREPARE'"
|
|
|
|
|
|
>修改</el-button>
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
icon="Delete"
|
|
|
|
|
|
@click="handleDelete(scope.row)"
|
|
|
|
|
|
v-if="scope.row.status =='PREPARE'"
|
|
|
|
|
|
>删除</el-button>
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
size="mini"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
icon="VideoPause"
|
|
|
|
|
|
@click="handleUpdate(scope.row)"
|
|
|
|
|
|
v-if="scope.row.status =='FINISHED'"
|
|
|
|
|
|
>停用</el-button>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
|
|
<pagination
|
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
|
:total="total"
|
|
|
|
|
|
v-model:page="queryParams.pageNum"
|
|
|
|
|
|
v-model:limit="queryParams.pageSize"
|
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 添加或修改设备点检方案头对话框 -->
|
|
|
|
|
|
<el-dialog :title="title" v-model="open" width="960px" append-to-body>
|
|
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
|
<el-form-item label="方案编码" prop="planCode">
|
|
|
|
|
|
<el-input v-model="form.planCode" placeholder="请输入方案编码" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<!-- <el-col :span="4">
|
|
|
|
|
|
<el-form-item label-width="80">
|
|
|
|
|
|
<el-switch v-model="autoGenFlag"
|
|
|
|
|
|
active-color="#13ce66"
|
|
|
|
|
|
active-text="自动生成"
|
|
|
|
|
|
@change="handleAutoGenChange(autoGenFlag)" v-if="optType != 'view'">
|
|
|
|
|
|
</el-switch>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>-->
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
|
<el-form-item label="方案名称" prop="planName">
|
|
|
|
|
|
<el-input v-model="form.planName" placeholder="请输入方案名称" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
|
<el-form-item label="方案类型" prop="planType" >
|
|
|
|
|
|
<el-select v-model="form.planType" placeholder="请选择方案类型">
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="dict in dv_plan_type"
|
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
|
></el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
|
<el-form-item label="频率" prop="cycleCount">
|
|
|
|
|
|
<el-tooltip content="这里的频率指的是每隔多长周期进行一次点检或保养,例如每隔1个月进行一次点检,则频率为1 月。">
|
|
|
|
|
|
<el-input-number :controls=false controls-position="right" :min="1" :max="99999999" :step="1" v-model="form.cycleCount" placeholder="请输入次数" />
|
|
|
|
|
|
</el-tooltip>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="4" >
|
|
|
|
|
|
<el-form-item prop="cycleType" label-width="80">
|
|
|
|
|
|
<el-select v-model="form.cycleType" placeholder="请选择频率">
|
|
|
|
|
|
<el-option
|
|
|
|
|
|
v-for="dict in mes_cycle_type"
|
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
|
:label="dict.label"
|
|
|
|
|
|
:value="dict.value"
|
|
|
|
|
|
></el-option>
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
|
<el-form-item label="开始日期" prop="startDate">
|
|
|
|
|
|
<el-date-picker clearable
|
|
|
|
|
|
v-model="form.startDate"
|
|
|
|
|
|
type="date"
|
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
|
placeholder="请选择开始日期">
|
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
|
<el-form-item label="结束日期" prop="endDate">
|
|
|
|
|
|
<el-date-picker clearable
|
|
|
|
|
|
v-model="form.endDate"
|
|
|
|
|
|
type="date"
|
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
|
placeholder="请选择结束日期">
|
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
<el-form-item label="备注" prop="remark">
|
|
|
|
|
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
<el-tabs type="border-card" v-if="form.planId != null">
|
|
|
|
|
|
<el-tab-pane label="设备清单">
|
|
|
|
|
|
<Checkmachinery ref="machinerylist" :optType="optType" :planId="form.planId" ></Checkmachinery>
|
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
<el-tab-pane :label="form.planType=='CHECK'?'点检项目':'保养项目'">
|
|
|
|
|
|
<Checksubject ref="subjectlist" :optType="optType" :planId="form.planId" ></Checksubject>
|
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
</el-tabs>
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
|
<el-button type="primary" @click="submitForm" v-if="form.status =='PREPARE' && optType !='view' ">保存</el-button>
|
|
|
|
|
|
<el-button type="success" @click="handleFinish" v-if="form.status =='PREPARE' && optType !='view' && form.planId !=null">启用</el-button>
|
|
|
|
|
|
<el-button type="success" @click="handleDeFinish" v-if="form.status =='FINISHED' && optType !='view' && form.planId !=null">停用</el-button>
|
|
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import { listCheckplan, getCheckplan, delCheckplan, addCheckplan, updateCheckplan } from "@/api/mes/dv/checkplan";
|
|
|
|
|
|
import Checkmachinery from "./machinery.vue"
|
|
|
|
|
|
import Checksubject from "./subject.vue"
|
|
|
|
|
|
// import {genCode} from "@/api/system/autocode/rule"
|
|
|
|
|
|
export default {
|
|
|
|
|
|
name: "Checkplan",
|
|
|
|
|
|
setup() {
|
|
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
|
|
const { mes_cycle_type, mes_order_status, dv_plan_type } = proxy.useDict("mes_cycle_type", "mes_order_status", "dv_plan_type");
|
|
|
|
|
|
return {
|
|
|
|
|
|
mes_cycle_type,
|
|
|
|
|
|
mes_order_status,
|
|
|
|
|
|
dv_plan_type
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
components:{Checkmachinery,Checksubject},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
autoGenFlag: false,
|
|
|
|
|
|
optType: null,
|
|
|
|
|
|
// 遮罩层
|
|
|
|
|
|
loading: true,
|
|
|
|
|
|
// 选中数组
|
|
|
|
|
|
ids: [],
|
|
|
|
|
|
// 非单个禁用
|
|
|
|
|
|
single: true,
|
|
|
|
|
|
// 非多个禁用
|
|
|
|
|
|
multiple: true,
|
|
|
|
|
|
// 显示搜索条件
|
|
|
|
|
|
showSearch: true,
|
|
|
|
|
|
// 总条数
|
|
|
|
|
|
total: 0,
|
|
|
|
|
|
// 设备点检方案头表格数据
|
|
|
|
|
|
checkplanList: [],
|
|
|
|
|
|
// 弹出层标题
|
|
|
|
|
|
title: "",
|
|
|
|
|
|
// 是否显示弹出层
|
|
|
|
|
|
open: false,
|
|
|
|
|
|
// 查询参数
|
|
|
|
|
|
queryParams: {
|
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
|
pageSize: 20,
|
|
|
|
|
|
planCode: null,
|
|
|
|
|
|
planName: null,
|
|
|
|
|
|
startDate: null,
|
|
|
|
|
|
endDate: null,
|
|
|
|
|
|
cycleType: null,
|
|
|
|
|
|
cycleCount: null,
|
|
|
|
|
|
status: null
|
|
|
|
|
|
},
|
|
|
|
|
|
// 表单参数
|
|
|
|
|
|
form: {},
|
|
|
|
|
|
// 表单校验
|
|
|
|
|
|
rules: {
|
|
|
|
|
|
planCode: [
|
|
|
|
|
|
{ required: true, message: "方案编码不能为空", trigger: "blur" },
|
|
|
|
|
|
{ max: 64, message: "字段过长", trigger: "blur" }
|
|
|
|
|
|
],
|
|
|
|
|
|
planName: [
|
|
|
|
|
|
{ required: true, message: "方案名称不能为空", trigger: "blur" },
|
|
|
|
|
|
{ max: 100, message: "字段过长", trigger: "blur" }
|
|
|
|
|
|
],
|
|
|
|
|
|
planType:[
|
|
|
|
|
|
{ required: true, message: "方案类型不能为空", trigger: "blur" }
|
|
|
|
|
|
],
|
|
|
|
|
|
cycleType: [
|
|
|
|
|
|
{ required: true, message: "请选择点检频率", trigger: "blur" }
|
|
|
|
|
|
],
|
|
|
|
|
|
cycleCount: [
|
|
|
|
|
|
{ required: true, message: "请输入点检次数", trigger: "blur" }
|
|
|
|
|
|
],
|
|
|
|
|
|
remark: [
|
|
|
|
|
|
{ max: 250, message: '长度必须小于250个字符', trigger: 'blur' }
|
|
|
|
|
|
]
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
},
|
|
|
|
|
|
created() {
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
/** 查询设备点检方案头列表 */
|
|
|
|
|
|
getList() {
|
|
|
|
|
|
this.loading = true;
|
|
|
|
|
|
listCheckplan(this.queryParams).then(response => {
|
|
|
|
|
|
this.checkplanList = response.rows;
|
|
|
|
|
|
this.total = response.total;
|
|
|
|
|
|
this.loading = false;
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
// 取消按钮
|
|
|
|
|
|
cancel() {
|
|
|
|
|
|
this.open = false;
|
|
|
|
|
|
this.reset();
|
|
|
|
|
|
},
|
|
|
|
|
|
// 表单重置
|
|
|
|
|
|
reset() {
|
|
|
|
|
|
this.form = {
|
|
|
|
|
|
planId: null,
|
|
|
|
|
|
planCode: null,
|
|
|
|
|
|
planName: null,
|
|
|
|
|
|
planType: null,
|
|
|
|
|
|
startDate: null,
|
|
|
|
|
|
endDate: null,
|
|
|
|
|
|
cycleType: null,
|
|
|
|
|
|
cycleCount: null,
|
|
|
|
|
|
status: 'PREPARE',
|
|
|
|
|
|
remark: null,
|
|
|
|
|
|
attr1: null,
|
|
|
|
|
|
attr2: null,
|
|
|
|
|
|
attr3: null,
|
|
|
|
|
|
attr4: null,
|
|
|
|
|
|
createBy: null,
|
|
|
|
|
|
createTime: null,
|
|
|
|
|
|
updateBy: null,
|
|
|
|
|
|
updateTime: null
|
|
|
|
|
|
};
|
|
|
|
|
|
this.autoGenFlag = false;
|
|
|
|
|
|
this.resetForm("form");
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
|
handleQuery() {
|
|
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
|
resetQuery() {
|
|
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
|
},
|
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
|
handleSelectionChange(selection) {
|
|
|
|
|
|
this.ids = selection.map(item => item.planId)
|
|
|
|
|
|
this.single = selection.length!==1
|
|
|
|
|
|
this.multiple = !selection.length
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
|
handleAdd() {
|
|
|
|
|
|
this.reset();
|
|
|
|
|
|
this.open = true;
|
|
|
|
|
|
this.title = "添加方案";
|
|
|
|
|
|
this.optType = "add";
|
|
|
|
|
|
},
|
|
|
|
|
|
// 查询明细按钮操作
|
|
|
|
|
|
handleView(row){
|
|
|
|
|
|
this.reset();
|
|
|
|
|
|
const planId = row.planId || this.ids;
|
|
|
|
|
|
getCheckplan(planId).then(response => {
|
|
|
|
|
|
this.form = response.data;
|
|
|
|
|
|
this.open = true;
|
|
|
|
|
|
this.title = "查看方案信息";
|
|
|
|
|
|
this.optType = "view";
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
|
handleUpdate(row) {
|
|
|
|
|
|
this.reset();
|
|
|
|
|
|
const planId = row.planId || this.ids
|
|
|
|
|
|
getCheckplan(planId).then(response => {
|
|
|
|
|
|
this.form = response.data;
|
|
|
|
|
|
this.open = true;
|
|
|
|
|
|
this.title = "修改方案";
|
|
|
|
|
|
this.optType = "edit";
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
|
submitForm() {
|
|
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
if (this.form.planId != null) {
|
|
|
|
|
|
updateCheckplan(this.form).then(response => {
|
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
|
this.open = false;
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
addCheckplan(this.form).then(response => {
|
|
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
|
|
this.open = false;
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
handleFinish(){
|
|
|
|
|
|
if(this.form.planId != null && this.form.status =='PREPARE'){
|
|
|
|
|
|
this.form.status='FINISHED';
|
|
|
|
|
|
updateCheckplan(this.form).then(response => {
|
|
|
|
|
|
this.$modal.msgSuccess("已启用");
|
|
|
|
|
|
this.open = false;
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
},err =>{
|
|
|
|
|
|
this.form.status='PREPARE';
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
handleDeFinish(){
|
|
|
|
|
|
if(this.form.planId != null && this.form.status =='FINISHED'){
|
|
|
|
|
|
this.form.status='PREPARE';
|
|
|
|
|
|
updateCheckplan(this.form).then(response => {
|
|
|
|
|
|
this.$modal.msgSuccess("已停用");
|
|
|
|
|
|
this.open = false;
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
},err =>{
|
|
|
|
|
|
this.form.status='FINISHED';
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
|
handleDelete(row) {
|
|
|
|
|
|
const planIds = row.planId || this.ids;
|
|
|
|
|
|
this.$modal.confirm('是否确认删除方案编号为"' + planIds + '"的数据项?').then(function() {
|
|
|
|
|
|
return delCheckplan(planIds);
|
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
|
},
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
|
handleExport() {
|
|
|
|
|
|
this.download('mes/dv/checkplan/export', {
|
|
|
|
|
|
...this.queryParams
|
|
|
|
|
|
}, `checkplan_${new Date().getTime()}.xlsx`)
|
|
|
|
|
|
},
|
|
|
|
|
|
//自动生成编码
|
|
|
|
|
|
handleAutoGenChange(autoGenFlag){
|
|
|
|
|
|
if(autoGenFlag){
|
|
|
|
|
|
/*genCode('CHECKPLAN_CODE').then(response =>{
|
|
|
|
|
|
this.form.planCode = response;
|
|
|
|
|
|
});*/
|
|
|
|
|
|
}else{
|
|
|
|
|
|
this.form.planCode = null;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
</script>
|