| | |
| | | <script setup> |
| | | import publicContent from './publicContent.vue' |
| | | |
| | | // import { ref, reactive } from 'vue' |
| | | import { ref, reactive } from 'vue' |
| | | |
| | | import { getPage } from '../../../../api/indParkInfo' |
| | | |
| | |
| | | |
| | | function getPages() { |
| | | getPage().then(res => { |
| | | parkQy = res.data.data.records |
| | | console.log(res) |
| | | parkQy.value = res.data.data.records |
| | | // console.log(res) |
| | | }).catch(err => { |
| | | console.log(err) |
| | | }) |
| | |
| | | |
| | | .data-content-item { |
| | | display: flex; |
| | | margin: 2px 2px; |
| | | margin: 2px 10px; |
| | | padding: 5px 0; |
| | | text-indent: 1em; |
| | | background-color: #747bff; |
| | | justify-content: space-between; |
| | | // 超过高度自动显示滚动条 |
| | | overflow-y: auto; |
| | | border-radius: 5px; |
| | | } |
| | | </style> |