Commit 9683dce4 authored by youjie's avatar youjie

no message

parent ea641c19
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<h1>引流排名统计</h1> <h1>引流排名统计</h1>
</div> </div>
<div class="rightmenu"> <div class="rightmenu">
<el-button type="primary" @click="download">导出</el-button> <el-button type="primary" size="mini" @click="download">导出</el-button>
</div> </div>
</div> </div>
<div class="query-box"> <div class="query-box">
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
<span class="font-size-12" style="padding-right: 10px;flex-shrink: 0;">期数:</span> <span class="font-size-12" style="padding-right: 10px;flex-shrink: 0;">期数:</span>
<el-date-picker <el-date-picker
v-model="times" v-model="times"
clearable
type="daterange" type="daterange"
value-format="yyyy-MM-dd" value-format="yyyy-MM-dd"
range-separator="至" range-separator="至"
...@@ -42,59 +43,41 @@ ...@@ -42,59 +43,41 @@
<template v-if="i.Name=='小红书'"> <template v-if="i.Name=='小红书'">
<span v-for="(itemOne,indexs) in scope.row.oneArr" :key="indexs"> <span v-for="(itemOne,indexs) in scope.row.oneArr" :key="indexs">
<template v-if="index==indexs"> <template v-if="index==indexs">
{{itemOne>0?itemOne:''}} <span class="activeNum">
{{itemOne>0?itemOne:''}}
</span>
</template> </template>
</span> </span>
</template> </template>
<template v-if="i.Name=='微博'"> <template v-if="i.Name=='微博'">
<span v-for="(itemOne,indexs) in scope.row.twoArr" :key="indexs"> <span v-for="(itemOne,indexs) in scope.row.twoArr" :key="indexs">
<template v-if="index==indexs"> <template v-if="index==indexs">
{{itemOne>0?itemOne:''}} <span class="activeNum">
{{itemOne>0?itemOne:''}}
</span>
</template> </template>
</span> </span>
</template> </template>
<template v-if="i.Name=='抖音'"> <template v-if="i.Name=='抖音'">
<span v-for="(itemOne,indexs) in scope.row.threeArr" :key="indexs"> <span v-for="(itemOne,indexs) in scope.row.threeArr" :key="indexs">
<template v-if="index==indexs"> <template v-if="index==indexs">
{{itemOne>0?itemOne:''}} <span class="activeNum">
{{itemOne>0?itemOne:''}}
</span>
</template> </template>
</span> </span>
</template> </template>
</template> </template>
</el-table-column> </el-table-column>
</el-table-column> </el-table-column>
<!-- <el-table-column label="微博" align="center"> <el-table-column fixed="right" prop="TotalNum" label="合计">
<el-table-column <template slot-scope="scope">
v-for="item in ModuleTypeList" <span class="activeNumB">
prop="province" {{scope.row.TotalNum>0?scope.row.TotalNum:''}}
:label="item.Name" </span>
width="80">
<template slot-scope="scope"> </template>
<template v-for="items in scope.row.wb">
<template v-if="item.Name==items.name">
{{items.num}}
</template>
</template>
</template>
</el-table-column>
</el-table-column> </el-table-column>
<el-table-column label="抖音" align="center">
<el-table-column
v-for="item in ModuleTypeList"
prop="province"
:label="item.Name"
width="80">
<template slot-scope="scope">
<template v-for="items in scope.row.dy">
<template v-if="item.Name==items.name">
{{items.num}}
</template>
</template>
</template>
</el-table-column>
</el-table-column> -->
<el-table-column fixed="right" prop="TotalNum" label="合计"></el-table-column>
</el-table> </el-table>
</div> </div>
...@@ -289,8 +272,14 @@ ...@@ -289,8 +272,14 @@
}, },
methods: { methods: {
getTime(){ getTime(){
this.msg.StartTime = this.times[0] if(this.times){
this.msg.EndTime = this.times[1] this.msg.StartTime = this.times[0]
this.msg.EndTime = this.times[1]
}else{
this.msg.StartTime = ''
this.msg.EndTime = ''
}
this.init()
}, },
getEnumerate(){ getEnumerate(){
// 平台枚举 // 平台枚举
...@@ -386,6 +375,14 @@ ...@@ -386,6 +375,14 @@
</script> </script>
<style> <style>
@import "../../assets/css/customerManage.css"; @import "../../assets/css/customerManage.css";
.activeNumB{
/* color: #66b1ff; */
font-size: 16px;
}
.activeNum{
/* color: red; */
font-size: 16px;
}
.customerManage.border .el-table--border td{ .customerManage.border .el-table--border td{
border-right: 1px solid #EBEEF5 !important; border-right: 1px solid #EBEEF5 !important;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment