Commit 46e39564 authored by 罗超's avatar 罗超

新增Share图标

parent 8eeca947
...@@ -110,10 +110,10 @@ ...@@ -110,10 +110,10 @@
<el-checkbox size="sm" class="SelectAllBox" v-model="item.singleChoice" <el-checkbox size="sm" class="SelectAllBox" v-model="item.singleChoice"
@click.stop="singleChoice(item)"/></div></td> @click.stop="singleChoice(item)"/></div></td>
<td style="width: 30px;" @click.stop="item.FileType?OffEdit():editDelete(item,2)"> <td style="width: 30px;" @click.stop="item.FileType?OffEdit():editDelete(item,2)">
<img v-if="item.FileType" class="q-px-md" :src="item.FileType==1?datas.pdfImg:datas.adsImg" <div :class="{'share-icon-box':item.IsShare}">
style="height: 25px;" /> <img v-if="item.FileType" class="q-px-md " :src="item.FileType==1?datas.pdfImg:datas.adsImg" style="height: 25px;" />
<img v-else class="q-px-md" src="@/assets/img/file.png" <img v-else class="q-px-md" src="@/assets/img/file.png" style="height: 23px;" />
style="height: 23px;" /> </div>
</td> </td>
<td class="journeyAds-title wrap row"> <td class="journeyAds-title wrap row">
<div class="col" v-if="!item.editTitle" @click.stop="item.FileType?OffEdit():editDelete(item,2)"> <div class="col" v-if="!item.editTitle" @click.stop="item.FileType?OffEdit():editDelete(item,2)">
...@@ -740,6 +740,20 @@ querySearchHandler(); ...@@ -740,6 +740,20 @@ querySearchHandler();
.journeyAdsple-table:hover .hoverShow { .journeyAdsple-table:hover .hoverShow {
opacity: 1; opacity: 1;
} }
.share-icon-box{
position: relative;
}
.share-icon-box::after{
display: block;
position: absolute;
bottom: -4px;
right: 6px;
content: " ";
background: url('../../../assets/img/share.png');
width: 14px;
height: 14px;
z-index: 2;
}
.active { .active {
color: $themeColor; color: $themeColor;
} }
......
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