|
@@ -27,7 +27,7 @@ export function usePriList() {
|
|
|
const dialogAddVisible = ref(false);
|
|
|
const pagination = reactive<PaginationProps>({
|
|
|
total: 0,
|
|
|
- pageSize: 10,
|
|
|
+ pageSize: 20,
|
|
|
currentPage: 1,
|
|
|
background: true
|
|
|
});
|
|
@@ -54,7 +54,8 @@ export function usePriList() {
|
|
|
prop: "kind",
|
|
|
minWidth: 200,
|
|
|
formatter: ({ kind }) => {
|
|
|
- return kindOptionList.find(item => item.id == kind).label
|
|
|
+ var obj = kindOptionList.find(item => item.id == kind);
|
|
|
+ return obj ? obj.label : ''
|
|
|
},
|
|
|
},
|
|
|
{
|
|
@@ -173,6 +174,7 @@ export function usePriList() {
|
|
|
{ id: 'cash', label: '现金' },
|
|
|
{ id: 'recyc', label: '循环资格' },
|
|
|
{ id: 'coupon', label: '机具券' },
|
|
|
+ { id: 'reserve', label: '额度' },
|
|
|
]
|
|
|
// 奖励分类
|
|
|
const kindOptionList = [
|