telephone-clients 4.0.0-1-77 → 4.0.0-1-78

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 +1 -1
  8. package/src/components/pc/WorkHistory.vue +650 -650
  9. package/src/components/sendsingle/onlinecharge.vue +424 -424
  10. package/src/components/workorder/ChangeMeterPageNew.vue +663 -658
  11. package/src/components/workorder/ChangeMeterUserInfo.vue +130 -130
  12. package/src/components/workorder/RepairFirstV.vue +736 -736
  13. package/src/components/workorder/RepairInfo.vue +178 -178
  14. package/src/components/workorder/RepairOrderT.vue +713 -713
  15. package/src/components/workorder/oldMeterPage.vue +104 -104
  16. package/src/components/workorder/repairFirstTable.vue +715 -715
  17. package/src/filiale/meihekou/android/Othercharge.vue +454 -454
  18. package/src/filiale/meihekou/android/PhoneStandWorkNew.vue +692 -692
  19. package/src/filiale/meihekou/android/ServiceOnlineQuery.vue +477 -477
  20. package/src/filiale/meihekou/pc/RepairsWork.vue +1003 -1003
  21. package/src/filiale/meihekou/pc/WorkListNew.vue +1049 -1049
  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,130 +1,130 @@
1
- <template>
2
- <div class="auto app-text">
3
- <div class="panel" style="padding: 10px 10px 5px 10px;">
4
- <div class="panel-body panel-self">
5
- <div class="col-xs-12" style="padding: 2px 0">
6
- <p class="panel-title col-xs-5 text-left font" style="width: 21%;float: left"><b>用户编号:</b></p>
7
- <p class="panel-title col-xs-7 text-left input-font">
8
- <label style="color: #00b3ee;text-decoration:none;">{{ userinfo.f_userinfo_code }}</label>
9
- </p>
10
- </div>
11
- <div class="col-xs-12" style="padding: 2px 0">
12
- <p class="panel-title col-xs-5 text-left font" style="width: 21%;float: left"><b>用户名称:</b></p>
13
- <p class="panel-title col-xs-7 text-left input-font">{{ userinfo.f_user_name }}</p>
14
- </div>
15
- <div class="col-xs-12" style="padding: 2px 0">
16
- <p class="panel-title col-xs-5 text-left font" style="width: 21%;float: left"><b>用户类型:</b></p>
17
- <p class="panel-title col-xs-7 text-left input-font">{{ userinfo.f_user_type }}
18
- </p>
19
- </div>
20
- <div class="col-xs-12" style="padding: 2px 0">
21
- <p class="panel-title col-xs-5 text-left font" style="width: 21%;float: left"><b>联系电话:</b></p>
22
- <p class="panel-title col-xs-7 text-left input-font">{{ userinfo.f_contact_phone }}</p>
23
- </div>
24
- <div class="col-xs-12" style="padding: 2px 0">
25
- <p class="panel-title col-xs-5 text-left font" style="width: 21%;float: left"><b>用户地址:</b></p>
26
- <p class="panel-title text-left input-font" style="width: 79%;float: left">{{ userinfo.f_address }}</p>
27
- </div>
28
- </div>
29
- </div>
30
- </div>
31
- </template>
32
-
33
- <script>
34
- import {HttpResetClass} from 'vue-client'
35
- import Vue from 'vue'
36
- import RadioGroup from 'vue-client/src/vue-strap/src/radioGroup'
37
- import Radio from 'vue-client/src/vue-strap/src/radioBtn'
38
- export default {
39
- title: 'ChangeMeterUserInfo',
40
- props: ['model'],
41
- data () {
42
- return {
43
- userinfo: {},
44
- }
45
- },
46
- created () {
47
-
48
- },
49
- ready () {
50
- if (this.model){
51
- this.userinfo=this.model
52
- }
53
- },
54
- methods:{},
55
- components: {
56
- RadioGroup,
57
- Radio
58
- }
59
- }
60
- </script>
61
-
62
- <style scoped>
63
-
64
- .font {
65
- font: 15px PingFang-SC-Medium;
66
- color: #666666;
67
- }
68
-
69
- .input-font {
70
- font: 15px PingFang-SC-Medium;
71
- color: #333333;
72
- }
73
-
74
- .app-text {
75
- font-size: 12px;
76
- }
77
-
78
- .panel-self {
79
- border-radius: 10px;
80
- border: 1px solid #499EDF;
81
- background-color: #F8F8F8;
82
- }
83
-
84
- .app-text {
85
- font-size: 12px;
86
- }
87
-
88
- .panel-self {
89
- border-radius: 5px;
90
- border: 1px solid #c5e1f7;
91
- background-color: #F2F6FA;
92
- }
93
-
94
- .font {
95
- font: 15px PingFang-SC-Medium;
96
- color: #333333;
97
- }
98
-
99
- .panel-self {
100
- border-radius: 5px;
101
- border: 1px solid #c5e1f7;
102
- background-color: #F2F6FA;
103
- }
104
-
105
- .text-left {
106
- text-align: left;
107
- }
108
-
109
- .font {
110
- font: 15px PingFang-SC-Medium;
111
- color: #333333;
112
- }
113
-
114
- .btn-photo {
115
- border: 0;
116
- border-radius: 7px;
117
- background-color: #7dc1f4;
118
- font: 15px PingFang-SC-Bold;
119
- height: 20%;
120
- }
121
-
122
- .div-photo {
123
- width: auto;
124
- height: auto;
125
- /* margin-top: 10px; */
126
- position: absolute;
127
- bottom: 10px;
128
- right: 10px;
129
- }
130
- </style>
1
+ <template>
2
+ <div class="auto app-text">
3
+ <div class="panel" style="padding: 10px 10px 5px 10px;">
4
+ <div class="panel-body panel-self">
5
+ <div class="col-xs-12" style="padding: 2px 0">
6
+ <p class="panel-title col-xs-5 text-left font" style="width: 21%;float: left"><b>用户编号:</b></p>
7
+ <p class="panel-title col-xs-7 text-left input-font">
8
+ <label style="color: #00b3ee;text-decoration:none;">{{ userinfo.f_userinfo_code }}</label>
9
+ </p>
10
+ </div>
11
+ <div class="col-xs-12" style="padding: 2px 0">
12
+ <p class="panel-title col-xs-5 text-left font" style="width: 21%;float: left"><b>用户名称:</b></p>
13
+ <p class="panel-title col-xs-7 text-left input-font">{{ userinfo.f_user_name }}</p>
14
+ </div>
15
+ <div class="col-xs-12" style="padding: 2px 0">
16
+ <p class="panel-title col-xs-5 text-left font" style="width: 21%;float: left"><b>用户类型:</b></p>
17
+ <p class="panel-title col-xs-7 text-left input-font">{{ userinfo.f_user_type }}
18
+ </p>
19
+ </div>
20
+ <div class="col-xs-12" style="padding: 2px 0">
21
+ <p class="panel-title col-xs-5 text-left font" style="width: 21%;float: left"><b>联系电话:</b></p>
22
+ <p class="panel-title col-xs-7 text-left input-font">{{ userinfo.f_contact_phone }}</p>
23
+ </div>
24
+ <div class="col-xs-12" style="padding: 2px 0">
25
+ <p class="panel-title col-xs-5 text-left font" style="width: 21%;float: left"><b>用户地址:</b></p>
26
+ <p class="panel-title text-left input-font" style="width: 79%;float: left">{{ userinfo.f_address }}</p>
27
+ </div>
28
+ </div>
29
+ </div>
30
+ </div>
31
+ </template>
32
+
33
+ <script>
34
+ import {HttpResetClass} from 'vue-client'
35
+ import Vue from 'vue'
36
+ import RadioGroup from 'vue-client/src/vue-strap/src/radioGroup'
37
+ import Radio from 'vue-client/src/vue-strap/src/radioBtn'
38
+ export default {
39
+ title: 'ChangeMeterUserInfo',
40
+ props: ['model'],
41
+ data () {
42
+ return {
43
+ userinfo: {},
44
+ }
45
+ },
46
+ created () {
47
+
48
+ },
49
+ ready () {
50
+ if (this.model){
51
+ this.userinfo=this.model
52
+ }
53
+ },
54
+ methods:{},
55
+ components: {
56
+ RadioGroup,
57
+ Radio
58
+ }
59
+ }
60
+ </script>
61
+
62
+ <style scoped>
63
+
64
+ .font {
65
+ font: 15px PingFang-SC-Medium;
66
+ color: #666666;
67
+ }
68
+
69
+ .input-font {
70
+ font: 15px PingFang-SC-Medium;
71
+ color: #333333;
72
+ }
73
+
74
+ .app-text {
75
+ font-size: 12px;
76
+ }
77
+
78
+ .panel-self {
79
+ border-radius: 10px;
80
+ border: 1px solid #499EDF;
81
+ background-color: #F8F8F8;
82
+ }
83
+
84
+ .app-text {
85
+ font-size: 12px;
86
+ }
87
+
88
+ .panel-self {
89
+ border-radius: 5px;
90
+ border: 1px solid #c5e1f7;
91
+ background-color: #F2F6FA;
92
+ }
93
+
94
+ .font {
95
+ font: 15px PingFang-SC-Medium;
96
+ color: #333333;
97
+ }
98
+
99
+ .panel-self {
100
+ border-radius: 5px;
101
+ border: 1px solid #c5e1f7;
102
+ background-color: #F2F6FA;
103
+ }
104
+
105
+ .text-left {
106
+ text-align: left;
107
+ }
108
+
109
+ .font {
110
+ font: 15px PingFang-SC-Medium;
111
+ color: #333333;
112
+ }
113
+
114
+ .btn-photo {
115
+ border: 0;
116
+ border-radius: 7px;
117
+ background-color: #7dc1f4;
118
+ font: 15px PingFang-SC-Bold;
119
+ height: 20%;
120
+ }
121
+
122
+ .div-photo {
123
+ width: auto;
124
+ height: auto;
125
+ /* margin-top: 10px; */
126
+ position: absolute;
127
+ bottom: 10px;
128
+ right: 10px;
129
+ }
130
+ </style>