123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <template>
- <view class="share-content">
- <view class="share-inner">
- <view class="share-item" @click="wxShare(0)">
- <image src="/static/images/icon_wx.png" mode=""></image>
- <text class="text">微信</text>
- </view>
- <view class="share-item" @click="wxShare(1)">
- <image src="/static/images/icon_pyq.png" mode=""></image>
- <text class="text">朋友圈</text>
- </view>
- <!-- <view class="share-item">
- <image src="/static/images/icon_xcxhb.png" mode=""></image>
- <text class="text">小程序海报</text>
- </view>
- <view class="share-item">
- <image src="/static/images/icon_xccard.png" mode=""></image>
- <text class="text">小程序卡片</text>
- </view>
- <view class="share-item">
- <image src="/static/images/icon_code.png" mode=""></image>
- <text class="text">二维码</text>
- </view> -->
- <view class="share-item" @click="copyUrl()">
- <image src="/static/images/icon_copy_link.png" mode=""></image>
- <text class="text">复制链接</text>
- </view>
- </view>
- <view class="cancel-btn" @click="closeShare">取消</view>
- </view>
- </template>
- <script>
- import { shareCourse } from '@/api/course'
- import { shareVideo } from '@/api/shortvideo'
- export default {
- name: "share-box",
- props: {
- shareItem: {
- type: Object,
- default: function() {
- return {
- imageUrl: "",
- title: "",
- url: "",
- summary: url,
- courseId: 0,
- videoId: 0,
- isMini: false
- }; // type 0:课程 1视频
- }
- },
- },
- data() {
- return {
- };
- },
- methods: {
- wxShare(type) {
- if (this.$isEmpty(this.shareItem.title)) {
- uni.showToast({
- title: "数据未加载",
- icon: "none",
- position: 'top',
- duration: 2000
- })
- return;
- }
- // #ifdef APP-PLUS
- if (!plus.runtime.isAgreePrivacy()) {
- uni.showToast({
- title: "请同意隐私政策",
- icon: "none",
- position: 'top',
- duration: 2000
- })
- return;
- }
- // #endif
- let that = this;
- let sceneStr = type == 0 ? "WXSceneSession" : "WXSceneTimeline";
- // 仅支持分享微信小程序到微信聊天界面,想进入朋友圈需改为分享图片方式,在图片中包含小程序码
- if (sceneStr == 'WXSceneTimeline' || !this.shareItem.isMini) {
- uni.share({
- provider: "weixin",
- scene: sceneStr,
- type: 0,
- imageUrl: this.shareItem.imageUrl, //分享封面图片
- title: this.shareItem.title, // 分享标题
- href: this.shareItem.url, //跳转链接
- summary: this.shareItem.summary, // 分享内容文字
- success: function(res) {
- that.doShare();
- uni.showToast({
- title: "分享成功",
- icon: 'none'
- });
- },
- fail: function(err) {
- // 此处是调起微信分享失败的回调
- },
- complete: (e) => {
- console.log("WXSceneTimeline", e)
- }
- });
- } else {
- uni.share({
- provider: "weixin",
- scene: sceneStr,
- type: 5,
- imageUrl: this.shareItem.imageUrl, //分享封面图片
- title: this.shareItem.title, // 分享标题
- //summary: this.shareItem.summary, // 分享内容文字
- miniProgram: {
- id: "gh_7a6a32e5ef61",
- path: this.shareItem.path,
- type: 0, //0-正式版; 1-测试版; 2-体验版。 默认值为0。
- webUrl: "http://uniapp.dcloud.io"
- },
- success: function(res) {
- that.doShare();
- uni.showToast({
- title: "分享成功",
- icon: 'none'
- });
- },
- fail: function(err) {
- // 此处是调起微信分享失败的回调
- },
- complete: (e) => {
- console.log("WXSceneSession", e)
- }
- });
- }
- },
- doShare() {
- if (!this.shareItem.isMini) {
- if (this.shareItem.courseId > 0) {
- this.shareCourse();
- }else if(this.shareItem.videoId > 0) {
- this.shareVideo();
- }
- }
- },
- shareCourse() {
- shareCourse(this.shareItem.courseId).then(res => {
- },
- rej => {}
- );
- },
- shareVideo() {
- shareVideo({videoId:this.shareItem.videoId})
- },
- copyUrl() {
- uni.setClipboardData({
- data: this.shareItem.url,
- success: () => {
- uni.showToast({
- title: '复制成功',
- icon: 'none'
- });
- },
- fail: () => {
- uni.showToast({
- title: '复制失败',
- icon: 'none'
- });
- }
- });
- },
- closeShare() {
- return this.$emit('closeShare');
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .share-content {
- background-color: #FFF;
- border-radius: 40upx 40upx 0px 0px;
- .share-inner {
- padding: 70upx 0 0 0;
- display: flex;
- flex-wrap: wrap;
- .share-item {
- width: 25%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- margin-bottom: 66upx;
- image {
- width: 80upx;
- height: 80upx;
- margin-bottom: 20upx;
- }
- .text {
- font-size: 28upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
- line-height: 1;
- }
- }
- }
- .cancel-btn {
- height: 96upx;
- line-height: 96upx;
- text-align: center;
- font-size: 32upx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #111111;
- border-top: 2upx solid #E8E8E8;
- background-color: #FFF;
- }
- }
- </style>
|