add(wms): 出库单主表增删改
parent
a6497ce757
commit
35bfa303cf
@ -0,0 +1,76 @@
|
||||
import request from '@/utils/request';
|
||||
import { AxiosPromise } from 'axios';
|
||||
import { OutStockBillVO, OutStockBillForm, OutStockBillQuery } from '@/api/wms/outStockBill/types';
|
||||
|
||||
/**
|
||||
* 查询出库单列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
|
||||
export const listOutStockBill = (query?: OutStockBillQuery): AxiosPromise<OutStockBillVO[]> => {
|
||||
return request({
|
||||
url: '/wms/outStockBill/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 查询出库单详细
|
||||
* @param outStockBillId
|
||||
*/
|
||||
export const getOutStockBill = (outStockBillId: string | number): AxiosPromise<OutStockBillVO> => {
|
||||
return request({
|
||||
url: '/wms/outStockBill/' + outStockBillId,
|
||||
method: 'get'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 新增出库单
|
||||
* @param data
|
||||
*/
|
||||
export const addOutStockBill = (data: OutStockBillForm) => {
|
||||
return request({
|
||||
url: '/wms/outStockBill',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 修改出库单
|
||||
* @param data
|
||||
*/
|
||||
export const updateOutStockBill = (data: OutStockBillForm) => {
|
||||
return request({
|
||||
url: '/wms/outStockBill',
|
||||
method: 'put',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 删除出库单
|
||||
* @param outStockBillId
|
||||
*/
|
||||
export const delOutStockBill = (outStockBillId: string | number | Array<string | number>) => {
|
||||
return request({
|
||||
url: '/wms/outStockBill/' + outStockBillId,
|
||||
method: 'delete'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 下拉框查询出库单列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
export function getWmsOutStockBillList (query) {
|
||||
return request({
|
||||
url: '/wms/outStockBill/getWmsOutStockBillList',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
};
|
||||
@ -0,0 +1,440 @@
|
||||
<template>
|
||||
<div class="p-2">
|
||||
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
||||
<div v-show="showSearch" class="mb-[10px]">
|
||||
<el-card shadow="hover">
|
||||
<el-form ref="queryFormRef" :model="queryParams" :inline="true" label-width="100px">
|
||||
<el-form-item label="出库单类型" prop="outStockType">
|
||||
<el-select v-model="queryParams.outStockType" placeholder="请选择出库单类型" clearable>
|
||||
<el-option v-for="dict in out_stock_type" :key="dict.value" :label="dict.label" :value="dict.value" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="项目" prop="projectId">
|
||||
<el-select v-model="queryParams.projectId" placeholder="请选择项目" clearable filterable>
|
||||
<el-option v-for="item in projectInfoList" :key="item.projectId" :label="item.projectName" :value="item.projectId" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="客户" prop="customerId">
|
||||
<el-select v-model="queryParams.customerId" placeholder="请选择客户" clearable filterable>
|
||||
<el-option v-for="item in customerInfoList" :key="item.customerId" :label="item.customerName" :value="item.customerId" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="联系人" prop="customerUser">
|
||||
<el-input v-model="queryParams.customerUser" placeholder="请输入联系人" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<!-- <el-form-item label="出库(单状态1暂存 2审批中 3完成)" prop="outStockBillStatus">
|
||||
<el-select v-model="queryParams.outStockBillStatus" placeholder="请选择出库(单状态1暂存 2审批中 3完成)" clearable>
|
||||
<el-option v-for="dict in wms_in_stock_bill_status" :key="dict.value" :label="dict.label" :value="dict.value" />
|
||||
</el-select>
|
||||
</el-form-item>-->
|
||||
<el-form-item label="仓库" prop="warehouseId">
|
||||
<el-select v-model="queryParams.warehouseId" placeholder="请选择仓库" clearable filterable>
|
||||
<el-option v-for="item in warehouseInfoList" :key="item.warehouseId" :label="item.warehouseName" :value="item.warehouseId" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="创建时间" prop="createTime">
|
||||
<el-date-picker clearable v-model="queryParams.createTime" type="date" value-format="YYYY-MM-DD" placeholder="请选择创建时间" />
|
||||
</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-card>
|
||||
</div>
|
||||
</transition>
|
||||
|
||||
<el-card shadow="never">
|
||||
<template #header>
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['wms:outStockBill:add']">新增 </el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['wms:outStockBill:edit']"
|
||||
>修改
|
||||
</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['wms:outStockBill:remove']"
|
||||
>删除
|
||||
</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['wms:outStockBill:export']">导出 </el-button>
|
||||
</el-col>
|
||||
<right-toolbar v-model:showSearch="showSearch" :columns="columns" :search="true" @queryTable="getList"></right-toolbar>
|
||||
</el-row>
|
||||
</template>
|
||||
|
||||
<el-table v-loading="loading" border :data="outStockBillList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="出库单ID" align="center" prop="outStockBillId" v-if="columns[0].visible" />
|
||||
<el-table-column label="租户编号" align="center" prop="tenantId" v-if="columns[1].visible" />
|
||||
<el-table-column label="出库单号" align="center" prop="outStockCode" v-if="columns[2].visible" />
|
||||
<el-table-column label="出库单类型" align="center" prop="outStockType" v-if="columns[3].visible">
|
||||
<template #default="scope">
|
||||
<dict-tag :options="out_stock_type" :value="scope.row.outStockType" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="项目ID" align="center" prop="projectId" v-if="columns[4].visible" />
|
||||
<el-table-column label="关联单号" align="center" prop="inventoryAmount" v-if="columns[5].visible" />
|
||||
<el-table-column label="客户" align="center" prop="customerId" v-if="columns[6].visible">
|
||||
<template #default="scope">
|
||||
<span>{{ getCustomerName(scope.row.customerId) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="联系人" align="center" prop="customerUser" v-if="columns[7].visible" />
|
||||
<el-table-column label="联系电话" align="center" prop="customerNumber" v-if="columns[8].visible" />
|
||||
<el-table-column label="出库说明" align="center" prop="directions" v-if="columns[9].visible" />
|
||||
<el-table-column label="出库(单状态1暂存 2审批中 3完成)" align="center" prop="outStockBillStatus" v-if="columns[10].visible">
|
||||
<template #default="scope">
|
||||
<dict-tag :options="wms_in_stock_bill_status" :value="scope.row.outStockBillStatus" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="流程状态" align="center" prop="flowStatus" v-if="columns[11].visible">
|
||||
<template #default="scope">
|
||||
<dict-tag :options="flow_status" :value="scope.row.flowStatus" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="仓库" align="center" prop="warehouseId" v-if="columns[12].visible">
|
||||
<template #default="scope">
|
||||
<span>{{ getWarehouseName(scope.row.warehouseId) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="删除标志" align="center" prop="delFlag" v-if="columns[14].visible" />
|
||||
<el-table-column label="创建部门" align="center" prop="createDept" v-if="columns[15].visible" />
|
||||
<el-table-column label="创建人" align="center" prop="createBy" v-if="columns[16].visible" />
|
||||
<el-table-column label="创建时间" align="center" prop="createTime" width="180" v-if="columns[17].visible">
|
||||
<template #default="scope">
|
||||
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="更新人" align="center" prop="updateBy" v-if="columns[18].visible" />
|
||||
<el-table-column label="更新时间" align="center" prop="updateTime" width="180" v-if="columns[19].visible">
|
||||
<template #default="scope">
|
||||
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
<el-tooltip content="修改" placement="top">
|
||||
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['wms:outStockBill:edit']"></el-button>
|
||||
</el-tooltip>
|
||||
<el-tooltip content="删除" placement="top">
|
||||
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['wms:outStockBill:remove']"></el-button>
|
||||
</el-tooltip>
|
||||
</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-card>
|
||||
<!-- 添加或修改出库单对话框 -->
|
||||
<el-dialog :title="dialog.title" v-model="dialog.visible" width="1200px" append-to-body>
|
||||
<el-form ref="outStockBillFormRef" :model="form" :rules="rules" label-width="120px">
|
||||
<el-row>
|
||||
<el-col :span="12">
|
||||
<!-- <el-form-item label="出库单号" prop="outStockCode">-->
|
||||
<!-- <el-input v-model="form.outStockCode" placeholder="请输入出库单号" />-->
|
||||
<!-- </el-form-item>-->
|
||||
<el-form-item label="仓库" prop="warehouseId">
|
||||
<el-select v-model="form.warehouseId" placeholder="请选择仓库" filterable>
|
||||
<el-option
|
||||
v-for="item in warehouseInfoList"
|
||||
:key="item.warehouseId"
|
||||
:label="item.warehouseName"
|
||||
:value="item.warehouseId"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
||||
<el-col :span="12">
|
||||
<el-form-item label="出库单类型" prop="outStockType">
|
||||
<el-select v-model="form.outStockType" placeholder="请选择出库单类型">
|
||||
<el-option v-for="dict in out_stock_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="12">
|
||||
<el-form-item label="项目" prop="projectId">
|
||||
<el-select v-model="form.projectId" placeholder="请选择项目" filterable>
|
||||
<el-option v-for="item in projectInfoList" :key="item.projectId" :label="item.projectName" :value="item.projectId"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="客户" prop="customerId">
|
||||
<el-select v-model="form.customerId" placeholder="请选择客户" filterable>
|
||||
<el-option v-for="item in customerInfoList" :key="item.customerId" :label="item.customerName" :value="item.customerId"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="联系人" prop="customerUser">
|
||||
<el-input v-model="form.customerUser" placeholder="请输入联系人" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="联系电话" prop="customerNumber">
|
||||
<el-input v-model="form.customerNumber" placeholder="请输入联系电话" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<!-- <el-form-item label="关联单号" prop="inventoryAmount">-->
|
||||
<!-- <el-input v-model="form.inventoryAmount" placeholder="请输入关联单号" />-->
|
||||
<!-- </el-form-item>-->
|
||||
|
||||
<el-form-item label="出库说明" prop="directions">
|
||||
<el-input v-model="form.directions" type="textarea" :rows="3" placeholder="请输入出库说明" style="width: 100%" />
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup name="OutStockBill" lang="ts">
|
||||
import { addOutStockBill, delOutStockBill, getOutStockBill, listOutStockBill, updateOutStockBill } from '@/api/wms/outStockBill';
|
||||
import { OutStockBillForm, OutStockBillQuery, OutStockBillVO } from '@/api/wms/outStockBill/types';
|
||||
import { getErpProjectInfoList } from '@/api/oa/erp/projectInfo';
|
||||
import { getCrmCustomerInfoList } from '@/api/oa/crm/customerInfo';
|
||||
import { getWmsWarehouseInfoList } from '@/api/wms/warehouseInfo';
|
||||
|
||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||
const { wms_in_stock_bill_status, out_stock_type, flow_status } = toRefs<any>(
|
||||
proxy?.useDict('wms_in_stock_bill_status', 'out_stock_type', 'flow_status')
|
||||
);
|
||||
|
||||
const outStockBillList = ref<OutStockBillVO[]>([]);
|
||||
const buttonLoading = ref(false);
|
||||
const loading = ref(true);
|
||||
const showSearch = ref(true);
|
||||
const ids = ref<Array<string | number>>([]);
|
||||
const single = ref(true);
|
||||
const multiple = ref(true);
|
||||
const total = ref(0);
|
||||
|
||||
// 项目列表
|
||||
const projectInfoList = ref([]);
|
||||
// 客户列表
|
||||
const customerInfoList = ref([]);
|
||||
// 仓库列表
|
||||
const warehouseInfoList = ref([]);
|
||||
|
||||
const queryFormRef = ref<ElFormInstance>();
|
||||
const outStockBillFormRef = ref<ElFormInstance>();
|
||||
|
||||
const dialog = reactive<DialogOption>({
|
||||
visible: false,
|
||||
title: ''
|
||||
});
|
||||
|
||||
// 列显隐信息
|
||||
const columns = ref<FieldOption[]>([
|
||||
{ key: 0, label: `出库单ID`, visible: false },
|
||||
{ key: 1, label: `租户编号`, visible: false },
|
||||
{ key: 2, label: `出库单号`, visible: true },
|
||||
{ key: 3, label: `出库单类型`, visible: true },
|
||||
{ key: 4, label: `项目ID`, visible: true },
|
||||
{ key: 5, label: `关联单号`, visible: false },
|
||||
{ key: 6, label: `客户id`, visible: true },
|
||||
{ key: 7, label: `联系人`, visible: true },
|
||||
{ key: 8, label: `联系电话`, visible: true },
|
||||
{ key: 9, label: `出库说明`, visible: true },
|
||||
{ key: 10, label: `出库(单状态1暂存 2审批中 3完成)`, visible: false },
|
||||
{ key: 11, label: `流程状态`, visible: false },
|
||||
{ key: 12, label: `仓库ID`, visible: true },
|
||||
{ key: 13, label: `备注`, visible: false },
|
||||
{ key: 14, label: `删除标志`, visible: false },
|
||||
{ key: 15, label: `创建部门`, visible: false },
|
||||
{ key: 16, label: `创建人`, visible: false },
|
||||
{ key: 17, label: `创建时间`, visible: true },
|
||||
{ key: 18, label: `更新人`, visible: false },
|
||||
{ key: 19, label: `更新时间`, visible: true }
|
||||
]);
|
||||
|
||||
const initFormData: OutStockBillForm = {
|
||||
outStockBillId: undefined,
|
||||
outStockCode: undefined,
|
||||
outStockType: undefined,
|
||||
projectId: undefined,
|
||||
inventoryAmount: undefined,
|
||||
customerId: undefined,
|
||||
customerUser: undefined,
|
||||
customerNumber: undefined,
|
||||
directions: undefined,
|
||||
outStockBillStatus: undefined,
|
||||
warehouseId: undefined
|
||||
};
|
||||
const data = reactive<PageData<OutStockBillForm, OutStockBillQuery>>({
|
||||
form: { ...initFormData },
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
outStockType: undefined,
|
||||
projectId: undefined,
|
||||
customerId: undefined,
|
||||
customerUser: undefined,
|
||||
outStockBillStatus: undefined,
|
||||
warehouseId: undefined,
|
||||
createTime: undefined,
|
||||
params: {}
|
||||
},
|
||||
rules: {
|
||||
outStockBillId: [{ required: true, message: '出库单ID不能为空', trigger: 'blur' }]
|
||||
}
|
||||
});
|
||||
|
||||
const { queryParams, form, rules } = toRefs(data);
|
||||
|
||||
/** 获取项目列表 */
|
||||
const getProjectInfoList = async () => {
|
||||
const res = await getErpProjectInfoList({});
|
||||
projectInfoList.value = res.data || [];
|
||||
};
|
||||
|
||||
/** 获取客户列表 */
|
||||
const getCustomerInfoList = async () => {
|
||||
const res = await getCrmCustomerInfoList(null);
|
||||
customerInfoList.value = res.data || [];
|
||||
};
|
||||
|
||||
/** 获取仓库列表 */
|
||||
const getWarehouseInfoList = async () => {
|
||||
const res = await getWmsWarehouseInfoList();
|
||||
warehouseInfoList.value = res.data || [];
|
||||
};
|
||||
|
||||
/** 根据项目ID获取项目名称 */
|
||||
const getProjectName = (projectId) => {
|
||||
const project = projectInfoList.value.find((item) => item.projectId === projectId);
|
||||
return project ? project.projectName : projectId;
|
||||
};
|
||||
|
||||
/** 根据客户ID获取客户名称 */
|
||||
const getCustomerName = (customerId) => {
|
||||
const customer = customerInfoList.value.find((item) => item.customerId === customerId);
|
||||
return customer ? customer.customerName : customerId;
|
||||
};
|
||||
|
||||
/** 根据仓库ID获取仓库名称 */
|
||||
const getWarehouseName = (warehouseId) => {
|
||||
const warehouse = warehouseInfoList.value.find((item) => item.warehouseId === warehouseId);
|
||||
return warehouse ? warehouse.warehouseName : warehouseId;
|
||||
};
|
||||
|
||||
/** 查询出库单列表 */
|
||||
const getList = async () => {
|
||||
loading.value = true;
|
||||
const res = await listOutStockBill(queryParams.value);
|
||||
outStockBillList.value = res.rows;
|
||||
total.value = res.total;
|
||||
loading.value = false;
|
||||
};
|
||||
|
||||
/** 取消按钮 */
|
||||
const cancel = () => {
|
||||
reset();
|
||||
dialog.visible = false;
|
||||
};
|
||||
|
||||
/** 表单重置 */
|
||||
const reset = () => {
|
||||
form.value = { ...initFormData };
|
||||
outStockBillFormRef.value?.resetFields();
|
||||
};
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
const handleQuery = () => {
|
||||
queryParams.value.pageNum = 1;
|
||||
getList();
|
||||
};
|
||||
|
||||
/** 重置按钮操作 */
|
||||
const resetQuery = () => {
|
||||
queryFormRef.value?.resetFields();
|
||||
handleQuery();
|
||||
};
|
||||
|
||||
/** 多选框选中数据 */
|
||||
const handleSelectionChange = (selection: OutStockBillVO[]) => {
|
||||
ids.value = selection.map((item) => item.outStockBillId);
|
||||
single.value = selection.length != 1;
|
||||
multiple.value = !selection.length;
|
||||
};
|
||||
|
||||
/** 新增按钮操作 */
|
||||
const handleAdd = () => {
|
||||
reset();
|
||||
dialog.visible = true;
|
||||
dialog.title = '添加出库单';
|
||||
};
|
||||
|
||||
/** 修改按钮操作 */
|
||||
const handleUpdate = async (row?: OutStockBillVO) => {
|
||||
reset();
|
||||
const _outStockBillId = row?.outStockBillId || ids.value[0];
|
||||
const res = await getOutStockBill(_outStockBillId);
|
||||
Object.assign(form.value, res.data);
|
||||
dialog.visible = true;
|
||||
dialog.title = '修改出库单';
|
||||
};
|
||||
|
||||
/** 提交按钮 */
|
||||
const submitForm = () => {
|
||||
outStockBillFormRef.value?.validate(async (valid: boolean) => {
|
||||
if (valid) {
|
||||
buttonLoading.value = true;
|
||||
if (form.value.outStockBillId) {
|
||||
await updateOutStockBill(form.value).finally(() => (buttonLoading.value = false));
|
||||
} else {
|
||||
await addOutStockBill(form.value).finally(() => (buttonLoading.value = false));
|
||||
}
|
||||
proxy?.$modal.msgSuccess('操作成功');
|
||||
dialog.visible = false;
|
||||
await getList();
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
/** 删除按钮操作 */
|
||||
const handleDelete = async (row?: OutStockBillVO) => {
|
||||
const _outStockBillIds = row?.outStockBillId || ids.value;
|
||||
await proxy?.$modal.confirm('是否确认删除出库单编号为"' + _outStockBillIds + '"的数据项?').finally(() => (loading.value = false));
|
||||
await delOutStockBill(_outStockBillIds);
|
||||
proxy?.$modal.msgSuccess('删除成功');
|
||||
await getList();
|
||||
};
|
||||
|
||||
/** 导出按钮操作 */
|
||||
const handleExport = () => {
|
||||
proxy?.download(
|
||||
'wms/outStockBill/export',
|
||||
{
|
||||
...queryParams.value
|
||||
},
|
||||
`outStockBill_${new Date().getTime()}.xlsx`
|
||||
);
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
getList();
|
||||
// 初始化下拉框数据
|
||||
getProjectInfoList();
|
||||
getCustomerInfoList();
|
||||
getWarehouseInfoList();
|
||||
});
|
||||
</script>
|
||||
Loading…
Reference in New Issue