videoMonitoring.vue 824 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!-- 视频监控-->
  2. <template>
  3. <view class="earlyWarning">
  4. <scroll-view scroll-y @scrolltolower="scrollGet" class="info-max-box">
  5. </scroll-view>
  6. </view>
  7. </template>
  8. <script>
  9. import { config } from '@/api/request/config.js'
  10. import {checkManageList,conditionCollegeInfo} from '@/api/index.js'
  11. export default {
  12. name: "rectifyList",
  13. components: {
  14. },
  15. data() {
  16. return {
  17. }
  18. },
  19. onLoad(option) {
  20. },
  21. onShow() {
  22. },
  23. mounted(){
  24. },
  25. methods: {
  26. //滚动事件
  27. scrollGet(){
  28. let self=this;
  29. },
  30. handleClick(row,doType){
  31. let self=this;
  32. if( doType=='detail'){//详情
  33. }
  34. },
  35. }
  36. }
  37. </script>
  38. <style lang="stylus" scoped>
  39. .earlyWarning{
  40. height:100%;
  41. display flex;
  42. padding-bottom: 30rpx;
  43. box-sizing: border-box;
  44. }
  45. </style>