|
@@ -44,10 +44,11 @@
|
|
|
</view>
|
|
|
|
|
|
<view style="height: 120rpx;"></view>
|
|
|
- <!-- <view class="bottom" v-if="type==1">
|
|
|
- <view class="bottomLeft" @click="edit1">编辑活动内容</view>
|
|
|
- <view class="bottomRight" @click="generate">生成活动</view>
|
|
|
- </view> -->
|
|
|
+ <view class="bottom" >
|
|
|
+ <view class="bottomLeft" @click="edit1" v-if="iOSInfo.indexOf('Q022')!=-1||!iOSInfo" >编辑活动内容</view>
|
|
|
+ <view class="bottomRight" @click="goshare" v-if="iOSInfo.indexOf('Q022')!=-1||!iOSInfo">分享</view>
|
|
|
+ <view class="bottomRight2" @click="goshare" v-else>分享</view>
|
|
|
+ </view>
|
|
|
|
|
|
<!-- 适用门店 -->
|
|
|
<view class="baomingBox ckshopBox" v-if="useShopShow" @click="noShowShop2">
|
|
@@ -107,7 +108,8 @@
|
|
|
mp3Url:'',
|
|
|
id:'',
|
|
|
img:'',
|
|
|
- imgListArr:''
|
|
|
+ imgListArr:'',
|
|
|
+ iOSInfo:'',
|
|
|
}
|
|
|
},
|
|
|
onLoad(opt) {
|
|
@@ -122,6 +124,12 @@
|
|
|
|
|
|
this.id=opt.id;
|
|
|
this.getDetails()
|
|
|
+ var qxnum=uni.getStorageSync("quanxian");
|
|
|
+ if(qxnum==1){
|
|
|
+ this.iOSInfo = JSON.parse(JSON.stringify(window.iOSInfo));
|
|
|
+ }else if(qxnum==2){
|
|
|
+ window.getAndroid=this.getAndroid;
|
|
|
+ }
|
|
|
/* this.shopckList= uni.getStorageSync("shopckList");
|
|
|
this.ckmusic=uni.getStorageSync("ckmusic");
|
|
|
if(this.ckmusic){
|
|
@@ -147,6 +155,34 @@
|
|
|
this.bgmMusic.stop()
|
|
|
},
|
|
|
methods: {
|
|
|
+ getAndroid(e){
|
|
|
+ this.iOSInfo=e
|
|
|
+ },
|
|
|
+ goshare(){
|
|
|
+ var obj={
|
|
|
+ ActivityContent: this.info.activityContent,
|
|
|
+ ActivityName:this.info.activityName,
|
|
|
+ EndTime: this.info.endTime,
|
|
|
+ ID: this.info.id,
|
|
|
+ Img: this.img,
|
|
|
+ StartTime: this.info.createTime,
|
|
|
+ state: '',
|
|
|
+ }
|
|
|
+ console.log(obj)
|
|
|
+ var standalone = window.navigator.standalone
|
|
|
+ var userAgent = window.navigator.userAgent.toLowerCase()
|
|
|
+ var safari = /safari/.test(userAgent)
|
|
|
+ var ios = /iphone|ipod|ipad|mac/.test(userAgent)
|
|
|
+ var android = /android/.test(userAgent)
|
|
|
+ if (ios) {
|
|
|
+ if ( true) {//!standalone&& !safari
|
|
|
+ window.webkit.messageHandlers.goShare.postMessage(obj)
|
|
|
+ }
|
|
|
+ } else if (android) {
|
|
|
+ window.android.share(JSON.stringify(obj))
|
|
|
+ // window.android.writeoff(this.id)
|
|
|
+ }
|
|
|
+ },
|
|
|
getDetails(){
|
|
|
uni.showLoading({
|
|
|
title: '加载中'
|
|
@@ -241,7 +277,9 @@
|
|
|
|
|
|
},
|
|
|
edit1(){
|
|
|
- uni.navigateBack(-1)
|
|
|
+ uni.navigateTo({
|
|
|
+ url: 'eadit?id=' + this.id
|
|
|
+ })
|
|
|
},
|
|
|
auditSetTheGuest(){
|
|
|
uni.showLoading({
|
|
@@ -378,8 +416,8 @@
|
|
|
position: absolute;
|
|
|
width: 750rpx;
|
|
|
height:850rpx;
|
|
|
- padding-bottom: constant(safe-area-inset-bottom);
|
|
|
- padding-bottom: env(safe-area-inset-bottom);
|
|
|
+ /* padding-bottom: constant(safe-area-inset-bottom);
|
|
|
+ padding-bottom: env(safe-area-inset-bottom); */
|
|
|
left: 0;
|
|
|
bottom: 0;
|
|
|
background: #ffffff;
|
|
@@ -528,6 +566,15 @@
|
|
|
color: #FFFFFF;
|
|
|
font-size: 30rpx;
|
|
|
}
|
|
|
+ .bottomRight2{
|
|
|
+ width: 750rpx;
|
|
|
+ height: 98rpx;
|
|
|
+ background: #3F90F7;
|
|
|
+ line-height: 98rpx;
|
|
|
+ text-align: center;
|
|
|
+ color: #FFFFFF;
|
|
|
+ font-size: 30rpx;
|
|
|
+ }
|
|
|
.brandsBg {
|
|
|
display: flex;
|
|
|
height: 38rpx;
|