add 新增导入组件; update 更新配方bom的导入功能
This commit is contained in:
parent
30d577e65b
commit
4ef75b055e
188
src/components/DialogUpload.vue
Normal file
188
src/components/DialogUpload.vue
Normal file
@ -0,0 +1,188 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog
|
||||||
|
class="dialog-just-form"
|
||||||
|
:visible="visible"
|
||||||
|
@close="handleClose"
|
||||||
|
width="30%"
|
||||||
|
:title="title"
|
||||||
|
:destroy-on-close="false"
|
||||||
|
:close-on-click-modal="configs.clickModalToClose ?? true">
|
||||||
|
<el-upload
|
||||||
|
style="margin-top: 24px; text-align: center"
|
||||||
|
drag
|
||||||
|
:action="urls.importOrderUrl"
|
||||||
|
:headers="uploadHeaders"
|
||||||
|
:show-file-list="false"
|
||||||
|
:on-error="handleError"
|
||||||
|
:on-success="handleSuccess">
|
||||||
|
<i class="el-icon-upload"></i>
|
||||||
|
<div class="el-upload__text">
|
||||||
|
将文件拖到此处,或
|
||||||
|
<em>点击上传</em>
|
||||||
|
</div>
|
||||||
|
<div class="el-upload__tip" slot="tip">{{ hint }}</div>
|
||||||
|
</el-upload>
|
||||||
|
|
||||||
|
<div slot="footer">
|
||||||
|
<el-button type="success" @click="handleBtnClick({ name: 'download-template', filename, url })">下载模板</el-button>
|
||||||
|
<el-button @click="handleBtnClick({ name: 'cancel' })">取消</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { pick as __pick } from "@/utils/filters";
|
||||||
|
import Cookies from "js-cookie";
|
||||||
|
// import moment from "moment";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "DialogUpload",
|
||||||
|
props: {
|
||||||
|
title: {
|
||||||
|
type: String,
|
||||||
|
default: '导入'
|
||||||
|
},
|
||||||
|
hint: {
|
||||||
|
hint: String,
|
||||||
|
default: '只能上传 Excel 文件'
|
||||||
|
},
|
||||||
|
filename: {
|
||||||
|
hint: String,
|
||||||
|
default: 'default_file.xlsx'
|
||||||
|
},
|
||||||
|
url: { // 下载地址
|
||||||
|
hint: String,
|
||||||
|
default: '/importTemplates/orderImport.xlsx'
|
||||||
|
},
|
||||||
|
configs: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({
|
||||||
|
clickModalToClose: true,
|
||||||
|
forms: null,
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
inject: ["urls"],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
loadingStatus: false,
|
||||||
|
visible: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
uploadHeaders() {
|
||||||
|
return {
|
||||||
|
token: Cookies.get("token") || "",
|
||||||
|
};
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
init(data) {
|
||||||
|
this.visible = true;
|
||||||
|
},
|
||||||
|
|
||||||
|
fileTypeCheck() {
|
||||||
|
// 上传前检查文件类型: Boolean
|
||||||
|
},
|
||||||
|
|
||||||
|
fileSizeCheck() {
|
||||||
|
// 上传前检查文件大小: Boolean
|
||||||
|
},
|
||||||
|
|
||||||
|
handleSuccess(response, file, fileList) {
|
||||||
|
// console.log("success response", response);
|
||||||
|
let message = "";
|
||||||
|
let isError = false;
|
||||||
|
|
||||||
|
if (typeof response === "object" && "msg" in response) message = response.msg;
|
||||||
|
if (typeof response === "object" && "data" in response) message = response.data.toString();
|
||||||
|
if (typeof response === "string") {
|
||||||
|
message = response;
|
||||||
|
isError = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.handleClose();
|
||||||
|
|
||||||
|
this.$message({
|
||||||
|
message,
|
||||||
|
type: isError ? "error" : "info",
|
||||||
|
duration: 2000,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
handleError(err, file, fileList) {
|
||||||
|
console.log("err", err);
|
||||||
|
},
|
||||||
|
|
||||||
|
handleBtnClick(payload) {
|
||||||
|
if ("name" in payload) {
|
||||||
|
switch (payload.name) {
|
||||||
|
case "cancel":
|
||||||
|
this.handleClose();
|
||||||
|
break;
|
||||||
|
case "download-template":
|
||||||
|
this.handleDownloadTemplate(payload.filename, payload.url);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
handleDownloadTemplate(filename, href) {
|
||||||
|
this.$notify({
|
||||||
|
title: "提示",
|
||||||
|
message: "开始下载",
|
||||||
|
type: "success",
|
||||||
|
});
|
||||||
|
|
||||||
|
// 下载模板
|
||||||
|
let a = document.createElement("a");
|
||||||
|
a.href = href;
|
||||||
|
a.download = filename ?? "orderTemplate.xlsx";
|
||||||
|
document.body.appendChild(a);
|
||||||
|
a.click();
|
||||||
|
document.body.removeChild(a);
|
||||||
|
},
|
||||||
|
|
||||||
|
handleUploadChange(file, fileList) {
|
||||||
|
// console.log("[Upload] handleUploadChange...", file, fileList);
|
||||||
|
},
|
||||||
|
|
||||||
|
handleClose() {
|
||||||
|
this.visible = false;
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
this.$emit("destroy-dialog");
|
||||||
|
}, 200);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.dialog-just-form >>> .el-dialog__body {
|
||||||
|
/* padding-top: 16px !important;
|
||||||
|
padding-bottom: 16px !important; */
|
||||||
|
padding-top: 0 !important;
|
||||||
|
padding-bottom: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.el-select,
|
||||||
|
.el-cascader,
|
||||||
|
.el-date-editor {
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialog-just-form >>> .el-dialog__header {
|
||||||
|
padding: 10px 20px 10px;
|
||||||
|
/* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), white); */
|
||||||
|
}
|
||||||
|
|
||||||
|
.h0 {
|
||||||
|
height: 0;
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialog-just-form >>> .dialog-demo {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
@ -4,23 +4,54 @@
|
|||||||
<!-- <head-form :form-config="headFormConfig" @headBtnClick="btnClick" /> -->
|
<!-- <head-form :form-config="headFormConfig" @headBtnClick="btnClick" /> -->
|
||||||
<BaseSearchForm :head-config="headConfig" @btn-click="handleBtnClick" />
|
<BaseSearchForm :head-config="headConfig" @btn-click="handleBtnClick" />
|
||||||
|
|
||||||
<BaseListTable v-loading="tableLoading" :table-config="tableConfig.table" :column-config="tableConfig.column"
|
<BaseListTable
|
||||||
:table-data="dataList" @operate-event="handleOperate" :current-page="page" :current-size="size"
|
v-loading="tableLoading"
|
||||||
|
:table-config="tableConfig.table"
|
||||||
|
:column-config="tableConfig.column"
|
||||||
|
:table-data="dataList"
|
||||||
|
@operate-event="handleOperate"
|
||||||
|
:current-page="page"
|
||||||
|
:current-size="size"
|
||||||
:refresh-layout-key="refreshLayoutKey" />
|
:refresh-layout-key="refreshLayoutKey" />
|
||||||
|
|
||||||
<el-pagination class="mt-5 flex justify-end" @size-change="handleSizeChange" @current-change="handlePageChange"
|
<el-pagination
|
||||||
:current-page.sync="page" :page-sizes="[1, 5, 10, 20, 50, 100]" :page-size="size" :total="totalPage"
|
class="mt-5 flex justify-end"
|
||||||
|
@size-change="handleSizeChange"
|
||||||
|
@current-change="handlePageChange"
|
||||||
|
:current-page.sync="page"
|
||||||
|
:page-sizes="[1, 5, 10, 20, 50, 100]"
|
||||||
|
:page-size="size"
|
||||||
|
:total="totalPage"
|
||||||
layout="total, sizes, prev, pager, next, jumper"></el-pagination>
|
layout="total, sizes, prev, pager, next, jumper"></el-pagination>
|
||||||
<!-- :current-page.sync="currentPage"
|
<!-- :current-page.sync="currentPage"
|
||||||
:page-size.sync="pageSize" -->
|
:page-size.sync="pageSize" -->
|
||||||
|
|
||||||
<DialogWithMenu ref="edit-dialog" v-if="!!dialogConfigs && dialogType === DIALOG_WITH_MENU"
|
<DialogWithMenu
|
||||||
:dialog-visible.sync="dialogVisible" :configs="dialogConfigs" @refreshDataList="getList" />
|
ref="edit-dialog"
|
||||||
<DialogJustForm ref="edit-dialog" v-if="!!dialogConfigs && dialogType === DIALOG_JUST_FORM"
|
v-if="!!dialogConfigs && dialogType === DIALOG_WITH_MENU"
|
||||||
:dialog-visible.sync="dialogVisible" :configs="dialogConfigs" @refreshDataList="getList"
|
:dialog-visible.sync="dialogVisible"
|
||||||
|
:configs="dialogConfigs"
|
||||||
|
@refreshDataList="getList" />
|
||||||
|
<DialogJustForm
|
||||||
|
ref="edit-dialog"
|
||||||
|
v-if="!!dialogConfigs && dialogType === DIALOG_JUST_FORM"
|
||||||
|
:dialog-visible.sync="dialogVisible"
|
||||||
|
:configs="dialogConfigs"
|
||||||
|
@refreshDataList="getList"
|
||||||
@emit-data="handleOperate" />
|
@emit-data="handleOperate" />
|
||||||
<DialogCarPayload ref="car-payload-dialog" v-if="!!carPayloadDialogConfigs"
|
<DialogCarPayload
|
||||||
:dialog-visible.sync="carPayloadDialogVisible" :configs="carPayloadDialogConfigs" @refreshDataList="getList" />
|
ref="car-payload-dialog"
|
||||||
|
v-if="!!carPayloadDialogConfigs"
|
||||||
|
:dialog-visible.sync="carPayloadDialogVisible"
|
||||||
|
:configs="carPayloadDialogConfigs"
|
||||||
|
@refreshDataList="getList" />
|
||||||
|
<DialogUpload
|
||||||
|
ref="upload-dialog"
|
||||||
|
v-if="uploadDialogVisible"
|
||||||
|
title="导入配方"
|
||||||
|
url="/importTemplates/bomImport.xlsx"
|
||||||
|
filename="bomTemplate.xlsx"
|
||||||
|
@refresh-list="getList" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -30,6 +61,7 @@ import BaseSearchForm from "@/components/BaseSearchForm.vue";
|
|||||||
import DialogWithMenu from "@/components/DialogWithMenu.vue";
|
import DialogWithMenu from "@/components/DialogWithMenu.vue";
|
||||||
import DialogJustForm from "@/components/DialogJustForm.vue";
|
import DialogJustForm from "@/components/DialogJustForm.vue";
|
||||||
import DialogCarPayload from "@/components/DialogCarPayload.vue";
|
import DialogCarPayload from "@/components/DialogCarPayload.vue";
|
||||||
|
import DialogUpload from "@/components/DialogUpload.vue";
|
||||||
import moment from "moment";
|
import moment from "moment";
|
||||||
|
|
||||||
const DIALOG_WITH_MENU = "DialogWithMenu";
|
const DIALOG_WITH_MENU = "DialogWithMenu";
|
||||||
@ -38,7 +70,7 @@ const DIALOG_CARPAYLOAD = "DialogCarPayload";
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "ListViewWithHead",
|
name: "ListViewWithHead",
|
||||||
components: { BaseSearchForm, BaseListTable, DialogWithMenu, DialogJustForm, DialogCarPayload },
|
components: { BaseSearchForm, BaseListTable, DialogWithMenu, DialogJustForm, DialogCarPayload, DialogUpload },
|
||||||
props: {
|
props: {
|
||||||
tableConfig: {
|
tableConfig: {
|
||||||
type: Object,
|
type: Object,
|
||||||
@ -109,6 +141,7 @@ export default {
|
|||||||
dataList: [],
|
dataList: [],
|
||||||
tableLoading: false,
|
tableLoading: false,
|
||||||
refreshLayoutKey: null,
|
refreshLayoutKey: null,
|
||||||
|
uploadDialogVisible: false,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
inject: ["urls"],
|
inject: ["urls"],
|
||||||
@ -123,9 +156,9 @@ export default {
|
|||||||
const params = queryParams
|
const params = queryParams
|
||||||
? { ...queryParams, page: this.page, limit: this.size }
|
? { ...queryParams, page: this.page, limit: this.size }
|
||||||
: {
|
: {
|
||||||
page: this.page,
|
page: this.page,
|
||||||
limit: this.size,
|
limit: this.size,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!queryParams && this.listQueryExtra && this.listQueryExtra.length) {
|
if (!queryParams && this.listQueryExtra && this.listQueryExtra.length) {
|
||||||
this.listQueryExtra.map((nameOrObj) => {
|
this.listQueryExtra.map((nameOrObj) => {
|
||||||
@ -138,18 +171,15 @@ export default {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// if (this.urls.pageIsPostApi) {
|
|
||||||
// } else {
|
|
||||||
// 默认是 get 方式请求 page
|
|
||||||
this.$http[this.urls.pageIsPostApi ? "post" : "get"](
|
this.$http[this.urls.pageIsPostApi ? "post" : "get"](
|
||||||
this.urls.page,
|
this.urls.page,
|
||||||
this.urls.pageIsPostApi
|
this.urls.pageIsPostApi
|
||||||
? {
|
? {
|
||||||
...params,
|
...params,
|
||||||
}
|
}
|
||||||
: {
|
: {
|
||||||
params,
|
params,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
.then(({ data: res }) => {
|
.then(({ data: res }) => {
|
||||||
console.log("[http response] res is: ", res);
|
console.log("[http response] res is: ", res);
|
||||||
@ -245,7 +275,7 @@ export default {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch((err) => { });
|
.catch((err) => {});
|
||||||
}
|
}
|
||||||
case "edit": {
|
case "edit": {
|
||||||
this.openDialog(data); /** data is ==> id */
|
this.openDialog(data); /** data is ==> id */
|
||||||
@ -300,7 +330,7 @@ export default {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case "to-bom-detail": {
|
case "to-bom-detail": {
|
||||||
console.log('to-bom-detail', data)
|
console.log("to-bom-detail", data);
|
||||||
// 查看配方详情
|
// 查看配方详情
|
||||||
return this.$router.push({
|
return this.$router.push({
|
||||||
name: "pms-bomDetails",
|
name: "pms-bomDetails",
|
||||||
@ -381,40 +411,39 @@ export default {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
case "detach": {
|
case "detach": {
|
||||||
|
return this.$confirm("是否下发?", "提示", {
|
||||||
return this.$confirm('是否下发?', '提示', {
|
confirmButtonText: "确定",
|
||||||
confirmButtonText: '确定',
|
cancelButtonText: "取消",
|
||||||
cancelButtonText: '取消',
|
type: "warning",
|
||||||
type: 'warning'
|
})
|
||||||
}).then(() => {
|
.then(() => {
|
||||||
this.$http
|
this.$http
|
||||||
.post(this.urls.detach, data /* { id: data } */, { headers: { "Content-Type": "application/json" } })
|
.post(this.urls.detach, data /* { id: data } */, { headers: { "Content-Type": "application/json" } })
|
||||||
.then(({ data: res }) => {
|
.then(({ data: res }) => {
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: "下发成功",
|
message: "下发成功",
|
||||||
type: "success",
|
type: "success",
|
||||||
duration: 1500,
|
duration: 1500,
|
||||||
onClose: () => {
|
onClose: () => {
|
||||||
this.getList();
|
this.getList();
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
this.$message({
|
this.$message({
|
||||||
message: `${res.code}: ${res.msg}`,
|
message: `${res.code}: ${res.msg}`,
|
||||||
type: "error",
|
type: "error",
|
||||||
duration: 1500,
|
duration: 1500,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
})
|
||||||
|
.catch(() => {
|
||||||
|
this.$message({
|
||||||
|
type: "warning",
|
||||||
|
message: "已取消下发",
|
||||||
});
|
});
|
||||||
}).catch(() => {
|
|
||||||
this.$message({
|
|
||||||
type: 'warning',
|
|
||||||
message: '已取消下发'
|
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
case "to-car-history": {
|
case "to-car-history": {
|
||||||
return this.$router.push({
|
return this.$router.push({
|
||||||
@ -431,19 +460,21 @@ export default {
|
|||||||
}
|
}
|
||||||
case "sync": {
|
case "sync": {
|
||||||
// 同步单个料仓数据
|
// 同步单个料仓数据
|
||||||
this.$http.post(this.urls.syncSingleUrl, data, {
|
this.$http
|
||||||
headers: {
|
.post(this.urls.syncSingleUrl, data, {
|
||||||
"Content-Type": "application/json"
|
headers: {
|
||||||
}
|
"Content-Type": "application/json",
|
||||||
}).then(({ data: res }) => {
|
},
|
||||||
if (res.code === 0) {
|
})
|
||||||
this.$message({
|
.then(({ data: res }) => {
|
||||||
message: '同步成功',
|
if (res.code === 0) {
|
||||||
type: 'success'
|
this.$message({
|
||||||
});
|
message: "同步成功",
|
||||||
this.getList();
|
type: "success",
|
||||||
}
|
});
|
||||||
})
|
this.getList();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -461,7 +492,9 @@ export default {
|
|||||||
case "新增":
|
case "新增":
|
||||||
this.openDialog();
|
this.openDialog();
|
||||||
break;
|
break;
|
||||||
|
case "导入":
|
||||||
|
this.openUploadDialog();
|
||||||
|
break;
|
||||||
case "手动添加": {
|
case "手动添加": {
|
||||||
this.openDialog();
|
this.openDialog();
|
||||||
return;
|
return;
|
||||||
@ -502,9 +535,9 @@ export default {
|
|||||||
case "同步":
|
case "同步":
|
||||||
case "全部同步":
|
case "全部同步":
|
||||||
this.$http.post(this.urls.syncUrl).then(({ data: res }) => {
|
this.$http.post(this.urls.syncUrl).then(({ data: res }) => {
|
||||||
console.log('全部同步', res)
|
console.log("全部同步", res);
|
||||||
if (res.code === 0) {
|
if (res.code === 0) {
|
||||||
this.$message({ message: '同步成功', type: 'success' })
|
this.$message({ message: "同步成功", type: "success" });
|
||||||
this.getList();
|
this.getList();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -540,6 +573,14 @@ export default {
|
|||||||
this.$refs["edit-dialog"].init(/** some args... */ row_id, detail_mode, tag_info, extraParams);
|
this.$refs["edit-dialog"].init(/** some args... */ row_id, detail_mode, tag_info, extraParams);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
openUploadDialog() {
|
||||||
|
this.uploadDialogVisible = true;
|
||||||
|
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs["upload-dialog"].init();
|
||||||
|
});
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -251,6 +251,7 @@ export default function () {
|
|||||||
copyUrl: "/pms/bom/copy",
|
copyUrl: "/pms/bom/copy",
|
||||||
subase: "/pms/bomMaterial",
|
subase: "/pms/bomMaterial",
|
||||||
subpage: "/pms/bomMaterial/page",
|
subpage: "/pms/bomMaterial/page",
|
||||||
|
importOrderUrl: '/pms/order/importExcelBom', // 导入的api
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user