Showing
1 changed file
with
11 additions
and
5 deletions
... | ... | @@ -64,7 +64,7 @@ |
64 | 64 | <!-- 基础统计 --> |
65 | 65 | <!-- 四宫格CSS最新网格布局--> |
66 | 66 | <view class="grid-container"> |
67 | - <view class="grid-item"> | |
67 | + <view class="grid-item" @click="showToastWip()"> | |
68 | 68 | <view class="item-center"> |
69 | 69 | <view class="center"><image class="image" src="../../static/form.png"></image></view> |
70 | 70 | <view class="center-text"><text class="text text-muted">维修工单</text></view> |
... | ... | @@ -76,7 +76,7 @@ |
76 | 76 | <view class="center-text"><text class="text text-muted" style="">摄像头管理</text></view> |
77 | 77 | </view> |
78 | 78 | </view> |
79 | - <view class="grid-item"> | |
79 | + <view class="grid-item" @click="showToastWip()"> | |
80 | 80 | <view class="item-center"> |
81 | 81 | <view class="center"><image class="image" src="../../static/device.png"></image></view> |
82 | 82 | <view class="center-text"><text class="text text-muted">设备接入</text></view> |
... | ... | @@ -138,15 +138,21 @@ export default { |
138 | 138 | } |
139 | 139 | }); |
140 | 140 | }, |
141 | + showToastWip(){ | |
142 | + uni.$u.toast('拼命开发中 ...') | |
143 | + }, | |
141 | 144 | openCamera() { |
142 | - uni.navigateTo({ | |
143 | - url: 'camera/camera' | |
144 | - }); | |
145 | + // uni.navigateTo({ | |
146 | + // url: 'camera/camera' | |
147 | + // }); | |
148 | + this.showToastWip() | |
145 | 149 | }, |
146 | 150 | openOrgStatus() { |
147 | 151 | // uni.navigateTo({ |
148 | 152 | // url: 'configuration/configuration' |
149 | 153 | // }); |
154 | + this.showToastWip() | |
155 | + | |
150 | 156 | }, |
151 | 157 | //告警状态查询 |
152 | 158 | navigatorAlarmStatus(e) { | ... | ... |