123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295 |
- <template>
- <view class="content">
- <view class="Homepage_header">
- <view class="Homepage_suspension">
- <view class="Suspension">
- <view class="online" @click="Onlinewarranty">
- <view><img src="@/static/index/repair-online.svg" alt="" style="margin-left: 5rpx;"></view>
- <view style="font-size: 20rpx;">线上报修</view>
- </view>
- <view class="record" @click="Inspectionrecord">
- <view><img src="@/static/index/check-review.svg" alt="" style="margin-left: 5rpx;"></view>
- <view style="font-size: 20rpx;">巡检记录</view>
- </view>
- <view class="withholding" @click="Withholdingrecord">
- <view><img src="@/static/index/reduce-record.svg" alt="" style="margin-left: 5rpx;"></view>
- <view style="font-size: 20rpx;">扣缴记录</view>
- </view>
- </view>
- </view>
- </view>
- <view class="pending">
- <view class="pending_middle">
- <view class="all">
- <view class="work">
- <span style="font-size: 30rpx;">工单待办</span>
- </view>
- <view class="processing">
- <view class="immediately" @click="Workordertodone">
- <span style="font-size: 25rpx; color: #5c8fff; ">立即处理</span>
- <u-icon name="arrow-right" color="#5c8fff" size="16rpx"></u-icon>
- </view>
- </view>
- </view>
- <view class="wait">
- <view>
- <view style="font-size: 30rpx;">待指派</view>
- <view style="text-align: center;">1</view>
- </view>
- <view>
- <view style="font-size: 30rpx;">待维修</view>
- <view style="text-align: center;">1</view>
- </view>
- <view>
- <view style="font-size: 30rpx;">已维修</view>
- <view style="text-align: center;">1</view>
- </view>
- </view>
- </view>
- </view>
- <view class="equipment">
- <view class="pending_middle">
- <view class="all">
- <view class="work">
- <span style="font-size: 30rpx;">设备异常</span>
- </view>
- <view class="processing">
- <view class="immediately">
- <span style="font-size: 25rpx; color: #5c8fff; ">立即查看</span>
- <u-icon name="arrow-right" color="#5c8fff" size="16rpx"></u-icon>
- </view>
- </view>
- </view>
- <view class="wait">
- <view>
- <view style="font-size: 30rpx;">异常总数</view>
- <view style="text-align: center;">0</view>
- </view>
- <view>
- <view style="font-size: 30rpx;">空调异常</view>
- <view style="text-align: center;">0</view>
- </view>
- <view>
- <view style="font-size: 30rpx;">水表异常</view>
- <view style="text-align: center;">0</view>
- </view>
- <view>
- <view style="font-size: 30rpx;">电表异常</view>
- <view style="text-align: center;">0</view>
- </view>
- </view>
- </view>
- </view>
- <view class="arrears">
- <view class="pending_middle">
- <view class="all">
- <view class="work">
- <span style="font-size: 30rpx;">欠费待收</span>
- </view>
- <view class="processing">
- <view class="immediately" @click="Immediatecollection">
- <span style="font-size: 25rpx; color: #5c8fff; ">立即催收</span>
- <u-icon name="arrow-right" color="#5c8fff" size="16rpx"></u-icon>
- </view>
- </view>
- </view>
- <view class="type">
- <table class="tr" style="width: 100%; border-color: #ccc; border-collapse: collapse;" border="1"
- cellspacing="0" cellpadding="0">
- <tr>
- <td>欠费类型</td>
- <td>欠费租户数</td>
- <td>累计欠费(元)</td>
-
- </tr>
- <tr>
- <td>水费</td>
- <td>1.00</td>
- <td>0.00</td>
-
- </tr>
- <tr>
- <td>电费</td>
- <td>1.00</td>
- <td>0.00</td>
-
- </tr>
- <tr>
- <td>物业费</td>
- <td>1.00</td>
- <td>77796.00</td>
- </tr>
-
- </table>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- tabbardata: 0,
- }
- },
- onLoad() {
- },
- methods: {
- Immediatecollection(){
- uni.navigateTo({
- url: '/pages/index/Immediatecollection/Immediatecollection'
- })
- },
- Workordertodone() {
- uni.navigateTo({
- url: '/pages/index/Workordertodone/Workordertodone'
- })
- },
- Onlinewarranty() {
- uni.navigateTo({
- url: '/pages/index/Onlinewarranty/Onlinewarranty'
- })
- },
- Inspectionrecord() {
- uni.navigateTo({
- url: '/pages/index/Inspectionrecord/Inspectionrecord'
- })
- },
- Withholdingrecord() {
- uni.navigateTo({
- url: '/pages/index/Withholdingrecord/Withholdingrecord'
- })
- },
- }
- }
- </script>
- <style lang="scss">
- * {
- margin: 0;
- padding: 0;
- list-style: none;
- text-decoration: none;
- }
- .Homepage_header {
- width: 750rpx;
- height: 200rpx;
- background-color: #5c8fff;
- border-radius: 0px 0px 16px 16px;
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .Homepage_suspension {
- width: 650rpx;
- height: 200rpx;
- background-color: #fff;
- display: flex;
- align-items: center;
- justify-content: space-between;
- position: absolute;
- top: 100rpx;
- }
- .Suspension {
- width: 650rpx;
- // height: 200rpx;
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- .pending {
- width: 750rpx;
- height: 350rpx;
- // background-color: #ccc;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- top: 50rpx;
- }
- .pending_middle {
- width: 650rpx;
- // height: 100px;
- // background-color: #fff;
- }
- .all {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .work {
- // padding-left: 20rpx;
- // padding-top: 2rpx;
- }
- .wait {
- width: 650rpx;
- display: flex;
- align-items: center;
- background-color: #fff;
- justify-content: space-around;
- padding-top: 30rpx;
- text-align: center;
- line-height: 60rpx;
- margin-top: 10rpx;
- }
- .immediately {
- display: flex;
- // padding-top: 2rpx;
- }
- .equipment {
- width: 750rpx;
- // height: 200rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- top: 20rpx;
- }
- .arrears {
- // width: 750rpx;
- // height: 350rpx;
- display: flex;
- flex: 1;
- align-items: center;
- justify-content: center;
- position: relative;
- top: 50rpx;
- }
- .type {
- display: flex;
- align-items: center;
- justify-content: space-around;
- text-align: center;
- flex: 1;
- margin-top: 10rpx;
- font-size: 30rpx;
- }
- tr {
- background-color: #fff;
- }
- </style>
|