apply-clients 3.4.39 → 3.4.51
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.
- package/build/dev-server.js +2 -2
- package/package.json +1 -1
- package/src/android.js +21 -21
- package/src/apply.js +113 -113
- package/src/applyAndroid.js +53 -53
- package/src/components/android/AppServiceView.vue +745 -745
- package/src/components/android/AppSign.vue +154 -154
- package/src/components/android/Process/AppExplorationUser.vue +507 -507
- package/src/components/android/Process/AppServiceControl.vue +1708 -1708
- package/src/components/android/Process/Processes/AppAddMaterialScience.vue +477 -477
- package/src/components/android/Process/Processes/AppDevicesManagement.vue +519 -519
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +482 -482
- package/src/components/android/Supervisory/AppSupervisoryCart.vue +156 -156
- package/src/components/product/Business/BusinessApply.vue +269 -269
- package/src/components/product/Business/CivilApply.vue +269 -269
- package/src/components/product/GroupByApply/ApplyGroupByList.vue +253 -253
- package/src/components/product/GroupByApply/ApplyGroupByMain.vue +53 -53
- package/src/components/product/GroupByApply/ApplyGroupByPaper.vue +376 -376
- package/src/components/product/Material/MaterialDetailed.vue +262 -262
- package/src/components/product/OldApply/Monitor/MonitorApply.vue +360 -360
- package/src/components/product/Print/BuildOrder/printBuildOrder.vue +157 -157
- package/src/components/product/Print/IgnitionBill/IgnitionBill.vue +259 -259
- package/src/components/product/Print/IgnitionBill/printIgnitionBill.vue +168 -168
- package/src/components/product/Process/ExplorationSelect.vue +495 -495
- package/src/components/product/Process/ExplorationUser.vue +189 -189
- package/src/components/product/Process/Processes/InstallationDetails.vue +610 -610
- package/src/components/product/Process/Processes/Print/printCharge.vue +166 -166
- package/src/components/product/Process/Processes/addMaterialScience.vue +454 -454
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +211 -211
- package/src/components/product/Process/Processes/chargeManagement.vue +656 -656
- package/src/components/product/Process/Processes/devicesManagement.vue +484 -484
- package/src/components/product/Process/Service/ServiceControl.vue +1918 -1920
- package/src/components/product/ServiceView.vue +981 -981
- package/src/components/product/Supervisory/SupervisoryControl.vue +137 -137
- package/src/components/product/Supervisory/SupervisoryList.vue +404 -404
- package/src/components/product/VueUtils/ApplyUpload.vue +275 -280
- package/src/filiale/gehua/pc/ExplorationSelect.vue +483 -483
- package/src/filiale/gehua/pc/ServiceControl.vue +1929 -1929
- package/src/filiale/gehua/pc/SupervisoryControl.vue +137 -137
- package/src/filiale/gehua/pc/SupervisoryServiceControl.vue +890 -890
- package/src/filiale/gehua/pc/buildOrderList.vue +339 -0
- package/src/filiale/gehua/pc/printBuildOrder.vue +243 -0
- package/src/filiale/gehua/pc.js +3 -2
- package/src/filiale/guangxi/android/Process/AppExplorationUser.vue +503 -503
- package/src/filiale/guangxi/android/Process/Processes/AppAddMaterialScience.vue +470 -470
- package/src/filiale/guangxi/android/Process/Processes/AppDevicesManagement.vue +519 -519
- package/src/filiale/guangxi/android/Process/Processes/AppInstallationDetails.vue +482 -482
- package/src/filiale/guangxi/android/Process/Processes/AppServiceControl.vue +1708 -1708
- package/src/filiale/guangxi/android/Process/Processes/AppServiceView.vue +766 -766
- package/src/filiale/guangxi/android.js +9 -9
- package/src/filiale/guangxi/pc/ApplyCharge/ApplyChargeList.vue +470 -470
- package/src/filiale/guangxi/pc/ApplyCharge/chargeManagement.vue +702 -702
- package/src/filiale/guangxi/pc/Process/ExplorationSelect.vue +538 -538
- package/src/filiale/guangxi/pc/Process/Service/ServiceControl.vue +1922 -1922
- package/src/filiale/guangxi/pc/Process/Service/SupervisoryServiceControl.vue +891 -891
- package/src/filiale/guangxi/pc/Process/Service/addMaterialScience.vue +482 -482
- package/src/filiale/guangxi/pc.js +15 -15
- package/src/main.js +1 -4
|
@@ -1,166 +1,166 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<style id="printChargeStyle">
|
|
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
|
-
.orgs {
|
|
17
|
-
border-bottom: 2px solid;
|
|
18
|
-
padding: 5px;
|
|
19
|
-
}
|
|
20
|
-
.date {
|
|
21
|
-
float: left;
|
|
22
|
-
padding-left: 10px;
|
|
23
|
-
}
|
|
24
|
-
.status {
|
|
25
|
-
float: right;
|
|
26
|
-
padding-right: 10px;
|
|
27
|
-
}
|
|
28
|
-
.seal {
|
|
29
|
-
position: absolute;
|
|
30
|
-
right: 100px;
|
|
31
|
-
top: 120px;
|
|
32
|
-
width: 150px;
|
|
33
|
-
height: 150px;
|
|
34
|
-
/*opacity: 0.5;*/
|
|
35
|
-
z-index: -1;
|
|
36
|
-
}
|
|
37
|
-
</style>
|
|
38
|
-
<div id="printCharge">
|
|
39
|
-
<h4>
|
|
40
|
-
<span class="orgs">
|
|
41
|
-
{{orgs}}统一收据
|
|
42
|
-
</span>
|
|
43
|
-
</h4>
|
|
44
|
-
<table border="1" width="100%">
|
|
45
|
-
<tr>
|
|
46
|
-
|
|
47
|
-
<td style="width: 17%">开票日期</td>
|
|
48
|
-
<td colspan="4" style="width: 33%">{{ new Date().Format('yyyy年MM月dd日') }}</td>
|
|
49
|
-
</tr>
|
|
50
|
-
<tr>
|
|
51
|
-
<td style="width: 17%">收据编码</td>
|
|
52
|
-
<td colspan="4" style="width: 33%">{{ charge.f_charge_number }}</td>
|
|
53
|
-
</tr>
|
|
54
|
-
<tr>
|
|
55
|
-
<td style="width: 17%">状态</td>
|
|
56
|
-
<td colspan="4" style="width: 33%">{{ charge.f_charge_status }}</td>
|
|
57
|
-
</tr>
|
|
58
|
-
<tr>
|
|
59
|
-
<td style="width: 17%">用户姓名</td>
|
|
60
|
-
<td colspan="4" style="width: 33%">{{ selectdata.f_user_name }}</td>
|
|
61
|
-
</tr>
|
|
62
|
-
<tr>
|
|
63
|
-
<td style="width: 17%">用户编号</td>
|
|
64
|
-
<td colspan="4" style="width: 33%">{{ selectdata.f_userinfo_code }}</td>
|
|
65
|
-
</tr>
|
|
66
|
-
<tr>
|
|
67
|
-
<td>用户地址</td>
|
|
68
|
-
<td colspan="5">{{ selectdata.f_address }}</td>
|
|
69
|
-
</tr>
|
|
70
|
-
<tr>
|
|
71
|
-
<td>收款项目</td>
|
|
72
|
-
<td colspan="4">{{ charge.f_payment_term }}</td>
|
|
73
|
-
</tr>
|
|
74
|
-
<tr>
|
|
75
|
-
<td>收款方式</td>
|
|
76
|
-
<td colspan="2">{{ charge.f_payment_method }}</td>
|
|
77
|
-
</tr>
|
|
78
|
-
<tr>
|
|
79
|
-
<td>金额</td>
|
|
80
|
-
<td colspan="4">{{ charge.f_charge_money }}</td>
|
|
81
|
-
</tr>
|
|
82
|
-
<tr>
|
|
83
|
-
<td>金额大写</td>
|
|
84
|
-
<td colspan="4">{{ charge.f_amount_words }}</td>
|
|
85
|
-
</tr>
|
|
86
|
-
<tr>
|
|
87
|
-
<td>收款人</td>
|
|
88
|
-
<td colspan="4">{{ charge.f_charge_collectors }}</td>
|
|
89
|
-
</tr>
|
|
90
|
-
<tr>
|
|
91
|
-
<td>销售方(章)</td>
|
|
92
|
-
<td colspan="4" v-if="charge.f_orgname==='郸城县天然气有限公司'">
|
|
93
|
-
<img src="../../../../image/郸城收款专用章.png" style="overflow: hidden;width: 200px;height: 200px">
|
|
94
|
-
</td>
|
|
95
|
-
<td colspan="4" v-if="charge.f_orgname==='周口市天然气有限公司'">
|
|
96
|
-
<img src="../../../../image/周口收款专用章.png" style="overflow: hidden;width: 200px;height: 200px">
|
|
97
|
-
</td>
|
|
98
|
-
<td colspan="4" v-if="charge.f_orgname==='项城市天然气有限公司'">
|
|
99
|
-
<img src="../../../../image/项城收款专用章.png" style="overflow: hidden;width: 200px;height: 200px">
|
|
100
|
-
</td>
|
|
101
|
-
<td colspan="4" v-if="charge.f_orgname==='西华县天然气有限公司'">
|
|
102
|
-
<img src="../../../../image/西华收款专用章.png" style="overflow: hidden;width: 200px;height: 200px">
|
|
103
|
-
</td>
|
|
104
|
-
<td colspan="4" v-if="charge.f_orgname==='鹿邑县天然气有限公司'">
|
|
105
|
-
<img src="../../../../image/鹿邑收款专用章.png" style="overflow: hidden;width: 200px;height: 200px">
|
|
106
|
-
</td>
|
|
107
|
-
</tr>
|
|
108
|
-
<tr>
|
|
109
|
-
<td>备  注</td>
|
|
110
|
-
<td colspan="5">{{ charge.f_charge_remarks }}</td>
|
|
111
|
-
</tr>
|
|
112
|
-
<tr>
|
|
113
|
-
<td colspan="6">
|
|
114
|
-
请持此收据到{{orgs}}营业厅换取发票
|
|
115
|
-
</td>
|
|
116
|
-
</tr>
|
|
117
|
-
</table>
|
|
118
|
-
<!-- <img class="seal" border="0" :src="src" alt="">-->
|
|
119
|
-
</div>
|
|
120
|
-
|
|
121
|
-
<print-element v-show="false" v-ref:print id='printCharge' styleid='printChargeStyle'
|
|
122
|
-
top='20' left='30' width='100%' height='100%'>
|
|
123
|
-
</print-element>
|
|
124
|
-
</template>
|
|
125
|
-
|
|
126
|
-
<script>
|
|
127
|
-
import { isEmpty } from '../../../../Util'
|
|
128
|
-
Date.prototype.Format = function (fmt) {
|
|
129
|
-
var o = {
|
|
130
|
-
"M+": this.getMonth() + 1, //月份
|
|
131
|
-
"d+": this.getDate(), //日
|
|
132
|
-
"H+": this.getHours(), //小时
|
|
133
|
-
"m+": this.getMinutes(), //分
|
|
134
|
-
"s+": this.getSeconds(), //秒
|
|
135
|
-
"q+": Math.floor((this.getMonth() + 3) / 3), //季度
|
|
136
|
-
"S": this.getMilliseconds() //毫秒
|
|
137
|
-
};
|
|
138
|
-
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
|
|
139
|
-
for (var k in o)
|
|
140
|
-
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
|
|
141
|
-
return fmt;
|
|
142
|
-
}
|
|
143
|
-
export default {
|
|
144
|
-
title: '打印收费票据',
|
|
145
|
-
props: ['selectdata', 'charge'],
|
|
146
|
-
data () {
|
|
147
|
-
return {}
|
|
148
|
-
},
|
|
149
|
-
ready () {
|
|
150
|
-
},
|
|
151
|
-
methods: {
|
|
152
|
-
},
|
|
153
|
-
computed: {
|
|
154
|
-
orgs () {
|
|
155
|
-
return this.$login.f.orgs
|
|
156
|
-
},
|
|
157
|
-
src () {
|
|
158
|
-
return require(`./img/${this.$login.f.number}.png`)
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
</script>
|
|
163
|
-
|
|
164
|
-
<style scoped>
|
|
165
|
-
|
|
166
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<style id="printChargeStyle">
|
|
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
|
+
.orgs {
|
|
17
|
+
border-bottom: 2px solid;
|
|
18
|
+
padding: 5px;
|
|
19
|
+
}
|
|
20
|
+
.date {
|
|
21
|
+
float: left;
|
|
22
|
+
padding-left: 10px;
|
|
23
|
+
}
|
|
24
|
+
.status {
|
|
25
|
+
float: right;
|
|
26
|
+
padding-right: 10px;
|
|
27
|
+
}
|
|
28
|
+
.seal {
|
|
29
|
+
position: absolute;
|
|
30
|
+
right: 100px;
|
|
31
|
+
top: 120px;
|
|
32
|
+
width: 150px;
|
|
33
|
+
height: 150px;
|
|
34
|
+
/*opacity: 0.5;*/
|
|
35
|
+
z-index: -1;
|
|
36
|
+
}
|
|
37
|
+
</style>
|
|
38
|
+
<div id="printCharge">
|
|
39
|
+
<h4>
|
|
40
|
+
<span class="orgs">
|
|
41
|
+
{{orgs}}统一收据
|
|
42
|
+
</span>
|
|
43
|
+
</h4>
|
|
44
|
+
<table border="1" width="100%">
|
|
45
|
+
<tr>
|
|
46
|
+
|
|
47
|
+
<td style="width: 17%">开票日期</td>
|
|
48
|
+
<td colspan="4" style="width: 33%">{{ new Date().Format('yyyy年MM月dd日') }}</td>
|
|
49
|
+
</tr>
|
|
50
|
+
<tr>
|
|
51
|
+
<td style="width: 17%">收据编码</td>
|
|
52
|
+
<td colspan="4" style="width: 33%">{{ charge.f_charge_number }}</td>
|
|
53
|
+
</tr>
|
|
54
|
+
<tr>
|
|
55
|
+
<td style="width: 17%">状态</td>
|
|
56
|
+
<td colspan="4" style="width: 33%">{{ charge.f_charge_status }}</td>
|
|
57
|
+
</tr>
|
|
58
|
+
<tr>
|
|
59
|
+
<td style="width: 17%">用户姓名</td>
|
|
60
|
+
<td colspan="4" style="width: 33%">{{ selectdata.f_user_name }}</td>
|
|
61
|
+
</tr>
|
|
62
|
+
<tr>
|
|
63
|
+
<td style="width: 17%">用户编号</td>
|
|
64
|
+
<td colspan="4" style="width: 33%">{{ selectdata.f_userinfo_code }}</td>
|
|
65
|
+
</tr>
|
|
66
|
+
<tr>
|
|
67
|
+
<td>用户地址</td>
|
|
68
|
+
<td colspan="5">{{ selectdata.f_address }}</td>
|
|
69
|
+
</tr>
|
|
70
|
+
<tr>
|
|
71
|
+
<td>收款项目</td>
|
|
72
|
+
<td colspan="4">{{ charge.f_payment_term }}</td>
|
|
73
|
+
</tr>
|
|
74
|
+
<tr>
|
|
75
|
+
<td>收款方式</td>
|
|
76
|
+
<td colspan="2">{{ charge.f_payment_method }}</td>
|
|
77
|
+
</tr>
|
|
78
|
+
<tr>
|
|
79
|
+
<td>金额</td>
|
|
80
|
+
<td colspan="4">{{ charge.f_charge_money }}</td>
|
|
81
|
+
</tr>
|
|
82
|
+
<tr>
|
|
83
|
+
<td>金额大写</td>
|
|
84
|
+
<td colspan="4">{{ charge.f_amount_words }}</td>
|
|
85
|
+
</tr>
|
|
86
|
+
<tr>
|
|
87
|
+
<td>收款人</td>
|
|
88
|
+
<td colspan="4">{{ charge.f_charge_collectors }}</td>
|
|
89
|
+
</tr>
|
|
90
|
+
<tr>
|
|
91
|
+
<td>销售方(章)</td>
|
|
92
|
+
<td colspan="4" v-if="charge.f_orgname==='郸城县天然气有限公司'">
|
|
93
|
+
<img src="../../../../image/郸城收款专用章.png" style="overflow: hidden;width: 200px;height: 200px">
|
|
94
|
+
</td>
|
|
95
|
+
<td colspan="4" v-if="charge.f_orgname==='周口市天然气有限公司'">
|
|
96
|
+
<img src="../../../../image/周口收款专用章.png" style="overflow: hidden;width: 200px;height: 200px">
|
|
97
|
+
</td>
|
|
98
|
+
<td colspan="4" v-if="charge.f_orgname==='项城市天然气有限公司'">
|
|
99
|
+
<img src="../../../../image/项城收款专用章.png" style="overflow: hidden;width: 200px;height: 200px">
|
|
100
|
+
</td>
|
|
101
|
+
<td colspan="4" v-if="charge.f_orgname==='西华县天然气有限公司'">
|
|
102
|
+
<img src="../../../../image/西华收款专用章.png" style="overflow: hidden;width: 200px;height: 200px">
|
|
103
|
+
</td>
|
|
104
|
+
<td colspan="4" v-if="charge.f_orgname==='鹿邑县天然气有限公司'">
|
|
105
|
+
<img src="../../../../image/鹿邑收款专用章.png" style="overflow: hidden;width: 200px;height: 200px">
|
|
106
|
+
</td>
|
|
107
|
+
</tr>
|
|
108
|
+
<tr>
|
|
109
|
+
<td>备  注</td>
|
|
110
|
+
<td colspan="5">{{ charge.f_charge_remarks }}</td>
|
|
111
|
+
</tr>
|
|
112
|
+
<tr>
|
|
113
|
+
<td colspan="6">
|
|
114
|
+
请持此收据到{{orgs}}营业厅换取发票
|
|
115
|
+
</td>
|
|
116
|
+
</tr>
|
|
117
|
+
</table>
|
|
118
|
+
<!-- <img class="seal" border="0" :src="src" alt="">-->
|
|
119
|
+
</div>
|
|
120
|
+
|
|
121
|
+
<print-element v-show="false" v-ref:print id='printCharge' styleid='printChargeStyle'
|
|
122
|
+
top='20' left='30' width='100%' height='100%'>
|
|
123
|
+
</print-element>
|
|
124
|
+
</template>
|
|
125
|
+
|
|
126
|
+
<script>
|
|
127
|
+
import { isEmpty } from '../../../../Util'
|
|
128
|
+
Date.prototype.Format = function (fmt) {
|
|
129
|
+
var o = {
|
|
130
|
+
"M+": this.getMonth() + 1, //月份
|
|
131
|
+
"d+": this.getDate(), //日
|
|
132
|
+
"H+": this.getHours(), //小时
|
|
133
|
+
"m+": this.getMinutes(), //分
|
|
134
|
+
"s+": this.getSeconds(), //秒
|
|
135
|
+
"q+": Math.floor((this.getMonth() + 3) / 3), //季度
|
|
136
|
+
"S": this.getMilliseconds() //毫秒
|
|
137
|
+
};
|
|
138
|
+
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
|
|
139
|
+
for (var k in o)
|
|
140
|
+
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
|
|
141
|
+
return fmt;
|
|
142
|
+
}
|
|
143
|
+
export default {
|
|
144
|
+
title: '打印收费票据',
|
|
145
|
+
props: ['selectdata', 'charge'],
|
|
146
|
+
data () {
|
|
147
|
+
return {}
|
|
148
|
+
},
|
|
149
|
+
ready () {
|
|
150
|
+
},
|
|
151
|
+
methods: {
|
|
152
|
+
},
|
|
153
|
+
computed: {
|
|
154
|
+
orgs () {
|
|
155
|
+
return this.$login.f.orgs
|
|
156
|
+
},
|
|
157
|
+
src () {
|
|
158
|
+
return require(`./img/${this.$login.f.number}.png`)
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
</script>
|
|
163
|
+
|
|
164
|
+
<style scoped>
|
|
165
|
+
|
|
166
|
+
</style>
|