manage-client 3.3.239 → 3.3.241
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/components/sale/config/exportConfig.js +2 -1
- package/src/components/webmeter/report/ReportList.vue +8 -1
- package/src/filiale/hantou/RecordInfoQuery.vue +1512 -0
- package/src/filiale/hantou/sale.js +4 -0
- package/src/filiale/kelai/NewAccountQuery.vue +9 -17
- package/src/filiale/kelai/exportConfig.js +6 -3
- package/src/filiale/yangchun/ChargeQuery.vue +7 -1
- package/src/filiale/yangchun/HandplanQuery.vue +7 -1
- package/src/filiale/yangchun/config/exportConfig.js +4 -2
- package/src/main.js +1 -1
package/package.json
CHANGED
|
@@ -1867,7 +1867,8 @@ export default {
|
|
|
1867
1867
|
'f_magneticInterference': '磁干扰异常',
|
|
1868
1868
|
'f_compensateState': '补偿状态',
|
|
1869
1869
|
'f_gas_type': '抵扣单价',
|
|
1870
|
-
'f_current_deduct_amount': '
|
|
1870
|
+
'f_current_deduct_amount': '本次抵扣金额',
|
|
1871
|
+
'f_remaining_deduct_amount': '剩余抵扣金额'
|
|
1871
1872
|
},
|
|
1872
1873
|
RechargeInstruct: {
|
|
1873
1874
|
'f_userinfo_code': '客户编号',
|
|
@@ -148,7 +148,10 @@
|
|
|
148
148
|
<nobr>抵扣单价</nobr>
|
|
149
149
|
</th>
|
|
150
150
|
<th>
|
|
151
|
-
<nobr
|
|
151
|
+
<nobr>本次抵扣金额</nobr>
|
|
152
|
+
</th>
|
|
153
|
+
<th>
|
|
154
|
+
<nobr>剩余抵扣金额</nobr>
|
|
152
155
|
</th>
|
|
153
156
|
<!--<th><nobr>每小时上报量</nobr></th>-->
|
|
154
157
|
</tr>
|
|
@@ -185,6 +188,10 @@
|
|
|
185
188
|
<td style="text-align: center;">
|
|
186
189
|
<nobr>{{ row.f_current_deduct_amount }}</nobr>
|
|
187
190
|
</td>
|
|
191
|
+
<td style="text-align: center;">
|
|
192
|
+
<nobr>{{ row.f_remaining_deduct_amount }}</nobr>
|
|
193
|
+
</td>
|
|
194
|
+
|
|
188
195
|
<!-- <th style="text-align:center"><nobr>{{row.f_nsturalgas_data}}</nobr></th>-->
|
|
189
196
|
<!-- <th style="text-align:center"><nobr><span @click="$parent.$parent.$parent.showdetail(row.f_nsturalgas_data)"><a>查看</a></span></nobr></th>-->
|
|
190
197
|
<!--<th style="text-align:center">-->
|