index.vue 842 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!--
  2. * @Description: 停车率
  3. * @Author: wangcc
  4. * @Date: 2023-01-09 11:22:53
  5. * @LastEditors: wangcc
  6. * @LastEditTime: 2023-01-10 17:29:58
  7. * @FilePath: \parking_LargeScreen\src\components\ParkingRate\index.vue
  8. * @Copyright: Copyright (c) 2016~2023 by wangcc, All Rights Reserved.
  9. -->
  10. <template>
  11. <div class="center">
  12. <div class="typeBox">
  13. 类型:
  14. <el-select v-model="value" placeholder="请选择">
  15. <el-option
  16. v-for="item in options"
  17. :key="item.value"
  18. :label="item.label"
  19. :value="item.value"
  20. ></el-option>
  21. </el-select>
  22. </div>
  23. </div>
  24. </template>
  25. <script>
  26. export default {
  27. name: '',
  28. data() {
  29. return {
  30. value: '',
  31. options: []
  32. };
  33. }
  34. };
  35. </script>
  36. <style lang='scss' scoped>
  37. .center {
  38. width: 100%;
  39. height: 100%;
  40. }
  41. </style>