wxy 4 hónapja
szülő
commit
aed61ab390
1 módosított fájl, 3 hozzáadás és 1 törlés
  1. 3 1
      src/views/tariffManagement/index.vue

+ 3 - 1
src/views/tariffManagement/index.vue

@@ -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: "正常"