123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- <template>
- <view class="content">
- <view class="top">
- <img :src="info.img" alt="" class="topimg">
- </view>
- <view class="cont">
- <view class="name">{{info.activityName}}</view>
- <view class="name2">{{info.startTime}}~{{info.endTime}}</view>
- <view class="name3">{{info.activityContent}}</view>
- </view>
- <view class="shopBox">
- <view class="shopBoxTop">
- <view class="shopMs">活动门店</view>
- <view class="shopTy">
- <view class="shopTyTxt">{{shopNum}}家门店通用</view>
- <img src="../../static/img/jt2.png" alt="" class="shopjt">
- </view>
- </view>
- <view class="shopCont">
- <view class="shopContLeft">
- <view class="shopName">{{shopInfo.shopName}}</view>
- <view class="shopaddress">{{shopInfo.address}}</view>
- </view>
- <view class="shopContRight">
- <view class="shopContRightLine" @click="getmap">
- <img src="../../static/img/icon_map.png" alt="" class="shopRightIcon">
- <view class="shopRightTxt">地图</view>
- </view>
- <view class="shopRightSx"></view>
- <view class="shopContRightLine" @click="call">
- <img src="../../static/img/icon_phone.png" alt="" class="shopRightIcon">
- <view class="shopRightTxt">电话</view>
- </view>
- </view>
- </view>
-
- </view>
-
- <view class="detailBOx" v-if="info.imgList">
- <view class="detailTitle">活动详情</view>
- <view class="detailImgBox" v-for="(item,index) in info.imgList.split(',')">
- <img :src="item" alt="" class="detailImg">
- </view>
- </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>
- </template>
- <script>
- export default {
- data() {
- return {
- info:'',
- type:'',
- shopNum:'',
- shopInfo:'',
- }
- },
- onLoad(opt) {
- if(opt.type==1){
- this.type=1;
- this.info = uni.getStorageSync("editdata");
- this.shopNum=this.info.shopList.split(',').length
- uni.setNavigationBarTitle({
- title:this.info.activityName
- })
- }
- this.getShopinfo()
-
- },
- methods: {
- call() {
- uni.makePhoneCall({
- phoneNumber: this.shopInfo.mobilePhone
- });
- },
- getmap() {
- console.log("打开地图");
- return false;
- var that = this;
- if (!that.shopInfo.lat || !that.shopInfo.lng) {
- uni.showToast({
- title: '该店铺未设置定位',
- icon: 'none',
- duration: 3000
- });
- } else {
-
- uni.openLocation({
- latitude: Number(that.shopInfo.lat),
- longitude: Number(that.shopInfo.lng),
- name: that.shopInfo.shopName,
- address: that.shopInfo.provinceName + that.shopInfo.cityName + that.shopInfo.areaName + that.shopInfo.address,
- success: function() {
- console.log('success');
- },
- fail(err) {
- console.log(err)
- }
- });
- }
-
- },
- edit1(){
- uni.navigateBack(-1)
- },
- auditSetTheGuest(){
- uni.showLoading({
- title: '加载中'
- })
- this.$http('openH5SetTheGuest/auditSetTheGuest', this.info,'POST').then(res => {
- uni.hideLoading();
- if(res.code==0){
- uni.showToast({
- title: '活动已生成',
- icon:'none',
- duration: 2000
- });
- }
- //this.list=res.data
- })
- },
- getShopinfo(){
- this.$http('openH5SetTheGuest/getShopinfo',{},'GET').then(res => {
- this.shopInfo=res.data
- })
- },
- generate(){
- var that=this;
- uni.showModal({
- title: '提示',
- content: '活动已生成,是否立即启用',
- cancelText:'暂不启用',
- confirmText:'立即启用',
- success: function(res) {
- if (res.confirm) {
- that.info.clState=2;
- that.auditSetTheGuest()
- }else{
- console.log("no")
- that.info.clState=1;
- that.auditSetTheGuest()
- }
- }
-
-
- });
- }
- }
- }
- </script>
- <style scoped>
- .shopRightIcon{
- width: 44rpx;
- height: 44rpx;
- display: block;
- margin: 0 auto;
- margin-bottom: 10rpx;
- }
- .shopName{
- color: #3C3C3C;
- font-size: 28rpx;
- }
- .shopaddress{
- font-weight: 400;
- color: #999999;
- font-size: 24rpx;
- padding-top: 10rpx;
- width: 500rpx;
- }
- .shopRightSx{
- width: 2rpx;
- height: 69rpx;
- background:#EEEEEE ;
- margin-left: 34rpx;
- margin-right: 34rpx;
- margin-top: 14rpx;
- }
- .shopCont{
- display: flex;
- justify-content: space-between;
- padding-top: 25rpx;
- }
- .shopContRight{
- display: flex;
-
- }
- .shopContRightLine{
- text-align: center;
- color: #999999;
- font-size: 24rpx;
- }
- .content{
- min-height: 100vh;
- background:#F4F5F7;
- }
- .detailImg{
- width: 750rpx;
- display: block;
- }
- .detailBOx{
- background: #ffffff;
- margin-top: 20rpx;
- }
- .detailTitle{
- color: #3C3C3C;
- font-weight: 500;
- padding: 20rpx 24rpx;
- font-size: 30rpx;
- }
- .topimg{
- width: 750rpx;
- }
- .shopMs{
- font-weight: 500;
- color: #222222;
- line-height: 42rpx;
- font-size: 30rpx;
- }
- .shopBox{
- background: #ffffff;
- margin-top: 20rpx;
- padding: 20rpx 34rpx;
- }
- .shopBoxTop{
- display: flex;
- justify-content: space-between;
- }
- .shopTy{
- display: flex;
- }
- .shopTyTxt{
- font-weight: 400;
- color: #666666;
- font-size: 24rpx;
- line-height: 42rpx;
- }
- .shopjt{
- width: 14rpx;
- height: 23rpx;
- margin-top: 10rpx;
- margin-left: 10rpx;
- }
- .cont{
- background: #ffffff;
- border-radius: 24rpx 24rpx 0px 0px;
- margin-top: -30rpx;
- padding: 30rpx 24rpx;
- position: relative;
- }
- .name{
- color: #3C3C3C;
- line-height: 42rpx;
- font-weight: 500;
- font-size: 30rpx;
- }
- .name2{
- color: #3C3C3C;
- line-height: 36rpx;
- font-weight: 400;
- font-size: 26rpx;
- padding-top: 16rpx;
- }
- .name3{
- color: #999999;
- line-height: 36rpx;
- font-weight: 400;
- font-size: 26rpx;
- padding-top: 16rpx;
- }
- .bottom{
- width: 750rpx;
- height: 98rpx;
- background: #FFFFFF;
- position: fixed;
- bottom: 0;
- left: 0;
- display: flex;
- }
- .bottomLeft{
- width: 375rpx;
- line-height: 98rpx;
- text-align: center;
- color: #3C3C3C;
- font-size: 30rpx;
- }
- .bottomRight{
- width: 375rpx;
- height: 98rpx;
- background: #3F90F7;
- line-height: 98rpx;
- text-align: center;
- color: #FFFFFF;
- font-size: 30rpx;
- }
- </style>
|