Merge branch 'dev' of gitea.51mars.com:Oak-Team/oak-pay-business into dev
This commit is contained in:
commit
534f13b058
|
|
@ -54,6 +54,16 @@ export default OakComponent({
|
|||
}
|
||||
}
|
||||
],
|
||||
sorters: [
|
||||
{
|
||||
sorter: {
|
||||
$attr: {
|
||||
$$createAt$$: 1,
|
||||
},
|
||||
$direction: 'desc',
|
||||
}
|
||||
}
|
||||
],
|
||||
formData({ data }) {
|
||||
const payConfig = this.features.pay.getPayConfigs();
|
||||
const offlineConfig = payConfig?.find(ele => ele.channel === PAY_CHANNEL_OFFLINE_NAME);
|
||||
|
|
@ -71,5 +81,6 @@ export default OakComponent({
|
|||
}),
|
||||
};
|
||||
},
|
||||
getTotal: 100,
|
||||
actions: ['close', 'succeedPaying']
|
||||
});
|
||||
|
|
|
|||
|
|
@ -55,6 +55,16 @@ export default OakComponent({
|
|||
}
|
||||
}
|
||||
],
|
||||
sorters: [
|
||||
{
|
||||
sorter: {
|
||||
$attr: {
|
||||
$$createAt$$: 1,
|
||||
},
|
||||
$direction: 'desc',
|
||||
}
|
||||
}
|
||||
],
|
||||
formData({ data }) {
|
||||
const payConfig = this.features.pay.getPayConfigs();
|
||||
const offlineConfig = payConfig?.find(ele => ele.channel === PAY_CHANNEL_OFFLINE_NAME);
|
||||
|
|
@ -74,5 +84,6 @@ export default OakComponent({
|
|||
),
|
||||
};
|
||||
},
|
||||
getTotal: 100,
|
||||
actions: ['close', 'succeedPaying']
|
||||
})
|
||||
Loading…
Reference in New Issue