123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <view class="">
- <view class="cu-list menu-avatar">
- <view class="cu-item deviceTypeItem" v-for="(item,index) in deviceType" :key="index" @tap="goReportDetail">
- <view class="cu-avatar round" style="background-image:url(../../../static/month-report-icon.png)"></view>
- <view class="content">
- <view class="title">虹泾总部园2020-04月报</view>
- </view>
- <view class="nav-right num">
- <view>
- <text class="icon iconfont margin-right-xs margin-left-lg"></text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import json from '../../../data/json.js';
- export default {
- data() {
- return {
- deviceType: json.deviceType,
- };
- },
- onLoad: function(option) {
- },
- methods: {
- goReportDetail() {
- uni.navigateTo({
- url: '/pages/analyse/monthDetail/monthDetail',
- });
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|