From f56e474c81bb25845b46cf99c85bd313dbfcd3b5 Mon Sep 17 00:00:00 2001
From: wwf <1971391498@qq.com>
Date: 星期六, 31 一月 2026 19:26:25 +0800
Subject: [PATCH] 项目初始化+首页+公告详情页面
---
src/views/main/components/MyFooter.vue | 74 +++++++++++++++++++++++++++++++++++++
1 files changed, 74 insertions(+), 0 deletions(-)
diff --git a/src/views/main/components/MyFooter.vue b/src/views/main/components/MyFooter.vue
new file mode 100644
index 0000000..2bce5f1
--- /dev/null
+++ b/src/views/main/components/MyFooter.vue
@@ -0,0 +1,74 @@
+<template>
+ <div class="custom-footer">
+ <el-row justify="center">
+ <el-select
+ v-for="(item,index) in selectList"
+ v-model="item.value"
+ :placeholder="item.placeholder"
+ :key="`select${index}`"
+ style="width: 288px;font-size: 16px;"
+ class="mx-2 mt-6"
+ >
+ <el-option
+ v-for="item in item.options"
+ :key="item.value"
+ :label="item.label"
+ :value="item.value"
+ />
+ </el-select>
+ </el-row>
+ <el-row>
+ <el-text class="text-white font-medium text-default">
+ 漏2025 娣卞湷甯備紒楣呯綉缁滅鎶�鏈夐檺鍏徃 绮CP澶�15026064鍙仿� 绮ゅ叕缃戝畨澶� 44030502007327 鍙�
+ </el-text>
+ </el-row>
+ </div>
+</template>
+<script>
+export default {
+ data() {
+ return {
+ selectList: [
+ {
+ options: [],
+ placeholder: "涓婄骇鏀垮簻缃戠珯",
+ value: ""
+ },
+ {
+ options: [],
+ placeholder: "鍚勭渷浜虹ぞ閮ㄩ棬缃戠珯",
+ value: ""
+ },
+ {
+ options: [],
+ placeholder: "鍚勫湴甯備汉绀鹃儴闂ㄧ綉绔�",
+ value: ""
+ },
+ {
+ options: [],
+ placeholder: "涓氬姟缃戠珯",
+ value: ""
+ },
+ ]
+ }
+ }
+}
+</script>
+
+<style scoped>
+.custom-footer {
+ width: 100%;
+ min-height: 185px !important;
+ display: flex;
+ padding: 20px;
+ flex-direction: column;
+ justify-content: space-between;
+ align-items: center;
+ background-color: #007AFF;
+ margin-top: 30px;
+ /* background-image: url('@/assets/images/test.png'); */
+}
+:deep(.el-select__wrapper) {
+ min-height: 44px;
+}
+</style>
\ No newline at end of file
--
Gitblit v1.8.0