apply-clients 3.4.84 → 3.4.85

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.
@@ -0,0 +1,135 @@
1
+ <template>
2
+ <style id="printChargeStyle">
3
+ td{
4
+ height: 30px;
5
+ /*text-align: center;*/
6
+ width: 12.5%;
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
+ .orgs {
18
+ border-bottom: 2px solid;
19
+ padding: 5px;
20
+ }
21
+ .date {
22
+ float: left;
23
+ padding-left: 10px;
24
+ }
25
+ .status {
26
+ float: right;
27
+ padding-right: 10px;
28
+ }
29
+ .seal {
30
+ position: absolute;
31
+ right: 100px;
32
+ top: 120px;
33
+ width: 150px;
34
+ height: 150px;
35
+ /*opacity: 0.5;*/
36
+ z-index: -1;
37
+ }
38
+ </style>
39
+ <div style="margin-bottom: 20px">
40
+ <span style="font-size: 20px">开户费预览</span>
41
+ </div>
42
+ <div id="printCharge">
43
+ <table border="1" width="100%">
44
+ <tr>
45
+ <td v-for="index in 8"></td>
46
+ </tr>
47
+ <tr>
48
+ <td></td>
49
+ <td colspan="2">{{selectdata.f_userinfo_code}}</td>
50
+ <td colspan="3">{{ getdate() }}</td>
51
+ <td colspan="2"></td>
52
+ </tr>
53
+ <tr>
54
+ <td></td>
55
+ <td colspan="2">{{selectdata.f_user_name}}</td>
56
+ <td colspan="2">协议单号</td>
57
+ <td colspan="3">{{selectdata.f_apply_num}}</td>
58
+ </tr>
59
+ <tr>
60
+ <td></td>
61
+ <td colspan="7">{{selectdata.f_address}}</td>
62
+ </tr>
63
+ <tr>
64
+ <td colspan="8"></td>
65
+ </tr>
66
+ <tr>
67
+ <td colspan="2">收费明细</td>
68
+ <td v-if="selectdata.defname!='营业厅缴费'" colspan="2">新装开户费</td>
69
+ <td v-if="selectdata.defname==='营业厅缴费'&& selectdata.f_apply_type === '散户报建'&& charge.f_payment_term === '材料费' " colspan="2">新装材料费</td>
70
+ <td v-if="selectdata.defname==='营业厅缴费'&& selectdata.f_apply_type === '改装报建'&& charge.f_payment_term === '材料费' " colspan="2">新装材料费</td>
71
+ <td >{{ charge.f_charge_money }}</td>
72
+ <td colspan="4"></td>
73
+ </tr>
74
+ <tr>
75
+ <td colspan="8"></td>
76
+ </tr>
77
+ <tr>
78
+ <td></td>
79
+ <td>合计</td>
80
+ <td colspan="2">{{ charge.f_charge_money }}</td>
81
+ <td colspan="2">{{ charge.f_amount_words }}</td>
82
+ <td rowspan="2" colspan="2"></td>
83
+ </tr>
84
+ <tr>
85
+ <td></td>
86
+ <td colspan="5">湖南鸿达燃气有限公司</td>
87
+ </tr>
88
+ <tr>
89
+ <td v-for="index in 4"></td>
90
+ <td colspan="2">{{ charge.f_charge_collectors }}</td>
91
+ <td v-for="index in 2"></td>
92
+ </tr>
93
+ <tr>
94
+ <td colspan="8"></td>
95
+ </tr>
96
+ </table>
97
+ </div>
98
+ <div style="margin-top: 20px">
99
+ <span :style="billnum.isOk?'color: blue;font-weight: bold':'color: red;font-weight: bold'">{{billnum.msg}}</span>
100
+ </div>
101
+ <print-element v-show="false" v-ref:print id='printCharge' styleid='printChargeStyle'
102
+ top='20' left='30' width='100%' height='100%'>
103
+ </print-element>
104
+ </template>
105
+
106
+ <script>
107
+ import { toStandardTimeString } from '../../../components/Util'
108
+ import {HttpResetClass} from 'vue-client'
109
+ export default {
110
+ title: '打印收费票据',
111
+ props: ['selectdata', 'charge','billnum'],
112
+ data () {
113
+ return {
114
+ billnum: ''
115
+ }
116
+ },
117
+ ready () {
118
+ },
119
+ methods: {
120
+ // 获取当前时间 格式 2023-07-09 23:59:59
121
+ getdate () {
122
+ return toStandardTimeString()
123
+ }
124
+ },
125
+ computed: {
126
+ orgs () {
127
+ return this.$login.f.orgs
128
+ }
129
+ }
130
+ }
131
+ </script>
132
+
133
+ <style scoped>
134
+
135
+ </style>
@@ -0,0 +1,140 @@
1
+ <template>
2
+ <style id="printChargeStyle">
3
+ td{
4
+ height: 30px;
5
+ /*text-align: center;*/
6
+ width: 12.5%;
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
+ .orgs {
18
+ border-bottom: 2px solid;
19
+ padding: 5px;
20
+ }
21
+ .date {
22
+ float: left;
23
+ padding-left: 10px;
24
+ }
25
+ .status {
26
+ float: right;
27
+ padding-right: 10px;
28
+ }
29
+ .seal {
30
+ position: absolute;
31
+ right: 100px;
32
+ top: 120px;
33
+ width: 150px;
34
+ height: 150px;
35
+ /*opacity: 0.5;*/
36
+ z-index: -1;
37
+ }
38
+ </style>
39
+ <div style="margin-bottom: 20px">
40
+ <span style="font-size: 20px">开通卡预览</span>
41
+ </div>
42
+ <div id="printCharge">
43
+ <table border="1" width="100%">
44
+ <tr>
45
+ <td v-for="index in 2"></td>
46
+ <td colspan="4">湖南省澧县城区燃气管道工程</td>
47
+ <td v-for="index in 2"></td>
48
+ </tr>
49
+ <tr>
50
+ <td v-for="index in 2"></td>
51
+ <td colspan="2">用户户内开通卡</td>
52
+ <td >左</td>
53
+ <td >右</td>
54
+ <td >日期</td>
55
+ <td >{{getdate()}}</td>
56
+ </tr>
57
+ <tr>
58
+ <td >使用证编号</td>
59
+ <td ></td>
60
+ <td >用户编号</td>
61
+ <td >{{ selectdata.f_userinfo_code }}</td>
62
+ <td >内</td>
63
+ <td >外</td>
64
+ <td >电话号码</td>
65
+ <td >{{ selectdata.f_phone }}</td>
66
+ </tr>
67
+ <tr>
68
+ <td >用户姓名</td>
69
+ <td >{{selectdata.f_user_name}}</td>
70
+ <td >地址(单位)</td>
71
+ <td colspan="3">{{ selectdata.f_address }}</td>
72
+ <td >开通日期</td>
73
+ <td ></td>
74
+ </tr>
75
+ <tr>
76
+ <td >表号</td>
77
+ <td ></td>
78
+ <td >表底数</td>
79
+ <td ></td>
80
+ <td >开通人</td>
81
+ <td ></td>
82
+ <td >协议号</td>
83
+ <td >{{ selectdata.f_apply_num }}</td>
84
+ </tr>
85
+ <tr>
86
+ <td >热(□外□购)</td>
87
+ <td ></td>
88
+ <td >灶(□外□购)</td>
89
+ <td ></td>
90
+ <td colspan="2">抽油烟机(□外□购)</td>
91
+ <td ></td>
92
+ <td ></td>
93
+ </tr>
94
+ <tr>
95
+ <td >波纹管(米)</td>
96
+ <td ></td>
97
+ <td >管网检测()</td>
98
+ <td ></td>
99
+ <td >软管(米)</td>
100
+ <td ></td>
101
+ <td >用户签名</td>
102
+ <td ></td>
103
+ </tr>
104
+ </table>
105
+ </div>
106
+ <div style="margin-top: 20px">
107
+ <span :style="billnum.isOk?'color: blue;font-weight: bold':'color: red;font-weight: bold'">{{billnum.msg}}</span>
108
+ </div>
109
+ <print-element v-show="false" v-ref:print id='printCharge' styleid='printChargeStyle'
110
+ top='20' left='30' width='100%' height='100%'>
111
+ </print-element>
112
+ </template>
113
+
114
+ <script>
115
+ import {toStandardDateString, toStandardTimeString, toStartAndEndDateString} from '../../../components/Util'
116
+ import {HttpResetClass} from 'vue-client'
117
+ export default {
118
+ title: '打印票据',
119
+ props: ['selectdata','billnum'],
120
+ data () {
121
+ return {
122
+ billnum: ''
123
+ }
124
+ },
125
+ ready () {
126
+ },
127
+ methods: {
128
+ // 获取当前时间 格式 2023-07-09 23:59:59
129
+ getdate () {
130
+ return toStandardDateString()
131
+ }
132
+ },
133
+ computed: {
134
+ }
135
+ }
136
+ </script>
137
+
138
+ <style scoped>
139
+
140
+ </style>
@@ -0,0 +1,105 @@
1
+ <template>
2
+ <style id="printChargeStyle">
3
+ td{
4
+ height: 30px;
5
+ /*text-align: center;*/
6
+ width: 12.5%;
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
+ .orgs {
18
+ border-bottom: 2px solid;
19
+ padding: 5px;
20
+ }
21
+ .date {
22
+ float: left;
23
+ padding-left: 10px;
24
+ }
25
+ .status {
26
+ float: right;
27
+ padding-right: 10px;
28
+ }
29
+ .seal {
30
+ position: absolute;
31
+ right: 100px;
32
+ top: 120px;
33
+ width: 150px;
34
+ height: 150px;
35
+ /*opacity: 0.5;*/
36
+ z-index: -1;
37
+ }
38
+ </style>
39
+ <div style="margin-bottom: 20px">
40
+ <span style="font-size: 20px">{{ name }}预览</span>
41
+ </div>
42
+ <div id="printCharge">
43
+ <table border="1" width="100%">
44
+ <tr v-for="index in 2">
45
+ <td colspan="4"></td>
46
+ </tr>
47
+ <tr>
48
+ <td></td>
49
+ <td>{{selectdata.f_user_name}}</td>
50
+ <td></td>
51
+ <td>{{selectdata.f_phone}}</td>
52
+ </tr>
53
+ <tr>
54
+ <td></td>
55
+ <td colspan="3">{{selectdata.f_address}}</td>
56
+ </tr>
57
+ <tr>
58
+ <td colspan="4"></td>
59
+ </tr>
60
+ <tr>
61
+ <td></td>
62
+ <td colspan="3">{{selectdata.f_apply_num}}</td>
63
+ </tr>
64
+ <tr>
65
+ <td ></td>
66
+ <td ></td>
67
+ <td colspan="2">{{getdate()}}</td>
68
+ </tr>
69
+ </table>
70
+ </div>
71
+ <div style="margin-top: 20px">
72
+ <span :style="billnum.isOk?'color: blue;font-weight: bold':'color: red;font-weight: bold'">{{billnum.msg}}</span>
73
+ </div>
74
+ <print-element v-show="false" v-ref:print id='printCharge' styleid='printChargeStyle'
75
+ top='20' left='30' width='100%' height='100%'>
76
+ </print-element>
77
+ </template>
78
+
79
+ <script>
80
+ import {toStandardDateString, toStandardTimeString, toStartAndEndDateString} from '../../../components/Util'
81
+ import {HttpResetClass} from 'vue-client'
82
+ export default {
83
+ title: '打印票据',
84
+ props: ['selectdata','billnum','name'],
85
+ data () {
86
+ return {
87
+ billnum: ''
88
+ }
89
+ },
90
+ ready () {
91
+ },
92
+ methods: {
93
+ // 获取当前时间 格式 2023-07-09 23:59:59
94
+ getdate () {
95
+ return toStandardTimeString()
96
+ }
97
+ },
98
+ computed: {
99
+ }
100
+ }
101
+ </script>
102
+
103
+ <style scoped>
104
+
105
+ </style>
@@ -2,5 +2,12 @@ import Vue from 'vue'
2
2
 
3
3
  let specialComp = {
4
4
  'service-view': (resolve) => { require(['./pc/ServiceView'], resolve) },
5
+ 'service-control': (resolve) => { require(['./pc/ServiceControl'], resolve) },
6
+ 'exploration-select': (resolve) => { require(['./pc/ExplorationSelect'], resolve) },
7
+ 'apply-print-chargepc': (resolve) => { require(['./pc/printChargepc'], resolve) },
8
+ 'apply-charge-management': (resolve) => { require(['./pc/chargeManagement'], resolve) },
9
+ 'apply-print-activatecard': (resolve) => { require(['./pc/printactivatecard'], resolve) },
10
+ 'apply-print-install': (resolve) => { require(['./pc/printinstall'], resolve) },
11
+ 'add-material-science': (resolve) => { require(['./pc/addMaterialScience'], resolve) }
5
12
  }
6
13
  exports.specialComp = specialComp