|
@@ -78,11 +78,27 @@
|
|
|
@click="chooseChapter(item)"
|
|
|
:class="selectChapterId===item.ReportChapterId&&'act'"
|
|
|
>
|
|
|
- <div class="type-name" v-if="item.TypeName">{{item.TypeName}}</div>
|
|
|
+ <div class="card-top">
|
|
|
+ <div class="type-name" v-if="item.TypeName">{{item.TypeName}}</div>
|
|
|
+ <span v-else></span>
|
|
|
+
|
|
|
+ <el-popover
|
|
|
+ placement="right"
|
|
|
+ trigger="click"
|
|
|
+ >
|
|
|
+ <img style="width:150px" :src="item.QRCodeImg" alt="">
|
|
|
+ <i
|
|
|
+ slot="reference"
|
|
|
+ class="el-icon-share"
|
|
|
+ v-if="permissionBtn.checkPermissionBtn(permissionBtn.reportManageBtn.reportMange_chapter_share)&&item.PublishState===2"
|
|
|
+ style="font-size:18px;color:#0052D9;cursor:pointer;"
|
|
|
+ @click.stop="handleGetWechatImg(item)"
|
|
|
+ ></i>
|
|
|
+ </el-popover>
|
|
|
+ </div>
|
|
|
|
|
|
<div class="card-top">
|
|
|
<span style="font-size: 16px;">{{item.Title}}</span>
|
|
|
- <span class="editsty" v-if="item.CanEdit&&item.IsAuth" @click.stop="chooseChapter(item,'edit')"><!-- 编辑 -->{{$t('Table.edit_btn')}}</span>
|
|
|
</div>
|
|
|
|
|
|
<div class="card-bottom">
|
|
@@ -95,7 +111,14 @@
|
|
|
<img
|
|
|
src="~@/assets/img/data_m/move_ico.png"
|
|
|
alt=""
|
|
|
- style="width: 14px; height: 14px; margin-right: 8px"
|
|
|
+ style="width: 16px; height: 16px;"
|
|
|
+ />
|
|
|
+
|
|
|
+ <i
|
|
|
+ class="el-icon-edit editsty"
|
|
|
+ v-if="item.CanEdit&&item.IsAuth"
|
|
|
+ @click.stop="chooseChapter(item,'edit')"
|
|
|
+ style="font-size: 18px;margin:0 10px;"
|
|
|
/>
|
|
|
|
|
|
<el-dropdown
|
|
@@ -104,8 +127,9 @@
|
|
|
v-if="item.IsAuth"
|
|
|
>
|
|
|
<span class="el-dropdown-link">
|
|
|
- <i class="el-icon-more"></i>
|
|
|
+ <i class="el-icon-s-operation editsty" style="font-size: 18px;"></i>
|
|
|
</span>
|
|
|
+
|
|
|
<el-dropdown-menu slot="dropdown">
|
|
|
<el-dropdown-item
|
|
|
:command="{type:'beseInfo',item}"
|
|
@@ -119,10 +143,6 @@
|
|
|
:command="{type:'adTag',item}"
|
|
|
v-if="permissionBtn.checkPermissionBtn(permissionBtn.reportManageBtn.reportMange_chapter_editTag)"><!-- 添加标签 -->{{$t('ReportManage.ReportList.add_labels_section')}}</el-dropdown-item>
|
|
|
<el-dropdown-item :command="{type:'upAudio',item}"><!-- 上传录音 -->{{$t('ReportManage.ReportList.up_recording_lable')}}</el-dropdown-item>
|
|
|
- <el-dropdown-item
|
|
|
- :command="{type:'wxShare',item}"
|
|
|
- v-if="permissionBtn.checkPermissionBtn(permissionBtn.reportManageBtn.reportMange_chapter_share)&&item.PublishState===2"
|
|
|
- ><!-- 微信分享 -->{{$t('ReportManage.ReportList.weChat_share')}}</el-dropdown-item>
|
|
|
</el-dropdown-menu>
|
|
|
</el-dropdown>
|
|
|
</div>
|