apply-clients 3.3.110 → 3.3.111
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 +128 -127
- package/package.json +1 -1
- package/src/components/android/AppSign.vue +154 -143
- package/src/components/android/Process/AppServiceControl.vue +3 -1
- package/src/components/android/Process/Processes/AppDevicesManagement.vue +513 -513
- package/src/components/android/Supervisory/AppSupervisoryCart.vue +152 -152
- 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/Service/ServiceControl.vue +3 -1
- package/.gradle/4.9/fileChanges/last-build.bin +0 -0
- package/.gradle/4.9/fileHashes/fileHashes.lock +0 -0
- package/yarn.lock +0 -9013
|
@@ -1,168 +1,168 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<style id="printIgnitionBillStyle">
|
|
3
|
-
td{
|
|
4
|
-
height: 30px;
|
|
5
|
-
text-align: center;
|
|
6
|
-
width: 100px;
|
|
7
|
-
}
|
|
8
|
-
.sign {
|
|
9
|
-
text-align: left
|
|
10
|
-
}
|
|
11
|
-
table{
|
|
12
|
-
margin: auto;
|
|
13
|
-
width: 100%;
|
|
14
|
-
border-collapse:collapse;
|
|
15
|
-
border: 1px solid black;
|
|
16
|
-
}
|
|
17
|
-
h1,h2,h3,h4,h5,h6 {
|
|
18
|
-
text-align: center;
|
|
19
|
-
}
|
|
20
|
-
.material {
|
|
21
|
-
text-align: left;
|
|
22
|
-
vertical-align: top;
|
|
23
|
-
padding: 10px;
|
|
24
|
-
}
|
|
25
|
-
</style>
|
|
26
|
-
|
|
27
|
-
<div id="printIgnitionBill">
|
|
28
|
-
<h2><span style="letter-spacing: 15px">用户服务中心点火通知</span></h2>
|
|
29
|
-
<table border="1">
|
|
30
|
-
<tr>
|
|
31
|
-
<td>用户姓名</td>
|
|
32
|
-
<td colspan="3">{{ selectdata.f_user_name }}</td>
|
|
33
|
-
<td>电    话</td>
|
|
34
|
-
<td colspan="2">{{ selectdata.f_phone }}</td>
|
|
35
|
-
</tr>
|
|
36
|
-
<tr>
|
|
37
|
-
<td>用户地址</td>
|
|
38
|
-
<td colspan="6">{{ selectdata.f_address }}</td>
|
|
39
|
-
</tr>
|
|
40
|
-
<tr>
|
|
41
|
-
<td>计量表品牌/规格</td>
|
|
42
|
-
<td colspan="3">{{ selectdata.f_meter_style }}</td>
|
|
43
|
-
<td>进气方向</td>
|
|
44
|
-
<td>  左  </td>
|
|
45
|
-
<td>  右  </td>
|
|
46
|
-
</tr>
|
|
47
|
-
<tr>
|
|
48
|
-
<td>表缸号</td>
|
|
49
|
-
<td>{{ selectdata.f_meternumber }}</td>
|
|
50
|
-
<td>防盗卡号</td>
|
|
51
|
-
<td>{{ selectdata.f_metertitles }}</td>
|
|
52
|
-
<td>用户编号</td>
|
|
53
|
-
<td colspan="2">{{ selectdata.f_userinfo_code }}</td>
|
|
54
|
-
</tr>
|
|
55
|
-
<tr>
|
|
56
|
-
<td>气表底数</td>
|
|
57
|
-
<td>{{ f_meter_base }}</td>
|
|
58
|
-
<td>点火时间</td>
|
|
59
|
-
<td colspan="2">{{ selectdata.finishtime }}</td>
|
|
60
|
-
<td>派工时间</td>
|
|
61
|
-
<td>{{ selectdata.finishtime1 }}</td>
|
|
62
|
-
</tr>
|
|
63
|
-
<tr>
|
|
64
|
-
<td>
|
|
65
|
-
<p>点火情况</p>
|
|
66
|
-
<p>(气密性检查)</p>
|
|
67
|
-
</td>
|
|
68
|
-
<td colspan="6" class="material">
|
|
69
|
-
<p>客户如认可以下内容请签名,如有不认可之处请说明情况</p>
|
|
70
|
-
<p> 1、气密性检测合格,已对各接口处进行查漏无泄漏</p>
|
|
71
|
-
<p> 2、燃气表运转正常,灶具点火测试正常,使用金属波纹管</p>
|
|
72
|
-
<p> 3、已向用户讲解安全常识及注意事项 ,发放《用户使用手册》并张贴提示标签</p>
|
|
73
|
-
<p> 4、灶具品牌: ______________________ 油烟机品牌: ____________________</p>
|
|
74
|
-
<p> 5、热水器品牌: ____________________ 壁挂炉品牌: _____________________</p>
|
|
75
|
-
<p> 6、金属波纹管品牌:___________________</p>
|
|
76
|
-
</td>
|
|
77
|
-
</tr>
|
|
78
|
-
<tr>
|
|
79
|
-
<td colspan="2" rowspan="2" class="sign">用户签字    </td>
|
|
80
|
-
<td>收费金额</td>
|
|
81
|
-
<td colspan="2">{{ selectdata.f_charge_money }}</td>
|
|
82
|
-
<td>点火人</td>
|
|
83
|
-
<td>{{ selectdata.f_igniter_people }}</td>
|
|
84
|
-
</tr>
|
|
85
|
-
<tr>
|
|
86
|
-
<td>收费内容</td>
|
|
87
|
-
<td colspan="2">{{ selectdata.f_payment_term }}</td>
|
|
88
|
-
<td>审核</td>
|
|
89
|
-
<td></td>
|
|
90
|
-
</tr>
|
|
91
|
-
</table>
|
|
92
|
-
</div>
|
|
93
|
-
|
|
94
|
-
<print-element v-show="false" v-ref:print id='printIgnitionBill' styleid='printIgnitionBillStyle'
|
|
95
|
-
top='10' left='30' width='100%' height='100%' :type="type">
|
|
96
|
-
</print-element>
|
|
97
|
-
|
|
98
|
-
</template>
|
|
99
|
-
|
|
100
|
-
<script>
|
|
101
|
-
import { isEmpty } from '../../../Util'
|
|
102
|
-
import {HttpResetClass} from "vue-client";
|
|
103
|
-
Date.prototype.Format = function (fmt) {
|
|
104
|
-
var o = {
|
|
105
|
-
"M+": this.getMonth() + 1, //月份
|
|
106
|
-
"d+": this.getDate(), //日
|
|
107
|
-
"H+": this.getHours(), //小时
|
|
108
|
-
"m+": this.getMinutes(), //分
|
|
109
|
-
"s+": this.getSeconds(), //秒
|
|
110
|
-
"q+": Math.floor((this.getMonth() + 3) / 3), //季度
|
|
111
|
-
"S": this.getMilliseconds() //毫秒
|
|
112
|
-
};
|
|
113
|
-
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
|
|
114
|
-
for (var k in o)
|
|
115
|
-
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
|
|
116
|
-
return fmt;
|
|
117
|
-
}
|
|
118
|
-
export default {
|
|
119
|
-
title: '点火通知单',
|
|
120
|
-
props: {
|
|
121
|
-
selectdata: {
|
|
122
|
-
type: Object
|
|
123
|
-
},
|
|
124
|
-
type: {
|
|
125
|
-
type: String
|
|
126
|
-
}
|
|
127
|
-
},
|
|
128
|
-
data () {
|
|
129
|
-
return {
|
|
130
|
-
showModal: false,
|
|
131
|
-
userfile: null
|
|
132
|
-
}
|
|
133
|
-
},
|
|
134
|
-
ready () {
|
|
135
|
-
},
|
|
136
|
-
methods: {
|
|
137
|
-
print () {
|
|
138
|
-
this.$refs.print.PrintTable()
|
|
139
|
-
}
|
|
140
|
-
},
|
|
141
|
-
computed: {
|
|
142
|
-
parse () {
|
|
143
|
-
return JSON.parse(this.selectdata.f_install_project).toString()
|
|
144
|
-
},
|
|
145
|
-
orgs () {
|
|
146
|
-
return this.$login.f.orgs
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
</script>
|
|
151
|
-
|
|
152
|
-
<style scoped>
|
|
153
|
-
.control-label-justify {
|
|
154
|
-
display: inline-block;
|
|
155
|
-
vertical-align: top;
|
|
156
|
-
width: 130px;
|
|
157
|
-
text-align: justify;
|
|
158
|
-
font-family: PingFang-SC-Bold;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
.control-label-justify::after {
|
|
162
|
-
content: "";
|
|
163
|
-
display: inline-block;
|
|
164
|
-
width: 100%;
|
|
165
|
-
overflow: hidden;
|
|
166
|
-
height: 0;
|
|
167
|
-
}
|
|
168
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<style id="printIgnitionBillStyle">
|
|
3
|
+
td{
|
|
4
|
+
height: 30px;
|
|
5
|
+
text-align: center;
|
|
6
|
+
width: 100px;
|
|
7
|
+
}
|
|
8
|
+
.sign {
|
|
9
|
+
text-align: left
|
|
10
|
+
}
|
|
11
|
+
table{
|
|
12
|
+
margin: auto;
|
|
13
|
+
width: 100%;
|
|
14
|
+
border-collapse:collapse;
|
|
15
|
+
border: 1px solid black;
|
|
16
|
+
}
|
|
17
|
+
h1,h2,h3,h4,h5,h6 {
|
|
18
|
+
text-align: center;
|
|
19
|
+
}
|
|
20
|
+
.material {
|
|
21
|
+
text-align: left;
|
|
22
|
+
vertical-align: top;
|
|
23
|
+
padding: 10px;
|
|
24
|
+
}
|
|
25
|
+
</style>
|
|
26
|
+
|
|
27
|
+
<div id="printIgnitionBill">
|
|
28
|
+
<h2><span style="letter-spacing: 15px">用户服务中心点火通知</span></h2>
|
|
29
|
+
<table border="1">
|
|
30
|
+
<tr>
|
|
31
|
+
<td>用户姓名</td>
|
|
32
|
+
<td colspan="3">{{ selectdata.f_user_name }}</td>
|
|
33
|
+
<td>电    话</td>
|
|
34
|
+
<td colspan="2">{{ selectdata.f_phone }}</td>
|
|
35
|
+
</tr>
|
|
36
|
+
<tr>
|
|
37
|
+
<td>用户地址</td>
|
|
38
|
+
<td colspan="6">{{ selectdata.f_address }}</td>
|
|
39
|
+
</tr>
|
|
40
|
+
<tr>
|
|
41
|
+
<td>计量表品牌/规格</td>
|
|
42
|
+
<td colspan="3">{{ selectdata.f_meter_style }}</td>
|
|
43
|
+
<td>进气方向</td>
|
|
44
|
+
<td>  左  </td>
|
|
45
|
+
<td>  右  </td>
|
|
46
|
+
</tr>
|
|
47
|
+
<tr>
|
|
48
|
+
<td>表缸号</td>
|
|
49
|
+
<td>{{ selectdata.f_meternumber }}</td>
|
|
50
|
+
<td>防盗卡号</td>
|
|
51
|
+
<td>{{ selectdata.f_metertitles }}</td>
|
|
52
|
+
<td>用户编号</td>
|
|
53
|
+
<td colspan="2">{{ selectdata.f_userinfo_code }}</td>
|
|
54
|
+
</tr>
|
|
55
|
+
<tr>
|
|
56
|
+
<td>气表底数</td>
|
|
57
|
+
<td>{{ f_meter_base }}</td>
|
|
58
|
+
<td>点火时间</td>
|
|
59
|
+
<td colspan="2">{{ selectdata.finishtime }}</td>
|
|
60
|
+
<td>派工时间</td>
|
|
61
|
+
<td>{{ selectdata.finishtime1 }}</td>
|
|
62
|
+
</tr>
|
|
63
|
+
<tr>
|
|
64
|
+
<td>
|
|
65
|
+
<p>点火情况</p>
|
|
66
|
+
<p>(气密性检查)</p>
|
|
67
|
+
</td>
|
|
68
|
+
<td colspan="6" class="material">
|
|
69
|
+
<p>客户如认可以下内容请签名,如有不认可之处请说明情况</p>
|
|
70
|
+
<p> 1、气密性检测合格,已对各接口处进行查漏无泄漏</p>
|
|
71
|
+
<p> 2、燃气表运转正常,灶具点火测试正常,使用金属波纹管</p>
|
|
72
|
+
<p> 3、已向用户讲解安全常识及注意事项 ,发放《用户使用手册》并张贴提示标签</p>
|
|
73
|
+
<p> 4、灶具品牌: ______________________ 油烟机品牌: ____________________</p>
|
|
74
|
+
<p> 5、热水器品牌: ____________________ 壁挂炉品牌: _____________________</p>
|
|
75
|
+
<p> 6、金属波纹管品牌:___________________</p>
|
|
76
|
+
</td>
|
|
77
|
+
</tr>
|
|
78
|
+
<tr>
|
|
79
|
+
<td colspan="2" rowspan="2" class="sign">用户签字    </td>
|
|
80
|
+
<td>收费金额</td>
|
|
81
|
+
<td colspan="2">{{ selectdata.f_charge_money }}</td>
|
|
82
|
+
<td>点火人</td>
|
|
83
|
+
<td>{{ selectdata.f_igniter_people }}</td>
|
|
84
|
+
</tr>
|
|
85
|
+
<tr>
|
|
86
|
+
<td>收费内容</td>
|
|
87
|
+
<td colspan="2">{{ selectdata.f_payment_term }}</td>
|
|
88
|
+
<td>审核</td>
|
|
89
|
+
<td></td>
|
|
90
|
+
</tr>
|
|
91
|
+
</table>
|
|
92
|
+
</div>
|
|
93
|
+
|
|
94
|
+
<print-element v-show="false" v-ref:print id='printIgnitionBill' styleid='printIgnitionBillStyle'
|
|
95
|
+
top='10' left='30' width='100%' height='100%' :type="type">
|
|
96
|
+
</print-element>
|
|
97
|
+
|
|
98
|
+
</template>
|
|
99
|
+
|
|
100
|
+
<script>
|
|
101
|
+
import { isEmpty } from '../../../Util'
|
|
102
|
+
import {HttpResetClass} from "vue-client";
|
|
103
|
+
Date.prototype.Format = function (fmt) {
|
|
104
|
+
var o = {
|
|
105
|
+
"M+": this.getMonth() + 1, //月份
|
|
106
|
+
"d+": this.getDate(), //日
|
|
107
|
+
"H+": this.getHours(), //小时
|
|
108
|
+
"m+": this.getMinutes(), //分
|
|
109
|
+
"s+": this.getSeconds(), //秒
|
|
110
|
+
"q+": Math.floor((this.getMonth() + 3) / 3), //季度
|
|
111
|
+
"S": this.getMilliseconds() //毫秒
|
|
112
|
+
};
|
|
113
|
+
if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
|
|
114
|
+
for (var k in o)
|
|
115
|
+
if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
|
|
116
|
+
return fmt;
|
|
117
|
+
}
|
|
118
|
+
export default {
|
|
119
|
+
title: '点火通知单',
|
|
120
|
+
props: {
|
|
121
|
+
selectdata: {
|
|
122
|
+
type: Object
|
|
123
|
+
},
|
|
124
|
+
type: {
|
|
125
|
+
type: String
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
data () {
|
|
129
|
+
return {
|
|
130
|
+
showModal: false,
|
|
131
|
+
userfile: null
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
ready () {
|
|
135
|
+
},
|
|
136
|
+
methods: {
|
|
137
|
+
print () {
|
|
138
|
+
this.$refs.print.PrintTable()
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
computed: {
|
|
142
|
+
parse () {
|
|
143
|
+
return JSON.parse(this.selectdata.f_install_project).toString()
|
|
144
|
+
},
|
|
145
|
+
orgs () {
|
|
146
|
+
return this.$login.f.orgs
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
</script>
|
|
151
|
+
|
|
152
|
+
<style scoped>
|
|
153
|
+
.control-label-justify {
|
|
154
|
+
display: inline-block;
|
|
155
|
+
vertical-align: top;
|
|
156
|
+
width: 130px;
|
|
157
|
+
text-align: justify;
|
|
158
|
+
font-family: PingFang-SC-Bold;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.control-label-justify::after {
|
|
162
|
+
content: "";
|
|
163
|
+
display: inline-block;
|
|
164
|
+
width: 100%;
|
|
165
|
+
overflow: hidden;
|
|
166
|
+
height: 0;
|
|
167
|
+
}
|
|
168
|
+
</style>
|
|
@@ -1260,7 +1260,8 @@ export default {
|
|
|
1260
1260
|
"sid":"",
|
|
1261
1261
|
"bjqtype":"",
|
|
1262
1262
|
"f_process_id":"",
|
|
1263
|
-
"bjqstate":""
|
|
1263
|
+
"bjqstate":"",
|
|
1264
|
+
"f_userinfo_code":""
|
|
1264
1265
|
}
|
|
1265
1266
|
let numOne = [];
|
|
1266
1267
|
this.show_data.onetomany.forEach(item=>{
|
|
@@ -1296,6 +1297,7 @@ export default {
|
|
|
1296
1297
|
datatemp.f_bjq_lng = this.show_data.templatlng.baidutemplng
|
|
1297
1298
|
datatemp.f_bjq_lat = this.show_data.templatlng.baidutemplat
|
|
1298
1299
|
|
|
1300
|
+
bjqststedata.f_userinfo_code = this.show_data.f_userinfo_code
|
|
1299
1301
|
|
|
1300
1302
|
//判断是否推送 及推送的状态
|
|
1301
1303
|
//查询是否存在, 以型号及厂家判断
|
|
Binary file
|
|
Binary file
|