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.
35 lines
780 B
35 lines
780 B
4 years ago
|
// 全部订单各列表
|
||
|
const waybill = {
|
||
|
state: {
|
||
|
orderList: [],
|
||
|
runningList: [],
|
||
|
finishedList: [],
|
||
|
canceledList: [],
|
||
|
waybillNumber: '',
|
||
|
waybilling: ''
|
||
|
|
||
|
},
|
||
|
mutations: {
|
||
|
SET_ORDERLIST: (state, orderList) => {
|
||
|
state.orderList = orderList
|
||
|
},
|
||
|
SET_RUNNINGLIST: (state, runningList) => {
|
||
|
state.runningList = runningList
|
||
|
},
|
||
|
SET_FINISHEDLIST: (state, finishedList) => {
|
||
|
state.finishedList = finishedList
|
||
|
},
|
||
|
SET_CANCELEDLIST: (state, canceledList) => {
|
||
|
state.canceledList = canceledList
|
||
|
},
|
||
|
SET_WAYBILL: (state, waybillNumber) => {
|
||
|
state.waybillNumber = waybillNumber
|
||
|
},
|
||
|
SET_WAYBILLING: (state, waybilling) => {
|
||
|
state.waybilling = waybilling
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default waybill
|