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
| <!--
| * @Date: 2024-03-23 18:37:01
| * @LastEditors: gaoshp
| * @LastEditTime: 2024-03-23 19:11:43
| * @FilePath: /cps-web/src/views/basicdata/machine/workstation.vue
| -->
| <template>
| <el-main>
| ceshi
| </el-main>
| </template>
|
| <script>
|
| export default {
| name: 'about',
| data() {
| return {
| }
| },
| mounted() {
|
| },
| methods: {
|
| }
| }
| </script>
|
| <style scoped>
| .aboutTop {border:0;background: linear-gradient(to right, #8E54E9, #4776E6);color: #fff;}
| .aboutTop-info {text-align: center}
| .aboutTop-info img {width: 100px;}
| .aboutTop-info h2 {font-size: 26px;margin-top: 15px;}
| .aboutTop-info p {font-size: 16px;margin-top: 10px;}
| </style>
|
|