safecheck-client 3.0.34-1 → 3.0.34-11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/android/AndroidDefectDeal.vue +634 -633
- package/src/components/android/AreaPlan.vue +1 -7
- package/src/components/android/ImgSelfAndroid.vue +181 -181
- package/src/components/android/PaperFeedback.vue +1 -1
- package/src/components/android/PaperFeedbackTemp.vue +1 -1
- package/src/components/android/SafecheckDevices.vue +2 -2
- package/src/components/android/SafecheckDevicesTemp.vue +1 -1
- package/src/components/android/userinfo/SafecheckUserInfo.vue +1 -1
- package/src/filiale/baiyin/android/AndroidDefectDeal.vue +633 -633
- package/src/filiale/baiyin/android.js +10 -10
- package/src/filiale/baiyin/pc/CheckPlanAreaList.vue +485 -485
- package/src/filiale/baiyin/pc/CheckSearchUser.vue +1067 -1067
- package/src/filiale/baiyin/pc/DefectListNew.vue +597 -597
- package/src/filiale/baiyin/pc/DefectMainNew.vue +63 -63
- package/src/filiale/baiyin/pc/DefectPaperNew.vue +1052 -1052
- package/src/filiale/baiyin/pc/PaperList.vue +790 -790
- package/src/filiale/baiyin/pc/PlanChooser.vue +167 -167
- package/src/filiale/baiyin/pc/PlanManage.vue +834 -834
- package/src/filiale/baiyin/pc/RightTreeSafe.vue +348 -348
- package/src/filiale/baiyin/pc/RoleSelector.vue +160 -160
- package/src/filiale/bayan/android/PaperFeedback.vue +1 -1
- package/src/filiale/bayan/android/SafecheckDevices.vue +1 -1
- package/src/filiale/bayan/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/dexin/android/SafecheckDevices.vue +1 -1
- package/src/filiale/hanzhong/android/PaperFeedback.vue +1 -1
- package/src/filiale/hanzhong/android/SafecheckDevices.vue +1 -1
- package/src/filiale/hanzhong/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/jiaxian/android/SafecheckDevices.vue +1298 -1298
- package/src/filiale/jiaxian/android.js +10 -10
- package/src/filiale/jiaxian/pc.js +12 -12
- package/src/filiale/jingyang/android/PaperFeedback.vue +1 -1
- package/src/filiale/jingyang/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/pingxiang/android/PaperFeedback.vue +1 -1
- package/src/filiale/qingjian/android/PhoneUpUserinfo.vue +1270 -1270
- package/src/filiale/qingjian/android/SafecheckDevices.vue +1 -1
- package/src/filiale/qingjian/android/SafecheckOrderV.vue +2844 -2844
- package/src/filiale/qingjian/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/shiquan/android/SafecheckDevices.vue +1 -1
- package/src/filiale/siyang/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/wuan/android/SafecheckOrderV.vue +4 -1
- package/src/filiale/wuan/android/SafecheckUserInfo.vue +6 -5
- package/src/filiale/yangchunboneng/android/CurrentCreate.vue +8 -11
- package/src/filiale/yangchunboneng/android/DailyworkloadQuery.vue +8 -13
- package/src/filiale/yangchunboneng/android/NewCheckpaperAndroid.vue +1362 -1362
- package/src/filiale/yangchunboneng/android/PaperFeedback.vue +1731 -1731
- package/src/filiale/yangchunboneng/android/PhoneUpUserinfo.vue +1235 -1235
- package/src/filiale/yangchunboneng/android/SafecheckDevices.vue +1332 -1332
- package/src/filiale/yangchunboneng/android/SafecheckOrderV.vue +2845 -2845
- package/src/filiale/yangchunboneng/android/SafecheckUserInfo.vue +887 -887
- package/src/filiale/yangchunboneng/android/safeHistoryLook.vue +8 -13
- package/src/filiale/yangchunboneng/pc/CheckBookUser.vue +4 -4
- package/src/filiale/yangchunboneng/pc/CheckSearchUser.vue +1192 -1192
- package/src/filiale/yangchunboneng/pc/DefectPaperNew.vue +54 -3
- package/src/filiale/yangchunboneng/pc/PaperDefectMain.vue +972 -944
- package/src/filiale/yangchunboneng/pc/PaperList.vue +29 -0
- package/src/filiale/yongzhou/android/PaperFeedback.vue +1 -1
- package/src/filiale/yongzhou/android/SafecheckDevices.vue +1 -1
- package/src/filiale/yongzhou/android/SafecheckUserInfo.vue +1 -1
- package/src/filiale/yunchengminsheng/android/PaperFeedback.vue +1 -1
- package/src/filiale/yunchengminsheng/android/SafecheckDevices.vue +1 -1
- package/src/filiale/yunchengminsheng/android/SafecheckUserInfo.vue +1 -1
- package/src/main.js +33 -33
@@ -241,6 +241,30 @@
|
|
241
241
|
:value-single="true">
|
242
242
|
</v-select>
|
243
243
|
</div>
|
244
|
+
<div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
|
245
|
+
<label class="font_normal_body">通气开始</label>
|
246
|
+
<datepicker
|
247
|
+
:value.sync="model.f_gas_start"
|
248
|
+
placeholder='首次通气时间' style="width: 60%"
|
249
|
+
:disabled-days-of-week="[]"
|
250
|
+
:format="'yyyy-MM-dd'"
|
251
|
+
:show-rest-button="reset"
|
252
|
+
v-model="model.f_gas_start"
|
253
|
+
condition="f_uservent_date >='{} 00:00:00'">
|
254
|
+
</datepicker>
|
255
|
+
</div>
|
256
|
+
<div class="form-group col-sm-2" v-show="$parent.$parent.criteriaShow" >
|
257
|
+
<label class="font_normal_body">通气结束</label>
|
258
|
+
<datepicker
|
259
|
+
:value.sync="model.f_gas_end"
|
260
|
+
placeholder='首次通气时间' style="width: 60%"
|
261
|
+
:disabled-days-of-week="[]"
|
262
|
+
:format="'yyyy-MM-dd'"
|
263
|
+
:show-rest-button="reset"
|
264
|
+
v-model="model.f_gas_end"
|
265
|
+
condition="f_uservent_date <= '{} 23:59:59'">
|
266
|
+
</datepicker>
|
267
|
+
</div>
|
244
268
|
</div>
|
245
269
|
<modal :show.sync="$parent.$parent.showModal" v-ref:modal backdrop="false">
|
246
270
|
<div slot="modal-header" class="modal-header">
|
@@ -279,6 +303,9 @@
|
|
279
303
|
<th>
|
280
304
|
<nobr>客户地址</nobr>
|
281
305
|
</th>
|
306
|
+
<th>
|
307
|
+
<nobr>通气时间</nobr>
|
308
|
+
</th>
|
282
309
|
<th>
|
283
310
|
<nobr>安检状态</nobr>
|
284
311
|
</th>
|
@@ -329,6 +356,7 @@
|
|
329
356
|
<td style="text-align: center">{{row.f_check_type}}</td>
|
330
357
|
|
331
358
|
<td style="text-align: center">{{row.f_address}}</td>
|
359
|
+
<td style="text-align: center">{{row.f_uservent_date}}</td>
|
332
360
|
<td style="text-align: center">{{row.f_entry_status}}</td>
|
333
361
|
<td style="text-align: center">{{row.f_offsite_time}}</td>
|
334
362
|
<td style="text-align: center">{{row.f_checker_name}}</td>
|
@@ -448,6 +476,7 @@ export default {
|
|
448
476
|
'f_check_type': '客户类型',
|
449
477
|
'f_residential_area': '小区',
|
450
478
|
'f_address': '客户地址',
|
479
|
+
'f_uservent_date': '通气时间',
|
451
480
|
'f_entry_status': '安检状态',
|
452
481
|
'f_offsite_time': '安检时间',
|
453
482
|
'f_checker_name': '安检员',
|
@@ -634,7 +634,6 @@ export default {
|
|
634
634
|
HostApp.__this__ = null
|
635
635
|
},
|
636
636
|
takePic(prop, title, index) {
|
637
|
-
const obj = HostApp.getGpsDetailAddress()
|
638
637
|
HostApp.__callback__ = this.cameraCallBack
|
639
638
|
HostApp.__this__ = this
|
640
639
|
////tag
|
@@ -661,6 +660,7 @@ export default {
|
|
661
660
|
}
|
662
661
|
let jingweidu = ''
|
663
662
|
if (this.$parent.$parent.is_has_jingweidu == 'true'){
|
663
|
+
const obj = HostApp.getGpsDetailAddress()
|
664
664
|
jingweidu = '\t经度:' + obj.longitude+ '\t纬度:' + obj.latitude
|
665
665
|
}
|
666
666
|
HostApp._open_a_page({
|
@@ -435,7 +435,6 @@ export default {
|
|
435
435
|
if (this.role == 'androidview') {
|
436
436
|
return
|
437
437
|
}
|
438
|
-
const obj = HostApp.getGpsDetailAddress()
|
439
438
|
HostApp.__callback__ = this.cameraCallBack
|
440
439
|
HostApp.__this__ = this
|
441
440
|
//tag
|
@@ -455,6 +454,7 @@ export default {
|
|
455
454
|
}
|
456
455
|
let jingweidu = ''
|
457
456
|
if (this.$parent.$parent.is_has_jingweidu == 'true'){
|
457
|
+
const obj = HostApp.getGpsDetailAddress()
|
458
458
|
jingweidu = '\t经度:' + obj.longitude+ '\t纬度:' + obj.latitude
|
459
459
|
}
|
460
460
|
//tag
|
@@ -412,7 +412,6 @@ export default {
|
|
412
412
|
HostApp.__this__ = null
|
413
413
|
},
|
414
414
|
takePic (type ,prop, title) {
|
415
|
-
const obj = HostApp.getGpsDetailAddress()
|
416
415
|
HostApp.__callback__ = this.cameraCallBack
|
417
416
|
HostApp.__this__ = this
|
418
417
|
//tag
|
@@ -438,6 +437,7 @@ export default {
|
|
438
437
|
}
|
439
438
|
let jingweidu = ''
|
440
439
|
if (this.$parent.$parent.is_has_jingweidu == 'true'){
|
440
|
+
const obj = HostApp.getGpsDetailAddress()
|
441
441
|
jingweidu = '\t经度:' + obj.longitude+ '\t纬度:' + obj.latitude
|
442
442
|
}
|
443
443
|
let page = 'com.aofeng.hybrid.android.peripheral.CameraActivity'
|
@@ -626,7 +626,6 @@
|
|
626
626
|
HostApp.__this__ = null
|
627
627
|
},
|
628
628
|
takePic(prop, title, index) {
|
629
|
-
const obj = HostApp.getGpsDetailAddress()
|
630
629
|
HostApp.__callback__ = this.cameraCallBack
|
631
630
|
HostApp.__this__ = this
|
632
631
|
////tag
|
@@ -647,6 +646,7 @@
|
|
647
646
|
}
|
648
647
|
let jingweidu = ''
|
649
648
|
if (this.$parent.$parent.is_has_jingweidu == 'true'){
|
649
|
+
const obj = HostApp.getGpsDetailAddress()
|
650
650
|
jingweidu = '\t经度:' + obj.longitude+ '\t纬度:' + obj.latitude
|
651
651
|
}
|
652
652
|
HostApp._open_a_page({
|
@@ -435,7 +435,6 @@ export default {
|
|
435
435
|
if (this.role == 'androidview') {
|
436
436
|
return
|
437
437
|
}
|
438
|
-
const obj = HostApp.getGpsDetailAddress()
|
439
438
|
HostApp.__callback__ = this.cameraCallBack
|
440
439
|
HostApp.__this__ = this
|
441
440
|
//tag
|
@@ -455,6 +454,7 @@ export default {
|
|
455
454
|
}
|
456
455
|
let jingweidu = ''
|
457
456
|
if (this.$parent.$parent.is_has_jingweidu == 'true'){
|
457
|
+
const obj = HostApp.getGpsDetailAddress()
|
458
458
|
jingweidu = '\t经度:' + obj.longitude+ '\t纬度:' + obj.latitude
|
459
459
|
}
|
460
460
|
//tag
|
@@ -420,7 +420,6 @@
|
|
420
420
|
HostApp.__this__ = null
|
421
421
|
},
|
422
422
|
takePic (type ,prop, title) {
|
423
|
-
const obj = HostApp.getGpsDetailAddress()
|
424
423
|
HostApp.__callback__ = this.cameraCallBack
|
425
424
|
HostApp.__this__ = this
|
426
425
|
//tag
|
@@ -450,6 +449,7 @@
|
|
450
449
|
}
|
451
450
|
let jingweidu = ''
|
452
451
|
if (this.$parent.$parent.is_has_jingweidu == 'true'){
|
452
|
+
const obj = HostApp.getGpsDetailAddress()
|
453
453
|
jingweidu = '\t经度:' + obj.longitude+ '\t纬度:' + obj.latitude
|
454
454
|
}
|
455
455
|
HostApp._open_a_page({
|
package/src/main.js
CHANGED
@@ -1,33 +1,33 @@
|
|
1
|
-
import Vue from 'vue'
|
2
|
-
import App from './App'
|
3
|
-
import { all } from 'vue-client'
|
4
|
-
import { system } from 'system-clients'
|
5
|
-
import safecheck from './safecheck'
|
6
|
-
import echarts from 'echarts'
|
7
|
-
// import safecheck from './rongcheng'
|
8
|
-
|
9
|
-
all()
|
10
|
-
// 验证码开关赋值
|
11
|
-
var Verificationfalg = false
|
12
|
-
system(Verificationfalg)
|
13
|
-
// system()
|
14
|
-
safecheck('
|
15
|
-
// safecheck('rizhao')
|
16
|
-
require('./bootstrap/less/bootstrap.less')
|
17
|
-
require('./expandcss.less')
|
18
|
-
|
19
|
-
Vue.prototype.$echarts = echarts
|
20
|
-
Vue.android = false
|
21
|
-
|
22
|
-
Vue.url = '/SafeCheck/rs/'
|
23
|
-
if(Vue.android)
|
24
|
-
Vue.url = Vue.staticUrl
|
25
|
-
Vue.interval = 1*60*1000
|
26
|
-
Vue.nopic = 'file:///android_asset/nopic.png'
|
27
|
-
Vue.mapSetup = false
|
28
|
-
|
29
|
-
/* eslint-disable no-new */
|
30
|
-
new Vue({
|
31
|
-
el: 'body',
|
32
|
-
components: { App }
|
33
|
-
})
|
1
|
+
import Vue from 'vue'
|
2
|
+
import App from './App'
|
3
|
+
import { all } from 'vue-client'
|
4
|
+
import { system } from 'system-clients'
|
5
|
+
import safecheck from './safecheck'
|
6
|
+
import echarts from 'echarts'
|
7
|
+
// import safecheck from './rongcheng'
|
8
|
+
|
9
|
+
all()
|
10
|
+
// 验证码开关赋值
|
11
|
+
var Verificationfalg = false
|
12
|
+
system(Verificationfalg)
|
13
|
+
// system()
|
14
|
+
safecheck('siyang')
|
15
|
+
// safecheck('rizhao')
|
16
|
+
require('./bootstrap/less/bootstrap.less')
|
17
|
+
require('./expandcss.less')
|
18
|
+
|
19
|
+
Vue.prototype.$echarts = echarts
|
20
|
+
Vue.android = false
|
21
|
+
|
22
|
+
Vue.url = '/SafeCheck/rs/'
|
23
|
+
if(Vue.android)
|
24
|
+
Vue.url = Vue.staticUrl
|
25
|
+
Vue.interval = 1*60*1000
|
26
|
+
Vue.nopic = 'file:///android_asset/nopic.png'
|
27
|
+
Vue.mapSetup = false
|
28
|
+
|
29
|
+
/* eslint-disable no-new */
|
30
|
+
new Vue({
|
31
|
+
el: 'body',
|
32
|
+
components: { App }
|
33
|
+
})
|