|
@@ -61,7 +61,7 @@
|
|
|
</a-tooltip>
|
|
|
</div>
|
|
|
<div class="infoNum">¥
|
|
|
- <span class="red">{{costLink.cost | decimalsHandle }}</span>
|
|
|
+ <span class="red">{{costLink.cost | decimalsHandle}}</span>
|
|
|
<span class="green" v-if="dateValue[0].format('YYYY-MM-DD')==dateValue[1].format('YYYY-MM-DD')" ><span class="huanbi">环比: </span> {{ costLink.CostSumLink|toPercentage }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -603,8 +603,10 @@ export default {
|
|
|
},
|
|
|
//项目改变后的事件
|
|
|
treeChange(val) {
|
|
|
+
|
|
|
// console.log(this.treeData)
|
|
|
console.log(val)
|
|
|
+
|
|
|
this.accountId = [];
|
|
|
//选择一个后禁用其他
|
|
|
if(val.length==1){
|
|
@@ -718,6 +720,14 @@ export default {
|
|
|
|
|
|
this.loading=true;
|
|
|
this.searchDisabled=true;
|
|
|
+
|
|
|
+ this.discountCostLink={}
|
|
|
+ this.photoShowLink={}
|
|
|
+ this.photoClickLink={}
|
|
|
+ this.costLink={}
|
|
|
+ this.aClickLink={}
|
|
|
+
|
|
|
+
|
|
|
this.tabCost={}
|
|
|
this.tabPhotoClick={}
|
|
|
this.tabPhotoShow={},
|
|
@@ -924,9 +934,10 @@ export default {
|
|
|
if(element.account.length){
|
|
|
element.account.forEach((ele,i)=>{
|
|
|
this.treeData[index].children.push({});
|
|
|
- this.treeData[index].children[i].title=ele.userName+'_'+ele.authName;
|
|
|
+ this.treeData[index].children[i].title=ele.userName+'_'+ele.authName+'_('+(ele.accountStatus?'已停投':'投放中')+')';
|
|
|
this.treeData[index].children[i].value=ele.accountId;
|
|
|
this.treeData[index].children[i].key=ele.accountId;
|
|
|
+ this.treeData[index].children[i].accountStatus=ele.accountStatus;
|
|
|
})
|
|
|
|
|
|
}
|