apply-clients 5.0.35-ezhou-9 → 5.0.35-ezhou-11
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/package.json +1 -1
- package/src/apply.js +1 -0
- package/src/components/product/Overview/overview.vue +217 -0
- package/src/components/product/Process/ExplorationSelect.vue +802 -711
- package/src/components/product/Process/Processes/Service/ApplyChargeSearch.vue +403 -403
- package/src/components/product/Process/Processes/Service/ServiceControl.vue +2282 -2256
- package/src/components/product/Process/Processes/selectUserinfo.vue +184 -184
package/package.json
CHANGED
package/src/apply.js
CHANGED
|
@@ -156,6 +156,7 @@ export default function () {
|
|
|
156
156
|
Vue.component('apply-report', (resolve) => { require(['./components/product/applyReport/ApplyReport'], resolve) })
|
|
157
157
|
|
|
158
158
|
Vue.component('print-report-order', (resolve) => { require(['./components/product/applyReport/PrintApplyReport'], resolve) })
|
|
159
|
+
Vue.component('overview', (resolve) => { require(['./components/product/Overview/overview'], resolve) })
|
|
159
160
|
/** 工程管理 **/
|
|
160
161
|
Vue.component('engineer-manage', (resolve) => { require(['./components/product/EngineeringManagement/EngineeringManagement'], resolve) })
|
|
161
162
|
Vue.component('engineer-select', (resolve) => { require(['./components/product/EngineeringManagement/EngineeringSelect'], resolve) })
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<style id="style">
|
|
3
|
+
td{
|
|
4
|
+
height: 30px;
|
|
5
|
+
padding: 0px;
|
|
6
|
+
text-align: center;
|
|
7
|
+
}
|
|
8
|
+
.cen{
|
|
9
|
+
text-align: center;
|
|
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
|
+
</style>
|
|
21
|
+
<div id="print">
|
|
22
|
+
<table v-if="overviewname == '打印表1'" border="1">
|
|
23
|
+
<tr>
|
|
24
|
+
<th colspan="6" ><h4>竣工工程移交记录表</h4></th>
|
|
25
|
+
</tr>
|
|
26
|
+
<tr>
|
|
27
|
+
<td colspan="2" class="cen">工程名称</td>
|
|
28
|
+
<td colspan="2" class="cen">{{ report.f_entry_name }}</td>
|
|
29
|
+
<td class="cen">施工单位</td>
|
|
30
|
+
<td class="cen">{{ report.f_construction_unit }}</td>
|
|
31
|
+
</tr>
|
|
32
|
+
<tr>
|
|
33
|
+
<td colspan="2" class="cen">合同编号</td>
|
|
34
|
+
<td colspan="2" class="cen"></td>
|
|
35
|
+
<td class="cen">移交日期</td>
|
|
36
|
+
<td class="cen"></td>
|
|
37
|
+
</tr>
|
|
38
|
+
<tr>
|
|
39
|
+
<td rowspan="12" class="cen">移交实物量</td>
|
|
40
|
+
<td class="cen">分项内容</td>
|
|
41
|
+
<td class="cen">规格型号</td>
|
|
42
|
+
<td class="cen">单位</td>
|
|
43
|
+
<td class="cen">数量</td>
|
|
44
|
+
<td class="cen">生产厂家</td>
|
|
45
|
+
</tr>
|
|
46
|
+
<tr>
|
|
47
|
+
<td rowspan="4" class="cen">计量器具</td>
|
|
48
|
+
<td class="cen"></td>
|
|
49
|
+
<td class="cen"></td>
|
|
50
|
+
<td class="cen"></td>
|
|
51
|
+
<td class="cen"></td>
|
|
52
|
+
</tr>
|
|
53
|
+
<tr v-for="index in 3" >
|
|
54
|
+
<td class="cen"></td>
|
|
55
|
+
<td class="cen"></td>
|
|
56
|
+
<td class="cen"></td>
|
|
57
|
+
<td class="cen"></td>
|
|
58
|
+
</tr>
|
|
59
|
+
|
|
60
|
+
<tr>
|
|
61
|
+
<td rowspan="7" class="cen">户内管道(分中低压)</td>
|
|
62
|
+
<td class="cen"></td>
|
|
63
|
+
<td class="cen"></td>
|
|
64
|
+
<td class="cen"></td>
|
|
65
|
+
<td class="cen"></td>
|
|
66
|
+
</tr>
|
|
67
|
+
<tr v-for="index in 6" >
|
|
68
|
+
<td class="cen"></td>
|
|
69
|
+
<td class="cen"></td>
|
|
70
|
+
<td class="cen"></td>
|
|
71
|
+
<td class="cen"></td>
|
|
72
|
+
</tr>
|
|
73
|
+
<tr>
|
|
74
|
+
<td rowspan="3" colspan="2" class="cen">移交工程信息</td>
|
|
75
|
+
<td class="cen">工程地址</td>
|
|
76
|
+
<td colspan="3" class="cen">{{report.f_address}}</td>
|
|
77
|
+
</tr>
|
|
78
|
+
<tr>
|
|
79
|
+
<td class="cen">开发商名称</td>
|
|
80
|
+
<td colspan="3" class="cen"></td>
|
|
81
|
+
</tr>
|
|
82
|
+
<tr>
|
|
83
|
+
<td class="cen">联系人及电话</td>
|
|
84
|
+
<td colspan="3" class="cen"><h4>{{report.f_user_name}} {{report.f_phone}} </h4></td>
|
|
85
|
+
</tr>
|
|
86
|
+
<tr>
|
|
87
|
+
<td rowspan="3" colspan="2" class="cen">工程遗留问题说明</td>
|
|
88
|
+
<td class="cen"></td>
|
|
89
|
+
<td class="cen"></td>
|
|
90
|
+
<td class="cen"></td>
|
|
91
|
+
<td class="cen"></td>
|
|
92
|
+
</tr>
|
|
93
|
+
<tr v-for="index in 2" >
|
|
94
|
+
<td class="cen"></td>
|
|
95
|
+
<td class="cen"></td>
|
|
96
|
+
<td class="cen"></td>
|
|
97
|
+
<td class="cen"></td>
|
|
98
|
+
</tr>
|
|
99
|
+
<tr>
|
|
100
|
+
<td colspan="2" class="cen">移交方</td>
|
|
101
|
+
<td rowspan="2" class="cen"></td>
|
|
102
|
+
<td colspan="2" class="cen">接收方</td>
|
|
103
|
+
<td rowspan="2" class="cen"></td>
|
|
104
|
+
</tr>
|
|
105
|
+
<tr>
|
|
106
|
+
<td colspan="2" class="cen">工程部</td>
|
|
107
|
+
<td colspan="2" class="cen">客户服务部</td>
|
|
108
|
+
</tr>
|
|
109
|
+
<tr>
|
|
110
|
+
<td colspan="1">备注:</td>
|
|
111
|
+
<td colspan="5"></td>
|
|
112
|
+
</tr>
|
|
113
|
+
</table>
|
|
114
|
+
<table v-if="overviewname == '打印表2'" border="1">
|
|
115
|
+
<tr>
|
|
116
|
+
<th colspan="6" ><h4>竣工工程移交记录表</h4></th>
|
|
117
|
+
</tr>
|
|
118
|
+
<tr>
|
|
119
|
+
<td colspan="2" class="cen">工程名称</td>
|
|
120
|
+
<td colspan="2" class="cen">{{ report.f_entry_name }}</td>
|
|
121
|
+
<td class="cen">施工单位</td>
|
|
122
|
+
<td class="cen">{{ report.f_construction_unit }}</td>
|
|
123
|
+
</tr>
|
|
124
|
+
<tr>
|
|
125
|
+
<td colspan="2" class="cen">合同编号</td>
|
|
126
|
+
<td colspan="2" class="cen"></td>
|
|
127
|
+
<td class="cen">移交日期</td>
|
|
128
|
+
<td class="cen"></td>
|
|
129
|
+
</tr>
|
|
130
|
+
<tr>
|
|
131
|
+
<td rowspan="19" class="cen">移交实物量</td>
|
|
132
|
+
<td class="cen">分项内容</td>
|
|
133
|
+
<td class="cen">规格型号</td>
|
|
134
|
+
<td class="cen">单位</td>
|
|
135
|
+
<td class="cen">数量</td>
|
|
136
|
+
<td class="cen">生产厂家</td>
|
|
137
|
+
</tr>
|
|
138
|
+
<tr>
|
|
139
|
+
<td rowspan="10" class="cen">地下部分(含过桥管)(分中低压)</td>
|
|
140
|
+
<td class="cen"></td>
|
|
141
|
+
<td class="cen"></td>
|
|
142
|
+
<td class="cen"></td>
|
|
143
|
+
<td class="cen"></td>
|
|
144
|
+
</tr>
|
|
145
|
+
<tr v-for="index in 9" >
|
|
146
|
+
<td class="cen"></td>
|
|
147
|
+
<td class="cen"></td>
|
|
148
|
+
<td class="cen"></td>
|
|
149
|
+
<td class="cen"></td>
|
|
150
|
+
</tr>
|
|
151
|
+
<tr>
|
|
152
|
+
<td rowspan="4" class="cen">设备设施</td>
|
|
153
|
+
<td class="cen"></td>
|
|
154
|
+
<td class="cen"></td>
|
|
155
|
+
<td class="cen"></td>
|
|
156
|
+
<td class="cen"></td>
|
|
157
|
+
</tr>
|
|
158
|
+
<tr v-for="index in 3" >
|
|
159
|
+
<td class="cen"></td>
|
|
160
|
+
<td class="cen"></td>
|
|
161
|
+
<td class="cen"></td>
|
|
162
|
+
<td class="cen"></td>
|
|
163
|
+
</tr>
|
|
164
|
+
<tr>
|
|
165
|
+
<td rowspan="4" class="cen">架空管</td>
|
|
166
|
+
<td class="cen"></td>
|
|
167
|
+
<td class="cen"></td>
|
|
168
|
+
<td class="cen"></td>
|
|
169
|
+
<td class="cen"></td>
|
|
170
|
+
</tr>
|
|
171
|
+
<tr v-for="index in 3" >
|
|
172
|
+
<td class="cen"></td>
|
|
173
|
+
<td class="cen"></td>
|
|
174
|
+
<td class="cen"></td>
|
|
175
|
+
<td class="cen"></td>
|
|
176
|
+
</tr>
|
|
177
|
+
<tr>
|
|
178
|
+
<td colspan="2" class="cen">移交方</td>
|
|
179
|
+
<td rowspan="2" class="cen"></td>
|
|
180
|
+
<td colspan="2" class="cen">接收方</td>
|
|
181
|
+
<td rowspan="2" class="cen"></td>
|
|
182
|
+
</tr>
|
|
183
|
+
<tr>
|
|
184
|
+
<td colspan="2" class="cen">工程部</td>
|
|
185
|
+
<td colspan="2" class="cen">客户服务部</td>
|
|
186
|
+
</tr>
|
|
187
|
+
<tr>
|
|
188
|
+
<td colspan="1">备注:</td>
|
|
189
|
+
<td colspan="5"></td>
|
|
190
|
+
</tr>
|
|
191
|
+
</table>
|
|
192
|
+
</div>
|
|
193
|
+
|
|
194
|
+
<print-element v-show="false" v-ref:print id='print' styleid='style'
|
|
195
|
+
top='10' left='60' width='100%' height='100%'>
|
|
196
|
+
</print-element>
|
|
197
|
+
</template>
|
|
198
|
+
|
|
199
|
+
<script>
|
|
200
|
+
export default {
|
|
201
|
+
title: '打印统计单',
|
|
202
|
+
props: ['report','overviewname'],
|
|
203
|
+
data () {
|
|
204
|
+
return {}
|
|
205
|
+
},
|
|
206
|
+
ready () {
|
|
207
|
+
},
|
|
208
|
+
methods: {
|
|
209
|
+
},
|
|
210
|
+
computed: {
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
</script>
|
|
214
|
+
|
|
215
|
+
<style scoped>
|
|
216
|
+
|
|
217
|
+
</style>
|