Browse Source

修改详情页

修改详情页
master
xuetaotao 5 years ago
parent
commit
644ca9cb72
  1. 187
      pages/info/activityInfo/index.js
  2. 2
      pages/info/activityInfo/index.wxml
  3. 2
      pages/info/cardInfo/index.wxml
  4. 2
      pages/info/hotelProductInfo/index.js
  5. 2
      pages/info/hotelProductInfo/index.wxml
  6. 27
      pages/info/museumInfo/index.js
  7. 1
      pages/info/museumInfo/index.wxml
  8. 403
      pages/info/roadInfo/index.js
  9. 27
      pages/info/roadInfo/index.wxml
  10. 77
      pages/info/roadInfo/index.wxss
  11. 292
      pages/info/sceneProductInfo/index.js
  12. 2
      pages/info/sceneProductInfo/index.wxml

187
pages/info/activityInfo/index.js

@ -7,54 +7,54 @@ Page({
* 页面的初始数据 * 页面的初始数据
*/ */
data: { data: {
id:null, id: null,
info:null, info: null,
retailId:"", retailId: "",
shareImg:null, shareImg: null,
showShareFlag:false showShareFlag: false
}, },
// 分享 // 分享
share:function(){ share: function () {
if(!wx.getStorageSync("jstrip_token")){ if (!wx.getStorageSync("jstrip_token")) {
commonApi.user_post("user/getMyInfo",{}).then(res=>{ commonApi.user_post("user/getMyInfo", {}).then(res => {
}) })
return; return;
} }
if(!this.data.shareImg){ if (!this.data.shareImg) {
wx.showToast({ wx.showToast({
title: '图片生成中,稍后再试', title: '图片生成中,稍后再试',
icon:'none' icon: 'none'
}) })
return; return;
} }
this.setData({ this.setData({
showShareFlag:!this.data.showShareFlag showShareFlag: !this.data.showShareFlag
}) })
}, },
// 保存 // 保存
save(){ save() {
let url = this.data.shareImg,that = this; let url = this.data.shareImg, that = this;
wx.authorize({ wx.authorize({
/* 这个就是保存相册的 */ /* 这个就是保存相册的 */
scope: 'scope.writePhotosAlbum', scope: 'scope.writePhotosAlbum',
success() { success() {
wx.saveImageToPhotosAlbum({ wx.saveImageToPhotosAlbum({
filePath:url, filePath: url,
success(res) { success(res) {
wx.showToast({ wx.showToast({
title: '保存成功', title: '保存成功',
icon:"success" icon: "success"
}) })
that.setData({ that.setData({
showShareFlag:!this.data.showShareFlag showShareFlag: !this.data.showShareFlag
}) })
}, },
fail(res){ fail(res) {
wx.showToast({ wx.showToast({
title: '保存失败', title: '保存失败',
icon:'none' icon: 'none'
}) })
} }
}) })
@ -69,7 +69,7 @@ Page({
// opensit(); // opensit();
wx.showToast({ wx.showToast({
title: '请打开权限后再试', title: '请打开权限后再试',
icon:'none' icon: 'none'
}) })
} }
} }
@ -79,9 +79,9 @@ Page({
}, },
// 绘制海报 // 绘制海报
drawImg:function(){ drawImg: function () {
var that = this,userinfo = wx.getStorageSync('jstrip_userInfo'); var that = this, userinfo = wx.getStorageSync('jstrip_userInfo');
if(!userinfo){ if (!userinfo) {
// 去登录 // 去登录
return false; return false;
} }
@ -90,21 +90,21 @@ Page({
// const ratio = device.screenWidth / 750; // const ratio = device.screenWidth / 750;
// 先获取到图片信息 // 先获取到图片信息
let promise2 = new Promise(function(resolve,reject){ let promise2 = new Promise(function (resolve, reject) {
wx.getImageInfo({ wx.getImageInfo({
src:that.data.info.post_url, src: that.data.info.post_url,
success:function(res){ success: function (res) {
resolve(res); resolve(res);
}, },
fail:function(res){ fail: function (res) {
reject(res); reject(res);
} }
}) })
}) })
let promise3 = new Promise(function(resolve,reject){ let promise3 = new Promise(function (resolve, reject) {
let userid = wx.getStorageSync('jstrip_userid') let userid = wx.getStorageSync('jstrip_userid')
new QRCode('myQrcode',{ new QRCode('myQrcode', {
text: 'https://m.cloud.sz-trip.com/AppointmentDetail?id='+that.data.info.id+'&userId='+userid, text: 'https://m.cloud.sz-trip.com/AppointmentDetail?id=' + that.data.info.id + '&userId=' + userid + '&channel=-1',
width: 500, width: 500,
height: 500, height: 500,
padding: 12, // 生成二维码四周自动留边宽度,不传入默认为0 padding: 12, // 生成二维码四周自动留边宽度,不传入默认为0
@ -115,52 +115,52 @@ Page({
}) })
}) })
//成功得到图片信息后,开始绘图 //成功得到图片信息后,开始绘图
Promise.all([promise2,promise3]).then(imgs=>{ Promise.all([promise2, promise3]).then(imgs => {
ctx.save(); ctx.save();
ctx.beginPath(); //开始绘制 ctx.beginPath(); //开始绘制
that.handleBorderRect(ctx,0,0,551 * ratio,407 * ratio,25 * ratio,'#ccc') that.handleBorderRect(ctx, 0, 0, 551 * ratio, 407 * ratio, 25 * ratio, '#ccc')
ctx.clip();//画好了圆 剪切 原始画布中剪切任意形状和尺寸。一旦剪切了某个区域,则所有之后的绘图都会被限制在被剪切的区域内 这也是我们要save上下文的原因 ctx.clip();//画好了圆 剪切 原始画布中剪切任意形状和尺寸。一旦剪切了某个区域,则所有之后的绘图都会被限制在被剪切的区域内 这也是我们要save上下文的原因
ctx.drawImage(imgs[0].path, 0, 0,551 * ratio,407 * ratio); ctx.drawImage(imgs[0].path, 0, 0, 551 * ratio, 407 * ratio);
ctx.restore(); ctx.restore();
ctx.save(); ctx.save();
that.handleBorderRect2(ctx,0,407 * ratio,551 * ratio,236*ratio,25 * ratio,'#fff') that.handleBorderRect2(ctx, 0, 407 * ratio, 551 * ratio, 236 * ratio, 25 * ratio, '#fff')
ctx.restore(); ctx.restore();
// 绘制二维码 // 绘制二维码
ctx.drawImage(imgs[1].path, 373 * ratio, 495 * ratio,137 * ratio, 137 * ratio); ctx.drawImage(imgs[1].path, 373 * ratio, 495 * ratio, 137 * ratio, 137 * ratio);
// 开始文字绘制 // 开始文字绘制
ctx.setFillStyle("#000"); ctx.setFillStyle("#000");
ctx.setFontSize(30 * ratio); //字大小 ctx.setFontSize(30 * ratio); //字大小
ctx.setTextAlign('left'); //是否居中显示,参考点画布中线 ctx.setTextAlign('left'); //是否居中显示,参考点画布中线
that.drawText(ctx,that.data.info.title, 25*ratio, 450*ratio,480 * ratio,ratio); that.drawText(ctx, that.data.info.title, 25 * ratio, 450 * ratio, 480 * ratio, ratio);
// 售价 // 售价
ctx.setFillStyle("#D62828"); ctx.setFillStyle("#D62828");
ctx.setFontSize(40 * ratio); //字大小 ctx.setFontSize(40 * ratio); //字大小
ctx.setTextAlign('left'); //是否居中显示,参考点画布中线 ctx.setTextAlign('left'); //是否居中显示,参考点画布中线
let price = "¥"+(that.data.info.price/100); let price = "¥" + (that.data.info.price / 100);
let width = ctx.measureText(price).width; let width = ctx.measureText(price).width;
ctx.fillText(price, 25*ratio, 620*ratio); ctx.fillText(price, 25 * ratio, 620 * ratio);
// 副标题 // 副标题
ctx.setFillStyle("#999999"); ctx.setFillStyle("#999999");
ctx.setFontSize(28 * ratio); //字大小 ctx.setFontSize(28 * ratio); //字大小
ctx.setTextAlign('left'); //是否居中显示,参考点画布中线 ctx.setTextAlign('left'); //是否居中显示,参考点画布中线
let subtitle = that.data.info.subtitle; let subtitle = that.data.info.subtitle;
if(that.data.info.subtitle.length>10){ if (that.data.info.subtitle.length > 10) {
subtitle = that.data.info.subtitle.substr(0,10)+'...' subtitle = that.data.info.subtitle.substr(0, 10) + '...'
} }
ctx.fillText(subtitle, 25*ratio, 540*ratio); ctx.fillText(subtitle, 25 * ratio, 540 * ratio);
// ctx.draw(); // ctx.draw();
// 划线价 // 划线价
ctx.setFillStyle("#999999"); ctx.setFillStyle("#999999");
ctx.setFontSize(32 * ratio); //字大小 ctx.setFontSize(32 * ratio); //字大小
ctx.setTextAlign('left'); //是否居中显示,参考点画布中线 ctx.setTextAlign('left'); //是否居中显示,参考点画布中线
let market_price = "¥"+(that.data.info.market_price/100) let market_price = "¥" + (that.data.info.market_price / 100)
ctx.fillText(market_price, 40*ratio + width, 620*ratio); ctx.fillText(market_price, 40 * ratio + width, 620 * ratio);
let market_price_width = ctx.measureText(market_price).width; let market_price_width = ctx.measureText(market_price).width;
// 划线 // 划线
ctx.beginPath() ctx.beginPath()
ctx.setLineWidth(1) ctx.setLineWidth(1)
ctx.moveTo(40*ratio + width, 608*ratio) ctx.moveTo(40 * ratio + width, 608 * ratio)
ctx.lineTo(45*ratio + width + market_price_width, 608*ratio) ctx.lineTo(45 * ratio + width + market_price_width, 608 * ratio)
ctx.stroke(); ctx.stroke();
// 长按识别二维码 // 长按识别二维码
// ctx.setFillStyle("#666"); // ctx.setFillStyle("#666");
@ -174,31 +174,31 @@ Page({
// ctx.fillText("长按图片保存到本地",(592*ratio - ctx.measureText("长按图片保存到本地").width)/2, 740*ratio); // ctx.fillText("长按图片保存到本地",(592*ratio - ctx.measureText("长按图片保存到本地").width)/2, 740*ratio);
ctx.draw(); ctx.draw();
// 转为图片 // 转为图片
setTimeout(()=>{ setTimeout(() => {
wx.canvasToTempFilePath({ wx.canvasToTempFilePath({
x: 0, x: 0,
y: 0, y: 0,
canvasId: 'imageCanvas', canvasId: 'imageCanvas',
success: function (res) { success: function (res) {
that.setData({ that.setData({
shareImg:res.tempFilePath shareImg: res.tempFilePath
}) })
}, },
fail(err){ fail(err) {
console.log('agdgjgdajhg',err) console.log('agdgjgdajhg', err)
} }
}) })
},500) }, 500)
return false; return false;
}).catch(err=>{ }).catch(err => {
console.log("this err",err) console.log("this err", err)
}) })
}, },
// 圆角矩形 // 圆角矩形
handleBorderRect(ctx, x, y, w, h, r, color){ handleBorderRect(ctx, x, y, w, h, r, color) {
ctx.beginPath(); ctx.beginPath();
ctx.moveTo(x+w,y+h); ctx.moveTo(x + w, y + h);
ctx.lineTo(x,y+h) ctx.lineTo(x, y + h)
// 左上角 // 左上角
ctx.arc(x + r, y + r, r, Math.PI, 1.5 * Math.PI); ctx.arc(x + r, y + r, r, Math.PI, 1.5 * Math.PI);
ctx.moveTo(x + r, y); ctx.moveTo(x + r, y);
@ -206,16 +206,16 @@ Page({
ctx.lineTo(x + w, y + r); ctx.lineTo(x + w, y + r);
// 右上角 // 右上角
ctx.arc(x + w - r, y + r, r, 1.5 * Math.PI, 2 * Math.PI); ctx.arc(x + w - r, y + r, r, 1.5 * Math.PI, 2 * Math.PI);
ctx.lineTo(x + w, y + h ); ctx.lineTo(x + w, y + h);
ctx.lineTo(x + w - r, y + h); ctx.lineTo(x + w - r, y + h);
ctx.fillStyle = color; ctx.fillStyle = color;
ctx.fill(); ctx.fill();
ctx.closePath(); ctx.closePath();
}, },
handleBorderRect2(ctx, x, y, w, h, r, color){ handleBorderRect2(ctx, x, y, w, h, r, color) {
ctx.beginPath(); ctx.beginPath();
ctx.moveTo(x,y); ctx.moveTo(x, y);
ctx.lineTo(x+w,y) ctx.lineTo(x + w, y)
// 右下角 // 右下角
ctx.arc(x + w - r, y + h - r, r, 0, 0.5 * Math.PI); ctx.arc(x + w - r, y + h - r, r, 0, 0.5 * Math.PI);
ctx.lineTo(x + r, y + h); ctx.lineTo(x + r, y + h);
@ -229,8 +229,8 @@ Page({
ctx.closePath(); ctx.closePath();
}, },
// 绘制两行文字 // 绘制两行文字
drawText: function(ctx, str, x, y, canvasWidth,ratio) { drawText: function (ctx, str, x, y, canvasWidth, ratio) {
let row = [],temp="",chr=str.split(""); let row = [], temp = "", chr = str.split("");
for (var a = 0; a < chr.length; a++) { for (var a = 0; a < chr.length; a++) {
if (ctx.measureText(temp).width < canvasWidth) { if (ctx.measureText(temp).width < canvasWidth) {
temp += chr[a]; temp += chr[a];
@ -273,57 +273,57 @@ Page({
onLoad: function (options) { onLoad: function (options) {
let id = options.id; let id = options.id;
this.setData({ this.setData({
id:id id: id
}) })
if(options.retailId){ if (options.retailId) {
this.setData({ this.setData({
retailId:options.retailId retailId: options.retailId
}) })
} }
commonApi._post("pbservice/Actcalendar/getActDetail",{ commonApi._post("pbservice/Actcalendar/getActDetail", {
id:id id: id
}).then(res=>{ }).then(res => {
this.setData({ this.setData({
info:res.data info: res.data
}) })
this.BroswerRecord() this.BroswerRecord()
}) })
}, },
BroswerRecord:function(){ BroswerRecord: function () {
setTimeout(()=>{ setTimeout(() => {
if(app.globalData.uuid){ if (app.globalData.uuid) {
commonApi._post('browse/browse_record',{ commonApi._post('browse/browse_record', {
type:"page", type: "page",
title:this.data.info.name, title: this.data.info.name,
drive:"mini", drive: "mini",
source_id:this.data.info.id, source_id: this.data.info.id,
url:"/pages/info/activityInfo/index?id="+this.data.info.id, url: "/pages/info/activityInfo/index?id=" + this.data.info.id,
uuid:app.globalData.uuid uuid: app.globalData.uuid
}).then(res=>{ }).then(res => {
}) })
} }
else { else {
this.BroswerRecord(); this.BroswerRecord();
} }
},500) }, 500)
}, },
order:function(){ order: function () {
let skuid = this.data.info.sku_id; let skuid = this.data.info.sku_id;
if(!skuid) return; if (!skuid) return;
commonApi._post("product/get_sku_detail_by_id",{ commonApi._post("product/get_sku_detail_by_id", {
sku_id:skuid sku_id: skuid
}).then(res=>{ }).then(res => {
if(!res.data){ if (!res.data) {
wx.showToast({ wx.showToast({
title: '本活动不支持预约', title: '本活动不支持预约',
icon:'none' icon: 'none'
}) })
return; return;
} }
app.globalData.couponInfo = null; app.globalData.couponInfo = null;
app.globalData.product = { app.globalData.product = {
sku:res.data, sku: res.data,
product:res.data.product product: res.data.product
} }
app.globalData.retailId = this.data.retailId; app.globalData.retailId = this.data.retailId;
wx.navigateTo({ wx.navigateTo({
@ -343,6 +343,17 @@ Page({
* 生命周期函数--监听页面显示 * 生命周期函数--监听页面显示
*/ */
onShow: function () { onShow: function () {
// if (!wx.getStorageSync('jstrip_token')) {
// return;
// }
// if (this.data.info && this.data.info.id) {
// this.drawImg()
// }
// else {
// setTimeout(() => {
// this.onShow()
// }, 200)
// }
}, },
/** /**

2
pages/info/activityInfo/index.wxml

@ -1,7 +1,7 @@
<!--pages/info/activityInfo/index.wxml--> <!--pages/info/activityInfo/index.wxml-->
<wxs src="../../../utils/filter.wxs" module="tool" /> <wxs src="../../../utils/filter.wxs" module="tool" />
<title title="活动"></title> <title title="活动"></title>
<!-- <view class="iconfont icon-fenxiang" bindtap="share"></view> 分享需要配置域名 --> <!-- <view class="iconfont icon-fenxiang" bindtap="share"></view> -->
<!-- <swiper class="swiper" indicator-dots="{{true}}" <!-- <swiper class="swiper" indicator-dots="{{true}}"
autoplay="{{true}}" interval="{{2000}}" duration="{{300}}"> autoplay="{{true}}" interval="{{2000}}" duration="{{300}}">
<block wx:for="{{listimgs}}" wx:key="*this"> <block wx:for="{{listimgs}}" wx:key="*this">

2
pages/info/cardInfo/index.wxml

@ -1,7 +1,7 @@
<!--pages/info/hotelProductInfo/index.wxml--> <!--pages/info/hotelProductInfo/index.wxml-->
<wxs src="../../../utils/filter.wxs" module="tool" /> <wxs src="../../../utils/filter.wxs" module="tool" />
<title title="产品详情"></title> <title title="产品详情"></title>
<!-- <view class="iconfont icon-fenxiang" bindtap="share"></view> 需要配置域名--> <view class="iconfont icon-fenxiang" bindtap="share"></view>
<swiper class="swiper" indicator-dots="{{true}}" wx:if="{{info}}" <swiper class="swiper" indicator-dots="{{true}}" wx:if="{{info}}"
autoplay="{{true}}" interval="{{2000}}" duration="{{300}}"> autoplay="{{true}}" interval="{{2000}}" duration="{{300}}">
<block wx:for="{{info.listimg}}" wx:key="*this"> <block wx:for="{{info.listimg}}" wx:key="*this">

2
pages/info/hotelProductInfo/index.js

@ -407,7 +407,7 @@ Page({
let promise3 = new Promise(function (resolve, reject) { let promise3 = new Promise(function (resolve, reject) {
let userid = wx.getStorageSync('jstrip_userid') let userid = wx.getStorageSync('jstrip_userid')
new QRCode('myQrcode', { new QRCode('myQrcode', {
text: 'https://m.cloud.sz-trip.com/ScenicDetail?id=' + that.data.sceneInfo.id + '&sharedUserId=' + userid + '&channel=-1', text: 'https://m.cloud.sz-trip.com/HotelDetail?id=' + that.data.sceneInfo.id + '&sharedUserId=' + userid + '&channel=-1',
width: 500, width: 500,
height: 500, height: 500,
padding: 12, // 生成二维码四周自动留边宽度,不传入默认为0 padding: 12, // 生成二维码四周自动留边宽度,不传入默认为0

2
pages/info/hotelProductInfo/index.wxml

@ -1,6 +1,6 @@
<!--pages/info/hotelProductInfo/index.wxml--> <!--pages/info/hotelProductInfo/index.wxml-->
<title title="产品详情"></title> <title title="产品详情"></title>
<!-- <view class="iconfont icon-fenxiang" bindtap="share"></view> 分享需要配置闩--> <!-- <view class="iconfont icon-fenxiang" bindtap="share"></view> -->
<view class="iconfont {{isLike==1?'icon-shoucang':'icon-xin'}}" bindtap="like"></view> <view class="iconfont {{isLike==1?'icon-shoucang':'icon-xin'}}" bindtap="like"></view>
<swiper class="swiper" indicator-dots="{{true}}" wx:if="{{sceneInfo}}" <swiper class="swiper" indicator-dots="{{true}}" wx:if="{{sceneInfo}}"
autoplay="{{true}}" interval="{{2000}}" duration="{{300}}"> autoplay="{{true}}" interval="{{2000}}" duration="{{300}}">

27
pages/info/museumInfo/index.js

@ -5,6 +5,7 @@ let device = wx.getSystemInfoSync();
const ratio = device.windowWidth / 750; const ratio = device.windowWidth / 750;
let rect = wx.getMenuButtonBoundingClientRect(); let rect = wx.getMenuButtonBoundingClientRect();
let height = (rect.top - device.statusBarHeight) * 2 + rect.height + device.statusBarHeight; let height = (rect.top - device.statusBarHeight) * 2 + rect.height + device.statusBarHeight;
import QRCode from '../../../utils/weapp-qrcode.js'
Page({ Page({
/** /**
@ -216,7 +217,7 @@ Page({
let promise3 = new Promise(function (resolve, reject) { let promise3 = new Promise(function (resolve, reject) {
let userid = wx.getStorageSync('jstrip_userid') let userid = wx.getStorageSync('jstrip_userid')
new QRCode('myQrcode', { new QRCode('myQrcode', {
text: 'https://m.cloud.sz-trip.com/ScenicDetail?id=' + that.data.info.id + '&sharedUserId=' + userid + '&channel=-1', text: 'https://m.cloud.sz-trip.com/PavilionDetail?id=' + that.data.info.id + '&sharedUserId=' + userid + '&channel=-1',
width: 500, width: 500,
height: 500, height: 500,
padding: 12, // 生成二维码四周自动留边宽度,不传入默认为0 padding: 12, // 生成二维码四周自动留边宽度,不传入默认为0
@ -255,7 +256,7 @@ Page({
ctx.setFillStyle("#999999"); ctx.setFillStyle("#999999");
ctx.setFontSize(28 * ratio); //字大小 ctx.setFontSize(28 * ratio); //字大小
ctx.setTextAlign('left'); //是否居中显示,参考点画布中线 ctx.setTextAlign('left'); //是否居中显示,参考点画布中线
let subtitle = that.data.info.display_tags[0]; let subtitle = that.data.info.product_venue.subtitle;
if (subtitle.length > 10) { if (subtitle.length > 10) {
subtitle = subtitle.substr(0, 10) + '...' subtitle = subtitle.substr(0, 10) + '...'
} }
@ -429,17 +430,17 @@ Page({
}) })
} }
// if (!wx.getStorageSync('jstrip_token')) { if (!wx.getStorageSync('jstrip_token')) {
// return; return;
// } }
// if (this.data.info && this.data.info.id) { if (this.data.info && this.data.info.id) {
// this.drawImg() this.drawImg()
// } }
// else { else {
// setTimeout(() => { setTimeout(() => {
// this.onShow() this.onShow()
// }, 200) }, 200)
// } }
}, },
/** /**

1
pages/info/museumInfo/index.wxml

@ -48,7 +48,6 @@
<view class="fixed-btn" wx:if="{{info.product_venue && info.product_venue.sku && info.product_venue.sku.length>0}}"> <view class="fixed-btn" wx:if="{{info.product_venue && info.product_venue.sku && info.product_venue.sku.length>0}}">
<view bindtap="order" class="btn">参观预约</view> <view bindtap="order" class="btn">参观预约</view>
</view> </view>
<view style="position:absolute;right:0;left:-10000rpx;top:-200rpx;"> <view style="position:absolute;right:0;left:-10000rpx;top:-200rpx;">
<canvas canvas-id='imageCanvas' class='imageCanvas' style="width:551rpx;height:643rpx;" disable-scroll='true'> <canvas canvas-id='imageCanvas' class='imageCanvas' style="width:551rpx;height:643rpx;" disable-scroll='true'>
</canvas> </canvas>

403
pages/info/roadInfo/index.js

@ -2,6 +2,7 @@
let device = wx.getSystemInfoSync(); let device = wx.getSystemInfoSync();
const ratio = device.windowWidth / 750; const ratio = device.windowWidth / 750;
import commonApi from "../../../utils/https/common" import commonApi from "../../../utils/https/common"
import QRCode from '../../../utils/weapp-qrcode.js'
let app = getApp() let app = getApp()
Page({ Page({
@ -9,14 +10,16 @@ Page({
* 页面的初始数据 * 页面的初始数据
*/ */
data: { data: {
fixed:false, fixed: false,
type:1, type: 1,
top:0, top: 0,
info:null, info: null,
comment:[], comment: [],
commentTotal:0, commentTotal: 0,
retailId:"", retailId: "",
retailSkuId:"" retailSkuId: "",
shareImg: null,
showShareFlag: false
}, },
/** /**
@ -26,140 +29,392 @@ Page({
let rect = wx.getMenuButtonBoundingClientRect(); let rect = wx.getMenuButtonBoundingClientRect();
let height = (rect.top - device.statusBarHeight) * 2 + rect.height + device.statusBarHeight; let height = (rect.top - device.statusBarHeight) * 2 + rect.height + device.statusBarHeight;
this.setData({ this.setData({
top:height, top: height,
id:options.id id: options.id
}) })
if(options.retailId){ if (options.retailId) {
this.setData({ this.setData({
retailId:options.retailId retailId: options.retailId
}) })
} }
let api = commonApi._post; let api = commonApi._post;
if(wx.getStorageSync("jstrip_token")){ if (wx.getStorageSync("jstrip_token")) {
api = commonApi.user_post; api = commonApi.user_post;
} }
api("product/get_product_detail",{ api("product/get_product_detail", {
id:options.id id: options.id
}).then(res=>{ }).then(res => {
res.data.display_tags = (res.data.display_tags?res.data.display_tags.split(","):[]).splice(0,2); res.data.display_tags = (res.data.display_tags ? res.data.display_tags.split(",") : []).splice(0, 2);
if(options.skuid){ if (options.skuid) {
let sku = res.data.sku.find(item=>item.id==options.skuid); let sku = res.data.sku.find(item => item.id == options.skuid);
res.data.sku = [sku]; res.data.sku = [sku];
this.setData({ this.setData({
retailSkuId:options.skuid retailSkuId: options.skuid
}) })
} }
this.setData({ this.setData({
info:res.data info: res.data
}) })
this.BroswerRecord() this.BroswerRecord()
}) })
commonApi._post("product/product_comment_list",{ commonApi._post("product/product_comment_list", {
product_id:options.id, product_id: options.id,
offset:0, offset: 0,
limit:3 limit: 3
}).then(res=>{ }).then(res => {
res.data.list.map(item=>{ res.data.list.map(item => {
item.rate = Number(item.rate) item.rate = Number(item.rate)
}) })
this.setData({ this.setData({
commentTotal:res.data.total, commentTotal: res.data.total,
comment:res.data.list comment: res.data.list
}) })
}) })
}, },
BroswerRecord:function(){ BroswerRecord: function () {
setTimeout(()=>{ setTimeout(() => {
if(app.globalData.uuid){ if (app.globalData.uuid) {
commonApi._post('browse/browse_record',{ commonApi._post('browse/browse_record', {
type:"goods", type: "goods",
title:this.data.info.title, title: this.data.info.title,
drive:"mini", drive: "mini",
source_id:this.data.info.id, source_id: this.data.info.id,
url:"/pages/info/cardInfo/index?id="+this.data.info.id, url: "/pages/info/cardInfo/index?id=" + this.data.info.id,
uuid:app.globalData.uuid uuid: app.globalData.uuid
}).then(res=>{ }).then(res => {
}) })
} }
else { else {
this.BroswerRecord(); this.BroswerRecord();
} }
},500) }, 500)
}, },
changeMenu:function(e){ changeMenu: function (e) {
let index = e.currentTarget.dataset.index,that = this; let index = e.currentTarget.dataset.index, that = this;
const query=wx.createSelectorQuery(); //创建节点查询器 const query = wx.createSelectorQuery(); //创建节点查询器
query.select("#box"+index).boundingClientRect() //选择toViewid获取位置信息 query.select("#box" + index).boundingClientRect() //选择toViewid获取位置信息
query.selectViewport().scrollOffset() //获取页面查询位置的 query.selectViewport().scrollOffset() //获取页面查询位置的
query.exec(function(res) { query.exec(function (res) {
let scrollTop = res[0].top + res[1].scrollTop - 110 * ratio - that.data.top; let scrollTop = res[0].top + res[1].scrollTop - 110 * ratio - that.data.top;
wx.pageScrollTo({ wx.pageScrollTo({
scrollTop: scrollTop + 4, scrollTop: scrollTop + 4,
duration: 0 duration: 0
}) })
that.setData({ that.setData({
type:index type: index
}) })
}) })
}, },
onPageScroll:function(e){ onPageScroll: function (e) {
let that = this,height = this.data.top; let that = this, height = this.data.top;
let topHeight = height; let topHeight = height;
wx.createSelectorQuery().select('#menus').boundingClientRect(function(rect){ wx.createSelectorQuery().select('#menus').boundingClientRect(function (rect) {
console.log(rect.top,topHeight) console.log(rect.top, topHeight)
if(rect.top<=topHeight){ if (rect.top <= topHeight) {
// 此时应该把menus固定在顶部 // 此时应该把menus固定在顶部
that.setData({ that.setData({
fixed:true fixed: true
}) })
} }
else{ else {
that.setData({ that.setData({
fixed:false fixed: false
}) })
} }
// 滚动时判断滚动到哪个部分了 // 滚动时判断滚动到哪个部分了
const query=wx.createSelectorQuery(); //创建节点查询器 const query = wx.createSelectorQuery(); //创建节点查询器
query.select("#box1").boundingClientRect() //选择toViewid获取位置信息 query.select("#box1").boundingClientRect() //选择toViewid获取位置信息
query.select("#box2").boundingClientRect() //选择toViewid获取位置信息 query.select("#box2").boundingClientRect() //选择toViewid获取位置信息
query.select("#box3").boundingClientRect() //选择toViewid获取位置信息 query.select("#box3").boundingClientRect() //选择toViewid获取位置信息
query.select("#box4").boundingClientRect() //选择toViewid获取位置信息 query.select("#box4").boundingClientRect() //选择toViewid获取位置信息
let minHeight = that.data.fixed?(110 * ratio + height): topHeight; let minHeight = that.data.fixed ? (110 * ratio + height) : topHeight;
query.exec(function(res) { query.exec(function (res) {
if(res[3].top<minHeight){ if (res[3].top < minHeight) {
that.setData({ that.setData({
type:4 type: 4
}) })
} }
else if(res[2].top<minHeight){ else if (res[2].top < minHeight) {
that.setData({ that.setData({
type:3 type: 3
}) })
} }
else if(res[1].top<minHeight){ else if (res[1].top < minHeight) {
that.setData({ that.setData({
type:2 type: 2
}) })
} }
else { else {
that.setData({ that.setData({
type:1 type: 1
}) })
} }
}) })
}).exec() }).exec()
}, },
order:function(){ order: function () {
app.globalData.couponInfo = null; app.globalData.couponInfo = null;
app.globalData.product = { app.globalData.product = {
product:this.data.info product: this.data.info
} }
app.globalData.retailId = this.data.retailId; app.globalData.retailId = this.data.retailId;
wx.navigateTo({ wx.navigateTo({
url: '/pages/order/road/index?id='+this.data.info.id+(this.data.retailSkuId?('&skuid='+this.data.retailSkuId):'') url: '/pages/order/road/index?id=' + this.data.info.id + (this.data.retailSkuId ? ('&skuid=' + this.data.retailSkuId) : '')
})
},
// 分享
share: function () {
if (!wx.getStorageSync("jstrip_token")) {
commonApi.user_post("user/getMyInfo", {}).then(res => {
})
return;
}
if (!this.data.shareImg) {
wx.showToast({
title: '图片生成中,稍后再试',
icon: 'none'
})
return;
}
this.setData({
showShareFlag: !this.data.showShareFlag
})
},
// 保存
save() {
let url = this.data.shareImg, that = this;
wx.authorize({
/* 这个就是保存相册的 */
scope: 'scope.writePhotosAlbum',
success() {
wx.saveImageToPhotosAlbum({
filePath: url,
success(res) {
wx.showToast({
title: '保存成功',
icon: "success"
})
that.setData({
showShareFlag: !this.data.showShareFlag
})
},
fail(res) {
wx.showToast({
title: '保存失败',
icon: 'none'
})
}
}) })
}, },
complete(res) {
console.log(res);
/* 这里判断一下如果没有授权重新打开设置选项 */
wx.getSetting({
success(res) {
if (!res.authSetting['scope.writePhotosAlbum']) {
/* 打开设置的方法 */
// opensit();
wx.showToast({
title: '请打开权限后再试',
icon: 'none'
})
}
}
});
}
});
},
// 绘制海报
drawImg: function () {
var that = this, userinfo = wx.getStorageSync('jstrip_userInfo');
if (!userinfo) {
// 去登录
return false;
}
const ctx = wx.createCanvasContext('imageCanvas');
// const device = wx.getSystemInfoSync();
// const ratio = device.screenWidth / 750;
// 先获取到图片信息
let promise2 = new Promise(function (resolve, reject) {
wx.getImageInfo({
src: that.data.info.headimg,
success: function (res) {
resolve(res);
},
fail: function (res) {
reject(res);
}
})
})
let promise3 = new Promise(function (resolve, reject) {
let userid = wx.getStorageSync('jstrip_userid')
new QRCode('myQrcode', {
text: 'https://m.cloud.sz-trip.com/LineDetail?id=' + that.data.info.id + '&sharedUserId=' + userid + '&channel=-1',
width: 500,
height: 500,
padding: 12, // 生成二维码四周自动留边宽度,不传入默认为0
correctLevel: QRCode.CorrectLevel.H, // 二维码可辨识度
callback: (res) => {
resolve(res);
}
})
})
//成功得到图片信息后,开始绘图
Promise.all([promise2, promise3]).then(imgs => {
ctx.save();
ctx.beginPath(); //开始绘制
that.handleBorderRect(ctx, 0, 0, 551 * ratio, 407 * ratio, 25 * ratio, '#ccc')
ctx.clip();//画好了圆 剪切 原始画布中剪切任意形状和尺寸。一旦剪切了某个区域,则所有之后的绘图都会被限制在被剪切的区域内 这也是我们要save上下文的原因
ctx.drawImage(imgs[0].path, 0, 0, 551 * ratio, 407 * ratio);
ctx.restore();
ctx.save();
that.handleBorderRect2(ctx, 0, 407 * ratio, 551 * ratio, 236 * ratio, 25 * ratio, '#fff')
ctx.restore();
// 绘制二维码
ctx.drawImage(imgs[1].path, 373 * ratio, 495 * ratio, 137 * ratio, 137 * ratio);
// 开始文字绘制
ctx.setFillStyle("#000");
ctx.setFontSize(30 * ratio); //字大小
ctx.setTextAlign('left'); //是否居中显示,参考点画布中线
that.drawText(ctx, that.data.info.title, 25 * ratio, 450 * ratio, 480 * ratio, ratio);
// 售价
ctx.setFillStyle("#D62828");
ctx.setFontSize(40 * ratio); //字大小
ctx.setTextAlign('left'); //是否居中显示,参考点画布中线
let price = that.data.info.price ? ("¥" + (that.data.info.price / 100)) : '免费';
let width = ctx.measureText(price).width;
ctx.fillText(price, 25 * ratio, 620 * ratio);
// 副标题
ctx.setFillStyle("#999999");
ctx.setFontSize(28 * ratio); //字大小
ctx.setTextAlign('left'); //是否居中显示,参考点画布中线
let subtitle = that.data.info.display_tags[0];
if (subtitle.length > 10) {
subtitle = subtitle.substr(0, 10) + '...'
}
ctx.fillText(subtitle, 25 * ratio, 540 * ratio);
// ctx.draw();
// 划线价
// ctx.setFillStyle("#999999");
// ctx.setFontSize(32 * ratio); //字大小
// ctx.setTextAlign('left'); //是否居中显示,参考点画布中线
// let market_price = "¥" + (Number(that.data.info.market_price) / 100)
// ctx.fillText(market_price, 40 * ratio + width, 620 * ratio);
// let market_price_width = ctx.measureText(market_price).width;
// 划线
// ctx.beginPath()
// ctx.setLineWidth(1)
// ctx.moveTo(40 * ratio + width, 608 * ratio)
// ctx.lineTo(45 * ratio + width + market_price_width, 608 * ratio)
// ctx.stroke();
// 长按识别二维码
// ctx.setFillStyle("#666");
// ctx.setFontSize(22 * ratio); //字大小
// ctx.setTextAlign('left'); //是否居中显示,参考点画布中线
// ctx.fillText("长按识别二维码", 404*ratio, 710*ratio);
// 长按图片转发或保存
// ctx.setFillStyle("#000");
// ctx.setFontSize(24 * ratio); //字大小
// ctx.setTextAlign('left'); //是否居中显示,参考点画布中线
// ctx.fillText("长按图片保存到本地",(592*ratio - ctx.measureText("长按图片保存到本地").width)/2, 740*ratio);
ctx.draw();
// 转为图片
setTimeout(() => {
wx.canvasToTempFilePath({
x: 0,
y: 0,
canvasId: 'imageCanvas',
success: function (res) {
that.setData({
shareImg: res.tempFilePath
})
},
fail(err) {
console.log('agdgjgdajhg', err)
}
})
}, 500)
return false;
}).catch(err => {
console.log("this err", err)
})
},
// 圆角矩形
handleBorderRect(ctx, x, y, w, h, r, color) {
ctx.beginPath();
ctx.moveTo(x + w, y + h);
ctx.lineTo(x, y + h)
// 左上角
ctx.arc(x + r, y + r, r, Math.PI, 1.5 * Math.PI);
ctx.moveTo(x + r, y);
ctx.lineTo(x + w - r, y);
ctx.lineTo(x + w, y + r);
// 右上角
ctx.arc(x + w - r, y + r, r, 1.5 * Math.PI, 2 * Math.PI);
ctx.lineTo(x + w, y + h);
ctx.lineTo(x + w - r, y + h);
ctx.fillStyle = color;
ctx.fill();
ctx.closePath();
},
handleBorderRect2(ctx, x, y, w, h, r, color) {
ctx.beginPath();
ctx.moveTo(x, y);
ctx.lineTo(x + w, y)
// 右下角
ctx.arc(x + w - r, y + h - r, r, 0, 0.5 * Math.PI);
ctx.lineTo(x + r, y + h);
ctx.lineTo(x, y + h - r);
// 左下角
ctx.arc(x + r, y + h - r, r, 0.5 * Math.PI, Math.PI);
ctx.lineTo(x, y);
ctx.lineTo(x, y);
ctx.fillStyle = color;
ctx.fill();
ctx.closePath();
},
// 绘制两行文字
drawText: function (ctx, str, x, y, canvasWidth, ratio) {
let row = [], temp = "", chr = str.split("");
for (var a = 0; a < chr.length; a++) {
if (ctx.measureText(temp).width < canvasWidth) {
temp += chr[a];
}
else {
a--; //这里添加了a-- 是为了防止字符丢失,效果图中有对比
row.push(temp);
temp = "";
}
}
row.push(temp);
//如果数组长度大于2 则截取前两个
if (row.length > 2) {
var rowCut = row.slice(0, 2);
var rowPart = rowCut[1];
var test = "";
var empty = [];
for (var a = 0; a < rowPart.length; a++) {
if (ctx.measureText(test).width < canvasWidth - 30 * ratio) {
test += rowPart[a];
}
else {
break;
}
}
empty.push(test);
var group = empty[0] + "..."//这里只显示两行,超出的用...表示
rowCut.splice(1, 1, group);
row = rowCut;
}
for (var b = 0; b < row.length; b++) {
ctx.fillText(row[b], x, y + b * 40 * ratio, canvasWidth);
}
},
/** /**
* 生命周期函数--监听页面初次渲染完成 * 生命周期函数--监听页面初次渲染完成
@ -172,7 +427,17 @@ Page({
* 生命周期函数--监听页面显示 * 生命周期函数--监听页面显示
*/ */
onShow: function () { onShow: function () {
if (!wx.getStorageSync('jstrip_token')) {
return;
}
if (this.data.info && this.data.info.id) {
this.drawImg()
}
else {
setTimeout(() => {
this.onShow()
}, 200)
}
}, },
/** /**

27
pages/info/roadInfo/index.wxml

@ -1,6 +1,7 @@
<!--pages/info/hotelProductInfo/index.wxml--> <!--pages/info/hotelProductInfo/index.wxml-->
<wxs src="../../../utils/filter.wxs" module="tool" /> <wxs src="../../../utils/filter.wxs" module="tool" />
<title title="产品详情"></title> <title title="产品详情"></title>
<view class="iconfont icon-fenxiang" bindtap="share"></view>
<swiper class="swiper" indicator-dots="{{true}}" wx:if="{{info}}" <swiper class="swiper" indicator-dots="{{true}}" wx:if="{{info}}"
autoplay="{{true}}" interval="{{2000}}" duration="{{300}}"> autoplay="{{true}}" interval="{{2000}}" duration="{{300}}">
<block wx:for="{{info.listimg}}" wx:key="*this"> <block wx:for="{{info.listimg}}" wx:key="*this">
@ -91,3 +92,29 @@
</navigator> </navigator>
<view class="btn" bindtap="order">立即预订</view> <view class="btn" bindtap="order">立即预订</view>
</view> </view>
<view style="position:absolute;right:0;left:-10000rpx;top:-200rpx;">
<canvas canvas-id='imageCanvas' class='imageCanvas' style="width:551rpx;height:643rpx;" disable-scroll='true'>
</canvas>
<canvas class="canvasCode" style="opacity:0;width:500px;height:500px" canvas-id="myQrcode"></canvas>
</view>
<view class="mask" wx:if="{{showShareFlag}}" style="align-items: center;">
<view class="mask-bg" bindtap="share"></view>
<view class="mask-content share-img-box">
<image class="share-img" src="{{shareImg}}" mode="widthFix"></image>
<view class="share-tips">
<view style="position:relative">
<image class="img" src="https://sz-qd.oss-cn-hangzhou.aliyuncs.com/xcxImages/info/img.png" mode="widthFix"></image>
<view>保存图片到相册</view>
<view class="tipimg"><image src="https://sz-qd.oss-cn-hangzhou.aliyuncs.com/xcxImages/info/ok.png" mode="widthFix"></image></view>
</view>
<image style="width:36rpx" src="https://sz-qd.oss-cn-hangzhou.aliyuncs.com/xcxImages/info/arrow2.png" mode="widthFix"></image>
<view style="position:relative">
<image class="img" src="https://sz-qd.oss-cn-hangzhou.aliyuncs.com/xcxImages/info/code.png" mode="widthFix"></image>
<view>微信识别二维码</view>
<view class="tipimg"><image src="https://sz-qd.oss-cn-hangzhou.aliyuncs.com/xcxImages/info/ok1.png" mode="widthFix"></image></view>
</view>
</view>
<view class="save-btn" bindtap="save">保存到相册</view>
</view>
</view>

77
pages/info/roadInfo/index.wxss

@ -360,3 +360,80 @@ page {
border-radius: 39rpx; border-radius: 39rpx;
text-align: center; text-align: center;
} }
.mask-content {
position: absolute;
left: 0;
right: 0;
bottom: 0;
width: 100%;
}
.mask-content .icon-close {
position: absolute;
right: 40rpx;
top: 40rpx;
}
.share-img-box {
/* width: 551rpx; */
position: static;
background: none;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.share-img {
display: block;
width: 551rpx;
}
.share-tips {
width: 426rpx;
height: 150rpx;
background: #FFFFFF;
border-radius: 25rpx;
margin-top: 25rpx;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 65rpx;
color: #999;
font-size: 24rpx;
text-align: center;
line-height: 40rpx;
}
.share-tips .img {
display: block;
width: 55rpx;
margin: 0 auto;
margin-bottom: 4rpx;
}
.tipimg {
position: absolute;
left: 50%;
margin-left: 16rpx;
width: 24rpx;
height: 24rpx;
background: #D62828;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
top: 34rpx;
}
.tipimg image {
width: 21rpx;
display: block;
}
.save-btn {
width: 403rpx;
line-height: 77rpx;
background: #D62828;
border-radius: 39rpx;
text-align: center;
color: #fff;
font-size: 31rpx;
font-weight: 500;
margin-top: 50rpx;
}

292
pages/info/sceneProductInfo/index.js

@ -11,185 +11,185 @@ Page({
* 页面的初始数据 * 页面的初始数据
*/ */
data: { data: {
info:null, info: null,
bookingInfo:null, bookingInfo: null,
bookingInfoTitle:"", bookingInfoTitle: "",
safeBottom:app.globalData.safeBottom, safeBottom: app.globalData.safeBottom,
isLike:0, isLike: 0,
comment:[], comment: [],
commentTotal:0, commentTotal: 0,
isTest:true, isTest: true,
retailId:"", retailId: "",
shareImg:null, shareImg: null,
showShareFlag:false showShareFlag: false
}, },
/** /**
* 生命周期函数--监听页面加载 * 生命周期函数--监听页面加载
*/ */
onLoad: function (options) { onLoad: function (options) {
if(!options.id){ if (!options.id) {
util.back() util.back()
return; return;
} }
if(options.retailId){ if (options.retailId) {
this.setData({ this.setData({
retailId:options.retailId retailId: options.retailId
}) })
} }
commonApi._post("pbservice/Other/getClientConfig",{ commonApi._post("pbservice/Other/getClientConfig", {
unique_key:"wechatxcx" unique_key: "wechatxcx"
}).then(res=>{ }).then(res => {
let data = JSON.parse(res.data); let data = JSON.parse(res.data);
this.setData({ this.setData({
isTest:data.isTest isTest: data.isTest
}) })
}) })
this.setData({ this.setData({
id:options.id id: options.id
}) })
commonApi._post("scene/detail",{ commonApi._post("scene/detail", {
id:options.id id: options.id
}).then(res=>{ }).then(res => {
if(!res.data){ if (!res.data) {
wx.showToast({ wx.showToast({
title: '产品已下架', title: '产品已下架',
icon:'none' icon: 'none'
}) })
setTimeout(()=>{ setTimeout(() => {
util.back(); util.back();
},1000) }, 1000)
return; return;
} }
res.data.display_tags = (res.data.display_tags?res.data.display_tags.split(","):[]).splice(0,2); res.data.display_tags = (res.data.display_tags ? res.data.display_tags.split(",") : []).splice(0, 2);
// 如果是带有指定good_id的 那么取指定的 // 如果是带有指定good_id的 那么取指定的
if(options.gid){ if (options.gid) {
let pItem = res.data.product.find(item=>item.id==options.gid); let pItem = res.data.product.find(item => item.id == options.gid);
if(pItem){ if (pItem) {
res.data.product = [pItem]; res.data.product = [pItem];
} }
} }
// 如果带有指定skuid的话 那么取指定的sku展示 // 如果带有指定skuid的话 那么取指定的sku展示
if(options.skuid){ if (options.skuid) {
let pItem = null; let pItem = null;
for(let i = 0;i<res.data.product.length;i++){ for (let i = 0; i < res.data.product.length; i++) {
for(let j=0;j<res.data.product[i].sku.length;j++){ for (let j = 0; j < res.data.product[i].sku.length; j++) {
if(res.data.product[i].sku[j].id==options.skuid){ if (res.data.product[i].sku[j].id == options.skuid) {
res.data.product[i].sku = [res.data.product[i].sku[j]]; res.data.product[i].sku = [res.data.product[i].sku[j]];
pItem = res.data.product[i]; pItem = res.data.product[i];
break; break;
} }
} }
} }
if(pItem){ if (pItem) {
res.data.product = [pItem]; res.data.product = [pItem];
} }
} }
// res.data.listimg = res.data.listimg?res.data.listimg.split(","):[]; // res.data.listimg = res.data.listimg?res.data.listimg.split(","):[];
res.data.product.map(product=>{ res.data.product.map(product => {
product.sku.map(sku=>{ product.sku.map(sku => {
sku.display_tags = (sku.display_tags?sku.display_tags.split(","):[]).splice(0,2); sku.display_tags = (sku.display_tags ? sku.display_tags.split(",") : []).splice(0, 2);
}) })
}) })
this.setData({ this.setData({
info:res.data info: res.data
}) })
this.BroswerRecord() this.BroswerRecord()
}) })
// 获取收藏的状态 // 获取收藏的状态
if(wx.getStorageSync("jstrip_token")){ if (wx.getStorageSync("jstrip_token")) {
commonApi.user_post("scene/is_scene_collection",{ commonApi.user_post("scene/is_scene_collection", {
scene_id:options.id scene_id: options.id
}).then(res=>{ }).then(res => {
this.setData({ this.setData({
isLike:res.data isLike: res.data
}) })
}) })
} }
commonApi._post("ask/getQuestionList",{ commonApi._post("ask/getQuestionList", {
scene_id:options.id, scene_id: options.id,
page_no:1, page_no: 1,
page_num:3 page_num: 3
}).then(res=>{ }).then(res => {
this.setData({ this.setData({
ask:res.data.rows ask: res.data.rows
}) })
console.log(res) console.log(res)
}) })
// 获取评价列表 // 获取评价列表
commonApi._post("scene/get_comment",{ commonApi._post("scene/get_comment", {
scene_id:options.id scene_id: options.id
}).then(res=>{ }).then(res => {
res.data.list.map(item=>{ res.data.list.map(item => {
item.rate = Number(item.rate) item.rate = Number(item.rate)
}) })
this.setData({ this.setData({
comment:res.data.list.splice(0,3), comment: res.data.list.splice(0, 3),
commentTotal:res.data.total commentTotal: res.data.total
}) })
console.log(res) console.log(res)
}) })
}, },
BroswerRecord:function(){ BroswerRecord: function () {
setTimeout(()=>{ setTimeout(() => {
if(app.globalData.uuid){ if (app.globalData.uuid) {
commonApi._post('browse/browse_record',{ commonApi._post('browse/browse_record', {
type:"scene", type: "scene",
title:this.data.info.title, title: this.data.info.title,
drive:"mini", drive: "mini",
source_id:this.data.info.id, source_id: this.data.info.id,
url:"/pages/info/sceneProductInfo/index?id="+this.data.info.id, url: "/pages/info/sceneProductInfo/index?id=" + this.data.info.id,
uuid:app.globalData.uuid uuid: app.globalData.uuid
}).then(res=>{ }).then(res => {
}) })
} }
else { else {
this.BroswerRecord(); this.BroswerRecord();
} }
},500) }, 500)
}, },
like:function(){ like: function () {
let id = this.data.id,isLike = Number(this.data.isLike); let id = this.data.id, isLike = Number(this.data.isLike);
console.log(isLike) console.log(isLike)
commonApi.user_post(isLike!=1?"scene/scene_collection":"scene/scene_cancel_collection",{ commonApi.user_post(isLike != 1 ? "scene/scene_collection" : "scene/scene_cancel_collection", {
scene_id:id scene_id: id
}).then(res=>{ }).then(res => {
if(res.code==1){ if (res.code == 1) {
console.log(isLike) console.log(isLike)
wx.showToast({ wx.showToast({
title: '操作成功', title: '操作成功',
}) })
this.setData({ this.setData({
isLike:isLike==1?0:1 isLike: isLike == 1 ? 0 : 1
}) })
} }
}) })
}, },
gotolocation:function(){ gotolocation: function () {
let info = this.data.info; let info = this.data.info;
wx.openLocation({ wx.openLocation({
latitude: Number(info.lat), latitude: Number(info.lat),
longitude: Number(info.lon) longitude: Number(info.lon)
}) })
}, },
audioGuide:function(){ audioGuide: function () {
wx.navigateToMiniProgram({ wx.navigateToMiniProgram({
appId: 'wx74f380bc721a0379', appId: 'wx74f380bc721a0379',
path:'/pages/listen/listen?title=君到苏州' path: '/pages/listen/listen?title=君到苏州'
}) })
}, },
showBookingInfo:function(e){ showBookingInfo: function (e) {
this.setData({ this.setData({
bookingInfo:e.currentTarget.dataset.item.sku_model, bookingInfo: e.currentTarget.dataset.item.sku_model,
bookingInfoTitle:e.currentTarget.dataset.item.sku_name bookingInfoTitle: e.currentTarget.dataset.item.sku_name
}) })
}, },
closeMask:function(){ closeMask: function () {
this.setData({ this.setData({
bookingInfo:null bookingInfo: null
}) })
}, },
order:function(e){ order: function (e) {
app.globalData.couponInfo = null; app.globalData.couponInfo = null;
app.globalData.retailId = this.data.retailId; app.globalData.retailId = this.data.retailId;
// let sku = e.currentTarget.dataset.sku,product = e.currentTarget.dataset.product; // let sku = e.currentTarget.dataset.sku,product = e.currentTarget.dataset.product;
@ -200,46 +200,46 @@ Page({
}, },
// 分享 // 分享
share:function(){ share: function () {
if(!wx.getStorageSync("jstrip_token")){ if (!wx.getStorageSync("jstrip_token")) {
commonApi.user_post("user/getMyInfo",{}).then(res=>{ commonApi.user_post("user/getMyInfo", {}).then(res => {
}) })
return; return;
} }
if(!this.data.shareImg){ if (!this.data.shareImg) {
wx.showToast({ wx.showToast({
title: '图片生成中,稍后再试', title: '图片生成中,稍后再试',
icon:'none' icon: 'none'
}) })
return; return;
} }
this.setData({ this.setData({
showShareFlag:!this.data.showShareFlag showShareFlag: !this.data.showShareFlag
}) })
}, },
// 保存 // 保存
save(){ save() {
let url = this.data.shareImg,that = this; let url = this.data.shareImg, that = this;
wx.authorize({ wx.authorize({
/* 这个就是保存相册的 */ /* 这个就是保存相册的 */
scope: 'scope.writePhotosAlbum', scope: 'scope.writePhotosAlbum',
success() { success() {
wx.saveImageToPhotosAlbum({ wx.saveImageToPhotosAlbum({
filePath:url, filePath: url,
success(res) { success(res) {
wx.showToast({ wx.showToast({
title: '保存成功', title: '保存成功',
icon:"success" icon: "success"
}) })
that.setData({ that.setData({
showShareFlag:!this.data.showShareFlag showShareFlag: !this.data.showShareFlag
}) })
}, },
fail(res){ fail(res) {
wx.showToast({ wx.showToast({
title: '保存失败', title: '保存失败',
icon:'none' icon: 'none'
}) })
} }
}) })
@ -254,7 +254,7 @@ Page({
// opensit(); // opensit();
wx.showToast({ wx.showToast({
title: '请打开权限后再试', title: '请打开权限后再试',
icon:'none' icon: 'none'
}) })
} }
} }
@ -264,9 +264,9 @@ Page({
}, },
// 绘制海报 // 绘制海报
drawImg:function(){ drawImg: function () {
var that = this,userinfo = wx.getStorageSync('jstrip_userInfo'); var that = this, userinfo = wx.getStorageSync('jstrip_userInfo');
if(!userinfo){ if (!userinfo) {
// 去登录 // 去登录
return false; return false;
} }
@ -274,21 +274,21 @@ Page({
// const device = wx.getSystemInfoSync(); // const device = wx.getSystemInfoSync();
// const ratio = device.screenWidth / 750; // const ratio = device.screenWidth / 750;
// 先获取到图片信息 // 先获取到图片信息
let promise2 = new Promise(function(resolve,reject){ let promise2 = new Promise(function (resolve, reject) {
wx.getImageInfo({ wx.getImageInfo({
src:that.data.info.headimg, src: that.data.info.headimg,
success:function(res){ success: function (res) {
resolve(res); resolve(res);
}, },
fail:function(res){ fail: function (res) {
reject(res); reject(res);
} }
}) })
}) })
let promise3 = new Promise(function(resolve,reject){ let promise3 = new Promise(function (resolve, reject) {
let userid = wx.getStorageSync('jstrip_userid') let userid = wx.getStorageSync('jstrip_userid')
new QRCode('myQrcode',{ new QRCode('myQrcode', {
text: 'https://m.cloud.sz-trip.com/ScenicDetail?id='+that.data.info.id+'&sharedUserId='+userid+'&channel=-1', text: 'https://m.cloud.sz-trip.com/ScenicDetail?id=' + that.data.info.id + '&sharedUserId=' + userid + '&channel=-1',
width: 500, width: 500,
height: 500, height: 500,
padding: 12, // 生成二维码四周自动留边宽度,不传入默认为0 padding: 12, // 生成二维码四周自动留边宽度,不传入默认为0
@ -299,39 +299,39 @@ Page({
}) })
}) })
//成功得到图片信息后,开始绘图 //成功得到图片信息后,开始绘图
Promise.all([promise2,promise3]).then(imgs=>{ Promise.all([promise2, promise3]).then(imgs => {
ctx.save(); ctx.save();
ctx.beginPath(); //开始绘制 ctx.beginPath(); //开始绘制
that.handleBorderRect(ctx,0,0,551 * ratio,407 * ratio,25 * ratio,'#ccc') that.handleBorderRect(ctx, 0, 0, 551 * ratio, 407 * ratio, 25 * ratio, '#ccc')
ctx.clip();//画好了圆 剪切 原始画布中剪切任意形状和尺寸。一旦剪切了某个区域,则所有之后的绘图都会被限制在被剪切的区域内 这也是我们要save上下文的原因 ctx.clip();//画好了圆 剪切 原始画布中剪切任意形状和尺寸。一旦剪切了某个区域,则所有之后的绘图都会被限制在被剪切的区域内 这也是我们要save上下文的原因
ctx.drawImage(imgs[0].path, 0, 0,551 * ratio,407 * ratio); ctx.drawImage(imgs[0].path, 0, 0, 551 * ratio, 407 * ratio);
ctx.restore(); ctx.restore();
ctx.save(); ctx.save();
that.handleBorderRect2(ctx,0,407 * ratio,551 * ratio,236*ratio,25 * ratio,'#fff') that.handleBorderRect2(ctx, 0, 407 * ratio, 551 * ratio, 236 * ratio, 25 * ratio, '#fff')
ctx.restore(); ctx.restore();
// 绘制二维码 // 绘制二维码
ctx.drawImage(imgs[1].path, 373 * ratio, 495 * ratio,137 * ratio, 137 * ratio); ctx.drawImage(imgs[1].path, 373 * ratio, 495 * ratio, 137 * ratio, 137 * ratio);
// 开始文字绘制 // 开始文字绘制
ctx.setFillStyle("#000"); ctx.setFillStyle("#000");
ctx.setFontSize(30 * ratio); //字大小 ctx.setFontSize(30 * ratio); //字大小
ctx.setTextAlign('left'); //是否居中显示,参考点画布中线 ctx.setTextAlign('left'); //是否居中显示,参考点画布中线
that.drawText(ctx,that.data.info.title, 25*ratio, 450*ratio,480 * ratio,ratio); that.drawText(ctx, that.data.info.title, 25 * ratio, 450 * ratio, 480 * ratio, ratio);
// 售价 // 售价
ctx.setFillStyle("#D62828"); ctx.setFillStyle("#D62828");
ctx.setFontSize(40 * ratio); //字大小 ctx.setFontSize(40 * ratio); //字大小
ctx.setTextAlign('left'); //是否居中显示,参考点画布中线 ctx.setTextAlign('left'); //是否居中显示,参考点画布中线
let price = "¥"+(that.data.info.price/100); let price = "¥" + (that.data.info.price / 100);
let width = ctx.measureText(price).width; let width = ctx.measureText(price).width;
ctx.fillText(price, 25*ratio, 620*ratio); ctx.fillText(price, 25 * ratio, 620 * ratio);
// 副标题 // 副标题
ctx.setFillStyle("#999999"); ctx.setFillStyle("#999999");
ctx.setFontSize(28 * ratio); //字大小 ctx.setFontSize(28 * ratio); //字大小
ctx.setTextAlign('left'); //是否居中显示,参考点画布中线 ctx.setTextAlign('left'); //是否居中显示,参考点画布中线
let subtitle = that.data.info.display_tags[0]; let subtitle = that.data.info.display_tags[0];
if(subtitle.length>10){ if (subtitle.length > 10) {
subtitle = subtitle.substr(0,10)+'...' subtitle = subtitle.substr(0, 10) + '...'
} }
ctx.fillText(subtitle, 25*ratio, 540*ratio); ctx.fillText(subtitle, 25 * ratio, 540 * ratio);
// ctx.draw(); // ctx.draw();
// 划线价 // 划线价
// ctx.setFillStyle("#999999"); // ctx.setFillStyle("#999999");
@ -358,31 +358,31 @@ Page({
// ctx.fillText("长按图片保存到本地",(592*ratio - ctx.measureText("长按图片保存到本地").width)/2, 740*ratio); // ctx.fillText("长按图片保存到本地",(592*ratio - ctx.measureText("长按图片保存到本地").width)/2, 740*ratio);
ctx.draw(); ctx.draw();
// 转为图片 // 转为图片
setTimeout(()=>{ setTimeout(() => {
wx.canvasToTempFilePath({ wx.canvasToTempFilePath({
x: 0, x: 0,
y: 0, y: 0,
canvasId: 'imageCanvas', canvasId: 'imageCanvas',
success: function (res) { success: function (res) {
that.setData({ that.setData({
shareImg:res.tempFilePath shareImg: res.tempFilePath
}) })
}, },
fail(err){ fail(err) {
console.log('agdgjgdajhg',err) console.log('agdgjgdajhg', err)
} }
}) })
},500) }, 500)
return false; return false;
}).catch(err=>{ }).catch(err => {
console.log("this err",err) console.log("this err", err)
}) })
}, },
// 圆角矩形 // 圆角矩形
handleBorderRect(ctx, x, y, w, h, r, color){ handleBorderRect(ctx, x, y, w, h, r, color) {
ctx.beginPath(); ctx.beginPath();
ctx.moveTo(x+w,y+h); ctx.moveTo(x + w, y + h);
ctx.lineTo(x,y+h) ctx.lineTo(x, y + h)
// 左上角 // 左上角
ctx.arc(x + r, y + r, r, Math.PI, 1.5 * Math.PI); ctx.arc(x + r, y + r, r, Math.PI, 1.5 * Math.PI);
ctx.moveTo(x + r, y); ctx.moveTo(x + r, y);
@ -390,16 +390,16 @@ Page({
ctx.lineTo(x + w, y + r); ctx.lineTo(x + w, y + r);
// 右上角 // 右上角
ctx.arc(x + w - r, y + r, r, 1.5 * Math.PI, 2 * Math.PI); ctx.arc(x + w - r, y + r, r, 1.5 * Math.PI, 2 * Math.PI);
ctx.lineTo(x + w, y + h ); ctx.lineTo(x + w, y + h);
ctx.lineTo(x + w - r, y + h); ctx.lineTo(x + w - r, y + h);
ctx.fillStyle = color; ctx.fillStyle = color;
ctx.fill(); ctx.fill();
ctx.closePath(); ctx.closePath();
}, },
handleBorderRect2(ctx, x, y, w, h, r, color){ handleBorderRect2(ctx, x, y, w, h, r, color) {
ctx.beginPath(); ctx.beginPath();
ctx.moveTo(x,y); ctx.moveTo(x, y);
ctx.lineTo(x+w,y) ctx.lineTo(x + w, y)
// 右下角 // 右下角
ctx.arc(x + w - r, y + h - r, r, 0, 0.5 * Math.PI); ctx.arc(x + w - r, y + h - r, r, 0, 0.5 * Math.PI);
ctx.lineTo(x + r, y + h); ctx.lineTo(x + r, y + h);
@ -413,8 +413,8 @@ Page({
ctx.closePath(); ctx.closePath();
}, },
// 绘制两行文字 // 绘制两行文字
drawText: function(ctx, str, x, y, canvasWidth,ratio) { drawText: function (ctx, str, x, y, canvasWidth, ratio) {
let row = [],temp="",chr=str.split(""); let row = [], temp = "", chr = str.split("");
for (var a = 0; a < chr.length; a++) { for (var a = 0; a < chr.length; a++) {
if (ctx.measureText(temp).width < canvasWidth) { if (ctx.measureText(temp).width < canvasWidth) {
temp += chr[a]; temp += chr[a];
@ -462,17 +462,17 @@ Page({
* 生命周期函数--监听页面显示 * 生命周期函数--监听页面显示
*/ */
onShow: function () { onShow: function () {
// if(!wx.getStorageSync('jstrip_token')){ if (!wx.getStorageSync('jstrip_token')) {
// return; return;
// } }
// if(this.data.info && this.data.info.id){ if (this.data.info && this.data.info.id) {
// this.drawImg() this.drawImg()
// } }
// else { else {
// setTimeout(()=>{ setTimeout(() => {
// this.onShow() this.onShow()
// },200) }, 200)
// } }
}, },
/** /**

2
pages/info/sceneProductInfo/index.wxml

@ -1,6 +1,6 @@
<!--pages/info/sceneProductInfo/index.wxml--> <!--pages/info/sceneProductInfo/index.wxml-->
<title title="产品详情"></title> <title title="产品详情"></title>
<!-- <view class="iconfont icon-fenxiang" bindtap="share"></view> 需要配置域名 --> <view class="iconfont icon-fenxiang" bindtap="share"></view>
<view class="iconfont {{isLike==1?'icon-shoucang':'icon-xin'}}" bindtap="like"></view> <view class="iconfont {{isLike==1?'icon-shoucang':'icon-xin'}}" bindtap="like"></view>
<!-- <view class="audio-box" bindtap="audioGuide"> <!-- <view class="audio-box" bindtap="audioGuide">
<view>语音导览</view> <view>语音导览</view>

Loading…
Cancel
Save