From 1382a7990e9b13f60c6416ada5477673a934dd16 Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期四, 29 八月 2024 09:02:57 +0800
Subject: [PATCH] ll

---
 pda/pages/index/queueup.vue |   21 +++++++++++++++++++--
 1 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/pda/pages/index/queueup.vue b/pda/pages/index/queueup.vue
index c983523..e21a04c 100644
--- a/pda/pages/index/queueup.vue
+++ b/pda/pages/index/queueup.vue
@@ -57,19 +57,36 @@
 </template>
 
 <script>
+	import { platformLineUpPage, getPlatformGroupList } from '@/api'
 export default {
   data() {
     return {
-      showDetail: false
+      showDetail: false,
+			capacity: 10,
+			page: 1,
+			platformGroupId: '',
+			platformGroupList: []
     }
   },
   onLoad() {
-
+		this.getPlatformGroup()
+		this.initData()
   },
   methods: {
     handleDetail() {
       this.showDetail = true
     },
+		getPlatformGroup() {
+			getPlatformGroupList().then(res => {
+				
+			})
+		},
+		initData(){
+			const { page, capacity } = this
+			platformLineUpPage({
+				capacity, page, model: {}
+			})
+		}
   }
 }
 </script>

--
Gitblit v1.9.3