Lou
2023-11-17 eed35c26883b4dedddcbe4a8d3dedafdd4e5daf7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<template>
    <view class="">
        <view class="block bgc-ff mb-20 mt-20">
            <view class="caption">
                <view class="flex a-i-c">
                    <view class="line"></view>
                    <text class="f-32 fw">走访提醒</text>
                </view>
            </view>
            <view class="row flex j-c-s-a">
                <view class="flex f-d-c a-i-c">
                    <text class="fw c-main f-36 mb-20">3</text>
                    <text class="f-28">本周</text>
                </view>
                <view class="flex f-d-c a-i-c">
                    <text class="fw c-main f-36 mb-20">3</text>
                    <text class="f-28">半月</text>
                </view>
                <view class="flex f-d-c a-i-c">
                    <text class="fw c-main f-36 mb-20">3</text>
                    <text class="f-28">本月</text>
                </view>
            </view>
        </view>
        <view class="nav bgc-ff mb-20">
            <view class="caption">
                <view class="flex a-i-c">
                    <view class="line"></view>
                    <text class="f-32 fw">公安</text>
                </view>
            </view>
            <view class="nav-item flex j-c-s-b a-i-c">
                <text class="f-28">报事报修</text>
                <view class="flex">
                    <text class="f-28 c-99">待处理</text>
                    <view class="dot bgc-main">3</view>
                    <u-icon name="arrow-right" color="#999"></u-icon>
                </view>
            </view>
            <view class="nav-item flex j-c-s-b a-i-c">
                <text class="f-28">住户审核</text>
                <view class="flex">
                    <text class="f-28 c-99">待处理</text>
                    <view class="dot bgc-main">3</view>
                    <u-icon name="arrow-right" color="#999"></u-icon>
                </view>
            </view>
            <view class="nav-item flex j-c-s-b a-i-c">
                <text class="f-28">工作日志</text>
                <view class="flex">
                    <text class="f-28 c-99">待处理</text>
                    <view class="dot bgc-main">3</view>
                    <u-icon name="arrow-right" color="#999"></u-icon>
                </view>
            </view>
        </view>
 
        <view class="nav bgc-ff mb-20">
            <view class="caption">
                <view class="flex a-i-c">
                    <view class="line"></view>
                    <text class="f-32 fw">住建</text>
                </view>
            </view>
            <view class="nav-item flex j-c-s-b a-i-c">
                <text class="f-28">出租房管理</text>
                <view class="flex">
                    <text class="f-28 c-99">待处理</text>
                    <view class="dot bgc-main">3</view>
                    <u-icon name="arrow-right" color="#999"></u-icon>
                </view>
            </view>
        </view>
        <view class="nav bgc-ff mb-20">
            <view class="caption">
                <view class="flex a-i-c">
                    <view class="line"></view>
                    <text class="f-32 fw">综治</text>
                </view>
            </view>
            <view class="nav-item flex j-c-s-b a-i-c">
                <text class="f-28">综治任务</text>
                <view class="flex">
                    <text class="f-28 c-99">待处理</text>
                    <view class="dot bgc-main">3</view>
                    <u-icon name="arrow-right" color="#999"></u-icon>
                </view>
            </view>
        </view>
    </view>
</template>
 
<script>
    import { getCountFrequencyNumber } from "@/api/task/task.js"
    export default {
        data() {
            return {
                navList: [{
                    name: "",
 
                }]
            }
        },
        
        onLoad(){
            this.getCount();
        },
        
        methods:{
            getCount(){
                getCountFrequencyNumber().then(res=>{
                    console.log(res);
                })
            }
        }
        
    }
</script>
 
<style lang="scss">
    page {
        background-color: #F5F5F5;
    }
 
    .block {
        width: 690rpx;
        margin: 20rpx auto;
        border-radius: 4rpx;
 
        
 
        .row {
            padding: 30rpx 0 34rpx;
        }
    }
    .caption {
        width: 100%;
        padding: 30rpx;
        box-sizing: border-box;
        border-bottom: 1px solid #F5F5F5;
    
        .line {
            width: 6rpx;
            height: 28rpx;
            background-color: #017BFC;
            margin-right: 14rpx;
        }
    }
 
    .nav {
        width: 690rpx;
        margin: 0 auto;
 
        .nav-item {
            width: 100%;
            padding: 36rpx 30rpx;
            box-sizing: border-box;
            border-bottom: 1px solid #F5F5F5;
        }
 
        .dot {
            width: 32rpx;
            height: 32rpx;
            line-height: 32rpx;
            border-radius: 50%;
            color: #fff;
            text-align: center;
            font-size: 24rpx;
            margin: 0 10rpx 0 20rpx;
        }
    }
    .mb-20{
        margin-bottom: 20rpx;
    }
</style>