123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- // pages/customized/made/made.js
- import * as util from '../../../utils/util.js'
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- dataPositionObj: {},
- propSize: {},
- isActive: '9', // 默认是正面
- obverseImgObject:{},
- imgTouch: {}, // 图片的对象,分为正面,侧面,手柄,底部
- fontTouch: {}, //文字的对象,分为正面,侧面,手柄,底部
- imgAnimationData: {}, // 图片的旋转
- fontAnimationData: {}, // 文字的旋转
- touchStatic: true,
- fontContent: '可定制区域',
- rpx: 1, // 获取页面的rpx
- imgSrcArray: [],
- imgBuildArray: [], // 生成后图片的数组
- simulation: { // 模拟字体,获取字体的宽高
- fontContent: '',
- fontSize: '',
- height: '',
- width: '',
- },
- box: { // 盒子默认是白色正面
- static: true,
- left: 'box-white-1-left',
- right: 'box-white-1-right'
- }
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- let that = this;
- wx.getSystemInfo({
- success: function (res) {
- let rpx = res.windowWidth / 750;
- that.setData({
- rpx: rpx
- });
- console.log(rpx, 'rpx')
- },
- })
- if ('id' in options) {
- this.setData({
- isActive: options.id
- })
- }
- console.log(this.data.isActive)
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady: function () {
- let that = this;
- // console.log('页面开始准备中'
- that.imgAnimation = wx.createAnimation({
- timingFunction: 'step-start', // "linear","ease","ease-in","ease-in-out","ease-out","step-start","step-end"
- })
- that.fontAnimation = wx.createAnimation({
- timingFunction: 'step-start', // "linear","ease","ease-in","ease-in-out","ease-out","step-start","step-end"
- })
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow: function () {
- console.log('onshow')
- let that = this;
- let cupNum = util.changeCup(that.data.isActive);
- console.log(cupNum)
- that.setData({
- dataPositionObj: cupNum.dataPositionObj,
- propSize: cupNum.propSize,
- obverseImgObject:util.changeImg
- })
- that.getDataTouch(that);
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide: function () {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload: function () {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function () {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom: function () {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage: function () {
- },
- addImgRouter() {
- console.log('添加图片');
- wx.setStorageSync('box',this.data.box)
- wx.navigateTo({
- url: '/customized/pages/oneMade/oneMadeImg/oneMadeImg?id=' + this.data.isActive,
- })
- },
- addFontRouter() {
- console.log('添加文字');
- wx.setStorageSync('box', this.data.box)
- wx.navigateTo({
- url: '/customized/pages/oneMade/oneMadeFont/oneMadeFont?id=' + this.data.isActive,
- })
- },
- getDataTouch(that) {
- let madeTouchImg = wx.getStorageSync('madeImgData' + that.data.isActive)
- let madeTouchFont = wx.getStorageSync('madeFontData' + that.data.isActive)
- console.log(madeTouchImg, madeTouchFont, "madeTouchFontmadeTouchFont")
- if (madeTouchImg || madeTouchFont) {
- that.setData({
- touchStatic: false
- })
- if (madeTouchImg) {
- that.imgAnimation.rotate(madeTouchImg.angle).step();
- that.setData({
- imgAnimationData: that.imgAnimation.export(),
- })
- }
- if (madeTouchFont) {
- that.fontAnimation.rotate(madeTouchFont.angle).step();
- that.setData({
- fontAnimationData: that.fontAnimation.export(),
- })
- that.setData({
- 'simulation.fontContent': madeTouchFont.fontContent,
- 'simulation.fontSize': madeTouchFont.fontSize
- })
- that.getTouchFontInformation(that)
- }
- } else {
- that.setData({
- touchStatic: true
- })
- }
- that.setData({
- imgTouch: madeTouchImg ? madeTouchImg : {}, //存储图片数据
- fontTouch: madeTouchFont ? madeTouchFont : {},
- })
- },
- finishDesign() { // 完成设计
- let that = this;
- if (!wx.getStorageSync('madeImgData' + this.data.isActive) && !wx.getStorageSync('madeFontData' + this.data.isActive)) {
- wx.showToast({
- title: '您还没有设计',
- icon: 'none'
- })
- } else {
- wx.navigateTo({
- url: '/customized/pages/oneMade/oneComb/oneComb?id=' + this.data.isActive
- })
- }
-
- },
- getTouchFontInformation(that) {
- let query = wx.createSelectorQuery();
- query.select('#simulation').boundingClientRect()
- query.exec(function (res) {
- console.log(res, "获取font的宽高");
- that.setData({
- 'simulation.height': res[0].height,
- 'simulation.width': res[0].width
- });
- wx.setStorageSync('simulationFont' + that.data.isActive, that.data.simulation);
- })
- },
- })
|