Quellcode durchsuchen

关联渠道过滤接口对接

小杜 vor 4 Monaten
Ursprung
Commit
3be8f671f9
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  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;
   }