manage-client 3.3.192 → 3.3.193
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/webmeter/newwebmeter/WebhandMonthGas.vue +3 -3
- package/src/filiale/jingyang/ChargeQuery.vue +1435 -0
- package/src/filiale/jingyang/config/DefaultPrint.js +6 -0
- package/src/filiale/jingyang/config/exportConfig.js +2776 -0
- package/src/filiale/jingyang/config/tableConfig.js +58 -0
- package/src/filiale/jingyang/sale.js +2 -0
- package/src/filiale/yangchun/OtherChargeDetailQuery.vue +74 -0
- package/src/filiale/yangchun/OtherChargeQuery.vue +755 -0
- package/src/filiale/yangchun/config/exportConfig.js +1 -2
- package/src/filiale/yangchun/sale.js +4 -0
package/package.json
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
32
32
|
<export-excel :data="$parent.$parent.getCondition" :footer="$parent.$parent.footer"
|
|
33
33
|
:field="$parent.$parent.getfield" :header="$parent.$parent.other"
|
|
34
|
-
sqlurl="
|
|
34
|
+
sqlurl="api/af-revenue/logic/openapi/exportfile" sql-name="GetWebhandMonthGas" template-name='物联用户月度结算查询导出'
|
|
35
35
|
:choose-col="true"></export-excel>
|
|
36
36
|
<print-data :sum-field="$parent.$parent.getfield" :model="$parent.model" :field="$parent.$parent.getfield"
|
|
37
37
|
:defaultfield="$parent.$parent.defaultfield" print-name="物联用户月度结算查询打印"
|
|
@@ -737,8 +737,8 @@ export default {
|
|
|
737
737
|
|
|
738
738
|
getCondition() {
|
|
739
739
|
return {
|
|
740
|
-
startDate: this.$refs.paged.$refs.cri.model.
|
|
741
|
-
endDate: this.$refs.paged.$refs.cri.model.
|
|
740
|
+
startDate: this.$refs.paged.$refs.cri.model.handStartDate,
|
|
741
|
+
endDate: this.$refs.paged.$refs.cri.model.handEndDate,
|
|
742
742
|
condition: `${this.$refs.paged.$refs.cri.condition}` + this.orgcondition
|
|
743
743
|
}
|
|
744
744
|
},
|