manage-client 4.0.80 → 4.0.81
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/filiale/jiaxian/config/exportConfig.js +1 -0
- package/src/filiale/lixianV3/RecordInfoQuery.vue +26 -0
- package/src/filiale/lixianV3/config/exportConfig.js +2 -0
- package/src/filiale/rongcheng/businessquery/ChangeMeterQuery.vue +20 -0
- package/src/filiale/rongcheng/exportConfig.js +1 -0
- package/src/filiale/wuan/RecordInfoQuery.vue +1436 -0
- package/src/filiale/wuan/sale.js +4 -0
package/package.json
CHANGED
|
@@ -505,6 +505,23 @@
|
|
|
505
505
|
close-on-select>
|
|
506
506
|
</v-select>
|
|
507
507
|
</div>
|
|
508
|
+
<div class="col-sm-2 form-group" title="参数名称:【有无铅封】">
|
|
509
|
+
<label class="font_normal_body">有无铅封</label>
|
|
510
|
+
<v-select
|
|
511
|
+
placeholder='有无铅封'
|
|
512
|
+
:value.sync="$parent.$parent.f_hasseal"
|
|
513
|
+
style="width:60%"
|
|
514
|
+
:value-single="true"
|
|
515
|
+
v-model="$parent.$parent.f_hasseal"
|
|
516
|
+
:options='$parent.$parent.hasseal'
|
|
517
|
+
close-on-select>
|
|
518
|
+
</v-select>
|
|
519
|
+
</div>
|
|
520
|
+
<div class="col-sm-2 form-group">
|
|
521
|
+
<label class="font_normal_body">铅封编号</label>
|
|
522
|
+
<input type="text" style="width:60%" class="input_search" v-model="model.f_seal_number"
|
|
523
|
+
condition="f_seal_number = '{}'" placeholder='铅封编号'>
|
|
524
|
+
</div>
|
|
508
525
|
</div>
|
|
509
526
|
</div>
|
|
510
527
|
</criteria>
|
|
@@ -563,6 +580,9 @@
|
|
|
563
580
|
<th>
|
|
564
581
|
<nobr>防盗卡号</nobr>
|
|
565
582
|
</th>
|
|
583
|
+
<th>
|
|
584
|
+
<nobr>铅封编号</nobr>
|
|
585
|
+
</th>
|
|
566
586
|
<th>
|
|
567
587
|
<nobr>品牌</nobr>
|
|
568
588
|
</th>
|
|
@@ -737,6 +757,9 @@
|
|
|
737
757
|
<td style="text-align: center;"><nobr>{{row.f_gas_date}}</nobr></td>
|
|
738
758
|
<td style="text-align: center;"><nobr>{{row.f_gas_person}}</nobr></td>
|
|
739
759
|
<td style="text-align: center;"><nobr>{{row.f_defendcard}}</nobr></td>
|
|
760
|
+
|
|
761
|
+
<td style="text-align: center;"><nobr>{{row.f_seal_number}}</nobr></td>
|
|
762
|
+
|
|
740
763
|
<td style="text-align: center;"><nobr>{{row.f_meter_brand}}</nobr></td>
|
|
741
764
|
<td style="text-align: center;"><nobr>{{row.f_meternumber}}</nobr></td>
|
|
742
765
|
<td style="text-align: center;"><nobr>{{row.f_meter_type}}</nobr></td>
|
|
@@ -1407,6 +1430,9 @@
|
|
|
1407
1430
|
positions() {
|
|
1408
1431
|
return [{label: '全部', value: ''}, ...this.$appdata.getParam('安装位置')]
|
|
1409
1432
|
},
|
|
1433
|
+
hasseal() {
|
|
1434
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('有无铅封')]
|
|
1435
|
+
},
|
|
1410
1436
|
// meterbooks(){
|
|
1411
1437
|
// return [{label: '全部', value: ''}, ...this.$GetSaleParam.getMeterBooks()]
|
|
1412
1438
|
// },
|
|
@@ -172,6 +172,17 @@
|
|
|
172
172
|
close-on-select clear-button>
|
|
173
173
|
</v-select>
|
|
174
174
|
</div>
|
|
175
|
+
<div class="col-sm-2 form-group">
|
|
176
|
+
<label class="font_normal_body">换表方式</label>
|
|
177
|
+
<v-select id="f_meter_change_type"
|
|
178
|
+
v-model="model.f_meter_change_type"
|
|
179
|
+
placeholder='请选择'
|
|
180
|
+
condition="f_meter_change_type ='{}'"
|
|
181
|
+
:value.sync="model.f_meter_change_type"
|
|
182
|
+
:options='$parent.$parent.meter_change'
|
|
183
|
+
close-on-select clear-button>
|
|
184
|
+
</v-select>
|
|
185
|
+
</div>
|
|
175
186
|
<div class="col-sm-2 form-group">
|
|
176
187
|
<label class="font_normal_body">表  号</label>
|
|
177
188
|
<input type="text" style="width:60%" class="input_search" v-model="model.f_meternumber"
|
|
@@ -233,6 +244,9 @@
|
|
|
233
244
|
<th>
|
|
234
245
|
<nobr>换表类型</nobr>
|
|
235
246
|
</th>
|
|
247
|
+
<th>
|
|
248
|
+
<nobr>换表方式</nobr>
|
|
249
|
+
</th>
|
|
236
250
|
<th>
|
|
237
251
|
<nobr>换表费</nobr>
|
|
238
252
|
</th>
|
|
@@ -328,6 +342,9 @@
|
|
|
328
342
|
<td style="text-align: center;">
|
|
329
343
|
<nobr>{{row.f_type}}</nobr>
|
|
330
344
|
</td>
|
|
345
|
+
<td style="text-align: center;">
|
|
346
|
+
<nobr>{{row.f_meter_change_type}}</nobr>
|
|
347
|
+
</td>
|
|
331
348
|
<td style="text-align: center;">
|
|
332
349
|
<nobr>{{row.f_changemeter_fee}}</nobr>
|
|
333
350
|
</td>
|
|
@@ -785,6 +802,9 @@
|
|
|
785
802
|
check_state(){
|
|
786
803
|
return [{label: '通过', value: "通过"},{label: '未通过', value: '未通过'}]
|
|
787
804
|
},
|
|
805
|
+
meter_change(){
|
|
806
|
+
return [{label: '线上换表', value: "线上换表"},{label: '线下换表', value: '线下换表'}]
|
|
807
|
+
},
|
|
788
808
|
payments() {
|
|
789
809
|
return [{label: '全部', value: ''}, ...this.$appdata.getParam('付款方式')]
|
|
790
810
|
}
|