From e00361c6bcbb1a56f6dcda22b91bdfcb2736e263 Mon Sep 17 00:00:00 2001
From: YM <479443481@qq.com>
Date: 星期五, 26 七月 2024 15:56:27 +0800
Subject: [PATCH] 1

---
 src/components/footer/footer.vue |  131 +++++++++++++++++++++++++------------------
 1 files changed, 75 insertions(+), 56 deletions(-)

diff --git a/src/components/footer/footer.vue b/src/components/footer/footer.vue
index 6814f3c..1c20837 100644
--- a/src/components/footer/footer.vue
+++ b/src/components/footer/footer.vue
@@ -1,65 +1,84 @@
 <template>
-	<view class="BottomColumn flex flex-center" :style="{'position':isLocation==true?'fixed':'','marginTop':isMarginTop+'rem'}">
-		<view class="Bbar flex">
-			<img style="display: block;margin-right: .22rem;width: .4rem;height: .4rem;" src="@/static/image/logo.png"
-				alt="" srcset="" />
-			<view class="font-family" style="color: #2C2C2C; font-size: .12rem;line-height: 1.5;">
-				<view class="">
-					漏2017 涓浗涓尰绉戝闄腑鍖昏嵂淇℃伅鐮旂┒鎵�鐗堟潈鎵�鏈� 浜琁CP澶�********鍙�
-				</view>
-				<view class="">鍦板潃锛氬寳浜競涓滃煄鍖轰笢鐩撮棬鍐呭崡灏忚16鍙� 閭紪锛�100700 鐢佃瘽锛�8610-64089611 Email: tcmbase@126.com</view>
-			</view>
-		</view>
-	</view>
+  <view
+    class="BottomColumn flex flex-center"
+    :style="{
+      position: isLocation == true ? 'fixed' : '',
+      marginTop: isMarginTop + 'rem',
+    }"
+  >
+    <view class="Bbar flex">
+      <img
+        style="
+          display: block;
+          margin-right: 0.22rem;
+          width: 0.4rem;
+          height: 0.4rem;
+        "
+        src="@/static/image/logo.png"
+        alt=""
+        srcset=""
+      />
+      <view
+        class="font-family"
+        style="color: #2c2c2c; font-size: 0.12rem; line-height: 1.5"
+      >
+        <view >
+          漏2017 涓浗涓尰绉戝闄腑鍖昏嵂淇℃伅鐮旂┒鎵�鐗堟潈鎵�鏈� 浜琁CP澶�********鍙�
+        </view>
+        <view 
+          >鍦板潃锛氬寳浜競涓滃煄鍖轰笢鐩撮棬鍐呭崡灏忚16鍙� 閭紪锛�100700 鐢佃瘽锛�8610-64089611
+          Email: tcmtczy@mail.cintcm.ac.cn</view
+        >
+      </view>
+    </view>
+  </view>
 </template>
 
 <script>
-	export default {
-		name: "footer",
-		props: {
-			isLocation: {
-				type: Boolean,
-				default () {
-					return true
-				}
-			},
-			isMarginTop: {
-				type: Number,
-				default () {
-					return 0
-				}
-			},
-		},
-		data() {
-			return {
-
-			};
-		}
-	}
+export default {
+  name: "footer",
+  props: {
+    isLocation: {
+      type: Boolean,
+      default() {
+        return true;
+      },
+    },
+    isMarginTop: {
+      type: Number,
+      default() {
+        return 0;
+      },
+    },
+  },
+  data() {
+    return {};
+  },
+};
 </script>
 
 <style scoped>
-	.BottomColumn {
-		/* position: sticky;
+.BottomColumn {
+  /* position: sticky;
 	top: 0; */
-		/* position: fixed; */
-		/* left: 0px; */
-		bottom: 0px;
-		left: 0;
-		z-index: 999999999999999999999999999999999999999999;
-		padding: .19rem 0;
-		width: 100%;
-		background-color: #e6eff8;
-		font-size: 10px;
-		color: #000;
+  /* position: fixed; */
+  /* left: 0px; */
+  bottom: 0px;
+  left: 0;
+  z-index: 9999999999;
+  padding: 0.19rem 0;
+  width: 100%;
+  background-color: #e6eff8;
+  font-size: 10px;
+  color: #000;
 
-		/* margin-top: 1rem; */
-		.Bbar {
-			img {
-				width: 60rpx;
-				height: 60rpx;
-				border-radius: 50%;
-			}
-		}
-	}
-</style>
\ No newline at end of file
+  /* margin-top: 1rem; */
+  .Bbar {
+    img {
+      width: 60rpx;
+      height: 60rpx;
+      border-radius: 50%;
+    }
+  }
+}
+</style>

--
Gitblit v1.9.1