|
@@ -85,12 +85,12 @@ const intData = async () => {
|
|
|
const { data } = await getDataPlanList(param)
|
|
|
const soureName = await Getdictionary('supplierSource')
|
|
|
dataSource.value = (data?.records || []).map((item, index) => {
|
|
|
- const soure = soureName.find(val => val.value == item.source)?.label
|
|
|
+ // const soure = soureName.find(val => val.value == item.source)?.label
|
|
|
const total = item.dataTotal == -1 ? '无限流量' : item.dataTotal + "MB"
|
|
|
return {
|
|
|
...item,
|
|
|
total: total,
|
|
|
- source: soure
|
|
|
+ // source: soure
|
|
|
}
|
|
|
})
|
|
|
pagination.value.total = data.total
|