1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
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 深圳市企鹅网络科技有限公司 粤ICP备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>
|
|