Parcourir la source

关联渠道过滤接口对接

小杜 il y a 4 mois
Parent
commit
3be8f671f9
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      src/views/main/formworkErection/appAdmin.vue

+ 2 - 1
src/views/main/formworkErection/appAdmin.vue

@@ -524,8 +524,9 @@ const channelAppId = ref('')
 const openChannelLayer = async (row) => {
   if (row) {
     channelAppId.value = row.appId
-    let res =await relativeChannelList({appId: row.appId})
+    let res =await relativeChannelList({appId: row.appId,page:channelPage.pageNum,limit:channelPage.limit})
     channelData.value = res.data;
+    channelPage.total = res.pageMeta.total;
     channelLayer.value.show = true;
   }