apply-clients 3.3.69 → 3.3.71

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 (35) hide show
  1. package/.project +17 -0
  2. package/build/dev-server.js +133 -133
  3. package/package.json +1 -1
  4. package/src/AndroidApp.vue +35 -35
  5. package/src/applyAndroid.js +31 -31
  6. package/src/components/android/AppOnetomany.vue +301 -301
  7. package/src/components/android/AppSign.vue +142 -142
  8. package/src/components/android/Function/AppInstallFunction.vue +366 -366
  9. package/src/components/android/Process/AppExplorationUser.vue +396 -402
  10. package/src/components/android/Process/AppServiceControl.vue +865 -865
  11. package/src/components/android/Process/Processes/AppBuildSign.vue +46 -46
  12. package/src/components/android/Supervisory/AppProcessSupervisory.vue +300 -300
  13. package/src/components/android/Supervisory/AppSupervisoryCart.vue +119 -119
  14. package/src/components/product/ApplyCharge/ApplyChargeList.vue +382 -382
  15. package/src/components/product/Business/BusinessApply.vue +242 -242
  16. package/src/components/product/Function/InstallFunction.vue +132 -132
  17. package/src/components/product/Function/InstallInfoSelect.vue +320 -320
  18. package/src/components/product/Function/Service/FunctionServiceControl.vue +445 -445
  19. package/src/components/product/OldApply/Monitor/MonitorApply.vue +329 -329
  20. package/src/components/product/OldApply/OldApply.vue +150 -150
  21. package/src/components/product/Onetomany.vue +377 -377
  22. package/src/components/product/Print/BuildOrder/buildOrderList.vue +264 -264
  23. package/src/components/product/Print/BuildOrder/printBuildOrder.vue +153 -153
  24. package/src/components/product/Process/ExplorationSelect.vue +452 -457
  25. package/src/components/product/Process/ExplorationUser.vue +189 -147
  26. package/src/components/product/Process/Processes/Print/printCharge.vue +142 -142
  27. package/src/components/product/Process/Processes/Print/printRefund.vue +196 -196
  28. package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +211 -211
  29. package/src/components/product/Process/Service/ServiceControl.vue +1362 -1362
  30. package/src/components/product/ServiceView.vue +631 -631
  31. package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +863 -863
  32. package/src/components/product/Supervisory/SupervisoryControl.vue +137 -137
  33. package/src/components/product/Supervisory/SupervisoryhCart.vue +130 -130
  34. package/src/components/product/VueUtils/ApplyUpload.vue +273 -273
  35. package/src/components/product/VueUtils/HighMeter.vue +208 -208
@@ -1,153 +1,153 @@
1
- <template>
2
- <style id="printBuildOrderStyle">
3
- td{
4
- height: 30px;
5
- text-align: center;
6
- }
7
- table{
8
- margin: auto;
9
- width: 100%;
10
- border-collapse:collapse;
11
- border: 1px solid black;
12
- }
13
- h1,h2,h3,h4,h5,h6 {
14
- text-align: center;
15
- }
16
- .sign {
17
- vertical-align: top;
18
- padding: 10px;
19
- }
20
- .material {
21
- text-align: left;
22
- vertical-align: top;
23
- padding: 10px;
24
- }
25
- </style>
26
-
27
- <div id="printBuildOrder">
28
- <h2><span style="letter-spacing: 15px">施工安装通知单</span></h2>
29
- <table border="1">
30
- <tr>
31
- <td>用户姓名</td>
32
- <td>{{ selectdata.f_user_name }}</td>
33
- <td>报装编号</td>
34
- <td>{{ selectdata.f_apply_num }}</td>
35
- <td>电&emsp;&emsp;&emsp;&emsp;话</td>
36
- <td>{{ selectdata.f_phone }}</td>
37
- </tr>
38
- <tr>
39
- <td>用户地址</td>
40
- <td colspan="3">{{ selectdata.f_address }}</td>
41
- <td>施工安装时间</td>
42
- <td>{{ selectdata.f_construction_date }}</td>
43
- </tr>
44
- <tr>
45
- <td>安装项目</td>
46
- <td>{{ parse }}</td>
47
- <td>通知时间</td>
48
- <td>{{ selectdata.sendtime }}</td>
49
- <td>施工安装单位</td>
50
- <td>{{ selectdata.f_construction_unit }}</td>
51
- </tr>
52
- <tr>
53
- <td>表号</td>
54
- <td colspan="2">{{ selectdata.f_meternumber }}</td>
55
- <td>表封号</td>
56
- <td colspan="2">{{ selectdata.f_metertitles }}</td>
57
- </tr>
58
- <tr>
59
- <td colspan="6" class="material">
60
- <p style="margin: 0px 0px 10px 0px">施工安装情况</p>
61
- <p style="margin: 0px 0px 10px 0px">{{ selectdata.f_material }}</p>
62
- <!-- <p v-for="item in selectdata.onetomany[0].rows" style="width: auto;display: inline-block;margin: 0px 15px 5px 0px">-->
63
- <!-- <span style="margin-right: 10px">{{$index + 1}}、{{item.f_material_name}}{{item.f_material_style}}</span>{{item.f_material_number}}{{item.f_material_unit}}-->
64
- <!-- </p>-->
65
- </td>
66
- </tr>
67
- <tr style="height: 80px">
68
- <td colspan="2" class="sign">施工安装单位(签字)</td>
69
- <td colspan="2" class="sign">工程验收(签字)</td>
70
- <td colspan="2" class="sign">用户(签字)</td>
71
- </tr>
72
- <tr>
73
- <td>备&emsp;&emsp;注</td>
74
- <td colspan="5">{{ selectdata.f_construction_remarks }}</td>
75
- </tr>
76
- </table>
77
- </div>
78
-
79
- <print-element v-show="false" v-ref:print id='printBuildOrder' styleid='printBuildOrderStyle'
80
- top='10' left='30' width='100%' height='100%' :type="type">
81
- </print-element>
82
-
83
- </template>
84
-
85
- <script>
86
- import { isEmpty } from '../../../Util'
87
- import {HttpResetClass} from "vue-client";
88
- Date.prototype.Format = function (fmt) {
89
- var o = {
90
- "M+": this.getMonth() + 1, //月份
91
- "d+": this.getDate(), //日
92
- "H+": this.getHours(), //小时
93
- "m+": this.getMinutes(), //分
94
- "s+": this.getSeconds(), //秒
95
- "q+": Math.floor((this.getMonth() + 3) / 3), //季度
96
- "S": this.getMilliseconds() //毫秒
97
- };
98
- if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
99
- for (var k in o)
100
- if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
101
- return fmt;
102
- }
103
- export default {
104
- title: '施工安装通知单',
105
- props: {
106
- selectdata: {
107
- type: Object
108
- },
109
- type: {
110
- type: String
111
- }
112
- },
113
- data () {
114
- return {
115
- showModal: false,
116
- userfile: null
117
- }
118
- },
119
- ready () {
120
- },
121
- methods: {
122
- print () {
123
- this.$refs.print.PrintTable()
124
- }
125
- },
126
- computed: {
127
- parse () {
128
- return JSON.parse(this.selectdata.f_install_project).toString()
129
- },
130
- orgs () {
131
- return this.$login.f.orgs
132
- }
133
- }
134
- }
135
- </script>
136
-
137
- <style scoped>
138
- .control-label-justify {
139
- display: inline-block;
140
- vertical-align: top;
141
- width: 130px;
142
- text-align: justify;
143
- font-family: PingFang-SC-Bold;
144
- }
145
-
146
- .control-label-justify::after {
147
- content: "";
148
- display: inline-block;
149
- width: 100%;
150
- overflow: hidden;
151
- height: 0;
152
- }
153
- </style>
1
+ <template>
2
+ <style id="printBuildOrderStyle">
3
+ td{
4
+ height: 30px;
5
+ text-align: center;
6
+ }
7
+ table{
8
+ margin: auto;
9
+ width: 100%;
10
+ border-collapse:collapse;
11
+ border: 1px solid black;
12
+ }
13
+ h1,h2,h3,h4,h5,h6 {
14
+ text-align: center;
15
+ }
16
+ .sign {
17
+ vertical-align: top;
18
+ padding: 10px;
19
+ }
20
+ .material {
21
+ text-align: left;
22
+ vertical-align: top;
23
+ padding: 10px;
24
+ }
25
+ </style>
26
+
27
+ <div id="printBuildOrder">
28
+ <h2><span style="letter-spacing: 15px">施工安装通知单</span></h2>
29
+ <table border="1">
30
+ <tr>
31
+ <td>用户姓名</td>
32
+ <td>{{ selectdata.f_user_name }}</td>
33
+ <td>报装编号</td>
34
+ <td>{{ selectdata.f_apply_num }}</td>
35
+ <td>电&emsp;&emsp;&emsp;&emsp;话</td>
36
+ <td>{{ selectdata.f_phone }}</td>
37
+ </tr>
38
+ <tr>
39
+ <td>用户地址</td>
40
+ <td colspan="3">{{ selectdata.f_address }}</td>
41
+ <td>施工安装时间</td>
42
+ <td>{{ selectdata.f_construction_date }}</td>
43
+ </tr>
44
+ <tr>
45
+ <td>安装项目</td>
46
+ <td>{{ parse }}</td>
47
+ <td>通知时间</td>
48
+ <td>{{ selectdata.sendtime }}</td>
49
+ <td>施工安装单位</td>
50
+ <td>{{ selectdata.f_construction_unit }}</td>
51
+ </tr>
52
+ <tr>
53
+ <td>表号</td>
54
+ <td colspan="2">{{ selectdata.f_meternumber }}</td>
55
+ <td>表封号</td>
56
+ <td colspan="2">{{ selectdata.f_metertitles }}</td>
57
+ </tr>
58
+ <tr>
59
+ <td colspan="6" class="material">
60
+ <p style="margin: 0px 0px 10px 0px">施工安装情况</p>
61
+ <p style="margin: 0px 0px 10px 0px">{{ selectdata.f_material }}</p>
62
+ <!-- <p v-for="item in selectdata.onetomany[0].rows" style="width: auto;display: inline-block;margin: 0px 15px 5px 0px">-->
63
+ <!-- <span style="margin-right: 10px">{{$index + 1}}、{{item.f_material_name}}{{item.f_material_style}}</span>{{item.f_material_number}}{{item.f_material_unit}}-->
64
+ <!-- </p>-->
65
+ </td>
66
+ </tr>
67
+ <tr style="height: 80px">
68
+ <td colspan="2" class="sign">施工安装单位(签字)</td>
69
+ <td colspan="2" class="sign">工程验收(签字)</td>
70
+ <td colspan="2" class="sign">用户(签字)</td>
71
+ </tr>
72
+ <tr>
73
+ <td>备&emsp;&emsp;注</td>
74
+ <td colspan="5">{{ selectdata.f_construction_remarks }}</td>
75
+ </tr>
76
+ </table>
77
+ </div>
78
+
79
+ <print-element v-show="false" v-ref:print id='printBuildOrder' styleid='printBuildOrderStyle'
80
+ top='10' left='30' width='100%' height='100%' :type="type">
81
+ </print-element>
82
+
83
+ </template>
84
+
85
+ <script>
86
+ import { isEmpty } from '../../../Util'
87
+ import {HttpResetClass} from "vue-client";
88
+ Date.prototype.Format = function (fmt) {
89
+ var o = {
90
+ "M+": this.getMonth() + 1, //月份
91
+ "d+": this.getDate(), //日
92
+ "H+": this.getHours(), //小时
93
+ "m+": this.getMinutes(), //分
94
+ "s+": this.getSeconds(), //秒
95
+ "q+": Math.floor((this.getMonth() + 3) / 3), //季度
96
+ "S": this.getMilliseconds() //毫秒
97
+ };
98
+ if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
99
+ for (var k in o)
100
+ if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
101
+ return fmt;
102
+ }
103
+ export default {
104
+ title: '施工安装通知单',
105
+ props: {
106
+ selectdata: {
107
+ type: Object
108
+ },
109
+ type: {
110
+ type: String
111
+ }
112
+ },
113
+ data () {
114
+ return {
115
+ showModal: false,
116
+ userfile: null
117
+ }
118
+ },
119
+ ready () {
120
+ },
121
+ methods: {
122
+ print () {
123
+ this.$refs.print.PrintTable()
124
+ }
125
+ },
126
+ computed: {
127
+ parse () {
128
+ return JSON.parse(this.selectdata.f_install_project).toString()
129
+ },
130
+ orgs () {
131
+ return this.$login.f.orgs
132
+ }
133
+ }
134
+ }
135
+ </script>
136
+
137
+ <style scoped>
138
+ .control-label-justify {
139
+ display: inline-block;
140
+ vertical-align: top;
141
+ width: 130px;
142
+ text-align: justify;
143
+ font-family: PingFang-SC-Bold;
144
+ }
145
+
146
+ .control-label-justify::after {
147
+ content: "";
148
+ display: inline-block;
149
+ width: 100%;
150
+ overflow: hidden;
151
+ height: 0;
152
+ }
153
+ </style>