safecheck-client 3.0.34-34 → 3.0.34-37
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/QRCode/QRCodePage.vue +11 -2
- package/src/components/android/examples/SafeListExamples.vue +1 -0
- package/src/components/android/examples/UserExamples.vue +8 -7
- package/src/filiale/huaran/android/SafecheckOrderV.vue +2803 -0
- package/src/filiale/huaran/android.js +12 -0
- package/src/filiale/huaran/pc/CheckBook.vue +313 -0
- package/src/filiale/huaran/pc/CheckBookAll.vue +69 -0
- package/src/filiale/huaran/pc/CheckBookArea.vue +170 -0
- package/src/filiale/huaran/pc/CheckBookCompany.vue +166 -0
- package/src/filiale/huaran/pc/CheckBookDetails.vue +196 -0
- package/src/filiale/huaran/pc/CheckBookEntry.vue +61 -0
- package/src/filiale/huaran/pc/CheckBookList.vue +386 -0
- package/src/filiale/huaran/pc/CheckBookSearchArea.vue +564 -0
- package/src/filiale/huaran/pc/CheckBookSearchUnit.vue +229 -0
- package/src/filiale/huaran/pc/CheckBookSearchUser.vue +604 -0
- package/src/filiale/huaran/pc/CheckBookUser.vue +112 -0
- package/src/filiale/huaran/pc/PaperList.vue +822 -0
- package/src/filiale/huaran/pc/PlanManage.vue +887 -0
- package/src/filiale/huaran/pc/checkPlanList.vue +419 -0
- package/src/filiale/huaran/pc/checkUserList.vue +867 -0
- package/src/filiale/huaran/pc.js +27 -0
- package/src/filiale/ruihua/android/SafecheckOrderV.vue +2747 -0
- package/src/filiale/ruihua/android/SafecheckUserInfo.vue +804 -0
- package/src/filiale/ruihua/android.js +11 -0
- package/src/filiale/yuansheng/android/SafecheckDevices.vue +1258 -1258
- package/src/filiale/yuansheng/pc/NewCheckpaper.vue +1371 -1371
- package/src/main.js +1 -1
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "safecheck-client",
|
3
3
|
"//": "主分支版本别乱升,测试包的版本直接发包(建议使用1.XX.XX-XXX格式作为测试包,不要频繁升级第三位版本号),别提交版本号。切了分支切记把主分支版本升了,保证主分支始终是最高版本!!!!!",
|
4
|
-
"version": "3.0.34-
|
4
|
+
"version": "3.0.34-37",
|
5
5
|
"description": "安检模块 前端组件",
|
6
6
|
"author": "丁新 <417755458@qq.com>",
|
7
7
|
"license": "ISC",
|
@@ -28,10 +28,19 @@
|
|
28
28
|
<div class="row app-row">
|
29
29
|
<div class="col-xs-4">
|
30
30
|
<img src="../../../assets/用户姓名.png" style="width: 20px;margin-bottom: 5px" alt="">
|
31
|
-
<label class="font text-left"
|
31
|
+
<label class="font text-left">用户名称:</label>
|
32
32
|
</div>
|
33
33
|
<div class="col-xs-8" >
|
34
|
-
<input class="search_input input-font" v-model="model.f_user_name" placeholder="
|
34
|
+
<input class="search_input input-font" v-model="model.f_user_name" placeholder="请输入用户名称(可模糊查询)">
|
35
|
+
</div>
|
36
|
+
</div>
|
37
|
+
<div class="row app-row">
|
38
|
+
<div class="col-xs-4">
|
39
|
+
<img src="../../../assets/用户姓名.png" style="width: 20px;margin-bottom: 5px" alt="">
|
40
|
+
<label class="font text-left">小区名称:</label>
|
41
|
+
</div>
|
42
|
+
<div class="col-xs-8" >
|
43
|
+
<input class="search_input input-font" v-model="model.f_user_name" placeholder="请输入小区名称(可模糊查询)">
|
35
44
|
</div>
|
36
45
|
</div>
|
37
46
|
<div class="row text-center" style="margin-top: 20px;">
|
@@ -33,6 +33,7 @@ export default {
|
|
33
33
|
};
|
34
34
|
},
|
35
35
|
async ready () {
|
36
|
+
console.log(window.location.href)
|
36
37
|
let id = ''
|
37
38
|
let url = window.location.href
|
38
39
|
if (url.includes('id')){
|
@@ -44,15 +45,15 @@ export default {
|
|
44
45
|
condition: `f_head_code = '${id}'`,
|
45
46
|
orderitem: '1'
|
46
47
|
}})
|
47
|
-
if (QRCode && QRCode.data){
|
48
|
-
this.f_head_pic = `/resource/af-revenue/images/${QRCode.data.f_head_pic}`
|
49
|
-
this.f_head_code = QRCode.data.f_head_code
|
50
|
-
this.f_head_name = QRCode.data.f_head_name
|
51
|
-
this.f_head_post = QRCode.data.f_head_post
|
52
|
-
this.f_head_phone = QRCode.data.f_head_phone
|
48
|
+
if (QRCode && QRCode.data && QRCode.data.length > 0){
|
49
|
+
this.f_head_pic = `/resource/af-revenue/images/${QRCode.data[0].f_head_pic}`
|
50
|
+
this.f_head_code = QRCode.data[0].f_head_code
|
51
|
+
this.f_head_name = QRCode.data[0].f_head_name
|
52
|
+
this.f_head_post = QRCode.data[0].f_head_post
|
53
|
+
this.f_head_phone = QRCode.data[0].f_head_phone
|
53
54
|
}else {
|
54
|
-
console.log(window.location.href)
|
55
55
|
console.log('获取二维码信息失败')
|
56
|
+
console.log(QRCode)
|
56
57
|
}
|
57
58
|
}
|
58
59
|
}
|