257 lines
8.1 KiB
Vue
257 lines
8.1 KiB
Vue
![]() |
<template>
|
||
|
<div class="app-container">
|
||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||
|
<el-form-item label="订单号" prop="orderNo">
|
||
|
<el-input
|
||
|
v-model="queryParams.orderNo"
|
||
|
placeholder="请输入订单号"
|
||
|
clearable
|
||
|
@keyup.enter.native="handleQuery"
|
||
|
/>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="客户" prop="customer">
|
||
|
<el-input
|
||
|
v-model="queryParams.customer"
|
||
|
placeholder="请输入客户"
|
||
|
clearable
|
||
|
@keyup.enter.native="handleQuery"
|
||
|
/>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="创建人" prop="createBy">
|
||
|
<el-input
|
||
|
v-model="queryParams.createBy"
|
||
|
placeholder="请输入创建人"
|
||
|
clearable
|
||
|
@keyup.enter.native="handleQuery"
|
||
|
/>
|
||
|
</el-form-item>
|
||
|
<el-form-item>
|
||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||
|
</el-form-item>
|
||
|
</el-form>
|
||
|
|
||
|
<el-row :gutter="10" class="mb8">
|
||
|
<el-col :span="1.5">
|
||
|
<el-button
|
||
|
type="primary"
|
||
|
plain
|
||
|
icon="el-icon-plus"
|
||
|
size="mini"
|
||
|
@click="handleAdd"
|
||
|
v-has-permi="['bst:order:add']"
|
||
|
>新增</el-button>
|
||
|
</el-col>
|
||
|
<el-col :span="1.5">
|
||
|
<el-button
|
||
|
type="danger"
|
||
|
plain
|
||
|
icon="el-icon-delete"
|
||
|
size="mini"
|
||
|
:disabled="multiple"
|
||
|
@click="handleDelete"
|
||
|
v-has-permi="['bst:order:remove']"
|
||
|
>删除</el-button>
|
||
|
</el-col>
|
||
|
<el-col :span="1.5">
|
||
|
<el-button
|
||
|
type="warning"
|
||
|
plain
|
||
|
icon="el-icon-download"
|
||
|
size="mini"
|
||
|
@click="handleExport"
|
||
|
v-has-permi="['bst:order:export']"
|
||
|
>导出</el-button>
|
||
|
</el-col>
|
||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
|
||
|
</el-row>
|
||
|
|
||
|
<el-table v-loading="loading" :data="orderList" @selection-change="handleSelectionChange" :default-sort="defaultSort" @sort-change="onSortChange">
|
||
|
<el-table-column type="selection" width="55" align="center" />
|
||
|
<template v-for="column of showColumns">
|
||
|
<el-table-column
|
||
|
:key="column.key"
|
||
|
:label="column.label"
|
||
|
:prop="column.key"
|
||
|
:align="column.align"
|
||
|
:min-width="column.minWidth"
|
||
|
:sort-orders="orderSorts"
|
||
|
:sortable="column.sortable"
|
||
|
:show-overflow-tooltip="column.overflow"
|
||
|
:width="column.width"
|
||
|
>
|
||
|
<template slot-scope="d">
|
||
|
<template v-if="column.key === 'id'">
|
||
|
{{d.row[column.key]}}
|
||
|
</template>
|
||
|
<template v-else>
|
||
|
{{d.row[column.key]}}
|
||
|
</template>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
</template>
|
||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||
|
<template slot-scope="scope">
|
||
|
<el-button
|
||
|
size="mini"
|
||
|
type="text"
|
||
|
icon="el-icon-edit"
|
||
|
@click="handleUpdate(scope.row)"
|
||
|
v-has-permi="['bst:order:edit']"
|
||
|
>修改</el-button>
|
||
|
<el-button
|
||
|
size="mini"
|
||
|
type="text"
|
||
|
icon="el-icon-delete"
|
||
|
@click="handleDelete(scope.row)"
|
||
|
v-has-permi="['bst:order:remove']"
|
||
|
>删除</el-button>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
</el-table>
|
||
|
|
||
|
<pagination
|
||
|
v-show="total>0"
|
||
|
:total="total"
|
||
|
:page.sync="queryParams.pageNum"
|
||
|
:limit.sync="queryParams.pageSize"
|
||
|
@pagination="getList"
|
||
|
/>
|
||
|
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { delOrder, listOrder } from '@/api/bst/order'
|
||
|
import FormCol from '@/components/FormCol/index.vue'
|
||
|
import { $showColumns } from '@/utils/mixins'
|
||
|
|
||
|
// 默认排序字段
|
||
|
const defaultSort = {
|
||
|
prop: "createTime",
|
||
|
order: "descending"
|
||
|
}
|
||
|
|
||
|
export default {
|
||
|
name: "Order",
|
||
|
mixins: [$showColumns],
|
||
|
components: {FormCol},
|
||
|
data() {
|
||
|
return {
|
||
|
span: 24,
|
||
|
// 字段列表
|
||
|
columns: [
|
||
|
{key: 'id', visible: true, label: 'ID', minWidth: null, sortable: true, overflow: false, align: 'center', width: "80"},
|
||
|
{key: 'orderNo', visible: true, label: '订单号', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||
|
{key: 'picture', visible: true, label: '主图', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||
|
{key: 'customer', visible: true, label: '客户', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||
|
{key: 'deliveryDate', visible: true, label: '交货日期', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||
|
{key: 'num', visible: true, label: '数量', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||
|
{key: 'remark', visible: true, label: '备注', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||
|
{key: 'createTime', visible: true, label: '创建时间', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||
|
{key: 'createBy', visible: true, label: '创建人', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
|
||
|
],
|
||
|
// 排序方式
|
||
|
orderSorts: ['ascending', 'descending', null],
|
||
|
// 遮罩层
|
||
|
loading: true,
|
||
|
// 选中数组
|
||
|
ids: [],
|
||
|
// 非单个禁用
|
||
|
single: true,
|
||
|
// 非多个禁用
|
||
|
multiple: true,
|
||
|
// 显示搜索条件
|
||
|
showSearch: true,
|
||
|
// 总条数
|
||
|
total: 0,
|
||
|
// 生产订单表格数据
|
||
|
orderList: [],
|
||
|
// 弹出层标题
|
||
|
title: "",
|
||
|
// 是否显示弹出层
|
||
|
open: false,
|
||
|
defaultSort,
|
||
|
// 查询参数
|
||
|
queryParams: {
|
||
|
pageNum: 1,
|
||
|
pageSize: 20,
|
||
|
orderByColumn: defaultSort.prop,
|
||
|
isAsc: defaultSort.order,
|
||
|
id: null,
|
||
|
orderNo: null,
|
||
|
customer: null,
|
||
|
remark: null,
|
||
|
createBy: null,
|
||
|
deleted: null
|
||
|
},
|
||
|
};
|
||
|
},
|
||
|
created() {
|
||
|
this.getList();
|
||
|
},
|
||
|
methods: {
|
||
|
/** 当排序按钮被点击时触发 **/
|
||
|
onSortChange(column) {
|
||
|
if (column.order == null) {
|
||
|
this.queryParams.orderByColumn = defaultSort.prop;
|
||
|
this.queryParams.isAsc = defaultSort.order;
|
||
|
} else {
|
||
|
this.queryParams.orderByColumn = column.prop;
|
||
|
this.queryParams.isAsc = column.order;
|
||
|
}
|
||
|
this.getList();
|
||
|
},
|
||
|
/** 查询生产订单列表 */
|
||
|
getList() {
|
||
|
this.loading = true;
|
||
|
listOrder(this.queryParams).then(response => {
|
||
|
this.orderList = response.rows;
|
||
|
this.total = response.total;
|
||
|
this.loading = false;
|
||
|
});
|
||
|
},
|
||
|
/** 搜索按钮操作 */
|
||
|
handleQuery() {
|
||
|
this.queryParams.pageNum = 1;
|
||
|
this.getList();
|
||
|
},
|
||
|
/** 重置按钮操作 */
|
||
|
resetQuery() {
|
||
|
this.resetForm("queryForm");
|
||
|
this.handleQuery();
|
||
|
},
|
||
|
// 多选框选中数据
|
||
|
handleSelectionChange(selection) {
|
||
|
this.ids = selection.map(item => item.id)
|
||
|
this.single = selection.length!==1
|
||
|
this.multiple = !selection.length
|
||
|
},
|
||
|
/** 新增按钮操作 */
|
||
|
handleAdd() {
|
||
|
this.$router.push("/add/order");
|
||
|
},
|
||
|
/** 修改按钮操作 */
|
||
|
handleUpdate(row) {
|
||
|
this.$router.push(`/edit/order/${row.id}`)
|
||
|
},
|
||
|
/** 删除按钮操作 */
|
||
|
handleDelete(row) {
|
||
|
const ids = row.id || this.ids;
|
||
|
this.$modal.confirm('是否确认删除生产订单编号为"' + ids + '"的数据项?').then(function() {
|
||
|
return delOrder(ids);
|
||
|
}).then(() => {
|
||
|
this.getList();
|
||
|
this.$modal.msgSuccess("删除成功");
|
||
|
}).catch(() => {});
|
||
|
},
|
||
|
/** 导出按钮操作 */
|
||
|
handleExport() {
|
||
|
this.download('bst/order/export', {
|
||
|
...this.queryParams
|
||
|
}, `order_${new Date().getTime()}.xlsx`)
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|