manage-client 3.2.229 → 3.2.230
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/SellReport/shangyenum.vue +221 -0
- package/src/components/sale/businessquery/ChargeQuery.vue +16 -2
- package/src/filiale/WEINAN/MeterQuery.vue +172 -170
- package/src/filiale/WEINAN/UserQuery.vue +963 -0
- package/src/filiale/WEINAN/sale.js +2 -0
- package/src/filiale/wuhai/ReportList.vue +6 -6
- package/src/reportManage.js +4 -0
|
@@ -30,6 +30,8 @@ let specialComp = {
|
|
|
30
30
|
'enable-query':(resolve) => {require(['./EnableQuery'], resolve)},
|
|
31
31
|
// 停用查询
|
|
32
32
|
'disable-query':(resolve) => {require(['./DisableQuery'], resolve)},
|
|
33
|
+
// 客户查询
|
|
34
|
+
'user-query':(resolve) => {require(['./UserQuery.vue'], resolve)},
|
|
33
35
|
// 销户查询
|
|
34
36
|
'cancellation-query':(resolve) => {require(['./CancellationQuery'], resolve)},
|
|
35
37
|
// 汇总查询
|
|
@@ -176,12 +176,12 @@
|
|
|
176
176
|
<th style="text-align:center"><nobr>{{row.f_jval}}</nobr></th>
|
|
177
177
|
<th style="text-align:center"><nobr>{{row.f_price}}</nobr></th>
|
|
178
178
|
<th style="text-align:center"><nobr>{{row.f_tablebase}}</nobr></th>
|
|
179
|
-
<th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.
|
|
180
|
-
<th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.
|
|
181
|
-
<th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.
|
|
182
|
-
<th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.
|
|
183
|
-
<th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.
|
|
184
|
-
<th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.
|
|
179
|
+
<th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.standardconditiontotal}}</nobr></th>
|
|
180
|
+
<th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.operatingmodetotalforday}}</nobr></th>
|
|
181
|
+
<th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.standardconditionflow}}</nobr></th>
|
|
182
|
+
<th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.operatingmodeflow}}</nobr></th>
|
|
183
|
+
<th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.flowmetertemperaturestate}}</nobr></th>
|
|
184
|
+
<th style="text-align:center" v-show="$parent.$parent.$parent.isShow"><nobr>{{row.flowmeterpressurestate}}</nobr></th>
|
|
185
185
|
<th style="text-align:center"><nobr>{{row.f_valvestate}}</nobr></th>
|
|
186
186
|
|
|
187
187
|
|
package/src/reportManage.js
CHANGED
|
@@ -688,6 +688,10 @@ export default function (filiale) {
|
|
|
688
688
|
Vue.component('apply-Hunum', (resolve) => {
|
|
689
689
|
require(['./components/SellReport/applyHunum'], resolve)
|
|
690
690
|
})
|
|
691
|
+
// 乌海区域商业报表
|
|
692
|
+
Vue.component('shangye-num', (resolve) => {
|
|
693
|
+
require(['./components/SellReport/shangyenum'], resolve)
|
|
694
|
+
})
|
|
691
695
|
if (filiale) {
|
|
692
696
|
let filialeComp = require(`./filiale/${filiale}/reportManage`).specialComp
|
|
693
697
|
Vue.filialeInfo = Vue.prototype.$filialeInfo = filiale
|