sceneInspect.vue 964 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <!-- 现场检查 -->
  2. <template>
  3. <view class="planDetail">
  4. <scroll-view scroll-y @scrolltolower="scrollGet" class="info-max-box">
  5. <view class="college">请选择学院单位
  6. </view>
  7. </scroll-view>
  8. </view>
  9. </template>
  10. <script>
  11. import {
  12. config
  13. } from '@/api/request/config.js'
  14. import {} from '@/pages/api/index.js'
  15. export default {
  16. name: "planDetail",
  17. components: {
  18. },
  19. data() {
  20. return {
  21. baseUrl: config.base_url,
  22. pageType: 0,
  23. }
  24. },
  25. onLoad(option) {
  26. },
  27. onShow() {
  28. },
  29. mounted() {
  30. },
  31. methods: {
  32. //滚动事件
  33. scrollGet() {},
  34. }
  35. }
  36. </script>
  37. <style lang="stylus" scoped>
  38. .planDetail {
  39. height: 100%;
  40. display flex;
  41. box-sizing: border-box;
  42. #fontColor-A {
  43. color: #0040C1;
  44. }
  45. #fontColor-B {
  46. color: #009519;
  47. }
  48. #bgColor-A {
  49. color: #0183FA;
  50. background: rgba(1, 131, 250, 0.2);
  51. }
  52. #bgColor-B {
  53. color: #16B531;
  54. background: rgba(22, 181, 49, 0.2);
  55. }
  56. }
  57. </style>