|
@@ -3,7 +3,8 @@
|
|
|
<div class="table-body-wrapper" style="max-height: calc(100vh - 180px); overflow: auto">
|
|
|
<table border>
|
|
|
<thead>
|
|
|
- <td class="thead-rs">banner图片</td>
|
|
|
+ <td class="thead-rs">名称</td>
|
|
|
+ <td class="thead-rs">日期</td>
|
|
|
<td class="thead-rs">点击量合计</td>
|
|
|
<td class="thead-rs">点击量</td>
|
|
|
<td class="thead-rs">点击来源</td>
|
|
@@ -11,7 +12,9 @@
|
|
|
</thead>
|
|
|
<tbody v-for="item in tableData" :key="item.ViewHistoryID">
|
|
|
<tr v-for="(_item, index) in item.SourceList" :key="_item.LastUpdatedTime">
|
|
|
- <td class="thead-rs" :rowspan="item.SourceList.length" v-if="index == 0"> <img :src="item.BannerUrl" class="table-img" alt="" /></td>
|
|
|
+ <!-- <td class="thead-rs" :rowspan="item.SourceList.length" v-if="index == 0"> <img :src="item.BannerUrl" class="table-img" alt="" /></td> -->
|
|
|
+ <td class="thead-rs" :rowspan="item.SourceList.length" v-if="index == 0">{{ item.Remark }}</td>
|
|
|
+ <td class="thead-rs" :rowspan="item.SourceList.length" v-if="index == 0">{{ item.StartDate }} -- {{ item.EndDate }}</td>
|
|
|
<td class="thead-rs" :rowspan="item.SourceList.length" v-if="index == 0">{{ item.Pv }}</td>
|
|
|
<td class="thead-rs">{{ _item.Pv }}</td>
|
|
|
<td class="thead-rs">
|