wxy 4 meses atrás
pai
commit
83762ff714

+ 1 - 1
src/views/flowPool/index.vue

@@ -375,7 +375,7 @@ const intData = async () => {
     // const trafficPoolType = typeList.value.find(val => val.value == item.trafficPoolType)?.label
     const trafficPoolStatus = trafficList.value.find(val => val.value == item.status)?.label
     const sourceName = sourceList.value.find(val => val.value == item.source)?.label
-    const Activated = 0 + '/' + item.iccids.length
+    const Activated = 0 + '/' + item.iccids?.length
     const HaveBeenUsed = 0+ '/' + item.size+item.sizeType
     return {
       ...item,

+ 1 - 1
src/views/flowPool/rearFlowPool/index.vue

@@ -377,7 +377,7 @@ const intData = async () => {
     // const trafficPoolType = typeList.value.find(val => val.value == item.trafficPoolType)?.label
     const trafficPoolStatus = trafficList.value.find(val => val.value == item.status)?.label
     const sourceName = sourceList.value.find(val => val.value == item.source)?.label
-    const Activated = 0 + '/' + item.iccids.length
+    const Activated = 0 + '/' + item.iccids?.length
     const HaveBeenUsed = 0+ '/' + item.size+item.sizeType
     return {
       ...item,

+ 1 - 0
src/views/lotCard/cardList/config.js

@@ -7,6 +7,7 @@ export const columns = [
   { title: 'SIM生成日期', dataIndex: 'createTime', align: 'center',  ellipsis:true },
   { title: '支付方式', dataIndex: 'payType', align: 'center', ellipsis:true  },
   { title: 'SIM状态', dataIndex: 'accountStatus', align: 'center', ellipsis:true  },
+  { title: '预警状态', dataIndex: 'accountStatus', align: 'center', ellipsis:true  },
   { title: '已使用总流量', dataIndex: 'dataUsageTotal', align: 'center',  ellipsis:true },
   { title: '语音呼入分钟数', dataIndex: 'voiceMtTotal', align: 'center', ellipsis:true  },
   { title: '语音呼出分钟数', dataIndex: 'voiceMoTotal', align: 'center', ellipsis:true  },