manage-client 4.1.147 → 4.1.148
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/.gradle/6.1.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/6.1.1/fileChanges/last-build.bin +0 -0
- package/.gradle/6.1.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/6.1.1/gc.properties +0 -0
- package/.gradle/7.4/checksums/checksums.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.4/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.4/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.4/fileChanges/last-build.bin +0 -0
- package/.gradle/7.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.4/gc.properties +0 -0
- package/.gradle/9.3.0/checksums/checksums.lock +0 -0
- package/.gradle/9.3.0/fileChanges/last-build.bin +0 -0
- package/.gradle/9.3.0/fileHashes/fileHashes.lock +0 -0
- package/.gradle/9.3.0/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/checksums/checksums.lock +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/package.json +1 -1
- package/src/components/SellReport/BankManager.vue +7 -1
- package/src/components/SellReport/GasPropertiesManager.vue +7 -1
- package/src/components/SellReport/SiteManager.vue +7 -1
- package/src/components/WebReport/BussinessType.vue +17 -4
- package/src/components/WebReport/Paymentpie.vue +7 -1
- package/src/filiale/jinbin/exportConfig.js +0 -1110
- package/src/filiale/jinbin/sale/businessquery/ChargeQuery.vue +0 -1372
- package/src/filiale/jinbin/sale.js +0 -7
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template lang="html">
|
|
2
|
-
<div id="charts">
|
|
2
|
+
<div id="charts" style="width:100%;height:100%;min-height:300px;">
|
|
3
3
|
<div id="bm" :style="{width:'100%',height:'100%'}"></div>
|
|
4
4
|
</div>
|
|
5
5
|
</template>
|
|
@@ -125,10 +125,16 @@ export default {
|
|
|
125
125
|
searchdata () {
|
|
126
126
|
let getGen =getData(this)
|
|
127
127
|
co(getGen)
|
|
128
|
+
},
|
|
129
|
+
resizeChart (){
|
|
130
|
+
if (this.xc) {
|
|
131
|
+
this.xc.resize()
|
|
132
|
+
}
|
|
128
133
|
}
|
|
129
134
|
},
|
|
130
135
|
ready () {
|
|
131
136
|
this.searchdata()
|
|
137
|
+
window.addEventListener('resize', this.resizeChart)
|
|
132
138
|
},
|
|
133
139
|
watch: {
|
|
134
140
|
'startdate' (val) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template lang="html">
|
|
2
|
-
<div id="charts">
|
|
2
|
+
<div id="charts" style="width:100%;height:100%;min-height:300px;">
|
|
3
3
|
<div id="GasPropertiesManager">
|
|
4
4
|
<button class="button_export button_spacing" @click="change('f_user_type')">一级用气性质</button>
|
|
5
5
|
<button class="button_export button_spacing" @click="change('f_gasproperties')">二级用气性质</button>
|
|
@@ -124,10 +124,16 @@ export default {
|
|
|
124
124
|
searchdata () {
|
|
125
125
|
let getGen = getData(this)
|
|
126
126
|
co(getGen)
|
|
127
|
+
},
|
|
128
|
+
resizeChart (){
|
|
129
|
+
if (this.xc) {
|
|
130
|
+
this.xc.resize()
|
|
131
|
+
}
|
|
127
132
|
}
|
|
128
133
|
},
|
|
129
134
|
ready () {
|
|
130
135
|
this.searchdata()
|
|
136
|
+
window.addEventListener('resize', this.resizeChart)
|
|
131
137
|
},
|
|
132
138
|
watch: {
|
|
133
139
|
'startdate' (val) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template lang="html">
|
|
2
|
-
<div id="charts">
|
|
2
|
+
<div id="charts" style="width:100%;height:100%;min-height:300px;">
|
|
3
3
|
<div id="gph" :style="{width:'100%',height:'100%'}"></div>
|
|
4
4
|
</div>
|
|
5
5
|
</template>
|
|
@@ -126,10 +126,16 @@ export default {
|
|
|
126
126
|
searchdata () {
|
|
127
127
|
let getGen =getData(this)
|
|
128
128
|
co(getGen)
|
|
129
|
+
},
|
|
130
|
+
resizeChart (){
|
|
131
|
+
if (this.xc) {
|
|
132
|
+
this.xc.resize()
|
|
133
|
+
}
|
|
129
134
|
}
|
|
130
135
|
},
|
|
131
136
|
ready () {
|
|
132
137
|
this.searchdata()
|
|
138
|
+
window.addEventListener('resize', this.resizeChart)
|
|
133
139
|
},
|
|
134
140
|
watch: {
|
|
135
141
|
'startdate' (val) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template lang="html">
|
|
2
|
-
<div id="charts">
|
|
3
|
-
<div id="sm" :style="{width:'100%',height:'
|
|
2
|
+
<div id="charts" :style="{width:'100%',height:'100%',minHeight:'0'}">
|
|
3
|
+
<div id="sm" :style="{width:'100%',height:'100%'}"></div>
|
|
4
4
|
</div>
|
|
5
5
|
</template>
|
|
6
6
|
|
|
@@ -51,8 +51,12 @@ export default {
|
|
|
51
51
|
xc: ''
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
|
|
54
|
+
methods: {
|
|
55
55
|
set (arrparams,numdata,pricedata) {
|
|
56
|
+
if (this.xc) {
|
|
57
|
+
this.xc.dispose()
|
|
58
|
+
this.xc = null
|
|
59
|
+
}
|
|
56
60
|
this.xc = echarts.init(document.getElementById('sm'))
|
|
57
61
|
this.xc.setOption({
|
|
58
62
|
title : {
|
|
@@ -112,14 +116,23 @@ export default {
|
|
|
112
116
|
}
|
|
113
117
|
]
|
|
114
118
|
})
|
|
119
|
+
this.$nextTick(() => {
|
|
120
|
+
this.xc && this.xc.resize()
|
|
121
|
+
})
|
|
115
122
|
},
|
|
116
123
|
searchdata () {
|
|
117
124
|
let getGen = getData(this)
|
|
118
125
|
co(getGen)
|
|
119
|
-
}
|
|
126
|
+
},
|
|
127
|
+
resizeChart (){
|
|
128
|
+
if (this.xc) {
|
|
129
|
+
this.xc.resize()
|
|
130
|
+
}
|
|
131
|
+
}
|
|
120
132
|
},
|
|
121
133
|
ready () {
|
|
122
134
|
this.searchdata()
|
|
135
|
+
window.addEventListener('resize', this.resizeChart)
|
|
123
136
|
},
|
|
124
137
|
watch: {
|
|
125
138
|
'startdate' (val) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template lang="html">
|
|
2
|
-
<div id="charts">
|
|
2
|
+
<div id="charts" style="width:100%;height:100%;min-height:300px;">
|
|
3
3
|
<div id="pp" :style="{width:'100%',height:'98%'}"></div>
|
|
4
4
|
</div>
|
|
5
5
|
</template>
|
|
@@ -136,10 +136,16 @@ export default {
|
|
|
136
136
|
searchdata () {
|
|
137
137
|
let getGen =getData(this);
|
|
138
138
|
co(getGen);
|
|
139
|
+
},
|
|
140
|
+
resizeChart (){
|
|
141
|
+
if (this.xc) {
|
|
142
|
+
this.xc.resize()
|
|
143
|
+
}
|
|
139
144
|
}
|
|
140
145
|
},
|
|
141
146
|
ready () {
|
|
142
147
|
this.searchdata()
|
|
148
|
+
window.addEventListener('resize', this.resizeChart)
|
|
143
149
|
},
|
|
144
150
|
watch: {
|
|
145
151
|
'startdate' (val) {
|