apply-clients 3.3.35 → 3.3.36
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
CHANGED
|
@@ -131,6 +131,8 @@
|
|
|
131
131
|
<th style="white-space: nowrap;">流程状态</th>
|
|
132
132
|
<th style="white-space: nowrap;">收费项目</th>
|
|
133
133
|
<th style="white-space: nowrap;">合同金额</th>
|
|
134
|
+
<th style="white-space: nowrap;">表号</th>
|
|
135
|
+
<th style="white-space: nowrap;">防盗卡号</th>
|
|
134
136
|
<th style="white-space: nowrap;">报建日期</th>
|
|
135
137
|
<th style="white-space: nowrap;">客户编号</th>
|
|
136
138
|
<th style="white-space: nowrap;">操作</th>
|
|
@@ -168,6 +170,12 @@
|
|
|
168
170
|
<td style="text-align: center;">
|
|
169
171
|
<nobr><font>{{row.f_contract_money}}</font></nobr>
|
|
170
172
|
</td>
|
|
173
|
+
<td style="text-align: center;">
|
|
174
|
+
<nobr><font>{{row.f_meternumber}}</font></nobr>
|
|
175
|
+
</td>
|
|
176
|
+
<td style="text-align: center;">
|
|
177
|
+
<nobr><font>{{row.f_card_number}}</font></nobr>
|
|
178
|
+
</td>
|
|
171
179
|
<td style="text-align: center;">
|
|
172
180
|
<nobr><font>{{row.f_apply_date}}</font></nobr>
|
|
173
181
|
</td>
|
|
@@ -29,6 +29,12 @@
|
|
|
29
29
|
<div class="form-group col-sm-3 button-range">
|
|
30
30
|
<button class="button_search button_spacing" @click="$parent.$parent.search()" v-el:cx>查询</button>
|
|
31
31
|
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
32
|
+
<export-excel :data="$parent.$parent.getCondition"
|
|
33
|
+
:field="$parent.$parent.getfield"
|
|
34
|
+
sqlurl="rs/logic/applyExportfile"
|
|
35
|
+
sql-name="getOldApply"
|
|
36
|
+
template-name='旧报装信息导出'
|
|
37
|
+
:choose-col="true"></export-excel>
|
|
32
38
|
<div
|
|
33
39
|
:class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}"
|
|
34
40
|
@click="$parent.$parent.criteriaShow = !$parent.$parent.criteriaShow"
|
|
@@ -142,6 +148,8 @@
|
|
|
142
148
|
<th style="white-space: nowrap;">流程状态</th>
|
|
143
149
|
<th style="white-space: nowrap;">收费项目</th>
|
|
144
150
|
<th style="white-space: nowrap;">合同金额</th>
|
|
151
|
+
<th style="white-space: nowrap;">表号</th>
|
|
152
|
+
<th style="white-space: nowrap;">防盗卡号</th>
|
|
145
153
|
<th style="white-space: nowrap;">报建日期</th>
|
|
146
154
|
<th style="white-space: nowrap;">客户编号</th>
|
|
147
155
|
</tr>
|
|
@@ -178,6 +186,12 @@
|
|
|
178
186
|
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
179
187
|
<nobr><font>{{row.f_contract_money}}</font></nobr>
|
|
180
188
|
</td>
|
|
189
|
+
<td style="text-align: center;">
|
|
190
|
+
<nobr><font>{{row.f_meternumber}}</font></nobr>
|
|
191
|
+
</td>
|
|
192
|
+
<td style="text-align: center;">
|
|
193
|
+
<nobr><font>{{row.f_card_number}}</font></nobr>
|
|
194
|
+
</td>
|
|
181
195
|
<td @click="$parent.$parent.$parent.click(row)" style="text-align: center;">
|
|
182
196
|
<nobr><font>{{row.f_apply_date}}</font></nobr>
|
|
183
197
|
</td>
|
|
@@ -225,7 +239,44 @@ export default {
|
|
|
225
239
|
{label: '商业', value: '商业'},
|
|
226
240
|
{label: '工业', value: '工业'}
|
|
227
241
|
],
|
|
228
|
-
stopReasons: [{label: '全部', value: ''}, ...this.$appdata.getParam('终止原因')]
|
|
242
|
+
stopReasons: [{label: '全部', value: ''}, ...this.$appdata.getParam('终止原因')],
|
|
243
|
+
getfield: {
|
|
244
|
+
'f_userinfo_code': '用户编号',
|
|
245
|
+
'f_apply_num': '工程编号',
|
|
246
|
+
'f_apply_type': '报建类型',
|
|
247
|
+
'f_sub_state': '流程状态',
|
|
248
|
+
'f_user_name': '单位名称',
|
|
249
|
+
'f_contact': '联系人',
|
|
250
|
+
'f_phone': '电话',
|
|
251
|
+
'f_idnumber': '身份证号',
|
|
252
|
+
'f_gas_nature': '用气性质',
|
|
253
|
+
'f_apply_date': '报建接收时间',
|
|
254
|
+
'f_apply_check_date': '报建审核日期',
|
|
255
|
+
'f_contract_money': '合同价格',
|
|
256
|
+
'f_payment_term': '收费项目',
|
|
257
|
+
'f_unit_name': '集收单位',
|
|
258
|
+
'f_address': '地址',
|
|
259
|
+
'f_apply_remarks': '报建备注',
|
|
260
|
+
'f_construction_unit': '施工项目部',
|
|
261
|
+
'f_construction_worker': '施工负责人',
|
|
262
|
+
'f_completion_time': '施工完成时间',
|
|
263
|
+
'f_meternumber': '表号',
|
|
264
|
+
'f_card_number': '防盗卡号',
|
|
265
|
+
'f_construction_check_time': '施工审核时间',
|
|
266
|
+
'f_plan_date': '计划通气时间',
|
|
267
|
+
'f_gas_price_name': '计划气价名称',
|
|
268
|
+
'f_remark_stask': '计划通气备注',
|
|
269
|
+
'f_ventilate_date': '通气日期',
|
|
270
|
+
'f_gas_remarks': '通气备注',
|
|
271
|
+
'f_acceptor': '验收人',
|
|
272
|
+
'f_acceptor_date': '验收日期',
|
|
273
|
+
'f_acceptance_is_qualified': '验收结果',
|
|
274
|
+
'f_price_name': '气价名称',
|
|
275
|
+
'f_stop_reason': '终止原因',
|
|
276
|
+
'f_stop_user': '终止人员',
|
|
277
|
+
'f_stop_date': '终止时间',
|
|
278
|
+
'f_stop_remarks': '终止备注'
|
|
279
|
+
}
|
|
229
280
|
}
|
|
230
281
|
},
|
|
231
282
|
ready () {
|
|
@@ -253,6 +304,13 @@ export default {
|
|
|
253
304
|
}
|
|
254
305
|
this.curorgid = val
|
|
255
306
|
}
|
|
307
|
+
},
|
|
308
|
+
computed: {
|
|
309
|
+
getCondition () {
|
|
310
|
+
return {
|
|
311
|
+
condition: this.$refs.cp.$refs.cri.condition + ` and f_orgid = '${this.curorgid[0]}'`
|
|
312
|
+
}
|
|
313
|
+
}
|
|
256
314
|
}
|
|
257
315
|
}
|
|
258
316
|
</script>
|