telephone-clients 4.0.0-1-74 → 4.0.0-1-75

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 (31) hide show
  1. package/CHANGELOG.md +37 -37
  2. package/README.md +38 -38
  3. package/package.json +1 -1
  4. package/release.bat +5 -5
  5. package/src/components/pc/NewRepairPaper.vue +704 -704
  6. package/src/components/pc/NewRepairTablePaper.vue +442 -442
  7. package/src/components/pc/RecordListLeft.vue +270 -270
  8. package/src/components/pc/WorkHistory.vue +650 -650
  9. package/src/components/pc/config/DefaultPrint.js +7 -0
  10. package/src/components/sendsingle/onlinecharge.vue +424 -424
  11. package/src/components/shaoguan/config/DefaultPrint.js +7 -0
  12. package/src/components/workorder/ChangeMeterPageNew.vue +658 -658
  13. package/src/components/workorder/ChangeMeterUserInfo.vue +130 -130
  14. package/src/components/workorder/RepairFirstV.vue +736 -736
  15. package/src/components/workorder/RepairInfo.vue +178 -178
  16. package/src/components/workorder/RepairOrderT.vue +713 -713
  17. package/src/components/workorder/oldMeterPage.vue +104 -104
  18. package/src/components/workorder/repairFirstTable.vue +715 -715
  19. package/src/filiale/meihekou/android/Othercharge.vue +454 -454
  20. package/src/filiale/meihekou/android/PhoneStandWorkNew.vue +692 -692
  21. package/src/filiale/meihekou/android/ServiceOnlineQuery.vue +477 -477
  22. package/src/filiale/meihekou/telephoneAndroid.js +26 -26
  23. package/src/filiale/xinjiangdexin/telephone.js +16 -16
  24. package/src/filiale/xinliansihui/android/AppInstallationMaterial.vue +864 -864
  25. package/src/filiale/xinliansihui/android/FaultAll.vue +923 -923
  26. package/src/filiale/xinliansihui/android/RepairFirstV.vue +734 -734
  27. package/src/filiale/xinliansihui/android/RepairOrderT.vue +713 -713
  28. package/src/filiale/xinliansihui/telephoneAndroid.js +11 -11
  29. package/src/main.js +24 -24
  30. package/src/telephone-android.js +425 -425
  31. package/src/telephone.js +796 -796
@@ -1,104 +1,104 @@
1
- <template>
2
- <div class="select-overspread repair-bg auto" style="padding-bottom:5px;">
3
- <div class="panel panel-default auto repair-info-content">
4
- <div class="panel-body">
5
- <div class="auto repair-info-content compatible">
6
- <div class="row auto">
7
- <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
8
- <label class="lb-left text-justify">气表类型</label>
9
- <input v-model="meterData.f_meter_type" class="form-control" readonly
10
- onkeyup="value=value.replace(/[^\d\.]/g,'')" type="text">
11
- </div>
12
- <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
13
- <label class="lb-left text-justify">气表品牌</label>
14
- <input v-model="meterData.f_meter_brand" class="form-control"
15
- onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
16
- </div>
17
- <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
18
- <label class="lb-left text-justify">气表表号</label>
19
- <input v-model="meterData.f_meternumber" class="form-control"
20
- onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
21
- </div>
22
- <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
23
- <label class="lb-left text-justify">累计气量</label>
24
- <input v-model="meterData.f_total_gas " class="form-control" readonly type="text">
25
- </div>
26
- <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
27
- <label class="lb-left text-justify">累计金额</label>
28
- <input v-model="meterData.f_total_fee" class="form-control"
29
- onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
30
- </div>
31
- <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
32
- <label class="lb-left text-justify">气表底数(旧表底数)</label>
33
- <input v-model="meterData.f_meter_base" class="form-control"
34
- onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
35
- </div>
36
- </div>
37
- </div>
38
- </div>
39
- </div>
40
- </div>
41
- </template>
42
-
43
- <script>
44
- import { HttpResetClass } from "vue-client"
45
- export default {
46
- title: '旧表信息',
47
- props: {
48
- model: {
49
- type: Object
50
- }
51
- },
52
- data() {
53
- return {
54
- meterData:{}
55
- }
56
- },
57
- methods: {},
58
-
59
- ready() {
60
- if (this.model.f_userinfo_id){
61
- let http = new HttpResetClass()
62
- http.load('POST', `${this.$androidUtil.getProxyUrl()}/af-telephone/rs/sql/tel_singleTable_OrderBy`, {
63
- data: {
64
- items: 'uf.*,gb.f_meter_brand,gb.f_meter_type,gb.f_collection_type',
65
- tablename: 't_userfiles uf LEFT JOIN t_gasbrand gb on uf.f_gasbrand_id = gb.id',
66
- condition: `uf.f_userinfo_id = '${this.model.f_userinfo_id}' and uf.f_table_state in ('正常','待开通')`,
67
- orderitem: 'id'
68
- }
69
- }, {resolveMsg: null, rejectMsg: null}).then((res) => {
70
- this.meterData = res.data[0]
71
-
72
- })
73
- }
74
- },
75
- watch() {
76
-
77
- }
78
- }
79
- </script>
80
- <style lang="less" scoped>
81
- .form-input-group {
82
- margin-bottom: 15px;
83
-
84
- label {
85
- padding-left: 8px;
86
- border: none;
87
- border-left: 5px solid #A2C2EB;
88
- width: 110px;
89
- text-align: left;
90
- }
91
-
92
- input[readonly] {
93
- background-color: #f5f5f5;
94
- cursor: not-allowed;
95
- }
96
- }
97
-
98
- .repair-bg {
99
- background-color: #fff;
100
- }
101
-
102
- .repair-info-content {
103
- }
104
- </style>
1
+ <template>
2
+ <div class="select-overspread repair-bg auto" style="padding-bottom:5px;">
3
+ <div class="panel panel-default auto repair-info-content">
4
+ <div class="panel-body">
5
+ <div class="auto repair-info-content compatible">
6
+ <div class="row auto">
7
+ <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
8
+ <label class="lb-left text-justify">气表类型</label>
9
+ <input v-model="meterData.f_meter_type" class="form-control" readonly
10
+ onkeyup="value=value.replace(/[^\d\.]/g,'')" type="text">
11
+ </div>
12
+ <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
13
+ <label class="lb-left text-justify">气表品牌</label>
14
+ <input v-model="meterData.f_meter_brand" class="form-control"
15
+ onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
16
+ </div>
17
+ <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
18
+ <label class="lb-left text-justify">气表表号</label>
19
+ <input v-model="meterData.f_meternumber" class="form-control"
20
+ onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
21
+ </div>
22
+ <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
23
+ <label class="lb-left text-justify">累计气量</label>
24
+ <input v-model="meterData.f_total_gas " class="form-control" readonly type="text">
25
+ </div>
26
+ <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
27
+ <label class="lb-left text-justify">累计金额</label>
28
+ <input v-model="meterData.f_total_fee" class="form-control"
29
+ onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
30
+ </div>
31
+ <div class="col-xs-12 col-sm-12 col-md-12 form-input-group mg8">
32
+ <label class="lb-left text-justify">气表底数(旧表底数)</label>
33
+ <input v-model="meterData.f_meter_base" class="form-control"
34
+ onkeyup="value=value.replace(/[^\d\.]/g,'')" readonly type="text">
35
+ </div>
36
+ </div>
37
+ </div>
38
+ </div>
39
+ </div>
40
+ </div>
41
+ </template>
42
+
43
+ <script>
44
+ import { HttpResetClass } from "vue-client"
45
+ export default {
46
+ title: '旧表信息',
47
+ props: {
48
+ model: {
49
+ type: Object
50
+ }
51
+ },
52
+ data() {
53
+ return {
54
+ meterData:{}
55
+ }
56
+ },
57
+ methods: {},
58
+
59
+ ready() {
60
+ if (this.model.f_userinfo_id){
61
+ let http = new HttpResetClass()
62
+ http.load('POST', `${this.$androidUtil.getProxyUrl()}/af-telephone/rs/sql/tel_singleTable_OrderBy`, {
63
+ data: {
64
+ items: 'uf.*,gb.f_meter_brand,gb.f_meter_type,gb.f_collection_type',
65
+ tablename: 't_userfiles uf LEFT JOIN t_gasbrand gb on uf.f_gasbrand_id = gb.id',
66
+ condition: `uf.f_userinfo_id = '${this.model.f_userinfo_id}' and uf.f_table_state in ('正常','待开通')`,
67
+ orderitem: 'id'
68
+ }
69
+ }, {resolveMsg: null, rejectMsg: null}).then((res) => {
70
+ this.meterData = res.data[0]
71
+
72
+ })
73
+ }
74
+ },
75
+ watch() {
76
+
77
+ }
78
+ }
79
+ </script>
80
+ <style lang="less" scoped>
81
+ .form-input-group {
82
+ margin-bottom: 15px;
83
+
84
+ label {
85
+ padding-left: 8px;
86
+ border: none;
87
+ border-left: 5px solid #A2C2EB;
88
+ width: 110px;
89
+ text-align: left;
90
+ }
91
+
92
+ input[readonly] {
93
+ background-color: #f5f5f5;
94
+ cursor: not-allowed;
95
+ }
96
+ }
97
+
98
+ .repair-bg {
99
+ background-color: #fff;
100
+ }
101
+
102
+ .repair-info-content {
103
+ }
104
+ </style>