Commit 28ae2cfd authored by 李驰骋's avatar 李驰骋

排程日志添加

排程提示显示返回信息
parent cd76e88b
import request from '@/utils/request'
// 查询排产日志列表
export function listScheduleLog(query) {
return request({
url: '/pro/scheduleLog/list',
method: 'get',
params: query
})
}
// 查询排产日志详细
export function getScheduleLog(id) {
return request({
url: '/pro/scheduleLog/' + id,
method: 'get'
})
}
// 新增排产日志
export function addScheduleLog(data) {
return request({
url: '/pro/scheduleLog',
method: 'post',
data: data
})
}
// 修改排产日志
export function updateScheduleLog(data) {
return request({
url: '/pro/scheduleLog',
method: 'put',
data: data
})
}
// 删除排产日志
export function delScheduleLog(id) {
return request({
url: '/pro/scheduleLog/' + id,
method: 'delete'
})
}
......@@ -1008,7 +1008,7 @@ export default {
type: 'info'
});
makeSchedule(formData).then(response => {
this.$modal.msgSuccess("排程成功");
this.$modal.msgSuccess(response.msg);
this.scheduleVisible = false
this.scheduleBtnDis = false
this.getList();
......
<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="finishDate">
<el-date-picker clearable
v-model="queryParams.dateRange"
type="datetimerange"
format="yyyy-MM-dd HH:mm"
value-format="yyyy-MM-dd HH:mm"
placeholder="请选择排产开始时间">
</el-date-picker>
</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>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="scheduleLogList" @selection-change="handleSelectionChange">
<el-table-column label="编排单号" align="center" prop="arrangeCodes" />
<el-table-column label="排产开始时间" align="center" prop="createTime" width="180"/>
<el-table-column label="排产完成时间" align="center" prop="finishDate" width="180"/>
<el-table-column label="备注" align="center" prop="remark" />
<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)"
v-hasPermi="['pro:scheduleLog:edit']"
>查看</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="700px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="编排单号" prop="arrangeCodes">
<el-input v-model="form.arrangeCodes" type="textarea" placeholder="请输入内容" />
</el-form-item>
<el-form-item label="排产开始时间" prop="createTime">
<el-date-picker clearable
v-model="form.createTime"
type="datetime"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="请选择排产完成时间">
</el-date-picker>
</el-form-item>
<el-form-item label="排产完成时间" prop="finishDate">
<el-date-picker clearable
v-model="form.finishDate"
type="datetime"
value-format="yyyy-MM-dd HH:mm:ss"
placeholder="请选择排产完成时间">
</el-date-picker>
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="cancel">关 闭</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listScheduleLog, getScheduleLog, delScheduleLog, addScheduleLog, updateScheduleLog } from "@/api/mes/pro/scheduleLog";
export default {
name: "ScheduleLog",
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 排产日志表格数据
scheduleLogList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
orderByColumn:'createTime',
isAsc:'desc'
},
// 表单参数
form: {},
// 表单校验
rules: {
}
};
},
created() {
this.getList();
},
methods: {
/** 查询排产日志列表 */
getList() {
this.loading = true;
if(this.queryParams.dateRange){
this.queryParams.createTimeGt=this.queryParams.dateRange[0];
this.queryParams.createTimeLe=this.queryParams.dateRange[1];
}
listScheduleLog(this.queryParams).then(response => {
this.scheduleLogList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null, arrangeCodes: null, createBy: null, createTime: null, finishDate: null, remark: 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
getScheduleLog(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) {
updateScheduleLog(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addScheduleLog(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除排产日志编号为"' + ids + '"的数据项?').then(function() {
return delScheduleLog(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('pro/scheduleLog/export', {
...this.queryParams
}, `scheduleLog_${new Date().getTime()}.xlsx`)
}
}
};
</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