361 lines
8.9 KiB
Vue
361 lines
8.9 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<!-- 搜索工作栏 -->
|
|
<search-bar
|
|
:formConfigs="formConfig"
|
|
ref="searchBarForm"
|
|
@headBtnClick="buttonClick"
|
|
/>
|
|
<!-- 列表 -->
|
|
<base-table
|
|
:page="queryParams.pageNo"
|
|
:limit="queryParams.pageSize"
|
|
:table-props="tableProps"
|
|
:table-data="list"
|
|
:max-height="tableH"
|
|
>
|
|
<method-btn
|
|
v-if="tableBtn.length"
|
|
slot="handleBtn"
|
|
:width="250"
|
|
label="操作"
|
|
:method-list="tableBtn"
|
|
@clickBtn="handleClick"
|
|
/>
|
|
</base-table>
|
|
<pagination
|
|
:page.sync="queryParams.pageNo"
|
|
:limit.sync="queryParams.pageSize"
|
|
:total="total"
|
|
@pagination="getList"
|
|
/>
|
|
<!-- 新增&编辑 -->
|
|
<base-dialog
|
|
:dialogTitle="addOrEditTitle"
|
|
:dialogVisible="centervisible"
|
|
@cancel="handleCancel"
|
|
@confirm="handleConfirm"
|
|
:before-close="handleCancel"
|
|
width='70%'
|
|
>
|
|
<order-add ref="orderAdd" @successSubmit="successSubmit" />
|
|
</base-dialog>
|
|
<!-- 查看详情 -->
|
|
<!-- 新增工单 -->
|
|
<base-dialog
|
|
:dialogTitle="workIssueTitle"
|
|
:dialogVisible="addWorkOrdervisible"
|
|
@cancel="addWorkOrderCancel"
|
|
@confirm="addWorkOrderConfirm"
|
|
:before-close="addWorkOrderCancel"
|
|
width='70%'
|
|
>
|
|
<add-work-order ref="addWorkOrder" @addWorkOrderSubmit="addWorkOrderSubmit" />
|
|
</base-dialog>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { parseTime } from '@/utils/ruoyi'
|
|
import { getOrderPage, orderDelete, customerList } from '@/api/base/orderManage'
|
|
import OrderAdd from './components/orderAdd'
|
|
import AddWorkOrder from './components/addWorkOrder'
|
|
import { publicFormatter } from '@/utils/dict'
|
|
const tableProps = [
|
|
{
|
|
prop: 'createTime',
|
|
label: '添加时间',
|
|
filter: parseTime,
|
|
minWidth: 150
|
|
},
|
|
{
|
|
prop: 'name',
|
|
label: '订单名称',
|
|
minWidth: 120,
|
|
showOverflowtooltip: true
|
|
},
|
|
{
|
|
prop: 'code',
|
|
label: '订单编码',
|
|
minWidth: 180
|
|
},
|
|
{
|
|
prop: 'customerId',
|
|
label: '客户',
|
|
showOverflowtooltip: true
|
|
},
|
|
{
|
|
prop: 'triggerOrigin',
|
|
label: '来源',
|
|
filter: publicFormatter('order_Origin')
|
|
},
|
|
{
|
|
prop: 'priority',
|
|
label: '优先级',
|
|
filter: publicFormatter('order_priority')
|
|
},
|
|
{
|
|
prop: 'status',
|
|
label: '订单状态',
|
|
filter: publicFormatter('order_status')
|
|
},
|
|
{
|
|
prop: 'planQuantity',
|
|
label: '计划加工量',
|
|
width: 90
|
|
},
|
|
{
|
|
prop: 'actualQuantity',
|
|
label: '实际加工量',
|
|
width: 90
|
|
},
|
|
{
|
|
prop: 'productName',
|
|
label: '产品',
|
|
showOverflowtooltip: true
|
|
},
|
|
{
|
|
prop: 'unit',
|
|
label: '单位'
|
|
},
|
|
{
|
|
prop: 'price',
|
|
label: '单价(元)'
|
|
},
|
|
{
|
|
prop: 'workOrderNum',
|
|
label: '工单数量'
|
|
}
|
|
]
|
|
export default {
|
|
name: 'OrderManage',
|
|
data() {
|
|
return {
|
|
formConfig: [
|
|
{
|
|
type: 'input',
|
|
label: '订单名称',
|
|
placeholder: '订单名称',
|
|
param: 'name'
|
|
},
|
|
{
|
|
type: 'select',
|
|
label: '状态',
|
|
selectOptions: this.getDictDatas(this.DICT_TYPE.ORDER_STATUS),
|
|
labelField: 'label',
|
|
valueField: 'value',
|
|
param: 'status'
|
|
},
|
|
{
|
|
type: 'datePicker',
|
|
label: '时间段',
|
|
dateType: 'daterange',
|
|
format: 'yyyy-MM-dd',
|
|
valueFormat: "yyyy-MM-dd",
|
|
rangeSeparator: '-',
|
|
startPlaceholder: '开始时间',
|
|
endPlaceholder: '结束时间',
|
|
param: 'timeVal',
|
|
defaultSelect: [],
|
|
width: 250
|
|
},
|
|
{
|
|
type: 'button',
|
|
btnName: '查询',
|
|
name: 'search',
|
|
color: 'primary'
|
|
},
|
|
{
|
|
type: 'separate'
|
|
},
|
|
{
|
|
type: 'button',
|
|
btnName: '新增',
|
|
name: 'add',
|
|
color: 'success',
|
|
plain: true
|
|
}
|
|
],
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNo: 1,
|
|
pageSize: 20,
|
|
name: null,
|
|
status: null,
|
|
lastIssuedTime: []
|
|
},
|
|
total: 0,
|
|
tableProps,
|
|
list: [],
|
|
tableH: this.tableHeight(260),
|
|
tableBtn: [
|
|
this.$auth.hasPermi('base:group-team:update')
|
|
? {
|
|
type: 'add',
|
|
btnName: '新增工单'
|
|
}
|
|
: undefined,
|
|
this.$auth.hasPermi('base:group-team:update')
|
|
? {
|
|
type: 'bind',
|
|
btnName: '绑定工单'
|
|
}
|
|
: undefined,
|
|
this.$auth.hasPermi('base:group-team:update')
|
|
? {
|
|
type: 'detail',
|
|
btnName: '详情'
|
|
}
|
|
: undefined,
|
|
this.$auth.hasPermi('base:group-team:update')
|
|
? {
|
|
type: 'edit',
|
|
btnName: '编辑'
|
|
}
|
|
: undefined,
|
|
this.$auth.hasPermi('base:group-team:delete')
|
|
? {
|
|
type: 'delete',
|
|
btnName: '删除'
|
|
}
|
|
: undefined
|
|
].filter((v) => v),
|
|
addOrEditTitle: '',
|
|
centervisible: false,
|
|
priorityList: this.getDictDatas(this.DICT_TYPE.ORDER_PRIORITY),
|
|
workIssueTitle: '',
|
|
addWorkOrdervisible: false,
|
|
orderDetailVisible: false
|
|
}
|
|
},
|
|
components: { OrderAdd, AddWorkOrder },
|
|
created() {
|
|
window.addEventListener('resize', () => {
|
|
this.tableH = this.tableHeight(260)
|
|
})
|
|
this.getList()
|
|
},
|
|
methods: {
|
|
getList() {
|
|
getOrderPage({...this.queryParams}).then(res => {
|
|
let arr = res.data.records || []
|
|
this.total = res.data.total || 0
|
|
if (arr.length > 0) {
|
|
customerList().then(result => {
|
|
let tempData = result.data || []
|
|
if (tempData.length > 0) {
|
|
arr.map(item => {
|
|
for (let i of tempData) {
|
|
if (item.customerId === i.id) {
|
|
item.customerId = i.name
|
|
}
|
|
}
|
|
})
|
|
this.list = arr
|
|
}
|
|
})
|
|
}else {
|
|
this.list = arr
|
|
}
|
|
})
|
|
},
|
|
buttonClick(val) {
|
|
console.log(val)
|
|
if (val.btnName === 'search') {
|
|
this.queryParams.name = val.name
|
|
this.queryParams.status = val.status
|
|
if (val.timeVal && val.timeVal.length > 0) {
|
|
this.queryParams.lastIssuedTime[0] = val.timeVal[0] + ' 00:00:00'
|
|
this.queryParams.lastIssuedTime[1] = val.timeVal[1] + ' 23:59:59'
|
|
} else {
|
|
this.queryParams.lastIssuedTime = []
|
|
}
|
|
this.getList()
|
|
} else {
|
|
this.addOrEditTitle = '新增'
|
|
this.centervisible = true
|
|
this.$nextTick(() => {
|
|
this.$refs.orderAdd.init()
|
|
})
|
|
}
|
|
},
|
|
handleClick(val) {
|
|
console.log(val)
|
|
switch (val.type) {
|
|
case 'edit':
|
|
this.addOrEditTitle = '编辑'
|
|
this.centervisible = true
|
|
this.$nextTick(() => {
|
|
this.$refs.orderAdd.init(val.data.id)
|
|
})
|
|
break
|
|
case 'delete':
|
|
this.handleDelete(val.data)
|
|
break
|
|
case 'detail':
|
|
this.$router.push({ name: 'OrderDetailData', params: { orderId: val.data.id }})
|
|
break
|
|
case 'add':
|
|
this.workIssueTitle = '新增工单'
|
|
this.addWorkOrdervisible = true
|
|
this.$nextTick(() => {
|
|
this.$refs.addWorkOrder.init(val.data.id, 'add')
|
|
})
|
|
break
|
|
case 'bind':
|
|
this.workIssueTitle = '绑定工单'
|
|
this.addWorkOrdervisible = true
|
|
this.$nextTick(() => {
|
|
this.$refs.addWorkOrder.init(val.data.id, 'bind')
|
|
})
|
|
break
|
|
default:
|
|
}
|
|
},
|
|
// 删除
|
|
handleDelete(val) {
|
|
this.$modal.confirm('是否确认删除"' + val.name + '"的数据项?').then(function() {
|
|
return orderDelete({ id: val.id })
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("操作成功");
|
|
}).catch(() => {});
|
|
},
|
|
// 新增
|
|
handleCancel() {
|
|
this.$refs.orderAdd.formClear()
|
|
this.centervisible = false
|
|
this.addOrEditTitle = ''
|
|
},
|
|
handleConfirm() {
|
|
this.$refs.orderAdd.submitForm()
|
|
},
|
|
successSubmit() {
|
|
this.handleCancel()
|
|
this.getList()
|
|
},
|
|
// 下发新增
|
|
addWorkOrderCancel() {
|
|
this.$refs.addWorkOrder.formClear()
|
|
this.addWorkOrdervisible = false
|
|
},
|
|
addWorkOrderConfirm() {
|
|
this.$refs.addWorkOrder.addWorkOrderSubmit()
|
|
},
|
|
addWorkOrderSubmit() {
|
|
this.addWorkOrderCancel()
|
|
this.getList()
|
|
}
|
|
// bindWorkOrderCancel() {
|
|
// this.$refs.bindWorkOrder.formClear()
|
|
// this.bindWorkOrdervisible = false
|
|
// },
|
|
// bindWorkOrderConfirm() {
|
|
// this.$refs.bindWorkOrder.bindWorkOrderSubmit()
|
|
// },
|
|
// bindWorkOrderSubmit() {
|
|
// this.bindWorkOrderCancel()
|
|
// this.getList()
|
|
// }
|
|
}
|
|
}
|
|
</script> |