|
@@ -18,6 +18,10 @@
|
18
|
18
|
<i class="iconfont icon-message"></i>
|
19
|
19
|
<span>常见问题</span>
|
20
|
20
|
</div>
|
|
21
|
+ <div @click.prevent="scan()" v-if="incidentWithConsumable == 1">
|
|
22
|
+ <i class="dash dash-saoyisao"></i>
|
|
23
|
+ <span>扫一扫</span>
|
|
24
|
+ </div>
|
21
|
25
|
<!-- <div @click="toGuide()">
|
22
|
26
|
<i class="iconfont icon-fuwuzhinan"></i>
|
23
|
27
|
<span>服务指南</span>
|
|
@@ -186,10 +190,13 @@
|
186
|
190
|
</template>
|
187
|
191
|
<script>
|
188
|
192
|
import { formatDate } from "./../components/js/date.js";
|
|
193
|
+import { SM } from "./../http/http";
|
189
|
194
|
export default {
|
190
|
195
|
data() {
|
191
|
196
|
return {
|
192
|
197
|
loginUser: JSON.parse(localStorage.getItem("loginUser")),
|
|
198
|
+ incidentWithConsumable: localStorage.getItem("incidentWithConsumable"),//是否绑定耗材
|
|
199
|
+ wxIncidentWithCmdb: localStorage.getItem("wxIncidentWithCmdb"),//是否绑定资产
|
193
|
200
|
noticeData: "", //公告列表
|
194
|
201
|
newRapirData: "", //最新报修
|
195
|
202
|
state: "", //流程状态
|
|
@@ -200,8 +207,10 @@ export default {
|
200
|
207
|
};
|
201
|
208
|
},
|
202
|
209
|
methods: {
|
203
|
|
- ceshi() {
|
204
|
|
- alert($("html").css("font-size"));
|
|
210
|
+ scan(){
|
|
211
|
+ SM(this).then((ress1) => {
|
|
212
|
+ this.$router.push({name:'Repair',params:{data:ress1}});
|
|
213
|
+ })
|
205
|
214
|
},
|
206
|
215
|
// 获取公告列表数据
|
207
|
216
|
getNoticData() {
|
|
@@ -272,7 +281,7 @@ export default {
|
272
|
281
|
});
|
273
|
282
|
},
|
274
|
283
|
toRapir() {
|
275
|
|
- this.$router.push({ path: "/repair" });
|
|
284
|
+ this.$router.push({name:'Repair',params:{data:''}});
|
276
|
285
|
},
|
277
|
286
|
toNoticeDetails(data) {
|
278
|
287
|
this.$router.push({
|