manage-client 3.3.238 → 3.3.240
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 +4 -1
- package/src/components/webmeter/report/ReportList.vue +19 -0
- package/src/filiale/hantou/RecordInfoQuery.vue +1512 -0
- package/src/filiale/hantou/sale.js +4 -0
- package/src/filiale/qingtongxia/RecordInfoQuery.vue +2 -2
- package/src/filiale/qingtongxia/config/exportConfig.js +1 -1
- package/src/filiale/yangchun/ChangeMeterQuery.vue +6 -0
- package/src/filiale/yangchun/ChargeQuery.vue +1454 -0
- package/src/filiale/yangchun/HandplanQuery.vue +18 -0
- package/src/filiale/yangchun/config/exportConfig.js +9 -2
- package/src/filiale/yangchun/sale.js +8 -0
- package/src/main.js +1 -1
- package/src/filiale/kelai/WebmeterQuery.vue +0 -77
package/package.json
CHANGED
|
@@ -1865,7 +1865,10 @@ export default {
|
|
|
1865
1865
|
'f_wmprepaytype': '计量类型',
|
|
1866
1866
|
'f_moneystate': '金额状态',
|
|
1867
1867
|
'f_magneticInterference': '磁干扰异常',
|
|
1868
|
-
'f_compensateState': '补偿状态'
|
|
1868
|
+
'f_compensateState': '补偿状态',
|
|
1869
|
+
'f_gas_type': '抵扣单价',
|
|
1870
|
+
'f_current_deduct_amount': '本次抵扣金额',
|
|
1871
|
+
'f_remaining_deduct_amount': '剩余抵扣金额'
|
|
1869
1872
|
},
|
|
1870
1873
|
RechargeInstruct: {
|
|
1871
1874
|
'f_userinfo_code': '客户编号',
|
|
@@ -144,6 +144,15 @@
|
|
|
144
144
|
|
|
145
145
|
<th><nobr>表状态</nobr></th>
|
|
146
146
|
<th><nobr>金额状态</nobr></th>
|
|
147
|
+
<th>
|
|
148
|
+
<nobr>抵扣单价</nobr>
|
|
149
|
+
</th>
|
|
150
|
+
<th>
|
|
151
|
+
<nobr>本次抵扣金额</nobr>
|
|
152
|
+
</th>
|
|
153
|
+
<th>
|
|
154
|
+
<nobr>剩余抵扣金额</nobr>
|
|
155
|
+
</th>
|
|
147
156
|
<!--<th><nobr>每小时上报量</nobr></th>-->
|
|
148
157
|
</tr>
|
|
149
158
|
</template>
|
|
@@ -173,6 +182,16 @@
|
|
|
173
182
|
|
|
174
183
|
<th style="text-align:center"><nobr>{{row.f_table_msg}}</nobr></th>
|
|
175
184
|
<th style="text-align:center"><nobr>{{row.f_moneystate}}</nobr></th>
|
|
185
|
+
<td style="text-align: center;">
|
|
186
|
+
<nobr>{{ row.f_gas_type }}</nobr>
|
|
187
|
+
</td>
|
|
188
|
+
<td style="text-align: center;">
|
|
189
|
+
<nobr>{{ row.f_current_deduct_amount }}</nobr>
|
|
190
|
+
</td>
|
|
191
|
+
<td style="text-align: center;">
|
|
192
|
+
<nobr>{{ row.f_remaining_deduct_amount }}</nobr>
|
|
193
|
+
</td>
|
|
194
|
+
|
|
176
195
|
<!-- <th style="text-align:center"><nobr>{{row.f_nsturalgas_data}}</nobr></th>-->
|
|
177
196
|
<!-- <th style="text-align:center"><nobr><span @click="$parent.$parent.$parent.showdetail(row.f_nsturalgas_data)"><a>查看</a></span></nobr></th>-->
|
|
178
197
|
<!--<th style="text-align:center">-->
|