telephone-clients 4.0.0-1-89 → 4.0.0-1-91

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 (32) hide show
  1. package/package.json +2 -2
  2. package/src/components/pc/MaintenanceWorker.vue +152 -0
  3. package/src/components/pc/NewRepairPaper.vue +704 -704
  4. package/src/components/pc/NewRepairTablePaper.vue +442 -442
  5. package/src/components/pc/WorkHistory.vue +650 -650
  6. package/src/components/pc/WorkListNew.vue +838 -838
  7. package/src/components/sendsingle/onlinecharge.vue +424 -424
  8. package/src/components/workorder/ChangeMeterPageNew.vue +663 -663
  9. package/src/components/workorder/ChangeMeterUserInfo.vue +130 -130
  10. package/src/components/workorder/RepairFirstV.vue +736 -736
  11. package/src/components/workorder/RepairInfo.vue +178 -178
  12. package/src/components/workorder/RepairOrderT.vue +713 -713
  13. package/src/components/workorder/oldMeterPage.vue +104 -104
  14. package/src/components/workorder/repairFirstTable.vue +715 -715
  15. package/src/filiale/jinhong/android/FaultAll.vue +936 -936
  16. package/src/filiale/jinhong/android/ZHihuanFirst.vue +540 -540
  17. package/src/filiale/jinhong/pc/WorkListAllNew.vue +884 -884
  18. package/src/filiale/jinhong/telephone.js +10 -10
  19. package/src/filiale/jinhong/telephoneAndroid.js +13 -13
  20. package/src/filiale/meihekou/android/Othercharge.vue +454 -454
  21. package/src/filiale/meihekou/android/PhoneStandWorkNew.vue +692 -692
  22. package/src/filiale/meihekou/android/ServiceOnlineQuery.vue +477 -477
  23. package/src/filiale/meihekou/pc/WorkListAllNew.vue +925 -901
  24. package/src/filiale/meihekou/pc/WorkListNew.vue +1113 -1049
  25. package/src/filiale/meihekou/telephoneAndroid.js +26 -26
  26. package/src/filiale/xinjiangdexin/telephone.js +16 -16
  27. package/src/filiale/xinliansihui/android/FaultAll.vue +923 -923
  28. package/src/filiale/xinliansihui/android/RepairFirstV.vue +734 -734
  29. package/src/filiale/xinliansihui/android/RepairOrderT.vue +713 -713
  30. package/src/main.js +1 -1
  31. package/src/telephone-android.js +425 -425
  32. package/src/telephone.js +799 -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>