From aab8119ad66583d65d517e2eb8e574b8794180c9 Mon Sep 17 00:00:00 2001
From: inleft <inleft@qq.com>
Date: Sun, 16 Jan 2022 20:58:19 +0800
Subject: [PATCH] 无限列表滚动

---
 src/components/swichLabel/main3-show.vue |   60 ++++++++++++++++++++++--------------------------------------
 1 files changed, 22 insertions(+), 38 deletions(-)

diff --git a/src/components/swichLabel/main3-show.vue b/src/components/swichLabel/main3-show.vue
index 01af5bc..2be7466 100644
--- a/src/components/swichLabel/main3-show.vue
+++ b/src/components/swichLabel/main3-show.vue
@@ -1,58 +1,42 @@
 <template>
 	<div class="blog-main">
 		<a-row>
-			<a-col v-bind="colApiLeft">
-				<box7 :searchType="searchType"></box7>
-			</a-col>
-			<a-col v-bind="colApiMain ">
-				<box9></box9>
-				<!-- <boxLeft></boxLeft> -->
-			</a-col>
-			<a-col v-bind="colApiRight">
+			<a-col v-bind="colApiMain " class="holdHeight">
+				<a-page-header title="我的网盘" style="padding: 0px;" @back="() => this.$router.go(-1)" />
+				<net-file></net-file>
 			</a-col>
 		</a-row>
 	</div>
 </template>
 
 <script>
-	import box7 from "../mini/box7-search.vue"
-	import box8 from "../mini/box8-panal.vue"
-	import box9 from "../mini/box9-netFile.vue"
-	import boxLeft from "../group/boxLeft.vue"
+	import netFile from "../mini/box9-netFile.vue"
 	export default {
 		components: {
-			box7,
-			box8,
-			box9,
-			boxLeft,
+			netFile,
 		},
 
 		data() {
 			return {
-				searchType:"动漫搜索",
-				colApiLeft: {
-					xs: 0,
-					sm: 0,
-					md: 0,
-					lg: 8,
-					xl: 8,
-					xxl: 6,
-				},
-				colApiRight: {
-					xs: 0,
-					sm: 0,
-					md: 0,
-					lg: 0,
-					xl: 0,
-					xxl: 4,
-				},
 				colApiMain: {
 					xs: 24,
 					sm: 24,
-					md: 24,
-					lg: 14,
-					xl: 14,
-					xxl: 14,
+					md: {
+						span: 24,
+						offset: 0,
+					},
+					lg: {
+						span: 20,
+						offset: 2,
+					},
+					xl: {
+						span: 20,
+						offset: 2,
+					},
+					xxl: {
+						span: 20,
+						offset: 2,
+					},
 				}
 			}
 		}
@@ -60,5 +44,5 @@
 </script>
 
 <style lang="less">
-	
+
 </style>

--
Gitblit v1.9.1