空管耐用品库存管理前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

254 lines
6.1 KiB

<template>
<basic-container>
<avue-crud
:option="option"
:table-loading="loading"
:data="data"
ref="crud"
v-model="form"
:page.sync="page"
:permission="permissionList"
@search-change="searchChange"
@search-reset="searchReset"
@current-change="currentChange"
@size-change="sizeChange"
@refresh-change="refreshChange"
@on-load="onLoad"
>
<template slot-scope="scope" slot="menuLeft">
<el-button size="small" @click.stop="handleDesign()" type="primary"
>新增出库单
</el-button>
<!-- <el-button size="small" plain @click.stop="handleExport()">出库单导出
</el-button> -->
</template>
<template slot-scope="scope" slot="xuqiudanmingcheng">
<el-button
type="text"
@click.stop="purchaseFn(scope.row)"
v-if="scope.row.xuqiudanmingcheng != ''"
>{{ scope.row.xuqiudanmingcheng }}</el-button
>
<span v-else></span>
</template>
</avue-crud>
<outDialog
v-if="outDialogVisible"
:repairVisible="outDialogVisible"
:outDialogTiltle="outDialogTiltle"
:outDialogType="outDialogType"
@handleCloseDetail="handleCloseDetail"
type="二级库"
>
</outDialog>
<!-- 需求单明细 -->
<needDialog
:showDialog="purchaseOpen"
v-if="purchaseOpen"
@closeDialog="closeDialog"
:purchaseTitle="purchaseTitle"
></needDialog>
</basic-container>
</template>
<script>
import outDialog from "./components/outDialog.vue";
import needDialog from "./components/needDialog.vue";
import { getList } from "@/api/secondOrder/outbound";
export default {
components: {
outDialog,
needDialog,
},
data() {
return {
purchaseOpen: false,
purchaseTitle: "",
treeData: [], //组织树
defaultProps: {
children: "children",
label: "label",
},
form: {},
selectionList: [],
query: {},
loading: true,
page: {
pageSize: 10,
currentPage: 1,
total: 0,
},
option: {
height: "auto",
calcHeight: 30,
tip: false,
searchShow: true,
searchMenuSpan: 6,
border: true,
index: true,
selection: true,
viewBtn: true,
dialogClickModal: false,
selection: false,
printBtn: false,
refreshBtn: false,
gridBtn: false,
gridBackgroundImage: false,
gridSpan: false,
filterBtn: false,
columnBtn: false,
menu: false,
menuAlign: "left",
searchMenuPosition: "right",
excelBtn: true,
column: [
// {
// label: "需求单名称",
// prop: "xuqiudanmingcheng",
// width:180,
// },
{
label: "部门",
prop: "bumen",
headerAlign: "center",
align: "center",
},
// {
// label: "仓库类型",
// prop: "str1",
// },
{
label: "出库单号",
prop: "str2",
headerAlign: "center",
align: "center",
},
{
label: "出库时间",
prop: "str3",
search: true,
type: "datetime",
headerAlign: "center",
align: "center",
},
{
label: "出库人",
prop: "str4",
search: true,
headerAlign: "center",
align: "center",
},
{
label: "审批人",
prop: "approvers",
headerAlign: "center",
align: "center",
},
{
label: "状态",
prop: "status",
headerAlign: "center",
align: "center",
type: "select",
align: "center",
dicData: [
{
label: "暂存",
value: 1,
},
{
label: "待审批",
value: 2,
},
{
label: "已审批",
value: 3,
},
],
},
],
},
data: [],
outDialogVisible: false,
outDialogTiltle: "出库",
outDialogType: "",
};
},
methods: {
purchaseFn(row) {
this.purchaseOpen = true;
this.purchaseTitle = row.xuqiudanmingcheng + "详情";
},
closeDialog() {
this.purchaseOpen = false;
},
handleDesign() {
this.outDialogVisible = true;
this.outDialogType = "add";
this.outDialogTiltle = "新增出库";
},
// 行点击事件
handleCloseDetail() {
this.outDialogVisible = false;
},
handleExport(name) {
this.$message({
type: "success",
message: "出库单导出成功!",
});
},
searchReset() {
this.query = {};
this.onLoad(this.page);
},
searchChange(params, done) {
this.query = params;
this.page.currentPage = 1;
this.onLoad(this.page, params);
this.$message({
type: "success",
message: "操作成功!",
});
done();
},
currentChange(currentPage) {
this.page.currentPage = currentPage;
},
sizeChange(pageSize) {
this.page.pageSize = pageSize;
},
refreshChange() {
this.onLoad(this.page, this.query);
},
onLoad(page, params = {}) {
this.loading = true;
const queryParams = {
...params,
...this.query,
pageSize: page.pageSize,
pageNum: page.currentPage,
};
if (queryParams.outDate && Array.isArray(queryParams.outDate)) {
queryParams.startTime = queryParams.outDate[0];
queryParams.endTime = queryParams.outDate[1];
delete queryParams.outDate;
}
getList(page.currentPage, page.pageSize, queryParams).then((res) => {
this.data = res.data.result.list;
this.loading = false;
this.page.total = res.data.result.total;
});
},
},
};
</script>
<style></style>