退款类型增加

This commit is contained in:
GaoHao
2025-04-15 13:45:00 +08:00
parent c0f03ef9aa
commit acad1cd067
4 changed files with 12 additions and 1 deletions

View File

@@ -77,6 +77,10 @@ export default {
{ label: '订单消费出库', type: 'order-out' },
{ label: '损耗出库', type: 'damage-out' },
],
refundType: [
{ label: '现金退款', type: 'cash' },
{ label: '原路退回', type: 'payBack' },
],
getDiceName(val,key){
let item = this[key].find(v => v.type == val)
return item ? item.label : ''