|
@@ -42,7 +42,7 @@
|
|
|
<div slot="title">
|
|
|
<span style="font-weight: bolder;">运营个人数据</span><span>({{userName}})</span>
|
|
|
</div>
|
|
|
- <div style="width: 100%;height: 315px;">
|
|
|
+ <div style="width: 100%;height: 315px;margin-left: 50px;">
|
|
|
<ul class="group-keep-ul">
|
|
|
<li>
|
|
|
今日消耗: <span style="font-weight: bold;">{{todayCost | formatNum}}</span>
|
|
@@ -204,7 +204,7 @@
|
|
|
listNum:[],
|
|
|
dateMiddleProject:[moment(), moment()],
|
|
|
echartsDataProject:[],
|
|
|
- queryUserId:this.$route.query.userId,
|
|
|
+ queryUserId:'',
|
|
|
echartsLoading: false,
|
|
|
projectAccount:'a',
|
|
|
target: 'cost',
|
|
@@ -310,11 +310,15 @@
|
|
|
},
|
|
|
},
|
|
|
mounted() {
|
|
|
+ if (localStorage.getItem('personalUserId')) {
|
|
|
+ this.queryUserId = localStorage.getItem('personalUserId')
|
|
|
+ localStorage.removeItem('personalUserId')
|
|
|
+ }
|
|
|
this.showColumn()
|
|
|
this.getQueryNewlyData();
|
|
|
this.personalData();
|
|
|
this.getItemList();
|
|
|
-
|
|
|
+
|
|
|
},
|
|
|
methods: {
|
|
|
...mapGetters([ 'userInfo']),
|