|
@@ -0,0 +1,293 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <el-card class="box-card">
|
|
|
+ <el-tabs v-model="activeName" type="card" @tab-change="changeActiveName">
|
|
|
+ <el-tab-pane label="成品库" name="first">
|
|
|
+ <byTable
|
|
|
+ :source="sourceList.data"
|
|
|
+ :pagination="sourceList.pagination"
|
|
|
+ :config="config"
|
|
|
+ :loading="loading"
|
|
|
+ :searchConfig="searchConfig"
|
|
|
+ highlight-current-row
|
|
|
+ :action-list="[
|
|
|
+ {
|
|
|
+ text: '导出Excel',
|
|
|
+ action: () => deriveExcel(),
|
|
|
+ },
|
|
|
+ ]"
|
|
|
+ @get-list="getList"
|
|
|
+ @clickReset="clickReset">
|
|
|
+ </byTable>
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane label="成品库明细" name="second">
|
|
|
+ <byTable
|
|
|
+ :source="sourceListTwo.data"
|
|
|
+ :pagination="sourceListTwo.pagination"
|
|
|
+ :config="configTwo"
|
|
|
+ :loading="loading"
|
|
|
+ :searchConfig="searchConfigTwo"
|
|
|
+ highlight-current-row
|
|
|
+ :action-list="[
|
|
|
+ {
|
|
|
+ text: '导出Excel',
|
|
|
+ action: () => deriveExcelTwo(),
|
|
|
+ },
|
|
|
+ ]"
|
|
|
+ @get-list="getListTwo"
|
|
|
+ @clickReset="clickResetTwo">
|
|
|
+ </byTable>
|
|
|
+ </el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
+ </el-card>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup>
|
|
|
+import byTable from "/src/components/byTable/index";
|
|
|
+
|
|
|
+const { proxy } = getCurrentInstance();
|
|
|
+const activeName = ref("first");
|
|
|
+const departmentList = ref([{ dictKey: "0", dictValue: "胜德体育" }]);
|
|
|
+const sourceList = ref({
|
|
|
+ data: [],
|
|
|
+ pagination: {
|
|
|
+ total: 0,
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ skuSpecCode: "",
|
|
|
+ skuSpecName: "",
|
|
|
+ },
|
|
|
+});
|
|
|
+const sourceListTwo = ref({
|
|
|
+ data: [],
|
|
|
+ pagination: {
|
|
|
+ total: 0,
|
|
|
+ pageNum: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ skuSpecCode: "",
|
|
|
+ skuSpecName: "",
|
|
|
+ orderCode: "",
|
|
|
+ orderWlnCode: "",
|
|
|
+ departmentId: "",
|
|
|
+ },
|
|
|
+});
|
|
|
+const loading = ref(false);
|
|
|
+const searchConfig = computed(() => {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "skuSpecCode",
|
|
|
+ label: "SKU品号",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "skuSpecName",
|
|
|
+ label: "SKU品名",
|
|
|
+ },
|
|
|
+ ];
|
|
|
+});
|
|
|
+const searchConfigTwo = computed(() => {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "orderCode",
|
|
|
+ label: "订单号",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "orderWlnCode",
|
|
|
+ label: "万里牛单号",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "skuSpecCode",
|
|
|
+ label: "SKU品号",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "input",
|
|
|
+ prop: "skuSpecName",
|
|
|
+ label: "SKU品名",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "select",
|
|
|
+ prop: "departmentId",
|
|
|
+ data: departmentList.value,
|
|
|
+ label: "事业部",
|
|
|
+ },
|
|
|
+ ];
|
|
|
+});
|
|
|
+const config = computed(() => {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "SKU品号",
|
|
|
+ prop: "skuSpecCode",
|
|
|
+ "min-width": 140,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "SKU品名",
|
|
|
+ prop: "skuSpecName",
|
|
|
+ "min-width": 340,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "数量",
|
|
|
+ prop: "quantity",
|
|
|
+ "min-width": 120,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ];
|
|
|
+});
|
|
|
+const configTwo = computed(() => {
|
|
|
+ return [
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "订单号",
|
|
|
+ prop: "orderCode",
|
|
|
+ width: 160,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "万里牛单号",
|
|
|
+ prop: "orderWlnCode",
|
|
|
+ width: 140,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "事业部",
|
|
|
+ prop: "departmentName",
|
|
|
+ width: 140,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "SKU品号",
|
|
|
+ prop: "skuSpecCode",
|
|
|
+ width: 140,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "SKU品名",
|
|
|
+ prop: "skuSpecName",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "数量",
|
|
|
+ prop: "quantity",
|
|
|
+ width: 120,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "操作类型",
|
|
|
+ prop: "operationType",
|
|
|
+ width: 120,
|
|
|
+ },
|
|
|
+ render(val) {
|
|
|
+ if (val == "1") {
|
|
|
+ return "入库";
|
|
|
+ } else if (val == "2") {
|
|
|
+ return "出库";
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ attrs: {
|
|
|
+ label: "操作时间",
|
|
|
+ prop: "createTime",
|
|
|
+ width: 160,
|
|
|
+ align: "center",
|
|
|
+ },
|
|
|
+ },
|
|
|
+ ];
|
|
|
+});
|
|
|
+const getDemandData = () => {
|
|
|
+ proxy.post("/department/page", { pageNum: 1, pageSize: 999 }).then((res) => {
|
|
|
+ if (res.rows && res.rows.length > 0) {
|
|
|
+ departmentList.value = departmentList.value.concat(
|
|
|
+ res.rows.map((item) => {
|
|
|
+ return {
|
|
|
+ dictKey: item.id,
|
|
|
+ dictValue: item.name,
|
|
|
+ };
|
|
|
+ })
|
|
|
+ );
|
|
|
+ }
|
|
|
+ });
|
|
|
+};
|
|
|
+getDemandData();
|
|
|
+const getList = async (req, status) => {
|
|
|
+ if (status) {
|
|
|
+ sourceList.value.pagination = {
|
|
|
+ pageNum: sourceList.value.pagination.pageNum,
|
|
|
+ pageSize: sourceList.value.pagination.pageSize,
|
|
|
+ };
|
|
|
+ } else {
|
|
|
+ sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
|
|
|
+ }
|
|
|
+ loading.value = true;
|
|
|
+ proxy.post("/inventoryFinished/page", sourceList.value.pagination).then((res) => {
|
|
|
+ sourceList.value.data = res.rows;
|
|
|
+ sourceList.value.pagination.total = res.total;
|
|
|
+ setTimeout(() => {
|
|
|
+ loading.value = false;
|
|
|
+ }, 200);
|
|
|
+ });
|
|
|
+};
|
|
|
+getList();
|
|
|
+const clickReset = () => {
|
|
|
+ getList("", true);
|
|
|
+};
|
|
|
+const getListTwo = async (req, status) => {
|
|
|
+ if (status) {
|
|
|
+ sourceListTwo.value.pagination = {
|
|
|
+ pageNum: sourceListTwo.value.pagination.pageNum,
|
|
|
+ pageSize: sourceListTwo.value.pagination.pageSize,
|
|
|
+ };
|
|
|
+ } else {
|
|
|
+ sourceListTwo.value.pagination = { ...sourceListTwo.value.pagination, ...req };
|
|
|
+ }
|
|
|
+ loading.value = true;
|
|
|
+ proxy.post("/inventoryFinishedOrder/page", sourceListTwo.value.pagination).then((res) => {
|
|
|
+ sourceListTwo.value.data = res.rows;
|
|
|
+ sourceListTwo.value.pagination.total = res.total;
|
|
|
+ setTimeout(() => {
|
|
|
+ loading.value = false;
|
|
|
+ }, 200);
|
|
|
+ });
|
|
|
+};
|
|
|
+const clickResetTwo = () => {
|
|
|
+ getListTwo("", true);
|
|
|
+};
|
|
|
+const changeActiveName = (val) => {
|
|
|
+ if (val === "first") {
|
|
|
+ getList();
|
|
|
+ } else {
|
|
|
+ getListTwo();
|
|
|
+ }
|
|
|
+};
|
|
|
+const deriveExcel = () => {
|
|
|
+ proxy.getFile("/inventoryFinished/excelExport", sourceList.value.pagination).then((res) => {
|
|
|
+ proxy.downloadFile(res, "成品库.xlsx");
|
|
|
+ });
|
|
|
+};
|
|
|
+const deriveExcelTwo = () => {
|
|
|
+ proxy.getFile("/inventoryFinishedOrder/excelExport", sourceList.value.pagination).then((res) => {
|
|
|
+ proxy.downloadFile(res, "成品库明细.xlsx");
|
|
|
+ });
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+::v-deep(.el-input-number .el-input__inner) {
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
+</style>
|