Merge branch 'master' of http://s16s652780.51mypc.cn:49896/r/jczz_app
| | |
| | | //投票操作 |
| | | export const addVoteOperate = (params) => { |
| | | return http.request({ |
| | | url: '/blade-topics/topics/updateBath', |
| | | url: '/blade-userTopics/userTopics/updateBath', |
| | | method: 'POST', |
| | | data:params |
| | | }) |
| | |
| | | <view class="flex f-d-c ml-40"> |
| | | <text class="f-36">总申请</text> |
| | | <view class="flex a-i-c"> |
| | | <text class="f-48 c-blue fw mr-6">50</text> |
| | | <text class="f-48 c-blue fw mr-6">{{statistic.total}}</text> |
| | | <text class="f-24 c-99">件</text> |
| | | </view> |
| | | </view> |
| | |
| | | <view class="flex f-d-c ml-40"> |
| | | <text class="f-36">已处理</text> |
| | | <view class="flex a-i-c"> |
| | | <text class="f-48 c-green fw mr-6">50</text> |
| | | <text class="f-48 c-green fw mr-6">{{statistic.handle}}</text> |
| | | <text class="f-24 c-99">件</text> |
| | | </view> |
| | | </view> |
| | |
| | | <text class="f-28 c-aa ml-20">当前小区:</text> |
| | | </view> |
| | | |
| | | <text class="address f-28">万达华府26栋1903室 万达华府26栋1903室</text> |
| | | <text class="address f-28">{{ curSelectSite.name }}</text> |
| | | </view> |
| | | |
| | | <view class="nav flex flex-wrap j-c-s-b"> |
| | | |
| | | <view class="nav-item" v-for="(i,k) in navList" :key="k" @click="navTo(i.path)"> |
| | | <view class="nav-item" v-for="(i,k) in navList" :key="k" @click="navTo(i)"> |
| | | <image class="nav-item-bg" :src="i.bgImg" mode="aspectFill"></image> |
| | | <view class="nav-item-inner flex f-d-c"> |
| | | <text class="f-32 mb-30">{{i.title}}</text> |
| | |
| | | </template> |
| | | |
| | | <script> |
| | | import { |
| | | getStatistics |
| | | } from '@/api/task/taskReportForRepairs' |
| | | export default { |
| | | data(){ |
| | | return { |
| | | navList:[ |
| | | { |
| | | statistic: { |
| | | total: 0, |
| | | handle: 0, |
| | | }, |
| | | curSelectSite: {}, |
| | | navList: [{ |
| | | title:"公共维修", |
| | | type: 1, |
| | | bgImg:"/static/icon/nav-bg-06.png", |
| | | path:"addRepair", |
| | | path: `addRepair`, |
| | | background:"#63C875" |
| | | }, |
| | | { |
| | | title:"居家维修", |
| | | type: 2, |
| | | bgImg:"/static/icon/nav-bg-07.png", |
| | | path:"", |
| | | path: "addRepair", |
| | | background:"#4D98E2" |
| | | }, |
| | | { |
| | | title:"矛盾纠纷", |
| | | type: 3, |
| | | bgImg:"/static/icon/nav-bg-08.png", |
| | | path:"", |
| | | path: "addRepair", |
| | | background:"#EC7E51" |
| | | }, |
| | | { |
| | | title:"投诉举报", |
| | | type: 4, |
| | | bgImg:"/static/icon/nav-bg-09.png", |
| | | path:"", |
| | | path: "addRepair", |
| | | background: "#F4B862" |
| | | }, |
| | | { |
| | | title: "企业商户上报", |
| | | type: 5, |
| | | bgImg: "/static/icon/nav-bg-09.png", |
| | | path: "addRepair", |
| | | background:"#F4B862" |
| | | }, |
| | | |
| | | ] |
| | | } |
| | | }, |
| | | computed: { |
| | | |
| | | }, |
| | | onShow() { |
| | | this.getStatistics() |
| | | this.curSelectSite = uni.getStorageSync('siteInfo') |
| | | console.log(this.curSelectSite); |
| | | }, |
| | | |
| | | methods:{ |
| | | navTo(path){ |
| | | if(path){ |
| | | this.$u.func.globalNavigator(path, "navTo") |
| | | navTo(item) { |
| | | if (item.path) { |
| | | let url = item.path + "?title=" + item.title + "&type=" + item.type |
| | | this.$u.func.globalNavigator(url, "navTo") |
| | | } |
| | | }, |
| | | |
| | | getStatistics() { |
| | | getStatistics().then(res => { |
| | | this.statistic = res.data |
| | | }) |
| | | } |
| | | |
| | | } |
| | | |
| | | } |
| | | } |
| | | </script> |
| | |
| | | width:100%; |
| | | height:100%; |
| | | } |
| | | |
| | | .top{ |
| | | width:100%; |
| | | height:659rpx; |
| | |
| | | position: fixed; |
| | | top:0; |
| | | left:0; |
| | | |
| | | .top-img{ |
| | | width:100%; |
| | | height:659rpx; |
| | | } |
| | | } |
| | | |
| | | .container{ |
| | | width:100%; |
| | | padding: 0 30rpx; |
| | |
| | | top:130rpx; |
| | | left:0; |
| | | z-index: 100; |
| | | |
| | | .serve-box{ |
| | | width:100%; |
| | | height:213rpx; |
| | |
| | | padding: 0 60rpx 0 40rpx; |
| | | box-sizing: border-box; |
| | | } |
| | | |
| | | .f-48{ |
| | | font-size:48rpx; |
| | | } |
| | | |
| | | .c-blue{ |
| | | color:#677CF8; |
| | | |
| | | } |
| | | |
| | | .c-green{ |
| | | color:#30D17C; |
| | | } |
| | | |
| | | .ml-40{ |
| | | margin-left:40rpx; |
| | | } |
| | | |
| | | .site-box{ |
| | | width:100%; |
| | | padding:30rpx; |
| | | box-sizing: border-box; |
| | | border-radius: 4rpx; |
| | | |
| | | .c-aa{ |
| | | color:#aaa; |
| | | } |
| | | |
| | | .address{ |
| | | width:60%; |
| | | margin-left:25rpx; |
| | | } |
| | | } |
| | | |
| | | .nav{ |
| | | width:100%; |
| | | .nav-item,.nav-item-bg,.nav-item-inner{ |
| | | |
| | | .nav-item, |
| | | .nav-item-bg, |
| | | .nav-item-inner { |
| | | width:330rpx; |
| | | height:167rpx; |
| | | } |
| | | |
| | | .nav-item{ |
| | | position: relative; |
| | | margin-top:30rpx; |
| | | } |
| | | |
| | | .nav-item-inner{ |
| | | padding:30rpx 30rpx 0; |
| | | position: absolute; |
| | |
| | | left:0; |
| | | |
| | | } |
| | | |
| | | .item-btn{ |
| | | width:125rpx; |
| | | height:42rpx; |