|
@@ -240,10 +240,12 @@ const intData = async () => {
|
|
|
dataSource.value = (data.records || []).map((item, index) => {
|
|
|
const sourceName = sourceList.value.find(val => val.value == item.source)?.label
|
|
|
const billingCycleName = cycleist.value.find(val => val.value == item.billingCycle)?.label
|
|
|
- const methodName = methodList.value.find(val => val.value == item.billingMethod)?.label
|
|
|
+ const pricingCurrty = currency.value.find(val => val.value == item.currency)?.label
|
|
|
+ console.log(currency.value)
|
|
|
return {
|
|
|
...item,
|
|
|
sourceName,
|
|
|
+ pricing:item.pricing+pricingCurrty,
|
|
|
billingCycleName,
|
|
|
feeCode: "NR0" + (index + 1),
|
|
|
status: "正常"
|