safecheck-client 3.0.30-1 → 3.0.30-3
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/AreaPlan.vue +571 -571
- package/src/components/android/Insurance/PhoneInsuranceRecordList.vue +1 -1
- package/src/components/android/PhoneotherInfo.vue +132 -132
- package/src/components/pc/SelectCheckPlanAndNoPLan.vue +278 -278
- package/src/filiale/bayan/android/PhoneUpUserinfo.vue +1377 -1369
- package/src/filiale/bayan/android/SafecheckDevices.vue +1303 -1303
- package/src/filiale/bayan/android/SafecheckOrderV.vue +2850 -2850
- package/src/filiale/bayan/android/SafecheckUserInfo.vue +806 -806
- package/src/filiale/yangchunboneng/android/PaperFeedback.vue +17 -2
- package/src/safecheck-android.js +290 -290
@@ -85,7 +85,7 @@
|
|
85
85
|
</div>
|
86
86
|
<div class="form-group col-sm-12 col-xs-12 col-md-12 " :class="style__">
|
87
87
|
<input type="checkbox" id="readInstructionsCheckbox" v-model="paper.f_read_instructions" />
|
88
|
-
|
88
|
+
<label for="readInstructionsCheckbox" class="text-left font">我已阅读须知内容</label> </div>
|
89
89
|
<div class="form-group col-sm-12 col-xs-12 col-md-12 " :class="style__">
|
90
90
|
<label class="text-left font">用户签名</label>
|
91
91
|
<div class="auto">
|
@@ -130,6 +130,9 @@
|
|
130
130
|
<input type="checkbox" v-model="paper.f_gas_manual" /><label class="text-left font">安全用气手册</label>
|
131
131
|
</div>
|
132
132
|
</div>
|
133
|
+
<div class="row">
|
134
|
+
<label for="readsafe" class="text-left font">蓝牙状态:{{blueState}}</label>
|
135
|
+
</div>
|
133
136
|
<div class="form-group col-md-12 col-sm-12 col-xs-12" :class="style__">
|
134
137
|
<div class="form-group col-md-12 col-sm-12 col-xs-12">
|
135
138
|
<input type="checkbox" id='readsafe' v-model="paper.f_defect_notified" class="showIi" />
|
@@ -534,6 +537,7 @@
|
|
534
537
|
title: '用户反馈',
|
535
538
|
data() {
|
536
539
|
return {
|
540
|
+
blueState:'',
|
537
541
|
is_busy:false,
|
538
542
|
defectImgs: [],
|
539
543
|
defectToolTip: [],
|
@@ -820,8 +824,13 @@
|
|
820
824
|
},
|
821
825
|
print() {
|
822
826
|
let state = HostApp.getBluetoothState()
|
827
|
+
if (state && state.state == 3){
|
828
|
+
this.blueState = '连接完成'
|
829
|
+
}else {
|
830
|
+
this.blueState = '连接失败,请重试'
|
831
|
+
}
|
823
832
|
if (state && state.state == -1){
|
824
|
-
this.$showMessage('
|
833
|
+
this.$showMessage('蓝牙未打开,请确认蓝牙是否打开')
|
825
834
|
return
|
826
835
|
}
|
827
836
|
this.is_busy = true
|
@@ -1459,6 +1468,12 @@
|
|
1459
1468
|
},
|
1460
1469
|
},
|
1461
1470
|
async ready() {
|
1471
|
+
let state = HostApp.getBluetoothState()
|
1472
|
+
if (state && state.state == 3){
|
1473
|
+
this.blueState = '连接完成'
|
1474
|
+
}else {
|
1475
|
+
this.blueState = '连接失败,请重试'
|
1476
|
+
}
|
1462
1477
|
this.isRecodr = this.$appdata.getSingleValue('无限制录音')
|
1463
1478
|
if (this.$appdata.getSingleValue('安检时显示拉黑')) {
|
1464
1479
|
this.showbacklist = this.$appdata.getSingleValue('安检时显示拉黑');
|