123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!-- 视频监控-->
- <template>
- <view class="earlyWarning">
- <scroll-view scroll-y @scrolltolower="scrollGet" class="info-max-box">
-
- </scroll-view>
- </view>
- </template>
- <script>
- import { config } from '@/api/request/config.js'
- import {checkManageList,conditionCollegeInfo} from '@/api/index.js'
- export default {
- name: "rectifyList",
- components: {
-
- },
- data() {
- return {
-
-
- }
- },
- onLoad(option) {
-
- },
- onShow() {
-
- },
- mounted(){
-
-
- },
- methods: {
-
- //滚动事件
- scrollGet(){
- let self=this;
-
- },
-
-
- handleClick(row,doType){
- let self=this;
- if( doType=='detail'){//详情
-
- }
-
- },
-
-
- }
- }
- </script>
- <style lang="stylus" scoped>
- .earlyWarning{
- height:100%;
- display flex;
- padding-bottom: 30rpx;
- box-sizing: border-box;
-
- }
- </style>
|