|
|
@@ -11,7 +11,7 @@
|
|
|
<div style="color: #fff" class="item-4">4</div>
|
|
|
</div>
|
|
|
<div class="right-wrap">
|
|
|
- <Market />
|
|
|
+ <Market :data="state.market_vs_month" />
|
|
|
<implementationTotal />
|
|
|
</div>
|
|
|
<div class="bottom-wrap">
|
|
|
@@ -38,8 +38,11 @@
|
|
|
implementationNowYear,
|
|
|
Market,
|
|
|
},
|
|
|
- data () {
|
|
|
+ data() {
|
|
|
return {
|
|
|
+ state: {
|
|
|
+ market_vs_month: {}, // 市场拓展数据
|
|
|
+ },
|
|
|
implementationData: {
|
|
|
ing: {},
|
|
|
nowYear: {},
|
|
|
@@ -50,9 +53,18 @@
|
|
|
mounted() {
|
|
|
huiJiaApi.getImplementaryData().then((res) => {
|
|
|
this.implementationData = res.data.data
|
|
|
- console.log('123----', this.implementationData)
|
|
|
+ console.log("123----", this.implementationData)
|
|
|
})
|
|
|
},
|
|
|
+ methods: {
|
|
|
+ getData() {
|
|
|
+ huiJiaApi.getScreenData().then((res) => {
|
|
|
+ if (res && res.data) {
|
|
|
+ console.log("大屏数据----", res)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ },
|
|
|
}
|
|
|
</script>
|
|
|
|