apply-clients 3.3.13 → 3.3.17

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 (25) hide show
  1. package/package.json +1 -1
  2. package/src/apply.js +2 -1
  3. package/src/components/android/Function/AppInstallFunction.vue +0 -10
  4. package/src/components/android/Process/AppExplorationUser.vue +268 -278
  5. package/src/components/android/Process/AppServiceControl.vue +711 -686
  6. package/src/components/android/Supervisory/AppProcessSupervisory.vue +0 -10
  7. package/src/components/product/ApplyCharge/ApplyChargeList.vue +0 -9
  8. package/src/components/product/Function/InstallInfoSelect.vue +4 -13
  9. package/src/components/product/Order/OrderMessage.vue +0 -4
  10. package/src/components/product/Process/ExplorationSelect.vue +3 -12
  11. package/src/components/product/Process/Processes/InstallationDetails.vue +2 -4
  12. package/src/components/product/Process/Processes/Print/img/10101.png +0 -0
  13. package/src/components/product/Process/Processes/Print/img/1010109.png +0 -0
  14. package/src/components/product/Process/Processes/Print/img/1010110.png +0 -0
  15. package/src/components/product/Process/Processes/Print/img/1010111.png +0 -0
  16. package/src/components/product/Process/Processes/Print/img/1010112.png +0 -0
  17. package/src/components/product/Process/Processes/Print/printCharge.vue +139 -0
  18. package/src/components/product/Process/Processes/Print/printRefund.vue +193 -0
  19. package/src/components/product/Process/Processes/chargeManagement.vue +164 -164
  20. package/src/components/product/Process/Processes/selectApply.vue +1 -1
  21. package/src/components/product/Process/Service/ServiceControl.vue +47 -16
  22. package/src/components/product/Stop/StopApplyList.vue +3 -13
  23. package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +0 -5
  24. package/src/components/product/Supervisory/SupervisoryList.vue +3 -13
  25. package/src/components/product/Process/Processes/printCharge.vue +0 -130
@@ -1,130 +0,0 @@
1
- <template>
2
- <style id="style">
3
- td{
4
- height: 50px;
5
- width: 40px;
6
- text-align: center;
7
- }
8
- table{
9
- margin: auto;
10
- width: 100%;
11
- border-collapse:collapse;
12
- border: 1px solid black;
13
- }
14
- h1,h2,h3,h4,h5,h6 {
15
- text-align: center;
16
- }
17
- .date{
18
- float: left;
19
- padding-left: 30px;
20
- }
21
- .number{
22
- float: right;
23
- padding-right: 30px;
24
- }
25
- .rescue{
26
- float: left;
27
- padding: 0 30px 0 40px;
28
- }
29
- .service{
30
- float: left;
31
- }
32
- .payee{
33
- float: right;
34
- padding-right: 30px;
35
- }
36
- </style>
37
- <div id="print">
38
- <h4>{{orgs}}统一收据</h4>
39
- <table border="1">
40
- <tr>
41
- <td colspan="6">
42
- 开票日期:{{new Date().Format('yyyy年MM月dd日')}}
43
- </td>
44
- </tr>
45
- <tr>
46
- <td>用户姓名</td>
47
- <td colspan="2">{{ f_user_name }}</td>
48
- <td>联系电话</td>
49
- <td>{{ f_user_phone }}</td>
50
- </tr>
51
- <tr>
52
- <td>地&emsp;&emsp;址</td>
53
- <td colspan="4">{{ f_useraddress }}</td>
54
- </tr>
55
- <tr>
56
- <td>收费项目</td>
57
- <td colspan="2">庭院管网建设费</td>
58
- <td>收费方式</td>
59
- <td>{{ charge.f_payment_method }}</td>
60
- </tr>
61
- <tr>
62
- <td>收费金额</td>
63
- <td>{{ charge.f_charge_money }}</td>
64
- <td>大&emsp;&emsp;写</td>
65
- <td colspan="2">{{ charge.f_amount_words }}</td>
66
- </tr>
67
- <tr>
68
- <td>备&emsp;&emsp;注</td>
69
- <td colspan="4">{{ selectdata.f_entry_name }}</td>
70
- </tr>
71
- </table>
72
- <span>
73
- <p class="rescue">抢险电话:5835588</p>
74
- <p class="service">服务电话:3718002</p>
75
- <p class="payee">收款人:{{ charge.f_charge_collectors }}</p>
76
- </span>
77
- </div>
78
-
79
- <print-element v-show="false" v-ref:print id='print' styleid='style'
80
- top='40' left='60' width='100%' height='100%'>
81
- </print-element>
82
- </template>
83
-
84
- <script>
85
- import { isEmpty } from '../../../Util'
86
- Date.prototype.Format = function (fmt) {
87
- var o = {
88
- "M+": this.getMonth() + 1, //月份
89
- "d+": this.getDate(), //日
90
- "H+": this.getHours(), //小时
91
- "m+": this.getMinutes(), //分
92
- "s+": this.getSeconds(), //秒
93
- "q+": Math.floor((this.getMonth() + 3) / 3), //季度
94
- "S": this.getMilliseconds() //毫秒
95
- };
96
- if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
97
- for (var k in o)
98
- if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
99
- return fmt;
100
- }
101
- export default {
102
- title: '打印收费票据',
103
- props: ['selectdata', 'charge'],
104
- data () {
105
- return {}
106
- },
107
- ready () {
108
- console.log('------------------打印-------------------')
109
- console.log()
110
- },
111
- computed: {
112
- f_user_name () {
113
- return isEmpty(this.charge.f_user_name) ? this.selectdata.f_contact : this.charge.f_user_name
114
- },
115
- f_user_phone () {
116
- return isEmpty(this.charge.f_user_phone) ? this.selectdata.f_phone : this.charge.f_user_phone
117
- },
118
- f_useraddress () {
119
- return isEmpty(this.charge.f_useraddress) ? `武安市${this.selectdata.f_street}${this.selectdata.f_residential_area}` : `武安市${this.charge.f_useraddress}`
120
- },
121
- orgs () {
122
- return this.$login.f.orgs
123
- }
124
- }
125
- }
126
- </script>
127
-
128
- <style scoped>
129
-
130
- </style>