分组修改

This commit is contained in:
GaoHao
2025-04-07 16:15:37 +08:00
parent db05de04a5
commit c0f03ef9aa
5 changed files with 78 additions and 17 deletions

View File

@@ -67,6 +67,16 @@ export default {
{ label: '订单消费出库', type: 'order-out' },
{ label: '损耗出库', type: 'damage-out' },
],
invoicingType: [
{ label: '全部', type: '' },
{ label: '手动入库', type: 'manual-in' },
{ label: '手动出库', type: 'manual-out' },
{ label: '盘盈入库', type: 'win-in' },
{ label: '盘亏出库', type: 'loss-out' },
{ label: '订单退款入库', type: 'other-out' },
{ label: '订单消费出库', type: 'order-out' },
{ label: '损耗出库', type: 'damage-out' },
],
getDiceName(val,key){
let item = this[key].find(v => v.type == val)
return item ? item.label : ''