330 lines
9.7 KiB
Vue
330 lines
9.7 KiB
Vue
|
<template>
|
||
|
<div class="app-container">
|
||
|
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
|
||
|
<el-form-item label="父id" prop="parentId">
|
||
|
<el-input
|
||
|
v-model="queryParams.parentId"
|
||
|
placeholder="请输入父id"
|
||
|
clearable
|
||
|
@keyup.enter="handleQuery"
|
||
|
/>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="主表id" prop="mainId">
|
||
|
<el-input
|
||
|
v-model="queryParams.mainId"
|
||
|
placeholder="请输入主表id"
|
||
|
clearable
|
||
|
@keyup.enter="handleQuery"
|
||
|
/>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="名称" prop="name">
|
||
|
<el-input
|
||
|
v-model="queryParams.name"
|
||
|
placeholder="请输入名称"
|
||
|
clearable
|
||
|
@keyup.enter="handleQuery"
|
||
|
/>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="计划时间" prop="planDate">
|
||
|
<el-date-picker clearable
|
||
|
v-model="queryParams.planDate"
|
||
|
type="date"
|
||
|
value-format="YYYY-MM-DD"
|
||
|
placeholder="选择计划时间">
|
||
|
</el-date-picker>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="实际时间" prop="actualDate">
|
||
|
<el-date-picker clearable
|
||
|
v-model="queryParams.actualDate"
|
||
|
type="date"
|
||
|
value-format="YYYY-MM-DD"
|
||
|
placeholder="选择实际时间">
|
||
|
</el-date-picker>
|
||
|
</el-form-item>
|
||
|
<el-form-item>
|
||
|
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||
|
<el-button icon="Refresh" @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"
|
||
|
@click="handleAdd"
|
||
|
v-hasPermi="['mts:planDetail:add']"
|
||
|
>新增</el-button>
|
||
|
</el-col>
|
||
|
<el-col :span="1.5">
|
||
|
<el-button
|
||
|
type="info"
|
||
|
plain
|
||
|
icon="Sort"
|
||
|
@click="toggleExpandAll"
|
||
|
>展开/折叠</el-button>
|
||
|
</el-col>
|
||
|
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
|
||
|
</el-row>
|
||
|
|
||
|
<el-table
|
||
|
v-if="refreshTable"
|
||
|
v-loading="loading"
|
||
|
:data="planDetailList"
|
||
|
row-key="id"
|
||
|
:default-expand-all="isExpandAll"
|
||
|
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
|
||
|
>
|
||
|
<el-table-column label="父id" prop="parentId" />
|
||
|
<el-table-column label="主表id" align="center" prop="mainId" />
|
||
|
<el-table-column label="名称" align="center" prop="name" />
|
||
|
<el-table-column label="计划时间" align="center" prop="planDate" width="180">
|
||
|
<template #default="scope">
|
||
|
<span>{{ parseTime(scope.row.planDate, '{y}-{m}-{d}') }}</span>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="实际时间" align="center" prop="actualDate" width="180">
|
||
|
<template #default="scope">
|
||
|
<span>{{ parseTime(scope.row.actualDate, '{y}-{m}-{d}') }}</span>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||
|
<template #default="scope">
|
||
|
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['mts:planDetail:edit']">修改</el-button>
|
||
|
<el-button link type="primary" icon="Plus" @click="handleAdd(scope.row)" v-hasPermi="['mts:planDetail:add']">新增</el-button>
|
||
|
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['mts:planDetail:remove']">删除</el-button>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
</el-table>
|
||
|
|
||
|
<!-- 添加或修改生产计划明细对话框 -->
|
||
|
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
|
||
|
<el-form ref="planDetailRef" :model="form" :rules="rules" label-width="80px">
|
||
|
<el-form-item label="父id" prop="parentId">
|
||
|
<el-tree-select
|
||
|
v-model="form.parentId"
|
||
|
:data="planDetailOptions"
|
||
|
:props="{ value: 'id', label: 'name', children: 'children' }"
|
||
|
value-key="id"
|
||
|
placeholder="请选择父id"
|
||
|
check-strictly
|
||
|
/>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="主表id" prop="mainId">
|
||
|
<el-input v-model="form.mainId" placeholder="请输入主表id" />
|
||
|
</el-form-item>
|
||
|
<el-form-item label="名称" prop="name">
|
||
|
<el-input v-model="form.name" placeholder="请输入名称" />
|
||
|
</el-form-item>
|
||
|
<el-form-item label="计划时间" prop="planDate">
|
||
|
<el-date-picker clearable
|
||
|
v-model="form.planDate"
|
||
|
type="datetime"
|
||
|
value-format="YYYY-MM-DD HH:mm:ss"
|
||
|
placeholder="选择计划时间">
|
||
|
</el-date-picker>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="实际时间" prop="actualDate">
|
||
|
<el-date-picker clearable
|
||
|
v-model="form.actualDate"
|
||
|
type="datetime"
|
||
|
value-format="YYYY-MM-DD HH:mm:ss"
|
||
|
placeholder="选择实际时间">
|
||
|
</el-date-picker>
|
||
|
</el-form-item>
|
||
|
</el-form>
|
||
|
<template #footer>
|
||
|
<div class="dialog-footer">
|
||
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||
|
<el-button @click="cancel">取 消</el-button>
|
||
|
</div>
|
||
|
</template>
|
||
|
</el-dialog>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup name="PlanDetail">
|
||
|
import { listPlanDetail, getPlanDetail, delPlanDetail, addPlanDetail, updatePlanDetail } from "@/api/mts/planDetail";
|
||
|
|
||
|
const { proxy } = getCurrentInstance();
|
||
|
|
||
|
const planDetailList = ref([]);
|
||
|
const planDetailOptions = ref([]);
|
||
|
const open = ref(false);
|
||
|
const buttonLoading = ref(false);
|
||
|
const loading = ref(true);
|
||
|
const showSearch = ref(true);
|
||
|
const title = ref("");
|
||
|
const isExpandAll = ref(true);
|
||
|
const refreshTable = ref(true);
|
||
|
|
||
|
const data = reactive({
|
||
|
form: {},
|
||
|
queryParams: {
|
||
|
parentId: undefined,
|
||
|
mainId: undefined,
|
||
|
name: undefined,
|
||
|
planDate: undefined,
|
||
|
actualDate: undefined,
|
||
|
},
|
||
|
rules: {
|
||
|
id: [
|
||
|
{ required: true, message: "主键不能为空", trigger: "blur" }
|
||
|
],
|
||
|
parentId: [
|
||
|
{ required: true, message: "父id不能为空", trigger: "blur" }
|
||
|
],
|
||
|
mainId: [
|
||
|
{ required: true, message: "主表id不能为空", trigger: "blur" }
|
||
|
],
|
||
|
name: [
|
||
|
{ required: true, message: "名称不能为空", trigger: "blur" }
|
||
|
],
|
||
|
planDate: [
|
||
|
{ required: true, message: "计划时间不能为空", trigger: "blur" }
|
||
|
],
|
||
|
actualDate: [
|
||
|
{ required: true, message: "实际时间不能为空", trigger: "blur" }
|
||
|
],
|
||
|
}
|
||
|
});
|
||
|
|
||
|
const { queryParams, form, rules } = toRefs(data);
|
||
|
|
||
|
/** 查询生产计划明细列表 */
|
||
|
function getList() {
|
||
|
loading.value = true;
|
||
|
listPlanDetail(queryParams.value).then(response => {
|
||
|
planDetailList.value = proxy.handleTree(response.data, "id", "parentId");
|
||
|
loading.value = false;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/** 查询生产计划明细下拉树结构 */
|
||
|
function getTreeselect() {
|
||
|
listPlanDetail().then(response => {
|
||
|
planDetailOptions.value = [];
|
||
|
const data = { id: 0, name: '顶级节点', children: [] };
|
||
|
data.children = proxy.handleTree(response.data, "id", "parentId");
|
||
|
planDetailOptions.value.push(data);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
// 取消按钮
|
||
|
function cancel() {
|
||
|
open.value = false;
|
||
|
reset();
|
||
|
}
|
||
|
|
||
|
// 表单重置
|
||
|
function reset() {
|
||
|
form.value = {
|
||
|
id: null,
|
||
|
parentId: null,
|
||
|
mainId: null,
|
||
|
name: null,
|
||
|
planDate: null,
|
||
|
actualDate: null,
|
||
|
createBy: null,
|
||
|
createTime: null,
|
||
|
updateBy: null,
|
||
|
updateTime: null,
|
||
|
delFlag: null
|
||
|
};
|
||
|
proxy.resetForm("planDetailRef");
|
||
|
}
|
||
|
|
||
|
/** 搜索按钮操作 */
|
||
|
function handleQuery() {
|
||
|
getList();
|
||
|
}
|
||
|
|
||
|
/** 重置按钮操作 */
|
||
|
function resetQuery() {
|
||
|
proxy.resetForm("queryRef");
|
||
|
handleQuery();
|
||
|
}
|
||
|
|
||
|
/** 新增按钮操作 */
|
||
|
function handleAdd(row) {
|
||
|
reset();
|
||
|
getTreeselect();
|
||
|
if (row != null && row.id) {
|
||
|
form.value.parentId = row.id;
|
||
|
} else {
|
||
|
form.value.parentId = 0;
|
||
|
}
|
||
|
open.value = true;
|
||
|
title.value = "添加生产计划明细";
|
||
|
}
|
||
|
|
||
|
/** 展开/折叠操作 */
|
||
|
function toggleExpandAll() {
|
||
|
refreshTable.value = false;
|
||
|
isExpandAll.value = !isExpandAll.value;
|
||
|
nextTick(() => {
|
||
|
refreshTable.value = true;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/** 修改按钮操作 */
|
||
|
async function handleUpdate(row) {
|
||
|
loading.value = true;
|
||
|
reset();
|
||
|
await getTreeselect();
|
||
|
if (row != null) {
|
||
|
form.value.parentId = row.parentId;
|
||
|
}
|
||
|
getPlanDetail(row.id).then(response => {
|
||
|
loading.value = false;
|
||
|
form.value = response.data;
|
||
|
open.value = true;
|
||
|
title.value = "修改生产计划明细";
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/** 提交按钮 */
|
||
|
function submitForm() {
|
||
|
proxy.$refs["planDetailRef"].validate(valid => {
|
||
|
if (valid) {
|
||
|
buttonLoading.value = true;
|
||
|
if (form.value.id != null) {
|
||
|
updatePlanDetail(form.value).then(response => {
|
||
|
proxy.$modal.msgSuccess("修改成功");
|
||
|
open.value = false;
|
||
|
getList();
|
||
|
}).finally(() => {
|
||
|
buttonLoading.value = false;
|
||
|
});
|
||
|
} else {
|
||
|
addPlanDetail(form.value).then(response => {
|
||
|
proxy.$modal.msgSuccess("新增成功");
|
||
|
open.value = false;
|
||
|
getList();
|
||
|
}).finally(() => {
|
||
|
buttonLoading.value = false;
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/** 删除按钮操作 */
|
||
|
function handleDelete(row) {
|
||
|
proxy.$modal.confirm('是否确认删除生产计划明细编号为"' + row.id + '"的数据项?').then(function() {
|
||
|
loading.value = true;
|
||
|
return delPlanDetail(row.id);
|
||
|
}).then(() => {
|
||
|
loading.value = false;
|
||
|
getList();
|
||
|
proxy.$modal.msgSuccess("删除成功");
|
||
|
}).catch(() => {
|
||
|
}).finally(() => {
|
||
|
loading.value = false;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
getList();
|
||
|
</script>
|