中航光电热表web
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.
 
 
 
 

334 lines
8.8 KiB

<template>
<basic-container>
<avue-crud
:option="option"
:table-loading="loading"
:data="data"
v-model="form"
v-model:page="page"
ref="crud"
@row-del="rowDel"
@search-change="searchChange"
@search-reset="searchReset"
@selection-change="selectionChange"
@current-change="currentChange"
@size-change="sizeChange"
@refresh-change="refreshChange"
@on-load="onLoad"
>
<template #menu-left>
<el-button type="primary" @click="addFn">新增</el-button>
<!-- <el-button type="primary" @click="receiveFn">接收</el-button> -->
<!-- <el-button type="primary" @click="returnFn">退回</el-button> -->
</template>
<template #menu-right> </template>
<!-- <template #menu="{ row }">
<el-button type="text" v-if="row.status == '1' || row.status == '2'" @click="receiveFn(row)"
>接收</el-button
>
</template> -->
</avue-crud>
<!-- 新增 -->
<addLogisticsDialog
v-if="showAddDialogd"
:showDialog="showAddDialogd"
@closeDialog="closeDialog"
></addLogisticsDialog>
<!-- 退回 -->
<returnDialog
v-if="showReturnDialog"
:showDialog="showReturnDialog"
:rowItem="rowItem"
@closeDialog="closeDialog"
></returnDialog>
<!-- 接收 -->
<receiveDialog v-if="showReceiveDialog" :showDialog="showReceiveDialog" @closeDialog="closeDialog"></receiveDialog>
</basic-container>
</template>
<script>
import addLogisticsDialog from './components/addLogisticsDialog.vue';
import returnDialog from './components/returnDialog.vue';
import receiveDialog from './components/receiveDialog.vue'
import { getList } from '@/api/logisticsManagement/logisticsDistribution';
export default {
components: {
addLogisticsDialog,
returnDialog,
receiveDialog
},
data() {
return {
showReceiveDialog: false,
showReturnDialog: false,
showAddDialogd: false,
rowItem: {},
form: {},
selectionList: [],
query: {},
loading: false,
page: {
pageSize: 10,
currentPage: 1,
total: 0,
},
option: {
columnSort: true,
tip: false,
height: 'auto',
calcHeight: 32,
simplePage: false,
searchShow: true,
searchMenuSpan: 6,
searchIcon: true,
searchIndex: 3,
tree: false,
border: true,
index: true,
selection: false,
addBtn: false,
editBtn: false,
viewBtn: false,
delBtn: false,
editBtnText: '修改',
labelWidth: 120,
menuWidth: 80,
dialogWidth: 900,
dialogClickModal: false,
searchEnter: true,
excelBtn: false,
filterBtn: true,
searchShowBtn: false,
excelBtn: true,
showOverflowTooltip: true,
addBtnIcon: ' ',
viewBtnIcon: ' ',
delBtnIcon: ' ',
editBtnIcon: ' ',
gridBtn: false,
searchLabelPosition: 'left',
searchGutter: 24,
searchSpan: 6,
menuAlign: 'left',
gridBtn: false,
searchMenuPosition: 'right',
align: 'center',
menu: false,
column: [
{
label: '箱条码',
prop: 'boxBarcode',
search: true,
sortable: true,
span: 12,
},
// {
// label: '站点名称',
// prop: 'stationId',
// search: true,
// sortable: true,
// span: 12,
// },
{
label: '作业中心',
prop: 'wcName',
search: false,
sortable: true,
span: 12,
},
{
label: '作业中心',
prop: 'wcId',
search: false,
sortable: true,
span: 12,
hide: true,
type: 'select',
filterable: true,
dicUrl: '/blade-desk/order/bs-list',
props: {
label: 'wcName',
value: 'id',
},
},
{
label: '区域',
prop: 'stationRegion',
search: false,
sortable: true,
span: 12,
},
{
label: '状态',
prop: 'statusDesc',
search: false,
sortable: true,
span: 12,
// type: 'select',
// dicData: [
// { label: '起点位置', value: 0 },
// { label: '输送线起点', value: 1 },
// { label: '退回(超重)', value: 2 },
// { label: '输送线末尾', value: 3 },
// { label: '站点', value: 4 },
// { label: '库位', value: 5 },
// { label: '等待', value: 6 },
// { label: '站点接收', value: 7 },
// { label: '回库', value: 8 },
// { label: '结束', value: 9 },
// ],
},
{
label: '创建时间',
prop: 'createTime',
search: false,
sortable: true,
span: 12,
},
{
label: '时间范围',
prop: 'crDate',
sortable: true,
filter: true,
// selectWidth: 150,
span: 8,
search: true,
width: 150,
searchSpan: 6,
hide: true,
type: 'date',
format: 'YYYY-MM-DD',
valueFormat: 'YYYY-MM-DD',
startPlaceholder: '开始日期',
endPlaceholder: '结束日期',
rangeSeparator: '-',
searchRange: true,
},
],
},
data: [],
};
},
methods: {
receiveFn(){
this.showReceiveDialog = true;
},
returnFn() {
this.showReturnDialog = true;
// this.rowItem = row;
},
addFn() {
// this.showAddDialogd = true;
this.showReturnDialog = true;
},
closeDialog() {
this.showAddDialogd = false;
this.showReturnDialog = false;
this.showReceiveDialog = false;
this.onLoad(this.page, this.query);
},
rowSave(row, done, loading) {
// addPersonAbility(row).then(
// () => {
// this.onLoad(this.page);
// this.$message({
// type: 'success',
// message: '操作成功!',
// });
// done();
// },
// error => {
// window.console.log(error);
// loading();
// }
// );
},
rowUpdate(row, index, done, loading) {
// updatePersonAbility(row).then(
// () => {
// this.onLoad(this.page);
// this.$message({
// type: 'success',
// message: '操作成功!',
// });
// done();
// },
// error => {
// window.console.log(error);
// loading();
// }
// );
},
rowDel(row) {
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
// return removePersonAbility(row.id);
})
.then(() => {
this.onLoad(this.page);
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);
done();
},
selectionChange(list) {
this.selectionList = list;
},
selectionClear() {
this.selectionList = [];
this.$refs.crud.toggleSelection();
},
currentChange(currentPage) {
this.page.currentPage = currentPage;
},
sizeChange(pageSize) {
this.page.pageSize = pageSize;
},
refreshChange() {
this.onLoad(this.page, this.query);
},
handleChange(file, fileList) {
// proxy.$Export.xlsx(file.raw).then((data) => {
// data.value = data.results;
// });
this.$message({
type: 'success',
message: '操作成功!',
});
},
onLoad(page, params = {}) {
this.loading = true;
if (this.query.crDate && this.query.crDate.length > 0) {
this.query.startTime = this.query.crDate[0] + ' 00:00:00';
this.query.endTime = this.query.crDate[1] + ' 00:00:00';
}
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
this.data = res.data.data.records;
this.loading = false;
this.page.total = res.data.data.total;
});
},
},
mounted() {},
};
</script>
d