12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <template>
- <view class="management">
- <view class="managelind">
- <view class="managename" @click="Tenantbill">
- <view class="managename1">
- <!-- <img :src='srczuhu' alt=""> -->
- <u--image mode="widthFix" :src="srczuhu" width="48rpx" height="48rpx"></u--image>
- </view>
- <view class="managename2">
- 租户账单
- </view>
- </view>
- <view class="managename" @click="Remotecontrol">
- <view class="managename1">
- <!-- <img :src='srcyuanc' alt=""> -->
- <u--image mode="widthFix" :src="srcyuanc" width="48rpx" height="48rpx"></u--image>
- </view>
- <view class="managename2">
- 远程管控
- </view>
- </view>
-
- </view>
-
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- srczuhu: require('@/static/management/zd.png'),
- srcyuanc: require('@/static/management/yc.png'),
- }
- },
- methods: {
- Tenantbill(){
- uni.navigateTo({
- url: '/pages/Workorder/Tenantbill/Tenantbill'
- })
- },
- Remotecontrol(){
- uni.navigateTo({
- url: '/pages/Workorder/Remotecontrol/Remotecontrol'
- })
- },
-
- }
- }
- </script>
- <style>
- .management{}
- .managelind{
- display: flex;
- justify-content: space-around;
- align-items: center;
- width: 690rpx;
- min-height: 130rpx;
- margin: 20rpx auto;
- background: #fff;
- border-radius: 10px;
- }
- .managename{
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .managename1 img{
- width: 40rpx;
- height: 40rpx;
- }
- .managename2{
- padding-top: 15rpx;
- color: #666;
- font-size: 20rpx;
- }
- </style>
|