12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!--
- * @Description: 停车率
- * @Author: wangcc
- * @Date: 2023-01-09 11:22:53
- * @LastEditors: wangcc
- * @LastEditTime: 2023-01-10 17:29:58
- * @FilePath: \parking_LargeScreen\src\components\ParkingRate\index.vue
- * @Copyright: Copyright (c) 2016~2023 by wangcc, All Rights Reserved.
- -->
- <template>
- <div class="center">
- <div class="typeBox">
- 类型:
- <el-select v-model="value" placeholder="请选择">
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: '',
- data() {
- return {
- value: '',
- options: []
- };
- }
- };
- </script>
- <style lang='scss' scoped>
- .center {
- width: 100%;
- height: 100%;
- }
- </style>
|