|
@@ -125,8 +125,9 @@ const handleCustomEnter = (e) => {
|
|
|
const getData = async () => {
|
|
|
// const params = {}
|
|
|
const data = await getEnterpriseRechargePackageList()
|
|
|
- const end = { name: '自定义充值', payPrice: 100, custom: true, tip: '输入完成后请按Enter键确认' }
|
|
|
- list.value = data ? [...data, end] : [end]
|
|
|
+ list.value = data || []
|
|
|
+ // const end = { name: '自定义充值', payPrice: 100, custom: true, tip: '输入完成后请按Enter键确认' }
|
|
|
+ // list.value = data ? [...data, end] : [end]
|
|
|
}
|
|
|
getData()
|
|
|
|