manage-client 3.3.262 → 3.3.263
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/fugou/FgUserGasType.vue +172 -0
- package/src/components/SellReport/fugou/FgUserTags.vue +172 -0
- package/src/components/sale/businessquery/GasInspection.vue +7 -1
- package/src/components/sale/businessquery/InspectListGas.vue +7 -1
- package/src/components/sale/businessquery/InspectListUser.vue +7 -1
- package/src/filiale/ningjin/GasInspection.vue +593 -0
- package/src/filiale/ningjin/InspectListGas.vue +575 -0
- package/src/filiale/ningjin/MeterExceptionList.vue +1 -1
- package/src/filiale/ningjin/sale.js +8 -0
- package/src/filiale/rongcheng/RecordInfoQuery.vue +13 -0
- package/src/filiale/shanxian/InspectListUserNew.vue +2 -2
- package/src/filiale/tongchuan/sale.js +1 -3
- package/src/reportManage.js +9 -1
|
@@ -130,10 +130,10 @@
|
|
|
130
130
|
</div>
|
|
131
131
|
<div class="col-sm-2 form-group">
|
|
132
132
|
<label class="font_normal_body">总购金额</label>
|
|
133
|
-
<input type="text" style="width:23%" class="input_search" v-model="model.
|
|
133
|
+
<input type="text" style="width:23%" class="input_search" v-model="model.premoneymin"
|
|
134
134
|
condition="collection >= {} " placeholder="">
|
|
135
135
|
<label class="font_normal_body"> ≤ x ≤ </label>
|
|
136
|
-
<input type="text" style="width:23%" class="input_search" v-model="model.
|
|
136
|
+
<input type="text" style="width:23%" class="input_search" v-model="model.premoneymax"
|
|
137
137
|
condition="collection <= {} " placeholder="">
|
|
138
138
|
</div>
|
|
139
139
|
|
|
@@ -21,7 +21,5 @@ export default function () {
|
|
|
21
21
|
require(['./InspectListGas'], resolve)
|
|
22
22
|
})
|
|
23
23
|
// 用气稽查
|
|
24
|
-
Vue.component('gas-inspection', (resolve) => {
|
|
25
|
-
require(['./GasInspection'], resolve)
|
|
26
|
-
})
|
|
24
|
+
Vue.component('gas-inspection', (resolve) => {require(['./GasInspection'], resolve) })
|
|
27
25
|
}
|
package/src/reportManage.js
CHANGED
|
@@ -776,10 +776,18 @@ export default function () {
|
|
|
776
776
|
})
|
|
777
777
|
// 西户收费结账报表
|
|
778
778
|
Vue.component('xh-manage-summary', (resolve) => {
|
|
779
|
-
require(['./components/SellReport/xihu/XHManageSummary
|
|
779
|
+
require(['./components/SellReport/xihu/XHManageSummary'], resolve)
|
|
780
780
|
})
|
|
781
781
|
// 发票汇总报表
|
|
782
782
|
Vue.component('eticket-summary', (resolve) => {
|
|
783
783
|
require(['./components/SellReport/EticketSummary'], resolve)
|
|
784
784
|
})
|
|
785
|
+
// 报表展示组件(扶沟-工商业气量销售报表)
|
|
786
|
+
Vue.component('fg-user-tags', (resolve) => {
|
|
787
|
+
require(['./components/SellReport/fugou/FgUserTags'], resolve)
|
|
788
|
+
})
|
|
789
|
+
// 报表展示组件(扶沟-居民气量销售报表)
|
|
790
|
+
Vue.component('fg-user-gas-type', (resolve) => {
|
|
791
|
+
require(['./components/SellReport/fugou/FgUserGasType'], resolve)
|
|
792
|
+
})
|
|
785
793
|
}
|