manage-client 3.3.133 → 3.3.134
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 +189 -189
- package/package.json +111 -111
- package/src/components/webmeter/DrillData/UserGasAll.vue +5 -1
- package/src/components/webmeter/instruction/NewQueryInstruct.vue +1 -1
- package/src/components/webmeter/operationValueRecord.vue +2 -2
- package/src/filiale/haile/sale/businessquery/ChargeQuery.vue +18 -18
- package/src/filiale/yuncheng/RecordInfoQuery.vue +1447 -0
- package/src/filiale/yuncheng/config/exportConfig.js +1 -1
- package/src/filiale/yuncheng/sale.js +4 -0
- package/src/main.js +72 -68
|
@@ -371,10 +371,10 @@
|
|
|
371
371
|
<nobr>金额</nobr>
|
|
372
372
|
</th>
|
|
373
373
|
<th>
|
|
374
|
-
<nobr
|
|
374
|
+
<nobr>阀门状态</nobr>
|
|
375
375
|
</th>
|
|
376
376
|
<th>
|
|
377
|
-
<nobr
|
|
377
|
+
<nobr>开关阀原因</nobr>
|
|
378
378
|
</th>
|
|
379
379
|
<th>
|
|
380
380
|
<nobr>余额</nobr>
|
|
@@ -553,12 +553,12 @@
|
|
|
553
553
|
<th>
|
|
554
554
|
<nobr>三阶气费</nobr>
|
|
555
555
|
</th>
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
556
|
+
<th>
|
|
557
|
+
<nobr>用气量</nobr>
|
|
558
|
+
</th>
|
|
559
|
+
<th>
|
|
560
|
+
<nobr>用气金额</nobr>
|
|
561
|
+
</th>
|
|
562
562
|
|
|
563
563
|
<th><nobr>附件</nobr></th>
|
|
564
564
|
</tr>
|
|
@@ -591,13 +591,11 @@
|
|
|
591
591
|
<td style="text-align: center;">
|
|
592
592
|
<nobr>{{row.fee}}</nobr>
|
|
593
593
|
</td>
|
|
594
|
-
<!--用气量-->
|
|
595
594
|
<td style="text-align: center;">
|
|
596
|
-
<nobr>{{row.
|
|
595
|
+
<nobr>{{row.f_fm_state}}</nobr>
|
|
597
596
|
</td>
|
|
598
|
-
<!--用气金额-->
|
|
599
597
|
<td style="text-align: center;">
|
|
600
|
-
<nobr>{{row.
|
|
598
|
+
<nobr>{{row.f_fm_reason}}</nobr>
|
|
601
599
|
</td>
|
|
602
600
|
<!--余额-->
|
|
603
601
|
<td style="text-align: center;">
|
|
@@ -776,12 +774,14 @@
|
|
|
776
774
|
<td style="text-align: center;">
|
|
777
775
|
<nobr>{{(row.f_stair3fee - 0).toFixed(2)}}</nobr>
|
|
778
776
|
</td>
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
</
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
777
|
+
<!--用气量-->
|
|
778
|
+
<td style="text-align: center;">
|
|
779
|
+
<nobr>{{row.f_oughtamount}}</nobr>
|
|
780
|
+
</td>
|
|
781
|
+
<!--用气金额-->
|
|
782
|
+
<td style="text-align: center;">
|
|
783
|
+
<nobr>{{row.f_oughtfee}}</nobr>
|
|
784
|
+
</td>
|
|
785
785
|
<td style="text-align: center;"><nobr>
|
|
786
786
|
<button style=" height: 28px;line-height: 16px;" class="button_search button_spacing width-60" @click.stop="$parent.$parent.$parent.view(row)">查看</button>
|
|
787
787
|
</nobr></td>
|