safecheck-client 3.0.34-34 → 3.0.34-35

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.
Files changed (34) hide show
  1. package/package.json +1 -1
  2. package/src/components/android/QRCode/QRCodePage.vue +208 -199
  3. package/src/components/android/examples/SafeListExamples.vue +96 -95
  4. package/src/components/android/examples/UserExamples.vue +126 -125
  5. package/src/filiale/bayan/android/SafecheckOrderV.vue +2866 -2866
  6. package/src/filiale/huaran/android/SafecheckOrderV.vue +2803 -0
  7. package/src/filiale/huaran/android.js +12 -0
  8. package/src/filiale/huaran/pc/CheckBook.vue +313 -0
  9. package/src/filiale/huaran/pc/CheckBookAll.vue +69 -0
  10. package/src/filiale/huaran/pc/CheckBookArea.vue +170 -0
  11. package/src/filiale/huaran/pc/CheckBookCompany.vue +166 -0
  12. package/src/filiale/huaran/pc/CheckBookDetails.vue +196 -0
  13. package/src/filiale/huaran/pc/CheckBookEntry.vue +61 -0
  14. package/src/filiale/huaran/pc/CheckBookList.vue +386 -0
  15. package/src/filiale/huaran/pc/CheckBookSearchArea.vue +564 -0
  16. package/src/filiale/huaran/pc/CheckBookSearchUnit.vue +229 -0
  17. package/src/filiale/huaran/pc/CheckBookSearchUser.vue +604 -0
  18. package/src/filiale/huaran/pc/CheckBookUser.vue +112 -0
  19. package/src/filiale/huaran/pc/PaperList.vue +822 -0
  20. package/src/filiale/huaran/pc/PlanManage.vue +887 -0
  21. package/src/filiale/huaran/pc/checkPlanList.vue +419 -0
  22. package/src/filiale/huaran/pc/checkUserList.vue +867 -0
  23. package/src/filiale/huaran/pc.js +27 -0
  24. package/src/filiale/jingyang/android/AddPlanItem.vue +458 -458
  25. package/src/filiale/jingyang/android/CurrentCreate.vue +1080 -1080
  26. package/src/filiale/jingyang/android/SafecheckOrderV.vue +2734 -2734
  27. package/src/filiale/jingyang/android.js +15 -15
  28. package/src/filiale/weinan/android/SafecheckDevices.vue +1295 -1295
  29. package/src/filiale/weinan/android/SafecheckOrderV.vue +3335 -3335
  30. package/src/filiale/weinan/pc/DeviceChange.vue +1088 -1088
  31. package/src/filiale/weinan/pc.js +47 -47
  32. package/src/filiale/yuansheng/android/SafecheckDevices.vue +1258 -1258
  33. package/src/filiale/yuansheng/pc/NewCheckpaper.vue +1371 -1371
  34. package/src/main.js +1 -1
@@ -1,125 +1,126 @@
1
- <template>
2
- <div class="work-badge" style="height: 100%">
3
- <div class="badge-top" style="height: 33%">
4
- <div class="badge-number">NO.{{ f_head_code }}</div>
5
- </div>
6
- <div class="badge-middle" style="height: 33%">
7
- <img class="badge-image" :src="f_head_pic" alt="Badge Image">
8
- <h1 class="name">{{ f_head_name }}</h1>
9
- <div class="position">{{ f_head_post }}</div>
10
- </div>
11
- <div class="badge-bottom" style="height: 33%">
12
- <div class="contact">
13
- <img class="phone-icon" src="../../../assets/123.png" style="height: 30px;width: 30px" alt="Phone Icon">
14
- <span style="font-size: 30px">{{ f_head_phone }}</span>
15
- </div>
16
- </div>
17
- </div>
18
- </template>
19
- <script>
20
- import {HttpResetClass} from "vue-client";
21
-
22
- export default {
23
- name: 'WorkBadge',
24
- title:'WorkBadge',
25
- data () {
26
- return {
27
- // 默认值或初始状态
28
- f_head_pic: '',
29
- f_head_code: '',
30
- f_head_name: '',
31
- f_head_post: '',
32
- f_head_phone: ''
33
- };
34
- },
35
- async ready () {
36
- let id = ''
37
- let url = window.location.href
38
- if (url.includes('id')){
39
- const urlObj = new URL(url);
40
- id = urlObj.searchParams.get('id');
41
- let QRCode = await new HttpResetClass().load('post',`rs/sql/tel_singleTable_OrderBy`,{data: {
42
- items: '*',
43
- tablename: 't_qr_code',
44
- condition: `f_head_code = '${id}'`,
45
- orderitem: '1'
46
- }})
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
53
- }else {
54
- console.log(window.location.href)
55
- console.log('获取二维码信息失败')
56
- }
57
- }
58
- }
59
- };
60
- </script>
61
- <style scoped>
62
- .work-badge {
63
- display: flex;
64
- flex-direction: column;
65
- background-image: url('../../../assets/f8632d3c8c4c1cb68e99da754cab1a7.png');
66
- align-items: center;
67
- background-color: #007BFF;
68
- color: white;
69
- padding: 20px;
70
- border-radius: 10px;
71
- }
72
-
73
- .badge-top {
74
- display: flex;
75
- align-items: center;
76
- justify-content: space-between;
77
- width: 100%;
78
- margin-bottom: 20px;
79
- }
80
-
81
- .badge-image {
82
- width: 150px;
83
- height: 150px;
84
- margin-right: 20px;
85
- }
86
-
87
- .badge-number {
88
- font-size: 24px;
89
- float: left;
90
- text-align: left;
91
- font-weight: bold;
92
- }
93
-
94
- .badge-middle {
95
- text-align: center;
96
- margin-bottom: 20px;
97
- }
98
-
99
- .name {
100
- font-size: 48px;
101
- font-weight: bold;
102
- margin-bottom: 10px;
103
- }
104
-
105
- .position {
106
- font-size: 24px;
107
- }
108
-
109
- .badge-bottom {
110
- display: flex;
111
- align-items: center;
112
- justify-content: center;
113
- }
114
-
115
- .contact {
116
- display: flex;
117
- align-items: center;
118
- }
119
-
120
- .phone-icon {
121
- width: 30px;
122
- height: 30px;
123
- margin-right: 10px;
124
- }
125
- </style>
1
+ <template>
2
+ <div class="work-badge" style="height: 100%">
3
+ <div class="badge-top" style="height: 33%">
4
+ <div class="badge-number">NO.{{ f_head_code }}</div>
5
+ </div>
6
+ <div class="badge-middle" style="height: 33%">
7
+ <img class="badge-image" :src="f_head_pic" alt="Badge Image">
8
+ <h1 class="name">{{ f_head_name }}</h1>
9
+ <div class="position">{{ f_head_post }}</div>
10
+ </div>
11
+ <div class="badge-bottom" style="height: 33%">
12
+ <div class="contact">
13
+ <img class="phone-icon" src="../../../assets/123.png" style="height: 30px;width: 30px" alt="Phone Icon">
14
+ <span style="font-size: 30px">{{ f_head_phone }}</span>
15
+ </div>
16
+ </div>
17
+ </div>
18
+ </template>
19
+ <script>
20
+ import {HttpResetClass} from "vue-client";
21
+
22
+ export default {
23
+ name: 'WorkBadge',
24
+ title:'WorkBadge',
25
+ data () {
26
+ return {
27
+ // 默认值或初始状态
28
+ f_head_pic: '',
29
+ f_head_code: '',
30
+ f_head_name: '',
31
+ f_head_post: '',
32
+ f_head_phone: ''
33
+ };
34
+ },
35
+ async ready () {
36
+ console.log(window.location.href)
37
+ let id = ''
38
+ let url = window.location.href
39
+ if (url.includes('id')){
40
+ const urlObj = new URL(url);
41
+ id = urlObj.searchParams.get('id');
42
+ let QRCode = await new HttpResetClass().load('post',`rs/sql/tel_singleTable_OrderBy`,{data: {
43
+ items: '*',
44
+ tablename: 't_qr_code',
45
+ condition: `f_head_code = '${id}'`,
46
+ orderitem: '1'
47
+ }})
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
54
+ }else {
55
+ console.log('获取二维码信息失败')
56
+ console.log(QRCode)
57
+ }
58
+ }
59
+ }
60
+ };
61
+ </script>
62
+ <style scoped>
63
+ .work-badge {
64
+ display: flex;
65
+ flex-direction: column;
66
+ background-image: url('../../../assets/f8632d3c8c4c1cb68e99da754cab1a7.png');
67
+ align-items: center;
68
+ background-color: #007BFF;
69
+ color: white;
70
+ padding: 20px;
71
+ border-radius: 10px;
72
+ }
73
+
74
+ .badge-top {
75
+ display: flex;
76
+ align-items: center;
77
+ justify-content: space-between;
78
+ width: 100%;
79
+ margin-bottom: 20px;
80
+ }
81
+
82
+ .badge-image {
83
+ width: 150px;
84
+ height: 150px;
85
+ margin-right: 20px;
86
+ }
87
+
88
+ .badge-number {
89
+ font-size: 24px;
90
+ float: left;
91
+ text-align: left;
92
+ font-weight: bold;
93
+ }
94
+
95
+ .badge-middle {
96
+ text-align: center;
97
+ margin-bottom: 20px;
98
+ }
99
+
100
+ .name {
101
+ font-size: 48px;
102
+ font-weight: bold;
103
+ margin-bottom: 10px;
104
+ }
105
+
106
+ .position {
107
+ font-size: 24px;
108
+ }
109
+
110
+ .badge-bottom {
111
+ display: flex;
112
+ align-items: center;
113
+ justify-content: center;
114
+ }
115
+
116
+ .contact {
117
+ display: flex;
118
+ align-items: center;
119
+ }
120
+
121
+ .phone-icon {
122
+ width: 30px;
123
+ height: 30px;
124
+ margin-right: 10px;
125
+ }
126
+ </style>