|
|
@@ -10,6 +10,9 @@
|
|
|
@click="clickShareFlag(-1)"
|
|
|
v-if="reportTarget && source != 'share' && reportTarget.reportPostType == 'fx'">
|
|
|
<van-icon name="share" />
|
|
|
+ <div class="vedioLinks" @click.stop="shareVedioLinks">
|
|
|
+ 一键分享日报,<span>点击查看操作视频</span><van-icon name="play" />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
</van-nav-bar>
|
|
|
@@ -641,7 +644,7 @@ export default {
|
|
|
setDailyDetailsBoxFlag: true,
|
|
|
sourceType: '',
|
|
|
checkedPlan: true, //今日总结&明日规划
|
|
|
- //
|
|
|
+ shareVisible: true,
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
@@ -835,9 +838,30 @@ export default {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
- .van-icon {
|
|
|
+ position: relative;
|
|
|
+ .van-icon-share {
|
|
|
color: #fff;
|
|
|
}
|
|
|
+ .vedioLinks {
|
|
|
+ position: absolute;
|
|
|
+ bottom: -38px;
|
|
|
+ background: #dae7f6;
|
|
|
+ padding: 5px 8px;
|
|
|
+ /* word-break: keep-all; */
|
|
|
+ white-space: nowrap;
|
|
|
+ /* text-overflow: ellipsis; */
|
|
|
+ right: 0;
|
|
|
+ span {
|
|
|
+ text-decoration: underline;
|
|
|
+ }
|
|
|
+ .van-icon-play {
|
|
|
+ position: absolute;
|
|
|
+ top: -8px;
|
|
|
+ transform: rotate(270deg);
|
|
|
+ right: 5px;
|
|
|
+ color: #dae7f6;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
.container {
|