Browse Source

bug 修复

lilei 2 years ago
parent
commit
ee650f66c3

+ 1 - 1
src/views/bigScreen/fPanalysisReport/right-bottom.vue

@@ -105,7 +105,7 @@ export default {
         if (res.status == 200) {
         if (res.status == 200) {
           this.list = res.data
           this.list = res.data
           this.list.map(item => {
           this.list.map(item => {
-            item.resultAmount = item.resultAmount / 1000
+            item.resultAmount = item.resultAmount / 10000
           })
           })
           document.getElementById('scrollView2').className = 'rowup2'
           document.getElementById('scrollView2').className = 'rowup2'
           if (!this.timer) {
           if (!this.timer) {

+ 1 - 1
src/views/bigScreen/fPanalysisReport/right-top.vue

@@ -87,7 +87,7 @@ export default {
         if (res.status == 200) {
         if (res.status == 200) {
           this.list = res.data
           this.list = res.data
           this.list.map(item => {
           this.list.map(item => {
-            item.resultAmount = item.resultAmount / 1000
+            item.resultAmount = item.resultAmount / 10000
           })
           })
           if (!this.timer) {
           if (!this.timer) {
             console.log('采购金额TOP100加盟商', res)
             console.log('采购金额TOP100加盟商', res)

+ 1 - 1
src/views/bigScreen/realTimeSalesReport/left-bottom.vue

@@ -57,7 +57,7 @@ export default {
           res.data.map(item => {
           res.data.map(item => {
             ret.push({
             ret.push({
               name: item.provinceName,
               name: item.provinceName,
-              value: (item.resultAmount / 1000).toFixed(2)
+              value: (item.resultAmount / 10000).toFixed(2)
             })
             })
           })
           })
           this.config = {
           this.config = {