|
@@ -43,12 +43,21 @@
|
|
|
|
|
|
<!-- 音频弹窗 -->
|
|
|
<audioBox v-if="showAudioPop"></audioBox>
|
|
|
+
|
|
|
+ <!-- 分享海报 -->
|
|
|
+ <sharePoster
|
|
|
+ :style="{bottom:'140rpx'}"
|
|
|
+ :shareData="{
|
|
|
+ type:'specialColumnDetail',
|
|
|
+ params:{columnId:columnId}
|
|
|
+ }"></sharePoster>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import {apiSpecialColumnDetail,apiSpecialColumnReportList} from '@/api/report'
|
|
|
import audioBox from '../components/audioBox.vue'
|
|
|
+import sharePoster from '@/components/sharePoster/sharePoster.vue'
|
|
|
export default {
|
|
|
computed: {
|
|
|
showAudioPop(){//是否显示音频弹窗
|
|
@@ -62,7 +71,8 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
components: {
|
|
|
- audioBox
|
|
|
+ audioBox,
|
|
|
+ sharePoster
|
|
|
},
|
|
|
data () {
|
|
|
return {
|