Commit 45894241 by huahua

提交

parent 7d923898
......@@ -18,6 +18,10 @@
//设置语言
saveLanguage(defaultStr) {
this._i18n.locale = 'en-us';
uni.setStorageSync('lang', this._i18n.locale);
switch (defaultStr) {
case "ch":
case "zh-cn":
......@@ -59,6 +63,11 @@
this._i18n.locale = 'es-es';
uni.setStorageSync('lang', this._i18n.locale);
break;
// default:
// this._i18n.locale = 'en-us';
// uni.setStorageSync('lang', this._i18n.locale);
// console.log("进来22")
// break;
}
},
},
......@@ -76,6 +85,7 @@
let lang = uni.getStorageSync('lang');
if (lang && lang != "" && lang != null) {
this._i18n.locale = lang;
this.saveLanguage(this._i18n.locale);
}
if (options.query.machine_id && options.query.machine_id != "null") { //判断传的有没有设备id
this.globalData.machine_id = options.query.machine_id
......@@ -87,6 +97,7 @@
};
if (lang && lang != "" && lang != null) {
this._i18n.locale = lang;
this.saveLanguage(this._i18n.locale);
} else {
this.saveLanguage('en-us');
logoservice.verifyToken({
......
......@@ -16,8 +16,7 @@ export default {
default: 0
},
// 进度条样式
/*
aqua
/*aqua
copper
candy
neon
......
......@@ -2,11 +2,7 @@
<view v-show="show" class="t-wrapper" @touchmove.stop.prevent="moveHandle">
<view class="t-mask" :class="{active:active}" @click.stop="close"></view>
<view class="t-box" :class="{active:active}">
<!-- <view class="t-header">
<view class="t-header-button" @click="close">取消</view>
<view class="t-header-button" @click="confirm">确认</view>
</view> -->
<!-- 颜色 -->
<scroll-view style="box-sizing: border-box; white-space: nowrap; margin: 10upx 0;" scroll-x scroll-with-animation >
<view style="text-align: center; display: inline-block;" class="t-alternative__item" v-for="(item,index) in colorList" :key="index">
<view class="t-alternative__item-content" :style="{ background: 'rgba(' + item.r + ',' + item.g + ',' + item.b + ',' + item.a + ')' }"
......@@ -28,18 +24,7 @@
<view class="t-pointer" :style="{ top: site[0].top - 8 + 'px', left: site[0].left - 8 + 'px' }"></view> -->
</view>
</view>
<!-- <view class="t-control__box">
<view class="t-control__color">
<view class="t-control__color-content" :style="{ background: 'rgba(' + rgba.r + ',' + rgba.g + ',' + rgba.b + ',' + rgba.a + ')' }"></view>
</view>
<view class="t-control-box__item">
<view class="t-controller boxs" @touchstart="touchstart($event, 1)" @touchmove="touchmove($event, 1)" @touchend="touchend($event, 1)">
<view class="t-hue">
<view class="t-circle" :style="{ left: site[1].left - 12 + 'px' }"></view>
</view>
</view>
</view>
</view> -->
<view class="t-control__box">
<view class="t-control__color">
<!-- <view class="t-control__color-content"
......@@ -66,48 +51,7 @@
:style="{ background: 'rgba(' + rgba.r + ',' + rgba.g + ',' + rgba.b + ',0.2)' }"></view>
</view>
</view>
<!-- <view class="t-result__box">
<view v-if="mode" class="t-result__item">
<view class="t-result__box-input">{{hex}}</view>
<view class="t-result__box-text">HEX</view>
</view>
<template v-else>
<view class="t-result__item">
<view class="t-result__box-input">{{rgba.r}}</view>
<view class="t-result__box-text">R</view>
</view>
<view class="t-result__item">
<view class="t-result__box-input">{{rgba.g}}</view>
<view class="t-result__box-text">G</view>
</view>
<view class="t-result__item">
<view class="t-result__box-input">{{rgba.b}}</view>
<view class="t-result__box-text">B</view>
</view>
<view class="t-result__item">
<view class="t-result__box-input">{{rgba.a}}</view>
<view class="t-result__box-text">A</view>
</view>
</template>
<view class="t-result__item t-select" @click="select">
<view class="t-result__box-input">
<view>切换</view>
<view>模式</view>
</view>
</view>
</view> -->
<!-- <view class="t-alternative">
<view class="t-alternative__item" v-for="(item,index) in colorList" :key="index">
<view class="t-alternative__item-content" :style="{ background: 'rgba(' + item.r + ',' + item.g + ',' + item.b + ',' + item.a + ')' }"
@click="selectColor(item)">
</view>
</view>
<view class="t-alternative__item" >
<view class="t-alternative__item-content" style="background: rgba(0,0,0,0)"
@click="eliminate(item)">
</view>
</view>
</view> -->
</view>
</view>
</template>
......
......@@ -6,9 +6,7 @@
<button open-type="share" class="tool-btn">
<image class="icon" :src="item.select?item.selectIcon:item.icon" mode="aspectFit"></image>
<text class="title" :class="{'title-select': item.select}">
{{$i18n.messages[$i18n.locale][item.title]}}
<!-- {{this.$i18n.messages[this.$i18n.locale]['画笔大小']}} -->
<!-- <view> {{this.$i18n.messages[this.$i18n.locale]['画笔大小']}}</view> -->
{{$i18n.messages[$i18n.locale][item.title]}}
</text>
</button>
</block>
......@@ -17,12 +15,10 @@
<image class="icon" :src="item.select?item.selectIcon:item.icon" mode="aspectFit"></image>
<text class="title" :class="{'title-select': item.select}">
{{$i18n.messages[$i18n.locale][item.title]}}
<!-- <view> {{this.$i18n.messages[this.$i18n.locale]['画笔大小']}}</view> -->
<!-- {{this.$i18n.messages[this.$i18n.locale]['画笔大小']}} -->
</text>
</view>
</view>
</block>
</view>
</view>
</view>
<view>
<!-- 颜色 -->
......@@ -39,17 +35,11 @@
</view>
<view class="pen-section">
<view style="display: flex; align-items: center; justify-content: center;">
<!-- <view class="pen" :style="{backgroundColor: penColor, height: lineWidth}"></view>
<view class="triangle-right"
:style="{'border-top': (lineValue / 2) + 'px solid transparent',
'border-left': lineValue + 'px solid' + penColor,
'border-bottom': (lineValue / 2) + 'px solid transparent',}"></view> -->
<view style="font-size: 20upx; margin-right: 16upx; color: #FFFFFF; width: 240upx;">
{{$i18n.messages[$i18n.locale]['画笔大小']}}
</view>
</view>
<slider min="1" max="20" :value="lineValue" block-size="20" activeColor="#FFFFFF" class="pen-slider" @change="penWidthChange"/>
<!-- <view class="pen-txt">{{lineWidth}}</view> -->
</view>
</view>
</template>
......@@ -602,7 +592,7 @@
}
},
methods: {
// 常用颜色选择
//常用颜色选择
selectColor(color,index) {
this.selectColorIndex = index
this.$emit('colorPickTap', color);
......@@ -611,7 +601,6 @@
this.$emit('toolItemTap', index);
},
penWidthChange (e) {
console.log('滑块滚动:' + JSON.stringify(e));
this.lineWidth = e.detail.value + 'px';
this.lineValue = e.detail.value;
this.$emit('penWidthChange', this.lineValue);
......@@ -647,9 +636,10 @@
}
.title {
font-size: 20upx;
font-size: 19upx;
margin-left: 8upx;
color: #FFFFFF;
line-height: 30upx;
}
.title-select {
......
......@@ -45,7 +45,6 @@
border-radius: 100px;
background-color: #f1f1f1
}
.uni-badge.uni-badge-inverted {
padding: 0 5px 0 0;
color: #999;
......
......@@ -28,13 +28,8 @@
<view style="width: 100%;">
<image :src="item.icon + '?x-oss-process=image/resize,lfit,w_300'" mode="aspectFit"
style="width: 60%; height: 80upx; margin: auto; display: block;"></image>
<!-- <view style="text-align: center; font-size: 28upx; margin-top: 10upx; width: 95%; margin: auto;
overflow: hidden; text-overflow: ellipsis; white-space: nowrap;word-break:break-all;">
{{item.title || ''}}
</view> -->
</view>
</view>
<!-- </view> -->
</scroll-view>
<!-- 无数据 -->
<view v-if="catrgoryList.length == 0" style="text-align: center; color: #BEBEBE;">
......
......@@ -20,7 +20,7 @@
style="height: 23upx; width: 23upx; padding: 21upx 33upx;"></image>
</view>
<scroll-view v-if="languageList.length > 0" scroll-y scroll-with-animation style="box-sizing: border-box;white-space: nowrap;
width:100% ; margin:0 auto; height: 800upx; overflow: hidden;">
width:100% ; margin:40upx auto; height: 740upx; overflow: hidden; ">
<view v-for="(item,index) in languageList" :key="index" @click="languageClick(item)"
style=" margin: 10upx; display: flex;align-items: center; height: 110upx; width: calc(100% - 20upx); text-align: center;justify-content: center; font-size: 30upx;">
{{item.title}}
......
......@@ -5,17 +5,8 @@
width: 220upx;
height: 110upx;">
</image>
<!-- <image v-if="statusloading == 1 && support_paypal" src="../../static/img/icon_home_order_image.png" style="
position: fixed;
z-index: 997;
right: -10upx;
bottom: 650upx;
width: 110upx;
height:110upx;" @click="toOrderList()"></image> -->
<view v-if="statusloading == 1" style="
<view v-if="statusloading == 1" style="
position: fixed;
z-index: 99;
right: 0upx;
......@@ -26,19 +17,8 @@
font-size: 20upx; text-align: center;
line-height:80upx; border: 8upx solid #F29F3D; background: #FFFFFF; border-radius: 30upx 0upx 30upx 0upx; font-size: 30upx; font-weight: 600;
"@click="toSelectLanguage()">EN
</view>
<!-- <image v-if="statusloading == 1" src="../../static/img/icon_change_language.png" style="
position: fixed;
z-index: 997;
right: 0upx;
bottom: 820upx;
width:90upx;
height:80upx;
font-size: 20upx; text-align: center;
line-height:80upx; " @click="toSelectLanguage()">
</image> -->
</view>
<!-- 自定义头部 -->
<myhead :worksid="9" :title=" $i18n.messages[$i18n.locale]['定制蛋糕'] + myheadtext" :color="'#fff'"
......@@ -71,12 +51,12 @@
</view>
<view @click="Customize_now" hover-class="hover-class-bg" style="position: fixed; bottom: 130upx; left: 0; right: 0; margin: auto;
width: 300upx; height: 100upx;
width: 380upx; height: 110upx;
background: linear-gradient(92deg, #E6B01A, #F29F3D);
box-shadow: 0px 19px 48px 1px rgba(20, 31, 62, 0.35);
border-radius: 40px;">
border-radius: 50px;">
<view
style=" text-align: center; line-height: 100upx; font-size: 36upx; font-weight: 500; color: #FFFFFF;">
style=" text-align: center; line-height: 110upx; font-size: 36upx; font-weight: 500; color: #FFFFFF;">
{{$i18n.messages[$i18n.locale]['立即定制']}}
</view>
</view>
......@@ -109,6 +89,7 @@
<!-- 选择语言 -->
<switchLanguage ref="switchLanguage" @backLanguage="backLanguage"></switchLanguage>
</view>
</template>
......
......@@ -325,18 +325,20 @@
<!-- 切换手机 -->
<view v-if="!active && !guide_left" @click="changeGoodSize()"
style="z-index: 99;position: fixed; left: 0upx; top: 150upx;">
<view style="width: 115upx; height: 130upx;
line-height:130upx;
<view style="width: 180upx; height: 140upx;
line-height:140upx;
border: 8upx solid #F29F3D;
border-radius: 0upx 20upx 60upx 0upx;
background: #F5DFA4;
text-align: center;
color: #fff;
font-size: 28upx;
font-size: 27upx;
justify-content: center;
align-items: center;">
<view style="margin-top: 15upx;"> {{$i18n.messages[$i18n.locale]['切换']}}</view>
<view> {{$i18n.messages[$i18n.locale]['形状']}}</view>
align-items: center; text-align: center;
flex-direction: column;
display: flex; ">
<view style=" width: calc(100% - 20upx); margin: 0 auto;word-break:break-all; line-height: 30upx; text-align: center">
{{$i18n.messages[$i18n.locale]['切换']}}</view>
</view>
</view>
......@@ -3672,30 +3674,28 @@
}
}
// 底部工具栏
//底部工具栏
.toolRight {
position: fixed;
top: 200upx;
top: 180upx;
right: 0;
width: 120upx;
width:150upx;
z-index: 999;
.tool_li {
width: 100%;
height: 115upx;
height: 130upx;
.tool_li_img {
width: 46upx;
height: 40upx;
display: block;
margin: auto;
}
.tool_li_text {
text-align: center;
color: #000;
font-size: 19upx;
margin-top: 10upx;
margin-top: 5upx;
line-height: 32upx;
}
}
}
......@@ -3730,7 +3730,7 @@
}
.tool_add {
width: 228upx;
width: 280upx;
background: #F29F3D;
line-height: 100upx;
text-align: center;
......
......@@ -25,7 +25,6 @@
</view>
<!-- <view style="color: #333333 ; font-weight: bold;font-size: 33upx;">开始扫码定制</view> -->
</view>
</view>
</template>
......
......@@ -71,7 +71,7 @@
};
},
mounted() {
// this.getShapeList()
//this.getShapeList()
},
/**
* 组件的公有方法列表
......
<template>
<view v-if="isShow" style=" width: 100%; height: 100%; z-index: 9997;">
<view v-if="isShow" style=" width: 100%; z-index: 9997;">
<view
style="position: absolute; top: 0; width: 100%; height: 100%; background: #999999; z-index:997; opacity: 0.5; "
@click="closeView()">
</view>
<view style=" width: 680upx; border-radius: 20upx; height: 800upx; z-index: 998; position: absolute ;margin:auto; top:0; right: 0; left: 0; bottom: 0;flex-direction: column">
<view style=" width: 700upx; border-radius: 20upx; height: 800upx; z-index: 998; position: absolute ;margin:auto; top:0; right: 0; left: 0; bottom: 0;flex-direction: column">
<image src="../../static/icon_home_good_back.png" style="width: 680upx; border-radius: 20upx;
<image src="../../static/icon_home_good_back.png" style="width: 700upx; border-radius: 20upx;
height: 780upx;
left:50%;
top:50%;
......@@ -16,7 +16,7 @@
position: absolute; " />
<view style="position: absolute;
width: 680upx; height:780upx;
width: 700upx; height:780upx;
top: 0;">
<view style="
......@@ -34,12 +34,12 @@
float: left;
border-radius: 15upx;
position: relative;
width: 235upx">
width: 240upx">
<image mode="widthFix"
:class="[goodCurrentIndexTop == index? 'good-item-select':'good-item-no-select' ]"
:src="item.goods_pic + '?x-oss-process=image/resize,lfit,w_200'"></image>
<view style="text-align: center; font-size: 27upx; width: 200upx;
color:#000; margin-top: 30upx; ">
<view style="text-align: center; font-size: 26upx; width: 240upx;
color:#000; margin-top: 30upx;line-height:30upx; ">
{{item !=null ? $i18n.messages[$i18n.locale][item.name] : ''}}
</view>
......@@ -53,7 +53,7 @@
<view style="
border-radius: 15upx;
position: relative;
margin: 10upx;">
margin: 5upx;">
<view :class="[sizeCurrentIndexTop == index? 'size-item-select':'size-item-no-select' ]">
{{item !=null ? $i18n.messages[$i18n.locale][item.title] : ''}}
</view>
......@@ -237,23 +237,23 @@
.size-item-select {
border: 2upx #F29F3D solid;
width: 130upx;
width: 155upx;
height: 65upx;
background: #F5F5F5;
border-radius: 15upx;
line-height: 65upx;
color: #000;
font-size: 30upx;
font-size: 27upx;
text-align: center;
}
.size-item-no-select {
width: 130upx;
width: 155upx;
height: 65upx;
background: #F5F5F5;
border-radius: 15upx;
line-height: 65upx;
font-size: 30upx;
font-size: 27upx;
color: #000;
text-align: center;
border: 2upx transparent solid;
......
......@@ -8,7 +8,6 @@
style="border-radius: 30upx; position: relative; overflow: hidden;">
<view class="board-container">
<!-- 遮罩 -->
<!-- <view style="position: absolute; bottom: 0; left: 0; height: 100%; width: 100%; z-index: 1; opacity: 0.8;" @click.stop.prevent="cancelBrand('share')"></view> -->
<view class="board" :style="{width: data.editorWidth +'px',height: data.editorHeight +'px',top: -differHeight +'px'}"
:class="{'board-out':colorPanelShow}">
<canvas class="board-canvas" canvas-id="drawCanvas" disable-scroll="true"
......@@ -97,12 +96,9 @@
hollowCircleMode: false,
lastHollowRect: {},
lastHollowCircle: {},
MobilePhoneHeight: 0,
MobilePhoneWidth: 0,
differHeight: 0, //相差高度
pixelRate: 1,
data: {},
openState: false,
......@@ -113,10 +109,8 @@
},
methods: {
//获取图片信息
/* getImgInfo() {
/*getImgInfo() {
let self = this;
let img = new Image()
img.src = self.data
......@@ -124,12 +118,7 @@
//console.log('图片原始高度', img.height)
//console.log('图片原始宽度',img.width)
}; */
uploadDIY(tempFilePaths) {
// uni.showLoading({
// title:this.$i18n.messages[this.$i18n.locale]['生成中'],
// mask: true
// })
var _this = this
wx.request({
url: Env.getDevBaseURL() + '/api/AliossSign/getSign',
......@@ -139,7 +128,7 @@
'content-type': 'application/x-www-form-urlencoded',
'Accept': 'application/json'
},
success: function(res) {
success: function(res) {
var atter = res.data
let time = new Date().getTime() + Math.floor((Math.random() * 1000) + 1)
wx.uploadFile({
......@@ -155,12 +144,7 @@
'callback': atter.callback,
},
success: function(res) {
if (res.statusCode != 200) {
// console.log({
// errCode: '599',
// msg: '其他错误'
// })
return;
}
if (res.statusCode == 200) {
......@@ -169,7 +153,7 @@
icon: 'none',
duration: 3000
})
// // console.log(atter.host + '/' + atter.dir + time + '.png')
//console.log(atter.host + '/' + atter.dir + time + '.png')
let url = atter.host + '/' + atter.dir + time + '.png'
_this.$emit('tuyaimg', url)
_this.$refs['brandscenter'].close()
......@@ -177,11 +161,11 @@
}
},
fail: function(err) {
// wx.showToast({
//wx.showToast({
// title: '生成涂鸦成功失败!',
// icon: 'none',
// duration: 1200
// })
//})
},
complete: function(err) {
// console.log('总共' + successUp + '张上传成功,' + failUp + '张上传失败!');
......@@ -190,7 +174,9 @@
}
})
},
change() {},
change() {
},
cancelBrand() {
this.clearDrawBoard()
this.$refs['brandscenter'].close()
......@@ -209,7 +195,6 @@
that.MobilePhoneHeight = res.windowHeight // 屏幕高度
that.MobilePhoneWidth = res.windowWidth // 屏幕高度
that.differHeight = res.windowHeight - that.data.bgHeight
//console.log("相差高度=" +that.differHeight +" that.MobilePhoneHeigh="+ res.windowHeight+"bgHeight="+that.data.bgHeight)
that.pixelRate = res.windowWidth / 750;
},
})
......@@ -223,7 +208,7 @@
})
},
colorPickTapHandler(obj) {
// console.log('我点击的颜色:' + JSON.stringify(obj));
//console.log('我点击的颜色:' + JSON.stringify(obj));
this.colorPanelShow = false;
this.toolArr.forEach(item => {
item.select = false;
......@@ -240,7 +225,7 @@
this.drawContext.strokeStyle = obj.color;
},
penWidthChangeHandler(width) {
// console.log('画笔宽度:' + width);
//console.log('画笔宽度:' + width);
this.lineWidth = width;
this.drawContext.setLineWidth(width);
this.drawContext.setLineCap('round') // 让线条圆润
......@@ -254,7 +239,7 @@
break;
case 'eraser':
this.canvas_restore()
// this.drawContext.strokeStyle = 'rgba(255, 255, 255, 0)';
//this.drawContext.strokeStyle = 'rgba(255, 255, 255, 0)';
this.colorPanelShow = false;
break;
case 'pen':
......@@ -268,7 +253,7 @@
break;
case 'color':
this.colorPanelShow = !this.colorPanelShow;
// this.drawMode = this.colorPanelShow ? false : true;
//this.drawMode = this.colorPanelShow ? false : true;
break;
case 'save':
if (that.canvas_neto.length < 1) {
......@@ -278,23 +263,8 @@
uni.canvasToTempFilePath({
canvasId: 'drawCanvas',
success: function(res) {
// console.log('回调参数:' + JSON.stringify(res))
//console.log('回调参数:' + JSON.stringify(res))
that.uploadDIY(res.tempFilePath);
// console.log('回调参数:' + JSON.stringify(res));
// 在H5平台下,tempFilePath 为 base64
// uni.saveImageToPhotosAlbum({
// filePath: res.tempFilePath,
// success: function(res) {
// console.log('回调参数:' + JSON.stringify(res))
// // console.log('成功回调参数:' + JSON.stringify(res));
// // that.$api.msgSuccess('保存成功');
// },
// fail: function(res) {
// console.log('回调参数:' + JSON.stringify(res))
// // console.log('失败回调参数:' + JSON.stringify(res));
// // that.$api.msgSuccess('保存成功');
// }
// });
},
fail: function(res) {
console.log('fail' + JSON.stringify(res));
......
......@@ -281,7 +281,7 @@
uni.setNavigationBarTitle({
title: this.$i18n.messages[this.$i18n.locale]['定制蛋糕']
}) /* this.$i18n.messages[this.$i18n.locale]['定制手机壳'] */
})
if (options.machine_id && options.machine_id != "null") {
......
......@@ -11,47 +11,59 @@
</view>
<view :class="{'previewAxtiveRight':preview}" @click="onclickTitle(true) "
style="line-height: 70upx; text-align: center; width: 220upx;">
{{$i18n.messages[$i18n.locale]['预置尺寸']}}
{{$i18n.messages[$i18n.locale]['预置尺寸']}}
</view>
</view>
</view>
<!-- 宽{{pixel_Width}}高:{{pixel_Height}}比例{{pixel_scale}} -->
<view v-if="!preview" class="full-width" scroll-y style="height: calc(100% - 160upx);overflow: scroll;">
<view style=" height: 700upx; overflow: scroll;
<!-- "height: calc(100% - 160upx) -->
<view v-if="!preview" class="full-width" scroll-y style="height:92%; ">
<view style=" height: 700upx;
overflow: hidden;
margin:0upx auto 40upx;display: flex; margin-top: 10upx;
justify-content: center; align-items: center; "
margin:0upx auto 40upx;display: flex; margin-top: 15upx;
justify-content: center; align-items: center; "
:style="{width: (pixel_Width * pixel_scale) +'px', borderRadius: defalutFillet + 'px'}">
<view
:style="{width: (pixel_Width * pixel_scale) +'px',height: (pixel_Height * pixel_scale) +'px', borderRadius: defalutFillet + 'px'}"
style="background: #FFFFFF; margin:auto; box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.5);">
</view>
</view>
<view style="position: relative;">
<view style="position: relative; ">
<!-- 自定义高度 -->
<view style="display: flex; align-items: center; justify-content: center; margin-top: 5upx;">
<view style="font-size: 30upx; font-weight: 400; color: #FFFFFF; width: 240upx;">{{$i18n.messages[$i18n.locale]['物料宽度']}}</view>
<view style="font-size: 30upx; font-weight: 400; color: #FFFFFF; width: 240upx;">
{{$i18n.messages[$i18n.locale]['物料宽度']}}
</view>
<view style="width: 282upx; height: 66upx; background: #282932; border-radius: 30upx;
display: flex; align-items: center;">
<input type="digit" :placeholder="$i18n.messages[$i18n.locale]['请输入宽度']" @input="moneyChangeWidth" :value="inputWidth"
<input type="digit" :placeholder="$i18n.messages[$i18n.locale]['请输入宽度']"
@input="moneyChangeWidth" :value="inputWidth"
style="color: #FFFFFF; font-size: 28upx; padding-left: 35upx;width: 200upx;" />
<view style="color: #898989; font-size: 26upx; width: 82upx;">{{ $i18n.messages[$i18n.locale][companyValue] }}</view>
<view style="color: #898989; font-size: 26upx; width: 82upx;">
{{ $i18n.messages[$i18n.locale][companyValue] }}
</view>
</view>
</view>
<view
style="display: flex; align-items: center; justify-content: center; margin-top: 20upx; position: relative;">
<view style="font-size: 30upx; font-weight: 400; color: #FFFFFF; width: 240upx;">{{$i18n.messages[$i18n.locale]['物料高度']}}</view>
<view style="font-size: 30upx; font-weight: 400; color: #FFFFFF; width: 240upx;">
{{$i18n.messages[$i18n.locale]['物料高度']}}
</view>
<view style="width: 282upx; height: 66upx; background: #282932; border-radius: 30upx;
display: flex; align-items: center;">
<input type="digit" :value="inputHeight" :placeholder="$i18n.messages[$i18n.locale]['请输入高度']" @input="moneyChangeHeight"
<input type="digit" :value="inputHeight"
:placeholder="$i18n.messages[$i18n.locale]['请输入高度']" @input="moneyChangeHeight"
style="color: #FFFFFF; font-size: 28upx; padding-left: 35upx;width: 200upx;" />
<view style="color: #898989; font-size: 26upx; width: 82upx;">{{ $i18n.messages[$i18n.locale][companyValue]}}</view>
<view style="color: #898989; font-size: 26upx; width: 82upx;">
{{ $i18n.messages[$i18n.locale][companyValue]}}
</view>
</view>
</view>
<view style="display: flex; align-items: center;justify-content: center; margin-top: 25upx;">
<view style="font-size: 30upx; font-weight: 400; color: #FFFFFF; width: 240upx;">
{{$i18n.messages[$i18n.locale]['圆角半径']}}</view>
{{$i18n.messages[$i18n.locale]['圆角半径']}}
</view>
<view style="width: 282upx; height: 66upx;
display: flex; align-items: center; margin-top: 5upx;">
<!-- 滑块封装 -->
......@@ -59,19 +71,63 @@
:range="false" @highChange="highChange" :leftX="sliderdefaultWith" />
</view>
</view>
<!-- <view class="footer" v-if="!preview">
<view class="footer_but" hover-class="hover-class-bg" @click="onSave()"> {{$i18n.messages[$i18n.locale]['确认']}}</view>
</view> -->
<!-- <view style="height:100%; width: 100%; background: #00ffff;"></view> -->
<view style="margin: auto;
color: #fff;
text-align: center;
line-height: 88upx;
width: 300upx;
height: 88upx;
background: linear-gradient(92deg, #E6B01A, #F29F3D);
box-shadow: 0px 19upx 48upx 1upx rgba(20, 31, 62, 0.35);
border-radius: 50upx; margin-top: 40upx;" @click="onSave()">{{$i18n.messages[$i18n.locale]['确认']}} </view>
</view>
<!-- <view style="position: relative; "> -->
<!-- <view
style="
position: fixed;
bottom: 20upx;
color: #fff;
text-align: center;
line-height: 88upx;
width: 300upx;
height: 88upx;
background: linear-gradient(92deg, #E6B01A, #F29F3D);
box-shadow: 0px 19upx 48upx 1upx rgba(20, 31, 62, 0.35);
border-radius: 50upx; "
@click="onSave()"
>{{$i18n.messages[$i18n.locale]['确认']}} </view>
-->
<!-- </view> -->
</view>
<!-- 预置 -->
<view v-if="preview" class="full-width">
<view
style="height: 90upx; display: flex; align-items: center;width: calc(100% - 60upx); margin: auto;">
<view style="display: flex;align-items: center; font-size: 28upx;">
<view :class="{'classificationLeft':!Specifications}" @click="OnclickSpecifications(0)" style="line-height: 60upx; text-align: center; width: 160upx;height: 60upx; background: #282932; border-radius: 30upx;">
<view :class="{'classificationLeft':!Specifications}" @click="OnclickSpecifications(0)"
style="line-height: 60upx; text-align: center; width: 160upx;height: 60upx; background: #282932; border-radius: 30upx;">
{{$i18n.messages[$i18n.locale]['内置']}}
</view>
<view :class="{'classificationRight':Specifications}" @click="OnclickSpecifications(1)" style="line-height: 60upx; text-align: center; width: 160upx; margin-left: 20upx;height: 60upx; background: #282932; border-radius: 30upx;">
{{$i18n.messages[$i18n.locale]['常用']}}
<view :class="{'classificationRight':Specifications}" @click="OnclickSpecifications(1)"
style="line-height: 60upx; text-align: center; width: 160upx; margin-left: 20upx;height: 60upx; background: #282932; border-radius: 30upx;">
{{$i18n.messages[$i18n.locale]['常用']}}
</view>
</view>
</view>
......@@ -90,7 +146,7 @@
</view>
</view>
</view>
<!-- 暂无相关信息 -->
<view class="align-center content-color"
style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);"
......@@ -98,7 +154,8 @@
<span class="iconfont icon-wushuju"
style="font-size: 100upx; text-align: center; color: #B2B2B2;"></span>
<view style="color: #B2B2B2; text-align: center; line-height: 50upx;font-size: 23upx;">
{{$i18n.messages[$i18n.locale]['暂无数据']}}</view>
{{$i18n.messages[$i18n.locale]['暂无数据']}}
</view>
</view>
</view>
<!-- 动态数据完 -->
......@@ -112,9 +169,10 @@
<mpvue-picker ref="mpvuePicker" :themeColor="'#53B2B0'" :mode="mode" :pickerValueDefault="pickerValueDefault"
@onChange="onChange" @onConfirm="onConfirm" @onCancel="onCancel" :pickerValueArray="pickerValueArray">
</mpvue-picker>
<view class="footer" v-if="!preview">
<view class="footer_but" hover-class="hover-class-bg" @click="onSave()"> {{$i18n.messages[$i18n.locale]['确认']}}</view>
</view>
<!-- <view style="height: 40up;"> </view> -->
</view>
</template>
......@@ -249,7 +307,8 @@
highChange(val, value) {
this.newDefalutFilletData = val;
let defalutFilletValue = Math.floor(this.newDefalutFilletData * this.filletScale)
this.defalutFillet = Math.floor(defalutFilletValue * (this.pixel_Width * this.pixel_scale / this.inputWidth))
this.defalutFillet = Math.floor(defalutFilletValue * (this.pixel_Width * this.pixel_scale / this
.inputWidth))
},
//显示商品弹框
......@@ -263,7 +322,7 @@
},
refundNumorder(item) {
let real_radius = Number(item.real_radius);
let real_height = Number(item.real_height);
let real_width = Number(item.real_width);
......@@ -282,8 +341,7 @@
let nameStr = item.alias_name
let unit = item.unit;
let customize_size_id = item.id
//console.log(item)
//console.log("this.isFirstPage="+this.isFirstPage);
if (this.isFirstPage && this.isFirstPage == "true") {
uni.redirectTo({
url: '../index/index?machine_id=' + this.parameter.machine_id +
......@@ -297,7 +355,7 @@
"&good_id=" + this.good_id +
"&type=2" +
"&customize_size_id=" + customize_size_id +
"&machineDetail=" + JSON.stringify(this.machineDetail)
"&machineDetail=" + JSON.stringify(this.machineDetail)
})
} else {
let pages = getCurrentPages();
......@@ -326,14 +384,14 @@
onSave() {
if (this.inputWidth == "") {
uni.showToast({
title: this.$i18n.messages[this.$i18n.locale]["宽度不能为空"],
title: this.$i18n.messages[this.$i18n.locale]["宽度不能为空"],
icon: 'none'
});
return;
}
if (this.inputHeight == "") {
uni.showToast({
title: this.$i18n.messages[this.$i18n.locale]["高度不能为空"],
title: this.$i18n.messages[this.$i18n.locale]["高度不能为空"],
icon: 'none'
});
return;
......@@ -401,7 +459,7 @@
"&good_id=" + this.good_id +
"&type=2" +
"&customize_size_id=" + result.id +
"&machineDetail=" + JSON.stringify(this.machineDetail)
"&machineDetail=" + JSON.stringify(this.machineDetail)
})
} else {
let pages = getCurrentPages();
......@@ -439,9 +497,11 @@
this.Loop = setTimeout(function() {
that.nav = false
uni.showModal({
title: this.$i18n.messages[this.$i18n.locale]["删除"] , //this.$i18n.messages[this.$i18n.locale]["高度不能为空"]
content: this.$i18n.messages[this.$i18n.locale]["确认要删除当前尺码吗"],
confirmText: this.$i18n.messages[this.$i18n.locale]["删除"],
title: this.$i18n.messages[this.$i18n.locale][
"删除"
], //this.$i18n.messages[this.$i18n.locale]["高度不能为空"]
content: this.$i18n.messages[this.$i18n.locale]["确认要删除当前尺码吗"],
confirmText: this.$i18n.messages[this.$i18n.locale]["删除"],
confirmColor: '#ff3b32',
success: async function(res) {
if (res.confirm) {
......@@ -556,7 +616,7 @@
}); //赋值文本
uni.showToast({
icon: "success",
title: this.$i18n.messages[this.$i18n.locale]["宽度最大值"] + Width,
title: this.$i18n.messages[this.$i18n.locale]["宽度最大值"] + Width,
duration: 2000
});
}
......@@ -572,7 +632,7 @@
this.pixel_Height = this.previewHeight
this.getWindowScale();
let real_width = Number(this.inputWidth);
let real_height = Number(this.inputHeight);
if (real_width > real_height) {
......@@ -581,7 +641,8 @@
this.filletScale = real_height / 100;
}
let defalutFilletValue = Math.floor(this.newDefalutFilletData * this.filletScale)
this.defalutFillet = Math.floor(defalutFilletValue * (this.pixel_Width * this.pixel_scale / this.inputWidth));
this.defalutFillet = Math.floor(defalutFilletValue * (this.pixel_Width * this.pixel_scale / this
.inputWidth));
this.$refs['NumSlider'].initFilletRadius(this.newDefalutFilletData, this.filletScale);
return Width
},
......@@ -615,7 +676,7 @@
}); //文本
uni.showToast({
icon: "success",
title: this.$i18n.messages[this.$i18n.locale]["高度最大值"] + Height,
title: this.$i18n.messages[this.$i18n.locale]["高度最大值"] + Height,
duration: 2000
});
}
......@@ -634,7 +695,8 @@
this.filletScale = real_height / 100;
}
let defalutFilletValue = Math.floor(this.newDefalutFilletData * this.filletScale)
this.defalutFillet = Math.floor(defalutFilletValue * (this.pixel_Width * this.pixel_scale / this.inputWidth));
this.defalutFillet = Math.floor(defalutFilletValue * (this.pixel_Width * this.pixel_scale / this
.inputWidth));
this.$refs['NumSlider'].initFilletRadius(this.newDefalutFilletData, this.filletScale);
return Height
},
......@@ -644,7 +706,8 @@
if (this.pixel_Width > (this.data.windowWidth * this.pixelScale)) {
this.pixel_scale = (this.data.windowWidth * this.pixelScale) / this.pixel_Width
} else {
if (this.pixel_Width < (this.data.windowWidth * this.pixelScale) && this.pixel_Height < (this.data.windowHeight * this.pixelScale)) {
if (this.pixel_Width < (this.data.windowWidth * this.pixelScale) && this.pixel_Height < (this.data
.windowHeight * this.pixelScale)) {
this.pixel_scale = 1
}
}
......@@ -653,7 +716,8 @@
this.pixel_scale = (this.data.windowHeight * this.pixelScale) / this.pixel_Height
}
} else {
if (this.pixel_Width < (this.data.windowWidth * this.pixelScale) && this.pixel_Height < (this.data.windowHeight * this.pixelScale)) {
if (this.pixel_Width < (this.data.windowWidth * this.pixelScale) && this.pixel_Height < (this.data
.windowHeight * this.pixelScale)) {
this.pixel_scale = 1
}
}
......@@ -804,6 +868,9 @@
//上拉加载
onReachBottom() {
if (!this.preview) {
return;
}
if (this.LoupanList.length < 12) {
return setTimeout(() => {
uni.showToast({
......@@ -874,6 +941,8 @@
<style lang="scss">
page {
background: #101014;
height: 100%;
width: 100%;
}
.equalRatioAxtive {
......@@ -949,6 +1018,7 @@
height: 100%;
color: #FFFFFF;
.item {
height: 100upx;
display: flex;
......@@ -976,7 +1046,7 @@
}
.footer {
position: fixed;
position: absolute;
bottom: 20upx;
width: 100%;
......
......@@ -158,10 +158,10 @@
"确认":"confermare",
"取消":"soppressione",
"搜索":"ricerca",
"6寸":"Da 6 pollici",
"8寸":"Da 8 pollici",
"10寸":"10 pollici",
"12寸":"Da 12 pollici",
"6寸":"6pollici",
"8寸":"8pollici",
"10寸":"10pollici",
"12寸":"12pollici",
"圆形蛋糕":"Torta rotonda",
"方形蛋糕":"Torta quadrata",
"自定义尺寸":"personalizzato",
......
......@@ -158,10 +158,10 @@
"确认":"확인",
"取消":"취소",
"搜索":"검색",
"6寸":"6 인치",
"8寸":"8 인치",
"10寸":"10 인치",
"12寸":"12 인치",
"6寸":"6인치",
"8寸":"8인치",
"10寸":"10인치",
"12寸":"12인치",
"圆形蛋糕":"둥근 케이크",
"方形蛋糕":"네모난 케이크",
"自定义尺寸":"사용자 정의 크기",
......
......@@ -155,11 +155,11 @@
"输入详细地址": "подтверд",
"输入邮政编码": "отмен",
"输入邮箱": "поиск",
"确认": "определение",
"取消": "8дюйм",
"搜索": "10дюйм",
"6寸": "12дюйм",
"8寸": "8дюйм",
"确认": "подтверждение",
"取消": "отмена",
"搜索": "поиск",
"6寸": "6дюймов",
"8寸": "8дюймов",
"10寸": "10дюймов",
"12寸": "12дюймов",
"圆形蛋糕": "торт",
......
<!DOCTYPE html><html lang=zh-CN><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><title>Customized cake</title><script>var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') || CSS.supports('top: constant(a)'))
document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')</script><link rel=stylesheet href=/static/index.b0707a6a.css></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script src=/static/js/chunk-vendors.66947f95.js></script><script src=/static/js/index.a2579006.js></script></body></html>
\ No newline at end of file
document.write('<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' + (coverSupport ? ', viewport-fit=cover' : '') + '" />')</script><link rel=stylesheet href=/static/index.b0707a6a.css></head><body><noscript><strong>Please enable JavaScript to continue.</strong></noscript><div id=app></div><script src=/static/js/chunk-vendors.66947f95.js></script><script src=/static/js/index.1845e191.js></script></body></html>
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-index-detailsphone"],{"0277":function(t,e,i){"use strict";i.r(e);var n=i("99a2"),a=i.n(n);for(var o in n)"default"!==o&&function(t){i.d(e,t,(function(){return n[t]}))}(o);e["default"]=a.a},"0c06":function(t,e,i){"use strict";i.r(e);var n=i("6468"),a=i("d979");for(var o in a)"default"!==o&&function(t){i.d(e,t,(function(){return a[t]}))}(o);i("5e70");var r,s=i("f0c5"),d=Object(s["a"])(a["default"],n["b"],n["c"],!1,null,"fe975466",null,!1,n["a"],r);e["default"]=d.exports},"355e":function(t,e,i){"use strict";var n=i("5ebf"),a=i.n(n);a.a},"41f1":function(t,e,i){"use strict";i.r(e);var n=i("4e10"),a=i("7a30");for(var o in a)"default"!==o&&function(t){i.d(e,t,(function(){return a[t]}))}(o);i("b270");var r,s=i("f0c5"),d=Object(s["a"])(a["default"],n["b"],n["c"],!1,null,"ad40d6f2",null,!1,n["a"],r);e["default"]=d.exports},"4e10":function(t,e,i){"use strict";i.d(e,"b",(function(){return a})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){return n}));var n={uniSwiperDot:i("0c06").default},a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-view",{staticClass:"full-width full-height"},[1==t.statusloading?n("v-uni-image",{staticStyle:{position:"fixed","z-index":"99",right:"-120upx",bottom:"480upx",display:"flex","align-items":"center","justify-content":"center",width:"220upx",height:"110upx"},attrs:{src:i("61b1")},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.toLineList()}}}):t._e(),1==t.statusloading?n("v-uni-view",{staticStyle:{position:"fixed","z-index":"99",right:"0upx",bottom:"820upx",width:"90upx",height:"80upx",color:"#000","font-size":"30upx","text-align":"center","line-height":"80upx",border:"8upx solid #F29F3D",background:"#FFFFFF","border-radius":"30upx 0upx 30upx 0upx","font-weight":"600"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.toSelectLanguage()}}},[t._v("EN")]):t._e(),n("myhead",{attrs:{worksid:9,title:t.$i18n.messages[t.$i18n.locale]["定制蛋糕"]+t.myheadtext,color:"#fff",titleShow:!0,backShow:!0,background:"none"}}),n("v-uni-view",{staticStyle:{position:"relative",width:"100%",height:"100%","z-index":"2"}},[1==t.statusloading?n("v-uni-view",{staticStyle:{width:"100%",height:"100%"}},[n("v-uni-view",{staticClass:"swiper_img"},[n("uni-swiper-dot",{attrs:{info:t.Adlists,current:t.currentSwiper,mode:"round",field:"content"}},[n("v-uni-swiper",{staticClass:"swiper-box",style:{height:t.datainfo.windowHeight+"px"},attrs:{autoplay:!0,interval:3e3,duration:1e3},on:{change:function(e){arguments[0]=e=t.$handleEvent(e),t.swiperChange.apply(void 0,arguments)}}},t._l(t.Adlists,(function(e,i){return n("v-uni-swiper-item",{key:i},[n("v-uni-view",{staticClass:"swiper-item"},[n("v-uni-image",{staticClass:"image",style:{height:t.datainfo.windowHeight+"px"},attrs:{src:e.content+"?x-oss-process=image/resize,lfit,w_750",mode:"aspectFill"}})],1)],1)})),1)],1)],1),n("v-uni-view",{staticStyle:{position:"fixed",bottom:"232upx","text-align":"center",left:"0upx",right:"0"}},[n("v-uni-view",{staticClass:"dots"},t._l(t.Adlists,(function(e,i){return n("v-uni-view",{key:i,staticClass:"dot-wrapper"},[n("v-uni-view",{staticClass:"dot iconfont",class:[i==t.currentSwiper?"iconsanjiaoxing":"iconxingzhuang-sanjiaoxing"]})],1)})),1)],1),n("v-uni-view",{staticStyle:{position:"fixed",bottom:"130upx",left:"0",right:"0",margin:"auto",width:"300upx",height:"100upx",background:"linear-gradient(92deg, #E6B01A, #F29F3D)","box-shadow":"0px 19px 48px 1px rgba(20, 31, 62, 0.35)","border-radius":"40px"},attrs:{"hover-class":"hover-class-bg"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.Customize_now.apply(void 0,arguments)}}},[n("v-uni-view",{staticStyle:{"text-align":"center","line-height":"100upx","font-size":"36upx","font-weight":"500",color:"#FFFFFF"}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["立即定制"]))])],1)],1):t._e(),2==t.statusloading?n("v-uni-view",{staticStyle:{"min-height":"100%",background:"#131319 !important"}},[n("v-uni-view",{staticClass:"start",staticStyle:{"padding-bottom":"100upx","padding-top":"200upx"}},[n("v-uni-image",{staticClass:"start_img",attrs:{src:i("a3b4"),mode:"aspectFill"}}),n("v-uni-view",{staticClass:"start_text"},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["设备信息不存在"]))]),n("v-uni-view",{on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.tomakePhoneCall.apply(void 0,arguments)}}},[n("v-uni-view",{staticClass:"start_text"},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["联系客服"]))]),n("v-uni-view",{staticClass:"start_text",staticStyle:{display:"flex","justify-content":"center","align-items":"center"}},[n("v-uni-image",{staticStyle:{width:"32upx",height:"32upx","margin-right":"5upx"},attrs:{src:i("ec4b"),mode:""}}),t._v(t._s(t.phone||"18938664545"))],1)],1)],1)],1):t._e(),2==t.statusloading?n("v-uni-view",{staticStyle:{"margin-top":"-50upx","text-align":"center",color:"#888888","font-weight":"400","line-height":"40upx"}},[n("v-uni-text",{staticStyle:{"font-size":"22upx"}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["深圳市瑞丰彩科技有限公司"]))])],1):t._e()],1),n("switchGoods",{ref:"switchGoods",on:{selectGoodItem:function(e){arguments[0]=e=t.$handleEvent(e),t.selectGoodItem.apply(void 0,arguments)},toCustomSize:function(e){arguments[0]=e=t.$handleEvent(e),t.toCustomSize.apply(void 0,arguments)}}}),n("switchLanguage",{ref:"switchLanguage",on:{backLanguage:function(e){arguments[0]=e=t.$handleEvent(e),t.backLanguage.apply(void 0,arguments)}}})],1)},o=[]},"5e70":function(t,e,i){"use strict";var n=i("855a"),a=i.n(n);a.a},"5ebf":function(t,e,i){var n=i("def8");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var a=i("4f06").default;a("0bb578b7",n,!0,{sourceMap:!1,shadowMode:!1})},"61b1":function(t,e,i){t.exports=i.p+"static/img/icon_home_lineup_image.037ade74.png"},"62c9":function(t,e,i){"use strict";i.r(e);var n=i("dbc5"),a=i("0277");for(var o in a)"default"!==o&&function(t){i.d(e,t,(function(){return a[t]}))}(o);i("355e");var r,s=i("f0c5"),d=Object(s["a"])(a["default"],n["b"],n["c"],!1,null,"b4425848",null,!1,n["a"],r);e["default"]=d.exports},6468:function(t,e,i){"use strict";var n;i.d(e,"b",(function(){return a})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){return n}));var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",{staticClass:"uni-swiper__warp"},[t._t("default"),"default"===t.mode?i("v-uni-view",{staticClass:"uni-swiper__dots-box",style:{bottom:t.dots.bottom+"px"}},t._l(t.info,(function(e,n){return i("v-uni-view",{key:n,staticClass:"uni-swiper__dots-item",style:{width:t.dots.width+"px",height:t.dots.height+"px","background-color":n!==t.current?t.dots.backgroundColor:t.dots.selectedBackgroundColor,border:n!==t.current?t.dots.border:t.dots.selectedBorder}})})),1):t._e(),"long"===t.mode?i("v-uni-view",{staticClass:"uni-swiper__dots-box",style:{bottom:t.dots.bottom+"px"}},t._l(t.info,(function(e,n){return i("v-uni-view",{key:n,staticClass:"uni-swiper__dots-item ",class:[n===t.current&&"uni-swiper__dots-long"],style:{width:(n===t.current?3*t.dots.width:t.dots.width)+"px",height:t.dots.height+"px","background-color":n!==t.current?t.dots.backgroundColor:t.dots.selectedBackgroundColor,border:n!==t.current?t.dots.border:t.dots.selectedBorder}})})),1):t._e(),"nav"===t.mode?i("v-uni-view",{staticClass:"uni-swiper__dots-box uni-swiper__dots-nav",style:{"background-color":t.dotsStyles.backgroundColor}},[i("v-uni-view",{staticClass:"uni-swiper__dots-nav-item",style:{color:t.dotsStyles.color}},[t._v(t._s(t.current+1+"/"+t.info.length)+"\n\t\t\t"+t._s(t.info[t.current][t.field]))])],1):t._e(),"indexes"===t.mode?i("v-uni-view",{staticClass:"uni-swiper__dots-box",style:{bottom:t.dots.bottom+"px"}},t._l(t.info,(function(e,n){return i("v-uni-view",{key:n,staticClass:"uni-swiper__dots-item uni-swiper__dots-indexes",style:{width:t.dots.width+"px",height:t.dots.height+"px",color:n===t.current?t.dots.selectedColor:t.dots.color,"background-color":n!==t.current?t.dots.backgroundColor:t.dots.selectedBackgroundColor,border:n!==t.current?t.dots.border:t.dots.selectedBorder}},[t._v(t._s(n+1))])})),1):t._e()],2)},o=[]},7561:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=i("99ed"),a=i("f9f8"),o={setGoodsCateList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return(0,a._dispatch)("setGoodsCateList",t)},getGoodsCateList:function(){return(0,a._getters)("goodsCateList",[])},setCate:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._dispatch)("setCate",t)},getCate:function(){return(0,a._getters)("cate",{})},setSnapshot:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._dispatch)("setSnapshot",t)},getSnapshot:function(){return(0,a._getters)("snapshot",[])},setStock:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return(0,a._dispatch)("setStock",t)},getStock:function(){return(0,a._getters)("stock",[])},queryList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.T_route,params:t,callBack:function(){}})},WorksList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.T_route,params:t,callBack:function(){}})},Workssave:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.T_route_timeout,params:t,callBack:function(){}})},queryListPhone:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.P_route,params:t,callBack:function(){}})},WorksListPhone:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.P_route,params:t,callBack:function(){}})},WorkssavePhone:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.P_route_timeout,params:t,callBack:function(){}})},machineGetBaseSetting:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.P_route,params:t,callBack:function(){}})},userphoneappletsIndex:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.P_route,params:t,callBack:function(){}})},WorksListColor:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.C_route,params:t,callBack:function(){}})},queryListColor:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.C_route,params:t,callBack:function(){}})},paypalSuccess:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.paypal_success,params:t,callBack:function(){}})},paypalCancel:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.paypal_cancel,params:t,callBack:function(){}})},getOrderList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n._getOrderList,params:t,callBack:function(){}})}},r=o;e.default=r},"7a30":function(t,e,i){"use strict";i.r(e);var n=i("af2b"),a=i.n(n);for(var o in n)"default"!==o&&function(t){i.d(e,t,(function(){return n[t]}))}(o);e["default"]=a.a},"808f":function(t,e,i){"use strict";i("a9e3"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={name:"uni-swiper-dot",props:{info:{type:Array,default:function(){return[]}},current:{info:Number,default:0},dotsStyles:{type:Object,default:function(){return{}}},mode:{type:String,default:"default"},field:{type:String,default:""}},data:function(){return{dots:{width:8,height:8,bottom:10,color:"#fff",backgroundColor:"rgba(0, 0, 0, .3)",border:"1px rgba(0, 0, 0, .3) solid",selectedBackgroundColor:"#333",selectedBorder:"1px rgba(0, 0, 0, .9) solid"}}},created:function(){"indexes"===this.mode&&(this.dots.width=20,this.dots.height=20),this.dots=Object.assign(this.dots,this.dotsStyles)},watch:{dotsStyles:function(t){this.dots=Object.assign(this.dots,this.dotsStyles)},mode:function(t){"indexes"===t?(this.dots.width=20,this.dots.height=20):(this.dots.width=8,this.dots.height=8)}}};e.default=n},"855a":function(t,e,i){var n=i("aa13");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var a=i("4f06").default;a("6647a8fc",n,!0,{sourceMap:!1,shadowMode:!1})},"8dab":function(t,e,i){var n=i("a1a2");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var a=i("4f06").default;a("c7379de6",n,!0,{sourceMap:!1,shadowMode:!1})},"99a2":function(t,e,i){"use strict";var n=i("4ea4");i("498a"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=n(i("7561")),o=n(i("32cd")),r={props:{},components:{mpvuePicker:o.default},data:function(){return{MobilePhoneHeight:0,pixelRate:0,languageList:[],languagecenter:!1,machine_id:""}},mounted:function(){},methods:{myCatchTouch:function(){},open:function(t){var e=this;wx.getSystemInfo({success:function(t){e.MobilePhoneHeight=t.windowHeight-e.titleHeight,e.pixelRate=t.windowWidth/750}}),"null"!=t.machine_id&&(this.machine_id=t.machine_id),this.languagecenter=!0,this.getLanguageList()},getLanguageList:function(){var t=this;a.default.queryListPhone({machine_id:this.machine_id,s:"MachineLanguage.getLanguageList"}).then((function(e){t.languageList=e.list})).catch((function(t){}))},onCancel:function(t){},cancelLanguage:function(){this.languagecenter=!1},languageClick:function(t){this.languagecenter=!1;var e=t.key.trim();switch(e){case"ch":case"zh-cn":this._i18n.locale="zh-cn",uni.setStorageSync("lang",this._i18n.locale);break;case"zh":case"en-us":this._i18n.locale="en-us",uni.setStorageSync("lang",this._i18n.locale);break;case"it":case"it-it":this._i18n.locale="it-it",uni.setStorageSync("lang",this._i18n.locale);break;case"tc":case"zh-tc":this._i18n.locale="zh-tc",uni.setStorageSync("lang",this._i18n.locale);break;case"ja-ja":this._i18n.locale="ja-ja",uni.setStorageSync("lang",this._i18n.locale);break;case"fr-fr":this._i18n.locale="fr-fr",uni.setStorageSync("lang",this._i18n.locale);break;case"de-de":this._i18n.locale="de-de",uni.setStorageSync("lang",this._i18n.locale);break;case"po-po":this._i18n.locale="po-po",uni.setStorageSync("lang",this._i18n.locale);break;case"es-es":this._i18n.locale="es-es",uni.setStorageSync("lang",this._i18n.locale);break;case"dm-dm":this._i18n.locale="dm-dm",uni.setStorageSync("lang",this._i18n.locale);break;case"ko-ko":this._i18n.locale="ko-ko",uni.setStorageSync("lang",this._i18n.locale);break;case"pl-pl":this._i18n.locale="pl-pl",uni.setStorageSync("lang",this._i18n.locale);break;case"ru-ru":this._i18n.locale="ru-ru",uni.setStorageSync("lang",this._i18n.locale)}this.$emit("backLanguage",{key:this._i18n.locale})},change:function(t){}},onShow:function(t){}};e.default=r},"99ed":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e._getOrderList=e.paypal_cancel=e.paypal_success=e._utfgetShotBankCode=e.C_route=e.P_route_timeout=e.P_route=e.T_route_timeout=e.T_route=void 0;var a=n(i("c545")),o=i("f439"),r="/baking/index",s="/baking/index",d=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:r,params:t,method:"post",token:!0})};e.T_route=d;var u=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:r,params:t,method:"post",token:!0,timeout:!0})};e.T_route_timeout=u;var c=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:s,params:t,method:"post",token:!0})};e.P_route=c;var l=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:s,params:t,method:"post",token:!0,timeout:!0})};e.P_route_timeout=l;var h=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:"/baking/index",params:t,method:"post",token:!0})};e.C_route=h;var g=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:"/usertshirtsapplets/index",params:t,method:"post",token:!0})};e._utfgetShotBankCode=g;var f=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:"/api/Paypal/success",params:t,method:"post",token:!0})};e.paypal_success=f;var p=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:"/api/Paypal/cancel",params:t,method:"post",token:!0})};e.paypal_cancel=p;var v=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:"/douyin/Order/getOrderList",params:t,token:!0,method:"post",contentType:a.default.ContentType.FORM_UTF8})};e._getOrderList=v},a1a2:function(t,e,i){var n=i("24fb");e=n(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */\r\n/* 轮播圆点样式修改 */\r\n/* .swiper{\r\n\theight: 390upx; width: 690upx; border-radius: 10upx; overflow: hidden; margin:auto;\r\n}\r\n.swiper-box {\r\n\tposition: relative;\r\n\twidth: 100%;\r\n}\r\n\r\n.dots {\r\n\tdisplay: flex;\r\n\tjustify-content: center;\r\n}\r\n\r\n.dots .dot {\r\n\tcolor: #FFFFFF;\r\n\tfont-size: 18upx;\r\n\tmargin-right: 10upx;\r\n} */\r\n/* 轮播圆点样式修改 */.swiper-box[data-v-ad40d6f2]{position:relative;width:100%}.swiper[data-v-ad40d6f2]{height:%?200?%;width:%?690?%;border-radius:%?10?%;overflow:hidden;margin:auto}.swiper-item[data-v-ad40d6f2]{\r\n\t/* height: ; */}.dots[data-v-ad40d6f2]{position:absolute;left:0;right:0;bottom:%?22?%;display:flex;margin-right:%?10?%;justify-content:center}.dots .dot[data-v-ad40d6f2]{color:#f56364;font-size:%?22?%}\r\n/*弹性布局*/.flex[data-v-ad40d6f2]{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;display:box;flex-wrap:wrap}.line1[data-v-ad40d6f2]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:%?36?%;font-weight:200;color:#fff}.commonbottom[data-v-ad40d6f2]{width:%?750?%;height:%?1?%;border-top:%?1?% solid #f1f3f6;opacity:.05}.commonHead[data-v-ad40d6f2]{width:100%;height:%?128?%;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;overflow:hidden;position:relative;z-index:10}.commonHead-wrap[data-v-ad40d6f2]{width:100%;position:absolute;overflow:hidden;left:0;bottom:0;height:45px;line-height:45px}.commonHead_left[data-v-ad40d6f2]{width:%?100?%;height:100%;position:absolute;left:0;top:0}.commonHead_left_back[data-v-ad40d6f2]{width:100%;height:100%;background-size:%?40?% %?40?%;background-repeat:no-repeat;background-position:50%;display:flex;align-items:center}.commonHead_left_back_img[data-v-ad40d6f2]{width:%?60?%;height:%?60?%;display:block;border-radius:50%;margin-left:%?31?%;align-items:center;overflow:hidden}.commonHead_right[data-v-ad40d6f2]{width:100%;height:100%;\r\n\t/* line-height: 88rpx; */text-align:center;font-size:%?30?%;overflow:hidden;justify-content:flex-end}.commonHead_right_text[data-v-ad40d6f2]{width:%?280?%;margin:0 auto}uni-page-body[data-v-ad40d6f2]{width:100%;height:100%;background:#fff}uni-page-body .swiper_img[data-v-ad40d6f2]{height:100%;width:100%;display:flex;justify-content:center;align-items:center}uni-page-body .swiper_img .swiper-box[data-v-ad40d6f2]{width:100%}uni-page-body .swiper_img .image[data-v-ad40d6f2]{width:100%}uni-page-body .experiencebutton[data-v-ad40d6f2]{width:%?230?%;height:%?70?%;line-height:%?70?%;text-align:center;color:#fff;margin:%?40?% auto 0;border-radius:%?35?%;background:linear-gradient(90deg,#834dc4,#1983d7);font-size:%?26?%}uni-page-body .loginBtn-hover[data-v-ad40d6f2]{background:linear-gradient(270deg,#834dc4,#1983d7)}uni-page-body .canbutton[data-v-ad40d6f2]{color:#fff;font-size:%?26?%;width:%?218?%;height:%?58?%;line-height:%?58?%;border:1px transparent solid;border-radius:30px;position:relative;margin:auto;background:#292933;text-align:center}uni-page-body .canbutton[data-v-ad40d6f2]:after{content:"";position:absolute;top:-3px;bottom:-3px;left:-3px;right:-3px;background:linear-gradient(90deg,#834dc4,#1983d7);border-radius:30px;content:"";z-index:-1}uni-page-body .brandactive[data-v-ad40d6f2]{background:#e4d0f6!important}uni-page-body .model[data-v-ad40d6f2]{padding:%?0?% %?20?%;height:%?60?%;line-height:%?60?%;background:#141319;text-align:center;color:#fff;border-radius:%?30?%;margin-right:%?20?%;font-size:%?28?%}uni-page-body .modelactive[data-v-ad40d6f2]{color:#553177!important}uni-page-body .start .start_img[data-v-ad40d6f2]{width:%?260?%;height:%?260?%;display:block;margin:%?0?% auto %?102?%}uni-page-body .start .start_title[data-v-ad40d6f2]{font-size:%?30?%;text-align:center;color:#fff}uni-page-body .start .start_text[data-v-ad40d6f2]{width:70%;text-align:center;font-size:%?28?%;font-family:Source Han Sans CN;font-weight:400;color:#fff;margin:%?22?% auto 0;line-height:%?28?%}body.?%PAGE?%[data-v-ad40d6f2]{background:#fff}',""]),t.exports=e},a3b4:function(t,e,i){t.exports=i.p+"static/img/icon_guaqi.1c07ccb3.png"},aa13:function(t,e,i){var n=i("24fb");e=n(!1),e.push([t.i,".uni-swiper__warp[data-v-fe975466]{position:relative;width:100%;box-sizing:border-box;overflow:hidden}.uni-swiper__dots-box[data-v-fe975466]{position:absolute;bottom:%?20?%;display:flex;justify-content:center;align-items:center;box-sizing:box-sizing;width:100%}.uni-swiper__dots-item[data-v-fe975466]{flex-shrink:0;width:%?16?%;border-radius:50%;margin-left:%?12?%;background:rgba(0,0,0,.3);transition:all .2s linear}.uni-swiper__dots-item[data-v-fe975466]:first-child{margin:0}.uni-swiper__dots-default[data-v-fe975466]{border-radius:50%}.uni-swiper__dots-long[data-v-fe975466]{border-radius:%?100?%}.uni-swiper__dots-nav[data-v-fe975466]{bottom:0;height:%?80?%;justify-content:flex-start;background:rgba(0,0,0,.2);box-sizing:box-sizing;overflow:hidden}.uni-swiper__dots-nav-item[data-v-fe975466]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:%?28?%;color:#fff;box-sizing:box-sizing;margin:0 %?30?%}.uni-swiper__dots-indexes[data-v-fe975466]{display:flex;justify-content:center;align-items:center;color:#fff;font-size:%?24?%}",""]),t.exports=e},af2b:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=n(i("ade3")),o=n(i("7561")),r=n(i("f960")),s=n(i("7390")),d=n(i("62c9")),u=n(i("0c06")),c=n(i("0656")),l=(0,a.default)({components:{myhead:r.default,switchBrands:s.default,uniSwiperDot:u.default,switchLanguage:d.default,switchGoods:c.default},computed:{},data:function(){return{Adlists:[],currentSwiper:0,catrgoryList:null,sizelist:[],brandtext:null,modeltext:null,goods_id:null,dict_id:null,machine_id:null,key:null,list:null,sn:null,myheadtext:"",msg:null,statusloading:null,phone:"18938664545",datainfo:{windowHeight:0,windowWidth:0,pixelRate:1},globalData:null,promoter_id:"",isLoad:!1,isReload:!1,support_paypal:!1}},methods:{toCustomSize:function(){uni.navigateTo({url:"../mall/size?machine_id="+this.machine_id+"&isFirstPage=true&machineDetail="+JSON.stringify(this.list)})},toLineList:function(){uni.navigateTo({url:"../mall/lineUp?machine_id="+this.machine_id})},selectGoodItem:function(t){uni.navigateTo({url:"../index/index?machine_id="+this.machine_id+"&good_id="+t.id+"&title="+t.title+"&real_width="+t.key+"&machineDetail="+JSON.stringify(this.list)+"&type = 1"})},toSelectLanguage:function(){var t=this;setTimeout((function(){t.$refs["switchLanguage"].open({machine_id:t.machine_id})}),500)},reload:function(){var t=this;this.isReload=!1,this.$nextTick((function(){t.isReload=!0}))},backLanguage:function(t){this.reload()},toOrderList:function(){uni.navigateTo({url:"../mine/orderList?machine_id="+this.machine_id})},preservationBase:function(){try{uni.setStorageSync("base",this.$base)}catch(t){}},tomakePhoneCall:function(){uni.showLoading({title:this.$i18n.messages[this.$i18n.locale]["正在加载中"],mask:!0}),uni.makePhoneCall({phoneNumber:this.phone||"18938664545",success:function(t){uni.hideLoading()},fail:function(t){uni.hideLoading(),uni.showToast({title:t,icon:"none",duration:2e3})}})},Customize_now:function(){if(null!=this.list)if(1==this.list.status.value||2==this.list.status.value){var t=1==this.list.customize_size;this.$refs["switchGoods"].open(this.machine_id,t)}else 0!=this.list.status.value&&3!=this.list.status.value&&4!=this.list.status.value&&5!=this.list.status.value||uni.showToast({title:this.$i18n.messages[this.$i18n.locale]["休息中"],icon:"none",duration:2e3});else uni.showToast({title:this.msg,icon:"none",duration:2e3})},change:function(t){},swiperChange:function(t){this.currentSwiper=t.detail.current},getDetail:function(){var t=this;uni.showLoading({title:"正在加载中...",mask:!0}),o.default.WorksList({machine_id:this.machine_id,s:"machine.newDetail"}).then((function(e){t.statusloading=1,e&&(t.list=e,t.support_paypal=!1,1==t.list.support_paypal?t.support_paypal=!0:t.support_paypal=!1,uni.setStorageSync("privacy",t.list.privacy),t.myheadtext=t.machine_id+"-"+e.code),uni.stopPullDownRefresh(),uni.hideLoading()})).catch((function(e){t.msg=e.msg,t.statusloading=2,t.phone=e.data.phone||"18938664545",t.myheadtext="歇一歇",uni.stopPullDownRefresh(),uni.hideLoading()}))},Adlist:function(){var t=this;o.default.queryListPhone({s:"Ad.list",ad_position_key:"index_top",machine_id:this.machine_id}).then((function(e){t.Adlists=e,uni.stopPullDownRefresh()})).catch((function(t){uni.stopPullDownRefresh()}))}},onReachBottom:function(){},onPullDownRefresh:function(){},onShow:function(){this.machine_id&&"null"!=this.machine_id&&this.isLoad&&this.getDetail()},onLoad:function(t){wx.setNavigationBarTitle({title:this.$i18n.messages[this.$i18n.locale]["定制手机壳"]});var e=this;uni.getStorage({key:"globalData",success:function(t){e.globalData=t.data}}),wx.getSystemInfo({success:function(t){e.datainfo.windowHeight=t.windowHeight,e.datainfo.windowWidth=t.windowWidth,e.datainfo.pixelRate=t.windowWidth/750,e.globalData.getSystemInfo=t,uni.setStorageSync("globalData",e.globalData)}}),t.machine_id&&"null"!=t.machine_id?(e.isLoad=!0,this.machine_id=t.machine_id,this.Adlist(),this.getDetail()):this.statusloading=2}},"onShow",(function(t){var e=this;this.machine_id&&"null"!=this.machine_id&&o.default.WorksList({machine_id:this.machine_id,s:"machine.newDetail"}).then((function(t){e.statusloading=1,t&&(e.list=t,e.support_paypal=!1,1==e.list.support_paypal?e.support_paypal=!0:e.support_paypal=!1,uni.setStorageSync("privacy",e.list.privacy))})).catch((function(t){}))}));e.default=l},b270:function(t,e,i){"use strict";var n=i("8dab"),a=i.n(n);a.a},d979:function(t,e,i){"use strict";i.r(e);var n=i("808f"),a=i.n(n);for(var o in n)"default"!==o&&function(t){i.d(e,t,(function(){return n[t]}))}(o);e["default"]=a.a},dbc5:function(t,e,i){"use strict";var n;i.d(e,"b",(function(){return a})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){return n}));var a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-view",[t.languagecenter?n("v-uni-view",{staticClass:"full-width",staticStyle:{position:"fixed",bottom:"0",left:"0",height:"760upx","z-index":"9997",background:"linear-gradient(0deg, #1B294F, #4E2761, #E73231)",opacity:"0.8"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.cancelLanguage()},touchmove:function(e){e.stopPropagation(),arguments[0]=e=t.$handleEvent(e),t.myCatchTouch.apply(void 0,arguments)}}}):t._e(),t.languagecenter?n("v-uni-view",{staticStyle:{position:"fixed","z-index":"9998",width:"100%",top:"0",bottom:"0",margin:"auto",height:"800upx"}},[n("v-uni-view",{staticStyle:{width:"calc(100% - 80upx)",position:"fixed",top:"0",bottom:"0",left:"0",right:"0",margin:"auto",display:"flex","flex-direction":"column","align-items":"center","justify-content":"center"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.cancelLanguage()}}},[n("v-uni-view",{staticStyle:{width:"100%",background:"#FFFFFF","border-radius":"30upx",position:"relative",height:"800upx"}},[n("v-uni-view",{staticStyle:{position:"absolute",top:"0upx",right:"0upx"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.cancelLanguage()}}},[n("v-uni-image",{staticStyle:{height:"23upx",width:"23upx",padding:"21upx 33upx"},attrs:{src:i("8f63"),mode:""}})],1),t.languageList.length>0?n("v-uni-scroll-view",{staticStyle:{"box-sizing":"border-box","white-space":"nowrap",width:"100%",margin:"0 auto",height:"800upx",overflow:"hidden"},attrs:{"scroll-y":!0,"scroll-with-animation":!0}},t._l(t.languageList,(function(e,i){return n("v-uni-view",{key:i,staticStyle:{margin:"10upx",display:"flex","align-items":"center",height:"110upx",width:"calc(100% - 20upx)","text-align":"center","justify-content":"center","font-size":"30upx"},on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.languageClick(e)}}},[t._v(t._s(e.title))])})),1):t._e(),0==t.languageList.length?n("v-uni-view",{staticStyle:{"text-align":"center",color:"#333333",width:"510upx",margin:"0 auto",height:"760upx","justify-content":"center","font-size":"32upx","line-height":"760upx","font-weight":"600"}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["暂无数据"]))]):t._e()],1)],1)],1):t._e()],1)},o=[]},def8:function(t,e,i){var n=i("24fb");e=n(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */.classification[data-v-b4425848]{width:%?300?%;height:%?80?%;line-height:%?80?%;text-align:center;background:#eee;border-radius:0 0 %?40?% 0;font-size:%?36?%;color:#666}.classification.active[data-v-b4425848]{background:#864bc3!important;color:#fff!important}.scroll-container[data-v-b4425848]{box-sizing:border-box;white-space:nowrap;width:%?540?%;margin:auto}.scroll-container .scroll-item[data-v-b4425848]{width:%?152?%;height:%?248?%;background:#f5f5f5;border-radius:%?20?%;text-align:center;display:inline-block;margin:0 %?10?%;border:%?4?% solid #f5f5f5}.scroll-container .scroll-item.active[data-v-b4425848]{background:#fff!important;border:%?4?% solid #864bc3}.experiencebutton[data-v-b4425848]{width:%?230?%;height:%?70?%;line-height:%?70?%;text-align:center;color:#fff;margin:%?40?% auto 0;border-radius:%?35?%;background:linear-gradient(90deg,#834dc4,#1983d7);font-size:%?26?%}.canbutton[data-v-b4425848]{color:#fff;font-size:%?26?%;width:%?218?%;height:%?58?%;line-height:%?58?%;border:1px transparent solid;border-radius:30px;position:relative;margin:auto;background:#292933;text-align:center}.canbutton[data-v-b4425848]:after{content:"";position:absolute;top:-3px;bottom:-3px;left:-3px;right:-3px;background:linear-gradient(90deg,#834dc4,#1983d7);border-radius:30px;content:"";z-index:-1}.brandactive[data-v-b4425848]{background:#e4d0f6!important}.backgroundColoractive[data-v-b4425848]{border:%?2?% #834dc4 solid!important}.tooltiptext[data-v-b4425848]{visibility:hidden;min-width:%?120?%;background-color:#000;color:#fff;text-align:center;border-radius:%?6?%;padding:%?5?% %?10?%;font-size:%?20?%;\r\n /* 定位 */position:fixed;z-index:1}.tooltiptextactive[data-v-b4425848]{visibility:visible}.model[data-v-b4425848]{padding:%?0?% %?20?%;height:%?60?%;line-height:%?60?%;background:#141319;text-align:center;color:#fff;border-radius:%?30?%;margin-right:%?20?%;font-size:%?28?%}.modelactive[data-v-b4425848]{color:#553177!important}.determineBut[data-v-b4425848]{background:linear-gradient(92deg,#178ce6,#984ace);color:#fff;position:fixed;bottom:%?100?%;text-align:center;left:0;right:0;width:%?251?%;height:%?70?%;line-height:%?70?%;border-radius:%?38?%;font-size:%?31?%;margin:auto}.determineButtn[data-v-b4425848]{width:%?251?%;margin:%?34?% auto 0;height:%?77?%;line-height:%?77?%;text-align:center;background:linear-gradient(92deg,#178ce6,#984ace);opacity:.86;border-radius:%?38?%;font-size:%?31?%;font-weight:500;color:#fff}',""]),t.exports=e},ec4b:function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADkUlEQVRYR8WXa0gUURTH/3fGlFJrJUIzykoXLcoytYev3kFl9FDcHkZChFAfgqSkNohKP1Qfgt4UpdHDVtcoihIq64NCtdWWmKGrhUqgZZhapu3O3LhjO+m0s2pN7YVh4Nzz+M25Z+65l8DNWHd1QqDAeyUQiihKEE6AEACBFAgggH9vUwp0EKAVQDMF6glFNSWw8oKjrGD9u2a1MMTVRJopLJ0QkgGKhe4ABzxH8IBSml9oqL2stOkDsM4cHikKwimAxA/Y+aAUaTnH81sLUqsrnGYyAAtOBbGUAiMH5XOQygT4RHhugRNCBjCYwsr+3ZcrKWm5yVCbwKQSgLTmIJcG+TF/pU5BN7KakAAMhfr7rgouftwKlDfc+qtAqsYED0xptkWE/Woi79WkVEwMWYlts44g33oQJbZ/kxxOcASRNJM+hQBmJcCeuXmIDOz5Gcyvj0uP1oMCqcRwTZ8DAqPSed5qK4YO8ZXFpW8LcfbZXm0ZKHJZBooIkKr0bEzKx9SguD7ii9Zc3LVd1AyCAmZiMOmfAohVel07JQurJmfKYrv4HVuK49BF2zUDAGBhAPUAxim9zgxegh0JJ2Rx3rMc3LHlg+c5LQEa2BK0KxsLi0ApxYEFJoSPmiEFPPQoE9YPD7UMDqmBGUx6quZ1zpjl2B5/VJq2tbzE/kcb4BDtmkK4BWBZ2J14HtODk6SghZXHcL3q17JoQeIWgAWICpqH7KSzcqyiymMo1hCiXwAWOXb0YmQlnpQhtNyYVItQmd7ooMXYmfQL4l5dAa68OoQuR+cfr4SzCF3+hkqvrB5iGMTcU/JUTcsLXK44DPbuPUJ0ERCpgMY2W39wDaobkStLUaSYPHIWMmKMGB8wSVJhGbjx5oz0sMGaWPq0bHTav+CMZTeqW567g7CobsVqVgxiGDccGdFGzAtdI6s1ttXgfXsdZo9dKstav33EaUs2KprKXLrr2YpVmlF/uXPYHUgO3yxlw93ocnzFySe7YHl/73e1n83IZTvuD4DNC4KIYN+JiB+fjGURm+DnPcKlWUd3K86/2IfHjSV95qV2rHYgGQgA06EihSAIIJTH/NBUzA9Ngb+PDn4+Ovh763Cz6hxuV13A5+4WePsM6eNWOpAwidqRbKAQTj1RECUY9sdQ2tNPOI4D78VJb0J63QKcRzJm7PFDqZQFTx7LGYDHLyZOCI9dzXoXnMcup8qq/x/X8x8KT5Ig2oVObgAAAABJRU5ErkJggg=="}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-index-detailsphone"],{"0277":function(t,e,i){"use strict";i.r(e);var n=i("99a2"),a=i.n(n);for(var o in n)"default"!==o&&function(t){i.d(e,t,(function(){return n[t]}))}(o);e["default"]=a.a},"0c06":function(t,e,i){"use strict";i.r(e);var n=i("6468"),a=i("d979");for(var o in a)"default"!==o&&function(t){i.d(e,t,(function(){return a[t]}))}(o);i("5e70");var r,s=i("f0c5"),c=Object(s["a"])(a["default"],n["b"],n["c"],!1,null,"fe975466",null,!1,n["a"],r);e["default"]=c.exports},"0f1a":function(t,e,i){"use strict";var n;i.d(e,"b",(function(){return a})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){return n}));var a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-view",[t.languagecenter?n("v-uni-view",{staticClass:"full-width",staticStyle:{position:"fixed",bottom:"0",left:"0",height:"760upx","z-index":"9997",background:"linear-gradient(0deg, #1B294F, #4E2761, #E73231)",opacity:"0.8"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.cancelLanguage()},touchmove:function(e){e.stopPropagation(),arguments[0]=e=t.$handleEvent(e),t.myCatchTouch.apply(void 0,arguments)}}}):t._e(),t.languagecenter?n("v-uni-view",{staticStyle:{position:"fixed","z-index":"9998",width:"100%",top:"0",bottom:"0",margin:"auto",height:"800upx"}},[n("v-uni-view",{staticStyle:{width:"calc(100% - 80upx)",position:"fixed",top:"0",bottom:"0",left:"0",right:"0",margin:"auto",display:"flex","flex-direction":"column","align-items":"center","justify-content":"center"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.cancelLanguage()}}},[n("v-uni-view",{staticStyle:{width:"100%",background:"#FFFFFF","border-radius":"30upx",position:"relative",height:"800upx"}},[n("v-uni-view",{staticStyle:{position:"absolute",top:"0upx",right:"0upx"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.cancelLanguage()}}},[n("v-uni-image",{staticStyle:{height:"23upx",width:"23upx",padding:"21upx 33upx"},attrs:{src:i("8f63"),mode:""}})],1),t.languageList.length>0?n("v-uni-scroll-view",{staticStyle:{"box-sizing":"border-box","white-space":"nowrap",width:"100%",margin:"40upx auto",height:"740upx",overflow:"hidden"},attrs:{"scroll-y":!0,"scroll-with-animation":!0}},t._l(t.languageList,(function(e,i){return n("v-uni-view",{key:i,staticStyle:{margin:"10upx",display:"flex","align-items":"center",height:"110upx",width:"calc(100% - 20upx)","text-align":"center","justify-content":"center","font-size":"30upx"},on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.languageClick(e)}}},[t._v(t._s(e.title))])})),1):t._e(),0==t.languageList.length?n("v-uni-view",{staticStyle:{"text-align":"center",color:"#333333",width:"510upx",margin:"0 auto",height:"760upx","justify-content":"center","font-size":"32upx","line-height":"760upx","font-weight":"600"}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["暂无数据"]))]):t._e()],1)],1)],1):t._e()],1)},o=[]},"18d7":function(t,e,i){var n=i("ab2d");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var a=i("4f06").default;a("237f0987",n,!0,{sourceMap:!1,shadowMode:!1})},"1b77":function(t,e,i){var n=i("24fb");e=n(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */\r\n/* 轮播圆点样式修改 */\r\n/* .swiper{\r\n\theight: 390upx; width: 690upx; border-radius: 10upx; overflow: hidden; margin:auto;\r\n}\r\n.swiper-box {\r\n\tposition: relative;\r\n\twidth: 100%;\r\n}\r\n\r\n.dots {\r\n\tdisplay: flex;\r\n\tjustify-content: center;\r\n}\r\n\r\n.dots .dot {\r\n\tcolor: #FFFFFF;\r\n\tfont-size: 18upx;\r\n\tmargin-right: 10upx;\r\n} */\r\n/* 轮播圆点样式修改 */.swiper-box[data-v-3cef1844]{position:relative;width:100%}.swiper[data-v-3cef1844]{height:%?200?%;width:%?690?%;border-radius:%?10?%;overflow:hidden;margin:auto}.swiper-item[data-v-3cef1844]{\r\n\t/* height: ; */}.dots[data-v-3cef1844]{position:absolute;left:0;right:0;bottom:%?22?%;display:flex;margin-right:%?10?%;justify-content:center}.dots .dot[data-v-3cef1844]{color:#f56364;font-size:%?22?%}\r\n/*弹性布局*/.flex[data-v-3cef1844]{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;display:box;flex-wrap:wrap}.line1[data-v-3cef1844]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:%?36?%;font-weight:200;color:#fff}.commonbottom[data-v-3cef1844]{width:%?750?%;height:%?1?%;border-top:%?1?% solid #f1f3f6;opacity:.05}.commonHead[data-v-3cef1844]{width:100%;height:%?128?%;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;overflow:hidden;position:relative;z-index:10}.commonHead-wrap[data-v-3cef1844]{width:100%;position:absolute;overflow:hidden;left:0;bottom:0;height:45px;line-height:45px}.commonHead_left[data-v-3cef1844]{width:%?100?%;height:100%;position:absolute;left:0;top:0}.commonHead_left_back[data-v-3cef1844]{width:100%;height:100%;background-size:%?40?% %?40?%;background-repeat:no-repeat;background-position:50%;display:flex;align-items:center}.commonHead_left_back_img[data-v-3cef1844]{width:%?60?%;height:%?60?%;display:block;border-radius:50%;margin-left:%?31?%;align-items:center;overflow:hidden}.commonHead_right[data-v-3cef1844]{width:100%;height:100%;\r\n\t/* line-height: 88rpx; */text-align:center;font-size:%?30?%;overflow:hidden;justify-content:flex-end}.commonHead_right_text[data-v-3cef1844]{width:%?280?%;margin:0 auto}uni-page-body[data-v-3cef1844]{width:100%;height:100%;background:#fff}uni-page-body .swiper_img[data-v-3cef1844]{height:100%;width:100%;display:flex;justify-content:center;align-items:center}uni-page-body .swiper_img .swiper-box[data-v-3cef1844]{width:100%}uni-page-body .swiper_img .image[data-v-3cef1844]{width:100%}uni-page-body .experiencebutton[data-v-3cef1844]{width:%?230?%;height:%?70?%;line-height:%?70?%;text-align:center;color:#fff;margin:%?40?% auto 0;border-radius:%?35?%;background:linear-gradient(90deg,#834dc4,#1983d7);font-size:%?26?%}uni-page-body .loginBtn-hover[data-v-3cef1844]{background:linear-gradient(270deg,#834dc4,#1983d7)}uni-page-body .canbutton[data-v-3cef1844]{color:#fff;font-size:%?26?%;width:%?218?%;height:%?58?%;line-height:%?58?%;border:1px transparent solid;border-radius:30px;position:relative;margin:auto;background:#292933;text-align:center}uni-page-body .canbutton[data-v-3cef1844]:after{content:"";position:absolute;top:-3px;bottom:-3px;left:-3px;right:-3px;background:linear-gradient(90deg,#834dc4,#1983d7);border-radius:30px;content:"";z-index:-1}uni-page-body .brandactive[data-v-3cef1844]{background:#e4d0f6!important}uni-page-body .model[data-v-3cef1844]{padding:%?0?% %?20?%;height:%?60?%;line-height:%?60?%;background:#141319;text-align:center;color:#fff;border-radius:%?30?%;margin-right:%?20?%;font-size:%?28?%}uni-page-body .modelactive[data-v-3cef1844]{color:#553177!important}uni-page-body .start .start_img[data-v-3cef1844]{width:%?260?%;height:%?260?%;display:block;margin:%?0?% auto %?102?%}uni-page-body .start .start_title[data-v-3cef1844]{font-size:%?30?%;text-align:center;color:#fff}uni-page-body .start .start_text[data-v-3cef1844]{width:70%;text-align:center;font-size:%?28?%;font-family:Source Han Sans CN;font-weight:400;color:#fff;margin:%?22?% auto 0;line-height:%?28?%}body.?%PAGE?%[data-v-3cef1844]{background:#fff}',""]),t.exports=e},2410:function(t,e,i){"use strict";var n=i("952f"),a=i.n(n);a.a},"41f1":function(t,e,i){"use strict";i.r(e);var n=i("5381"),a=i("7a30");for(var o in a)"default"!==o&&function(t){i.d(e,t,(function(){return a[t]}))}(o);i("2410");var r,s=i("f0c5"),c=Object(s["a"])(a["default"],n["b"],n["c"],!1,null,"3cef1844",null,!1,n["a"],r);e["default"]=c.exports},5381:function(t,e,i){"use strict";i.d(e,"b",(function(){return a})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){return n}));var n={uniSwiperDot:i("0c06").default},a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-view",{staticClass:"full-width full-height"},[1==t.statusloading?n("v-uni-image",{staticStyle:{position:"fixed","z-index":"99",right:"-120upx",bottom:"480upx",display:"flex","align-items":"center","justify-content":"center",width:"220upx",height:"110upx"},attrs:{src:i("61b1")},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.toLineList()}}}):t._e(),1==t.statusloading?n("v-uni-view",{staticStyle:{position:"fixed","z-index":"99",right:"0upx",bottom:"820upx",width:"90upx",height:"80upx",color:"#000","font-size":"30upx","text-align":"center","line-height":"80upx",border:"8upx solid #F29F3D",background:"#FFFFFF","border-radius":"30upx 0upx 30upx 0upx","font-weight":"600"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.toSelectLanguage()}}},[t._v("EN")]):t._e(),n("myhead",{attrs:{worksid:9,title:t.$i18n.messages[t.$i18n.locale]["定制蛋糕"]+t.myheadtext,color:"#fff",titleShow:!0,backShow:!0,background:"none"}}),n("v-uni-view",{staticStyle:{position:"relative",width:"100%",height:"100%","z-index":"2"}},[1==t.statusloading?n("v-uni-view",{staticStyle:{width:"100%",height:"100%"}},[n("v-uni-view",{staticClass:"swiper_img"},[n("uni-swiper-dot",{attrs:{info:t.Adlists,current:t.currentSwiper,mode:"round",field:"content"}},[n("v-uni-swiper",{staticClass:"swiper-box",style:{height:t.datainfo.windowHeight+"px"},attrs:{autoplay:!0,interval:3e3,duration:1e3},on:{change:function(e){arguments[0]=e=t.$handleEvent(e),t.swiperChange.apply(void 0,arguments)}}},t._l(t.Adlists,(function(e,i){return n("v-uni-swiper-item",{key:i},[n("v-uni-view",{staticClass:"swiper-item"},[n("v-uni-image",{staticClass:"image",style:{height:t.datainfo.windowHeight+"px"},attrs:{src:e.content+"?x-oss-process=image/resize,lfit,w_750",mode:"aspectFill"}})],1)],1)})),1)],1)],1),n("v-uni-view",{staticStyle:{position:"fixed",bottom:"232upx","text-align":"center",left:"0upx",right:"0"}},[n("v-uni-view",{staticClass:"dots"},t._l(t.Adlists,(function(e,i){return n("v-uni-view",{key:i,staticClass:"dot-wrapper"},[n("v-uni-view",{staticClass:"dot iconfont",class:[i==t.currentSwiper?"iconsanjiaoxing":"iconxingzhuang-sanjiaoxing"]})],1)})),1)],1),n("v-uni-view",{staticStyle:{position:"fixed",bottom:"130upx",left:"0",right:"0",margin:"auto",width:"380upx",height:"110upx",background:"linear-gradient(92deg, #E6B01A, #F29F3D)","box-shadow":"0px 19px 48px 1px rgba(20, 31, 62, 0.35)","border-radius":"50px"},attrs:{"hover-class":"hover-class-bg"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.Customize_now.apply(void 0,arguments)}}},[n("v-uni-view",{staticStyle:{"text-align":"center","line-height":"110upx","font-size":"36upx","font-weight":"500",color:"#FFFFFF"}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["立即定制"]))])],1)],1):t._e(),2==t.statusloading?n("v-uni-view",{staticStyle:{"min-height":"100%",background:"#131319 !important"}},[n("v-uni-view",{staticClass:"start",staticStyle:{"padding-bottom":"100upx","padding-top":"200upx"}},[n("v-uni-image",{staticClass:"start_img",attrs:{src:i("a3b4"),mode:"aspectFill"}}),n("v-uni-view",{staticClass:"start_text"},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["设备信息不存在"]))]),n("v-uni-view",{on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.tomakePhoneCall.apply(void 0,arguments)}}},[n("v-uni-view",{staticClass:"start_text"},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["联系客服"]))]),n("v-uni-view",{staticClass:"start_text",staticStyle:{display:"flex","justify-content":"center","align-items":"center"}},[n("v-uni-image",{staticStyle:{width:"32upx",height:"32upx","margin-right":"5upx"},attrs:{src:i("ec4b"),mode:""}}),t._v(t._s(t.phone||"18938664545"))],1)],1)],1)],1):t._e(),2==t.statusloading?n("v-uni-view",{staticStyle:{"margin-top":"-50upx","text-align":"center",color:"#888888","font-weight":"400","line-height":"40upx"}},[n("v-uni-text",{staticStyle:{"font-size":"22upx"}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["深圳市瑞丰彩科技有限公司"]))])],1):t._e()],1),n("switchGoods",{ref:"switchGoods",on:{selectGoodItem:function(e){arguments[0]=e=t.$handleEvent(e),t.selectGoodItem.apply(void 0,arguments)},toCustomSize:function(e){arguments[0]=e=t.$handleEvent(e),t.toCustomSize.apply(void 0,arguments)}}}),n("switchLanguage",{ref:"switchLanguage",on:{backLanguage:function(e){arguments[0]=e=t.$handleEvent(e),t.backLanguage.apply(void 0,arguments)}}})],1)},o=[]},"5e70":function(t,e,i){"use strict";var n=i("855a"),a=i.n(n);a.a},"61b1":function(t,e,i){t.exports=i.p+"static/img/icon_home_lineup_image.037ade74.png"},"62c9":function(t,e,i){"use strict";i.r(e);var n=i("0f1a"),a=i("0277");for(var o in a)"default"!==o&&function(t){i.d(e,t,(function(){return a[t]}))}(o);i("83a4");var r,s=i("f0c5"),c=Object(s["a"])(a["default"],n["b"],n["c"],!1,null,"22245824",null,!1,n["a"],r);e["default"]=c.exports},6468:function(t,e,i){"use strict";var n;i.d(e,"b",(function(){return a})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){return n}));var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",{staticClass:"uni-swiper__warp"},[t._t("default"),"default"===t.mode?i("v-uni-view",{staticClass:"uni-swiper__dots-box",style:{bottom:t.dots.bottom+"px"}},t._l(t.info,(function(e,n){return i("v-uni-view",{key:n,staticClass:"uni-swiper__dots-item",style:{width:t.dots.width+"px",height:t.dots.height+"px","background-color":n!==t.current?t.dots.backgroundColor:t.dots.selectedBackgroundColor,border:n!==t.current?t.dots.border:t.dots.selectedBorder}})})),1):t._e(),"long"===t.mode?i("v-uni-view",{staticClass:"uni-swiper__dots-box",style:{bottom:t.dots.bottom+"px"}},t._l(t.info,(function(e,n){return i("v-uni-view",{key:n,staticClass:"uni-swiper__dots-item ",class:[n===t.current&&"uni-swiper__dots-long"],style:{width:(n===t.current?3*t.dots.width:t.dots.width)+"px",height:t.dots.height+"px","background-color":n!==t.current?t.dots.backgroundColor:t.dots.selectedBackgroundColor,border:n!==t.current?t.dots.border:t.dots.selectedBorder}})})),1):t._e(),"nav"===t.mode?i("v-uni-view",{staticClass:"uni-swiper__dots-box uni-swiper__dots-nav",style:{"background-color":t.dotsStyles.backgroundColor}},[i("v-uni-view",{staticClass:"uni-swiper__dots-nav-item",style:{color:t.dotsStyles.color}},[t._v(t._s(t.current+1+"/"+t.info.length)+"\n\t\t\t"+t._s(t.info[t.current][t.field]))])],1):t._e(),"indexes"===t.mode?i("v-uni-view",{staticClass:"uni-swiper__dots-box",style:{bottom:t.dots.bottom+"px"}},t._l(t.info,(function(e,n){return i("v-uni-view",{key:n,staticClass:"uni-swiper__dots-item uni-swiper__dots-indexes",style:{width:t.dots.width+"px",height:t.dots.height+"px",color:n===t.current?t.dots.selectedColor:t.dots.color,"background-color":n!==t.current?t.dots.backgroundColor:t.dots.selectedBackgroundColor,border:n!==t.current?t.dots.border:t.dots.selectedBorder}},[t._v(t._s(n+1))])})),1):t._e()],2)},o=[]},7561:function(t,e,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=i("99ed"),a=i("f9f8"),o={setGoodsCateList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return(0,a._dispatch)("setGoodsCateList",t)},getGoodsCateList:function(){return(0,a._getters)("goodsCateList",[])},setCate:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._dispatch)("setCate",t)},getCate:function(){return(0,a._getters)("cate",{})},setSnapshot:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._dispatch)("setSnapshot",t)},getSnapshot:function(){return(0,a._getters)("snapshot",[])},setStock:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return(0,a._dispatch)("setStock",t)},getStock:function(){return(0,a._getters)("stock",[])},queryList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.T_route,params:t,callBack:function(){}})},WorksList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.T_route,params:t,callBack:function(){}})},Workssave:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.T_route_timeout,params:t,callBack:function(){}})},queryListPhone:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.P_route,params:t,callBack:function(){}})},WorksListPhone:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.P_route,params:t,callBack:function(){}})},WorkssavePhone:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.P_route_timeout,params:t,callBack:function(){}})},machineGetBaseSetting:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.P_route,params:t,callBack:function(){}})},userphoneappletsIndex:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.P_route,params:t,callBack:function(){}})},WorksListColor:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.C_route,params:t,callBack:function(){}})},queryListColor:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.C_route,params:t,callBack:function(){}})},paypalSuccess:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.paypal_success,params:t,callBack:function(){}})},paypalCancel:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n.paypal_cancel,params:t,callBack:function(){}})},getOrderList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._queryList)({api:n._getOrderList,params:t,callBack:function(){}})}},r=o;e.default=r},"7a30":function(t,e,i){"use strict";i.r(e);var n=i("af2b"),a=i.n(n);for(var o in n)"default"!==o&&function(t){i.d(e,t,(function(){return n[t]}))}(o);e["default"]=a.a},"808f":function(t,e,i){"use strict";i("a9e3"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={name:"uni-swiper-dot",props:{info:{type:Array,default:function(){return[]}},current:{info:Number,default:0},dotsStyles:{type:Object,default:function(){return{}}},mode:{type:String,default:"default"},field:{type:String,default:""}},data:function(){return{dots:{width:8,height:8,bottom:10,color:"#fff",backgroundColor:"rgba(0, 0, 0, .3)",border:"1px rgba(0, 0, 0, .3) solid",selectedBackgroundColor:"#333",selectedBorder:"1px rgba(0, 0, 0, .9) solid"}}},created:function(){"indexes"===this.mode&&(this.dots.width=20,this.dots.height=20),this.dots=Object.assign(this.dots,this.dotsStyles)},watch:{dotsStyles:function(t){this.dots=Object.assign(this.dots,this.dotsStyles)},mode:function(t){"indexes"===t?(this.dots.width=20,this.dots.height=20):(this.dots.width=8,this.dots.height=8)}}};e.default=n},"83a4":function(t,e,i){"use strict";var n=i("18d7"),a=i.n(n);a.a},"855a":function(t,e,i){var n=i("aa13");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var a=i("4f06").default;a("6647a8fc",n,!0,{sourceMap:!1,shadowMode:!1})},"952f":function(t,e,i){var n=i("1b77");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var a=i("4f06").default;a("0d085528",n,!0,{sourceMap:!1,shadowMode:!1})},"99a2":function(t,e,i){"use strict";var n=i("4ea4");i("498a"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=n(i("7561")),o=n(i("32cd")),r={props:{},components:{mpvuePicker:o.default},data:function(){return{MobilePhoneHeight:0,pixelRate:0,languageList:[],languagecenter:!1,machine_id:""}},mounted:function(){},methods:{myCatchTouch:function(){},open:function(t){var e=this;wx.getSystemInfo({success:function(t){e.MobilePhoneHeight=t.windowHeight-e.titleHeight,e.pixelRate=t.windowWidth/750}}),"null"!=t.machine_id&&(this.machine_id=t.machine_id),this.languagecenter=!0,this.getLanguageList()},getLanguageList:function(){var t=this;a.default.queryListPhone({machine_id:this.machine_id,s:"MachineLanguage.getLanguageList"}).then((function(e){t.languageList=e.list})).catch((function(t){}))},onCancel:function(t){},cancelLanguage:function(){this.languagecenter=!1},languageClick:function(t){this.languagecenter=!1;var e=t.key.trim();switch(e){case"ch":case"zh-cn":this._i18n.locale="zh-cn",uni.setStorageSync("lang",this._i18n.locale);break;case"zh":case"en-us":this._i18n.locale="en-us",uni.setStorageSync("lang",this._i18n.locale);break;case"it":case"it-it":this._i18n.locale="it-it",uni.setStorageSync("lang",this._i18n.locale);break;case"tc":case"zh-tc":this._i18n.locale="zh-tc",uni.setStorageSync("lang",this._i18n.locale);break;case"ja-ja":this._i18n.locale="ja-ja",uni.setStorageSync("lang",this._i18n.locale);break;case"fr-fr":this._i18n.locale="fr-fr",uni.setStorageSync("lang",this._i18n.locale);break;case"de-de":this._i18n.locale="de-de",uni.setStorageSync("lang",this._i18n.locale);break;case"po-po":this._i18n.locale="po-po",uni.setStorageSync("lang",this._i18n.locale);break;case"es-es":this._i18n.locale="es-es",uni.setStorageSync("lang",this._i18n.locale);break;case"dm-dm":this._i18n.locale="dm-dm",uni.setStorageSync("lang",this._i18n.locale);break;case"ko-ko":this._i18n.locale="ko-ko",uni.setStorageSync("lang",this._i18n.locale);break;case"pl-pl":this._i18n.locale="pl-pl",uni.setStorageSync("lang",this._i18n.locale);break;case"ru-ru":this._i18n.locale="ru-ru",uni.setStorageSync("lang",this._i18n.locale)}this.$emit("backLanguage",{key:this._i18n.locale})},change:function(t){}},onShow:function(t){}};e.default=r},"99ed":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e._getOrderList=e.paypal_cancel=e.paypal_success=e._utfgetShotBankCode=e.C_route=e.P_route_timeout=e.P_route=e.T_route_timeout=e.T_route=void 0;var a=n(i("c545")),o=i("f439"),r="/baking/index",s="/baking/index",c=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:r,params:t,method:"post",token:!0})};e.T_route=c;var u=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:r,params:t,method:"post",token:!0,timeout:!0})};e.T_route_timeout=u;var l=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:s,params:t,method:"post",token:!0})};e.P_route=l;var d=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:s,params:t,method:"post",token:!0,timeout:!0})};e.P_route_timeout=d;var h=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:"/baking/index",params:t,method:"post",token:!0})};e.C_route=h;var g=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:"/usertshirtsapplets/index",params:t,method:"post",token:!0})};e._utfgetShotBankCode=g;var f=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:"/api/Paypal/success",params:t,method:"post",token:!0})};e.paypal_success=f;var p=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:"/api/Paypal/cancel",params:t,method:"post",token:!0})};e.paypal_cancel=p;var v=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._request)({url:"/douyin/Order/getOrderList",params:t,token:!0,method:"post",contentType:a.default.ContentType.FORM_UTF8})};e._getOrderList=v},a3b4:function(t,e,i){t.exports=i.p+"static/img/icon_guaqi.1c07ccb3.png"},aa13:function(t,e,i){var n=i("24fb");e=n(!1),e.push([t.i,".uni-swiper__warp[data-v-fe975466]{position:relative;width:100%;box-sizing:border-box;overflow:hidden}.uni-swiper__dots-box[data-v-fe975466]{position:absolute;bottom:%?20?%;display:flex;justify-content:center;align-items:center;box-sizing:box-sizing;width:100%}.uni-swiper__dots-item[data-v-fe975466]{flex-shrink:0;width:%?16?%;border-radius:50%;margin-left:%?12?%;background:rgba(0,0,0,.3);transition:all .2s linear}.uni-swiper__dots-item[data-v-fe975466]:first-child{margin:0}.uni-swiper__dots-default[data-v-fe975466]{border-radius:50%}.uni-swiper__dots-long[data-v-fe975466]{border-radius:%?100?%}.uni-swiper__dots-nav[data-v-fe975466]{bottom:0;height:%?80?%;justify-content:flex-start;background:rgba(0,0,0,.2);box-sizing:box-sizing;overflow:hidden}.uni-swiper__dots-nav-item[data-v-fe975466]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:%?28?%;color:#fff;box-sizing:box-sizing;margin:0 %?30?%}.uni-swiper__dots-indexes[data-v-fe975466]{display:flex;justify-content:center;align-items:center;color:#fff;font-size:%?24?%}",""]),t.exports=e},ab2d:function(t,e,i){var n=i("24fb");e=n(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */.classification[data-v-22245824]{width:%?300?%;height:%?80?%;line-height:%?80?%;text-align:center;background:#eee;border-radius:0 0 %?40?% 0;font-size:%?36?%;color:#666}.classification.active[data-v-22245824]{background:#864bc3!important;color:#fff!important}.scroll-container[data-v-22245824]{box-sizing:border-box;white-space:nowrap;width:%?540?%;margin:auto}.scroll-container .scroll-item[data-v-22245824]{width:%?152?%;height:%?248?%;background:#f5f5f5;border-radius:%?20?%;text-align:center;display:inline-block;margin:0 %?10?%;border:%?4?% solid #f5f5f5}.scroll-container .scroll-item.active[data-v-22245824]{background:#fff!important;border:%?4?% solid #864bc3}.experiencebutton[data-v-22245824]{width:%?230?%;height:%?70?%;line-height:%?70?%;text-align:center;color:#fff;margin:%?40?% auto 0;border-radius:%?35?%;background:linear-gradient(90deg,#834dc4,#1983d7);font-size:%?26?%}.canbutton[data-v-22245824]{color:#fff;font-size:%?26?%;width:%?218?%;height:%?58?%;line-height:%?58?%;border:1px transparent solid;border-radius:30px;position:relative;margin:auto;background:#292933;text-align:center}.canbutton[data-v-22245824]:after{content:"";position:absolute;top:-3px;bottom:-3px;left:-3px;right:-3px;background:linear-gradient(90deg,#834dc4,#1983d7);border-radius:30px;content:"";z-index:-1}.brandactive[data-v-22245824]{background:#e4d0f6!important}.backgroundColoractive[data-v-22245824]{border:%?2?% #834dc4 solid!important}.tooltiptext[data-v-22245824]{visibility:hidden;min-width:%?120?%;background-color:#000;color:#fff;text-align:center;border-radius:%?6?%;padding:%?5?% %?10?%;font-size:%?20?%;\r\n /* 定位 */position:fixed;z-index:1}.tooltiptextactive[data-v-22245824]{visibility:visible}.model[data-v-22245824]{padding:%?0?% %?20?%;height:%?60?%;line-height:%?60?%;background:#141319;text-align:center;color:#fff;border-radius:%?30?%;margin-right:%?20?%;font-size:%?28?%}.modelactive[data-v-22245824]{color:#553177!important}.determineBut[data-v-22245824]{background:linear-gradient(92deg,#178ce6,#984ace);color:#fff;position:fixed;bottom:%?100?%;text-align:center;left:0;right:0;width:%?251?%;height:%?70?%;line-height:%?70?%;border-radius:%?38?%;font-size:%?31?%;margin:auto}.determineButtn[data-v-22245824]{width:%?251?%;margin:%?34?% auto 0;height:%?77?%;line-height:%?77?%;text-align:center;background:linear-gradient(92deg,#178ce6,#984ace);opacity:.86;border-radius:%?38?%;font-size:%?31?%;font-weight:500;color:#fff}',""]),t.exports=e},af2b:function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=n(i("ade3")),o=n(i("7561")),r=n(i("f960")),s=n(i("7390")),c=n(i("62c9")),u=n(i("0c06")),l=n(i("0656")),d=(0,a.default)({components:{myhead:r.default,switchBrands:s.default,uniSwiperDot:u.default,switchLanguage:c.default,switchGoods:l.default},computed:{},data:function(){return{Adlists:[],currentSwiper:0,catrgoryList:null,sizelist:[],brandtext:null,modeltext:null,goods_id:null,dict_id:null,machine_id:null,key:null,list:null,sn:null,myheadtext:"",msg:null,statusloading:null,phone:"18938664545",datainfo:{windowHeight:0,windowWidth:0,pixelRate:1},globalData:null,promoter_id:"",isLoad:!1,isReload:!1,support_paypal:!1}},methods:{toCustomSize:function(){uni.navigateTo({url:"../mall/size?machine_id="+this.machine_id+"&isFirstPage=true&machineDetail="+JSON.stringify(this.list)})},toLineList:function(){uni.navigateTo({url:"../mall/lineUp?machine_id="+this.machine_id})},selectGoodItem:function(t){uni.navigateTo({url:"../index/index?machine_id="+this.machine_id+"&good_id="+t.id+"&title="+t.title+"&real_width="+t.key+"&machineDetail="+JSON.stringify(this.list)+"&type = 1"})},toSelectLanguage:function(){var t=this;setTimeout((function(){t.$refs["switchLanguage"].open({machine_id:t.machine_id})}),500)},reload:function(){var t=this;this.isReload=!1,this.$nextTick((function(){t.isReload=!0}))},backLanguage:function(t){this.reload()},toOrderList:function(){uni.navigateTo({url:"../mine/orderList?machine_id="+this.machine_id})},preservationBase:function(){try{uni.setStorageSync("base",this.$base)}catch(t){}},tomakePhoneCall:function(){uni.showLoading({title:this.$i18n.messages[this.$i18n.locale]["正在加载中"],mask:!0}),uni.makePhoneCall({phoneNumber:this.phone||"18938664545",success:function(t){uni.hideLoading()},fail:function(t){uni.hideLoading(),uni.showToast({title:t,icon:"none",duration:2e3})}})},Customize_now:function(){if(null!=this.list)if(1==this.list.status.value||2==this.list.status.value){var t=1==this.list.customize_size;this.$refs["switchGoods"].open(this.machine_id,t)}else 0!=this.list.status.value&&3!=this.list.status.value&&4!=this.list.status.value&&5!=this.list.status.value||uni.showToast({title:this.$i18n.messages[this.$i18n.locale]["休息中"],icon:"none",duration:2e3});else uni.showToast({title:this.msg,icon:"none",duration:2e3})},change:function(t){},swiperChange:function(t){this.currentSwiper=t.detail.current},getDetail:function(){var t=this;uni.showLoading({title:"正在加载中...",mask:!0}),o.default.WorksList({machine_id:this.machine_id,s:"machine.newDetail"}).then((function(e){t.statusloading=1,e&&(t.list=e,t.support_paypal=!1,1==t.list.support_paypal?t.support_paypal=!0:t.support_paypal=!1,uni.setStorageSync("privacy",t.list.privacy),t.myheadtext=t.machine_id+"-"+e.code),uni.stopPullDownRefresh(),uni.hideLoading()})).catch((function(e){t.msg=e.msg,t.statusloading=2,t.phone=e.data.phone||"18938664545",t.myheadtext="歇一歇",uni.stopPullDownRefresh(),uni.hideLoading()}))},Adlist:function(){var t=this;o.default.queryListPhone({s:"Ad.list",ad_position_key:"index_top",machine_id:this.machine_id}).then((function(e){t.Adlists=e,uni.stopPullDownRefresh()})).catch((function(t){uni.stopPullDownRefresh()}))}},onReachBottom:function(){},onPullDownRefresh:function(){},onShow:function(){this.machine_id&&"null"!=this.machine_id&&this.isLoad&&this.getDetail()},onLoad:function(t){wx.setNavigationBarTitle({title:this.$i18n.messages[this.$i18n.locale]["定制手机壳"]});var e=this;uni.getStorage({key:"globalData",success:function(t){e.globalData=t.data}}),wx.getSystemInfo({success:function(t){e.datainfo.windowHeight=t.windowHeight,e.datainfo.windowWidth=t.windowWidth,e.datainfo.pixelRate=t.windowWidth/750,e.globalData.getSystemInfo=t,uni.setStorageSync("globalData",e.globalData)}}),t.machine_id&&"null"!=t.machine_id?(e.isLoad=!0,this.machine_id=t.machine_id,this.Adlist(),this.getDetail()):this.statusloading=2}},"onShow",(function(t){var e=this;this.machine_id&&"null"!=this.machine_id&&o.default.WorksList({machine_id:this.machine_id,s:"machine.newDetail"}).then((function(t){e.statusloading=1,t&&(e.list=t,e.support_paypal=!1,1==e.list.support_paypal?e.support_paypal=!0:e.support_paypal=!1,uni.setStorageSync("privacy",e.list.privacy))})).catch((function(t){}))}));e.default=d},d979:function(t,e,i){"use strict";i.r(e);var n=i("808f"),a=i.n(n);for(var o in n)"default"!==o&&function(t){i.d(e,t,(function(){return n[t]}))}(o);e["default"]=a.a},ec4b:function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADkUlEQVRYR8WXa0gUURTH/3fGlFJrJUIzykoXLcoytYev3kFl9FDcHkZChFAfgqSkNohKP1Qfgt4UpdHDVtcoihIq64NCtdWWmKGrhUqgZZhapu3O3LhjO+m0s2pN7YVh4Nzz+M25Z+65l8DNWHd1QqDAeyUQiihKEE6AEACBFAgggH9vUwp0EKAVQDMF6glFNSWw8oKjrGD9u2a1MMTVRJopLJ0QkgGKhe4ABzxH8IBSml9oqL2stOkDsM4cHikKwimAxA/Y+aAUaTnH81sLUqsrnGYyAAtOBbGUAiMH5XOQygT4RHhugRNCBjCYwsr+3ZcrKWm5yVCbwKQSgLTmIJcG+TF/pU5BN7KakAAMhfr7rgouftwKlDfc+qtAqsYED0xptkWE/Woi79WkVEwMWYlts44g33oQJbZ/kxxOcASRNJM+hQBmJcCeuXmIDOz5Gcyvj0uP1oMCqcRwTZ8DAqPSed5qK4YO8ZXFpW8LcfbZXm0ZKHJZBooIkKr0bEzKx9SguD7ii9Zc3LVd1AyCAmZiMOmfAohVel07JQurJmfKYrv4HVuK49BF2zUDAGBhAPUAxim9zgxegh0JJ2Rx3rMc3LHlg+c5LQEa2BK0KxsLi0ApxYEFJoSPmiEFPPQoE9YPD7UMDqmBGUx6quZ1zpjl2B5/VJq2tbzE/kcb4BDtmkK4BWBZ2J14HtODk6SghZXHcL3q17JoQeIWgAWICpqH7KSzcqyiymMo1hCiXwAWOXb0YmQlnpQhtNyYVItQmd7ooMXYmfQL4l5dAa68OoQuR+cfr4SzCF3+hkqvrB5iGMTcU/JUTcsLXK44DPbuPUJ0ERCpgMY2W39wDaobkStLUaSYPHIWMmKMGB8wSVJhGbjx5oz0sMGaWPq0bHTav+CMZTeqW567g7CobsVqVgxiGDccGdFGzAtdI6s1ttXgfXsdZo9dKstav33EaUs2KprKXLrr2YpVmlF/uXPYHUgO3yxlw93ocnzFySe7YHl/73e1n83IZTvuD4DNC4KIYN+JiB+fjGURm+DnPcKlWUd3K86/2IfHjSV95qV2rHYgGQgA06EihSAIIJTH/NBUzA9Ngb+PDn4+Ovh763Cz6hxuV13A5+4WePsM6eNWOpAwidqRbKAQTj1RECUY9sdQ2tNPOI4D78VJb0J63QKcRzJm7PFDqZQFTx7LGYDHLyZOCI9dzXoXnMcup8qq/x/X8x8KT5Ig2oVObgAAAABJRU5ErkJggg=="}}]);
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-login-select_login"],{"0c06":function(t,e,n){"use strict";n.r(e);var i=n("6468"),o=n("d979");for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);n("5e70");var r,s=n("f0c5"),d=Object(s["a"])(o["default"],i["b"],i["c"],!1,null,"fe975466",null,!1,i["a"],r);e["default"]=d.exports},"310f":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;i(n("be66"));var o=i(n("c190")),a=i(n("7561")),r={components:{},data:function(){return{Adlists:[],language:null,longState:!1,currentSwiper:0,globalData:{bindWx:null,machine_id:null},datainfo:{windowHeight:0,windowWidth:0,pixelRate:1},auto_register:null,statusloading:1,promoter_id:"",isComefrist:!1}},methods:{swiperChange:function(t){this.currentSwiper=t.detail.current},Adlist:function(){var t=this;a.default.queryListPhone({s:"Ad.list",ad_position_key:"index_top",machine_id:this.globalData.machine_id}).then((function(e){t.Adlists=e})).catch((function(t){}))},bindLogin:function(){uni.reLaunch({url:"/pages/login/login?machine_id="+this.globalData.machine_id+"&language="+this._i18n.locale})},autoRegister:function(){var t=this,e=this.getPhoneRandomNumber(),n="123456789";o.default.bindWx({s:"User.webLogin",phone:e,password:n}).then((function(e){t.globalData.bindWx=e,uni.setStorageSync("globalData",t.globalData),uni.hideLoading(),uni.reLaunch({url:"/pages/index/detailsphone?machine_id="+t.globalData.machine_id})})).catch((function(e){t.longState=!0,uni.hideLoading(),uni.showToast({title:e.msg,icon:"none"})}))},getPhoneRandomNumber:function(){return null==this.globalData.machine_id?(new Date).getTime()+this.createCode:this.globalData.machine_id+(new Date).getTime()+this.createCode()},createCode:function(){for(var t="",e=4,n=new Array(0,1,2,3,4,5,6,7,8,9),i=0;i<e;i++){var o=Math.floor(9*Math.random());t+=n[o]}return t},getAutoRegister:function(){var t=this;a.default.WorksListPhone({s:"machine.newDetail",machine_id:this.globalData.machine_id}).then((function(e){t.auto_register=e.auto_register,t.getUserToken()})).catch((function(e){t.handleLoginAndRegister(),uni.showToast({title:t.$i18n.messages[t.$i18n.locale]["当前打印站正在维护"],icon:"none"})}))},getAutoRegisterNoBind:function(){var t=this;a.default.WorksListPhone({s:"machine.newDetail",machine_id:this.globalData.machine_id}).then((function(e){t.auto_register=e.auto_register,t.handleLoginAndRegister()})).catch((function(e){t.handleLoginAndRegister(),uni.showToast({title:t.$i18n.messages[t.$i18n.locale]["当前打印站正在维护"],icon:"none"})}))},handleLoginAndRegister:function(){null!=this.auto_register&&1==this.auto_register?this.autoRegister():this.longState=!0},getUserToken:function(){var t=this,e=null;try{e=uni.getStorageSync("bindWx")}catch(n){}this.globalData.machine_id&&e?o.default.verifyToken({s:"User.verifyToken"}).then((function(e){uni.reLaunch({url:"/pages/index/detailsphone?machine_id="+t.globalData.machine_id})})).catch((function(e){t.handleLoginAndRegister()})):this.handleLoginAndRegister()}},onReady:function(){},onLoad:function(t){try{var e=uni.getStorageSync("globalData");e&&(this.globalData=e)}catch(i){}var n=this;this.Adlist(),wx.getSystemInfo({success:function(t){n.datainfo.windowHeight=t.windowHeight,n.datainfo.windowWidth=t.windowWidth,n.datainfo.pixelRate=t.windowWidth/750,n.globalData.getSystemInfo=t}}),uni.setNavigationBarTitle({title:this.$i18n.messages[this.$i18n.locale]["定制蛋糕"]}),t.machine_id&&"null"!=t.machine_id?(this.globalData.machine_id=t.machine_id,this.getAutoRegister()):(this.longState=!1,this.statusloading=2)},onShow:function(){}};e.default=r},"311d":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */\r\n/*每个页面公共css */uni-page-body[data-v-304deb40]{min-height:100%;display:flex;font-size:16px;width:100%;height:100%;display:block;background-color:#fff}.swiper_img[data-v-304deb40]{height:100%;width:100%;display:flex;justify-content:center;align-items:center}.swiper_img .swiper-box[data-v-304deb40]{width:100%}.swiper_img .image[data-v-304deb40]{width:100%}.content[data-v-304deb40]{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;height:100%}.loader[data-v-304deb40]{z-index:1;position:absolute;top:%?130?%;width:%?250?%;height:%?250?%;border-radius:50%;background:linear-gradient(#f29f3d,#f29f3d,#f29f3d);-webkit-animation:animate-data-v-304deb40 1.2s linear infinite;animation:animate-data-v-304deb40 1.2s linear infinite}@-webkit-keyframes animate-data-v-304deb40{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes animate-data-v-304deb40{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.loader[data-v-304deb40]:after{content:"";position:absolute;top:10px;left:10px;right:10px;bottom:10px;background:#f1f1f1;border:solid #fff 10px;border-radius:50%}.inputpassword[data-v-304deb40]{font-size:%?28?%;margin:20% 0;position:absolute;top:%?600?%;height:%?70?%;width:50%;text-align:center;border-bottom:1px #14141a solid;border-radius:%?10?%}.inputphone[data-v-304deb40]{font-size:%?28?%;margin:20% 0;position:absolute;top:%?470?%;height:%?70?%;width:50%;text-align:center;border-bottom:1px #14141a solid;border-radius:%?10?%}.logoimg[data-v-304deb40]{position:absolute;top:%?155?%;z-index:10}.loginBtn[data-v-304deb40]{font-size:%?34?%;background:linear-gradient(90deg,#f29f3d,#f29f3d);border-radius:%?200?%;width:80%;\r\n /* position: absolute; */color:#fff\r\n /* \ttop: 980rpx; */}.register[data-v-304deb40]{position:absolute;top:%?1080?%;text-align:center;color:red}.logoimage[data-v-304deb40]{height:%?200?%;width:%?200?%;border-radius:%?100?%;background:#fff;text-align:center;line-height:%?200?%;font-size:%?50?%;color:#14141a}.text-area[data-v-304deb40]{position:absolute;top:%?400?%;display:flex;justify-content:center}.title[data-v-304deb40]{font-size:%?50?%;color:#14141a}.bgimage[data-v-304deb40]{position:absolute;left:0;bottom:0;z-index:-1;width:%?464?%;height:%?590?%}body.?%PAGE?%[data-v-304deb40]{background-color:#fff}',""]),t.exports=e},3135:function(t,e,n){var i=n("311d");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var o=n("4f06").default;o("035155bf",i,!0,{sourceMap:!1,shadowMode:!1})},"352a":function(t,e,n){"use strict";n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){return i}));var i={uniSwiperDot:n("0c06").default},o=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.longState?n("v-uni-view",{staticClass:"content"},[n("v-uni-view",{staticStyle:{width:"100%",height:"100%",background:"#f5f5f5"}},[n("uni-swiper-dot",{attrs:{info:t.Adlists,current:t.currentSwiper,mode:"round",field:"content"}},[n("v-uni-swiper",{staticStyle:{width:"100%"},style:{height:t.datainfo.windowHeight+"px"},attrs:{autoplay:!0,interval:3e3,duration:1e3},on:{change:function(e){arguments[0]=e=t.$handleEvent(e),t.swiperChange.apply(void 0,arguments)}}},t._l(t.Adlists,(function(e,i){return n("v-uni-swiper-item",{key:i},[n("v-uni-view",{staticClass:"swiper-item"},[n("v-uni-image",{staticStyle:{width:"100%"},style:{height:t.datainfo.windowHeight+"px"},attrs:{src:e.content+"?x-oss-process=image/resize,lfit,w_770",mode:"aspectFill"}})],1)],1)})),1)],1)],1),n("v-uni-view",{staticStyle:{width:"100%","align-items":"center","justify-content":"center",margin:"auto","z-index":"9999",position:"absolute"}},[n("v-uni-button",{staticClass:"loginBtn",attrs:{"hover-class":"hover-class-bg"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.bindLogin.apply(void 0,arguments)}}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["登录"]))]),n("v-uni-button",{staticClass:"loginBtn",staticStyle:{"margin-top":"90upx"},attrs:{"hover-class":"hover-class-bg"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.autoRegister.apply(void 0,arguments)}}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["访客"]))])],1)],1):t._e()},a=[]},"5e70":function(t,e,n){"use strict";var i=n("855a"),o=n.n(i);o.a},6468:function(t,e,n){"use strict";var i;n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){return i}));var o=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-view",{staticClass:"uni-swiper__warp"},[t._t("default"),"default"===t.mode?n("v-uni-view",{staticClass:"uni-swiper__dots-box",style:{bottom:t.dots.bottom+"px"}},t._l(t.info,(function(e,i){return n("v-uni-view",{key:i,staticClass:"uni-swiper__dots-item",style:{width:t.dots.width+"px",height:t.dots.height+"px","background-color":i!==t.current?t.dots.backgroundColor:t.dots.selectedBackgroundColor,border:i!==t.current?t.dots.border:t.dots.selectedBorder}})})),1):t._e(),"long"===t.mode?n("v-uni-view",{staticClass:"uni-swiper__dots-box",style:{bottom:t.dots.bottom+"px"}},t._l(t.info,(function(e,i){return n("v-uni-view",{key:i,staticClass:"uni-swiper__dots-item ",class:[i===t.current&&"uni-swiper__dots-long"],style:{width:(i===t.current?3*t.dots.width:t.dots.width)+"px",height:t.dots.height+"px","background-color":i!==t.current?t.dots.backgroundColor:t.dots.selectedBackgroundColor,border:i!==t.current?t.dots.border:t.dots.selectedBorder}})})),1):t._e(),"nav"===t.mode?n("v-uni-view",{staticClass:"uni-swiper__dots-box uni-swiper__dots-nav",style:{"background-color":t.dotsStyles.backgroundColor}},[n("v-uni-view",{staticClass:"uni-swiper__dots-nav-item",style:{color:t.dotsStyles.color}},[t._v(t._s(t.current+1+"/"+t.info.length)+"\n\t\t\t"+t._s(t.info[t.current][t.field]))])],1):t._e(),"indexes"===t.mode?n("v-uni-view",{staticClass:"uni-swiper__dots-box",style:{bottom:t.dots.bottom+"px"}},t._l(t.info,(function(e,i){return n("v-uni-view",{key:i,staticClass:"uni-swiper__dots-item uni-swiper__dots-indexes",style:{width:t.dots.width+"px",height:t.dots.height+"px",color:i===t.current?t.dots.selectedColor:t.dots.color,"background-color":i!==t.current?t.dots.backgroundColor:t.dots.selectedBackgroundColor,border:i!==t.current?t.dots.border:t.dots.selectedBorder}},[t._v(t._s(i+1))])})),1):t._e()],2)},a=[]},7561:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=n("99ed"),o=n("f9f8"),a={setGoodsCateList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return(0,o._dispatch)("setGoodsCateList",t)},getGoodsCateList:function(){return(0,o._getters)("goodsCateList",[])},setCate:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._dispatch)("setCate",t)},getCate:function(){return(0,o._getters)("cate",{})},setSnapshot:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._dispatch)("setSnapshot",t)},getSnapshot:function(){return(0,o._getters)("snapshot",[])},setStock:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return(0,o._dispatch)("setStock",t)},getStock:function(){return(0,o._getters)("stock",[])},queryList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.T_route,params:t,callBack:function(){}})},WorksList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.T_route,params:t,callBack:function(){}})},Workssave:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.T_route_timeout,params:t,callBack:function(){}})},queryListPhone:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.P_route,params:t,callBack:function(){}})},WorksListPhone:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.P_route,params:t,callBack:function(){}})},WorkssavePhone:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.P_route_timeout,params:t,callBack:function(){}})},machineGetBaseSetting:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.P_route,params:t,callBack:function(){}})},userphoneappletsIndex:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.P_route,params:t,callBack:function(){}})},WorksListColor:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.C_route,params:t,callBack:function(){}})},queryListColor:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.C_route,params:t,callBack:function(){}})},paypalSuccess:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.paypal_success,params:t,callBack:function(){}})},paypalCancel:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.paypal_cancel,params:t,callBack:function(){}})},getOrderList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i._getOrderList,params:t,callBack:function(){}})}},r=a;e.default=r},"7f16":function(t,e,n){"use strict";n.r(e);var i=n("352a"),o=n("c8d8");for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);n("e9c9");var r,s=n("f0c5"),d=Object(s["a"])(o["default"],i["b"],i["c"],!1,null,"304deb40",null,!1,i["a"],r);e["default"]=d.exports},"808f":function(t,e,n){"use strict";n("a9e3"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i={name:"uni-swiper-dot",props:{info:{type:Array,default:function(){return[]}},current:{info:Number,default:0},dotsStyles:{type:Object,default:function(){return{}}},mode:{type:String,default:"default"},field:{type:String,default:""}},data:function(){return{dots:{width:8,height:8,bottom:10,color:"#fff",backgroundColor:"rgba(0, 0, 0, .3)",border:"1px rgba(0, 0, 0, .3) solid",selectedBackgroundColor:"#333",selectedBorder:"1px rgba(0, 0, 0, .9) solid"}}},created:function(){"indexes"===this.mode&&(this.dots.width=20,this.dots.height=20),this.dots=Object.assign(this.dots,this.dotsStyles)},watch:{dotsStyles:function(t){this.dots=Object.assign(this.dots,this.dotsStyles)},mode:function(t){"indexes"===t?(this.dots.width=20,this.dots.height=20):(this.dots.width=8,this.dots.height=8)}}};e.default=i},"855a":function(t,e,n){var i=n("aa13");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var o=n("4f06").default;o("6647a8fc",i,!0,{sourceMap:!1,shadowMode:!1})},"99ed":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e._getOrderList=e.paypal_cancel=e.paypal_success=e._utfgetShotBankCode=e.C_route=e.P_route_timeout=e.P_route=e.T_route_timeout=e.T_route=void 0;var o=i(n("c545")),a=n("f439"),r="/baking/index",s="/baking/index",d=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:r,params:t,method:"post",token:!0})};e.T_route=d;var u=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:r,params:t,method:"post",token:!0,timeout:!0})};e.T_route_timeout=u;var l=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:s,params:t,method:"post",token:!0})};e.P_route=l;var c=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:s,params:t,method:"post",token:!0,timeout:!0})};e.P_route_timeout=c;var f=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:"/baking/index",params:t,method:"post",token:!0})};e.C_route=f;var h=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:"/usertshirtsapplets/index",params:t,method:"post",token:!0})};e._utfgetShotBankCode=h;var g=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:"/api/Paypal/success",params:t,method:"post",token:!0})};e.paypal_success=g;var p=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:"/api/Paypal/cancel",params:t,method:"post",token:!0})};e.paypal_cancel=p;var v=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:"/douyin/Order/getOrderList",params:t,token:!0,method:"post",contentType:o.default.ContentType.FORM_UTF8})};e._getOrderList=v},aa13:function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,".uni-swiper__warp[data-v-fe975466]{position:relative;width:100%;box-sizing:border-box;overflow:hidden}.uni-swiper__dots-box[data-v-fe975466]{position:absolute;bottom:%?20?%;display:flex;justify-content:center;align-items:center;box-sizing:box-sizing;width:100%}.uni-swiper__dots-item[data-v-fe975466]{flex-shrink:0;width:%?16?%;border-radius:50%;margin-left:%?12?%;background:rgba(0,0,0,.3);transition:all .2s linear}.uni-swiper__dots-item[data-v-fe975466]:first-child{margin:0}.uni-swiper__dots-default[data-v-fe975466]{border-radius:50%}.uni-swiper__dots-long[data-v-fe975466]{border-radius:%?100?%}.uni-swiper__dots-nav[data-v-fe975466]{bottom:0;height:%?80?%;justify-content:flex-start;background:rgba(0,0,0,.2);box-sizing:box-sizing;overflow:hidden}.uni-swiper__dots-nav-item[data-v-fe975466]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:%?28?%;color:#fff;box-sizing:box-sizing;margin:0 %?30?%}.uni-swiper__dots-indexes[data-v-fe975466]{display:flex;justify-content:center;align-items:center;color:#fff;font-size:%?24?%}",""]),t.exports=e},c8d8:function(t,e,n){"use strict";n.r(e);var i=n("310f"),o=n.n(i);for(var a in i)"default"!==a&&function(t){n.d(e,t,(function(){return i[t]}))}(a);e["default"]=o.a},d979:function(t,e,n){"use strict";n.r(e);var i=n("808f"),o=n.n(i);for(var a in i)"default"!==a&&function(t){n.d(e,t,(function(){return i[t]}))}(a);e["default"]=o.a},e9c9:function(t,e,n){"use strict";var i=n("3135"),o=n.n(i);o.a}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-login-select_login"],{"0c06":function(t,e,n){"use strict";n.r(e);var i=n("6468"),o=n("d979");for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);n("5e70");var r,s=n("f0c5"),u=Object(s["a"])(o["default"],i["b"],i["c"],!1,null,"fe975466",null,!1,i["a"],r);e["default"]=u.exports},"310f":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;i(n("be66"));var o=i(n("c190")),a=i(n("7561")),r={components:{},data:function(){return{Adlists:[],language:null,longState:!1,currentSwiper:0,globalData:{bindWx:null,machine_id:null},datainfo:{windowHeight:0,windowWidth:0,pixelRate:1},auto_register:null,statusloading:1,promoter_id:"",isComefrist:!1}},methods:{swiperChange:function(t){this.currentSwiper=t.detail.current},Adlist:function(){var t=this;a.default.queryListPhone({s:"Ad.list",ad_position_key:"index_top",machine_id:this.globalData.machine_id}).then((function(e){t.Adlists=e})).catch((function(t){}))},bindLogin:function(){uni.reLaunch({url:"/pages/login/login?machine_id="+this.globalData.machine_id+"&language="+this._i18n.locale})},autoRegister:function(){var t=this,e=this.getPhoneRandomNumber(),n="123456789";o.default.bindWx({s:"User.webLogin",phone:e,password:n}).then((function(e){t.globalData.bindWx=e,uni.setStorageSync("globalData",t.globalData),uni.hideLoading(),uni.reLaunch({url:"/pages/index/detailsphone?machine_id="+t.globalData.machine_id})})).catch((function(e){t.longState=!0,uni.hideLoading(),uni.showToast({title:e.msg,icon:"none"})}))},getPhoneRandomNumber:function(){return null==this.globalData.machine_id?(new Date).getTime()+this.createCode:this.globalData.machine_id+(new Date).getTime()+this.createCode()},createCode:function(){for(var t="",e=4,n=new Array(0,1,2,3,4,5,6,7,8,9),i=0;i<e;i++){var o=Math.floor(9*Math.random());t+=n[o]}return t},getAutoRegister:function(){var t=this;a.default.WorksListPhone({s:"machine.newDetail",machine_id:this.globalData.machine_id}).then((function(e){t.auto_register=e.auto_register,t.getUserToken()})).catch((function(e){t.handleLoginAndRegister(),uni.showToast({title:t.$i18n.messages[t.$i18n.locale]["当前打印站正在维护"],icon:"none"})}))},getAutoRegisterNoBind:function(){var t=this;a.default.WorksListPhone({s:"machine.newDetail",machine_id:this.globalData.machine_id}).then((function(e){t.auto_register=e.auto_register,t.handleLoginAndRegister()})).catch((function(e){t.handleLoginAndRegister(),uni.showToast({title:t.$i18n.messages[t.$i18n.locale]["当前打印站正在维护"],icon:"none"})}))},handleLoginAndRegister:function(){null!=this.auto_register&&1==this.auto_register?this.autoRegister():this.longState=!0},getUserToken:function(){var t=this,e=null;try{e=uni.getStorageSync("bindWx")}catch(n){}this.globalData.machine_id&&e?o.default.verifyToken({s:"User.verifyToken"}).then((function(e){uni.reLaunch({url:"/pages/index/detailsphone?machine_id="+t.globalData.machine_id})})).catch((function(e){t.handleLoginAndRegister()})):this.handleLoginAndRegister()}},onReady:function(){},onLoad:function(t){try{var e=uni.getStorageSync("globalData");e&&(this.globalData=e)}catch(i){}var n=this;this.Adlist(),wx.getSystemInfo({success:function(t){n.datainfo.windowHeight=t.windowHeight,n.datainfo.windowWidth=t.windowWidth,n.datainfo.pixelRate=t.windowWidth/750,n.globalData.getSystemInfo=t}}),uni.setNavigationBarTitle({title:this.$i18n.messages[this.$i18n.locale]["定制蛋糕"]}),t.machine_id&&"null"!=t.machine_id?(this.globalData.machine_id=t.machine_id,this.getAutoRegister()):(this.longState=!1,this.statusloading=2)},onShow:function(){}};e.default=r},"5e70":function(t,e,n){"use strict";var i=n("855a"),o=n.n(i);o.a},6468:function(t,e,n){"use strict";var i;n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){return i}));var o=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-view",{staticClass:"uni-swiper__warp"},[t._t("default"),"default"===t.mode?n("v-uni-view",{staticClass:"uni-swiper__dots-box",style:{bottom:t.dots.bottom+"px"}},t._l(t.info,(function(e,i){return n("v-uni-view",{key:i,staticClass:"uni-swiper__dots-item",style:{width:t.dots.width+"px",height:t.dots.height+"px","background-color":i!==t.current?t.dots.backgroundColor:t.dots.selectedBackgroundColor,border:i!==t.current?t.dots.border:t.dots.selectedBorder}})})),1):t._e(),"long"===t.mode?n("v-uni-view",{staticClass:"uni-swiper__dots-box",style:{bottom:t.dots.bottom+"px"}},t._l(t.info,(function(e,i){return n("v-uni-view",{key:i,staticClass:"uni-swiper__dots-item ",class:[i===t.current&&"uni-swiper__dots-long"],style:{width:(i===t.current?3*t.dots.width:t.dots.width)+"px",height:t.dots.height+"px","background-color":i!==t.current?t.dots.backgroundColor:t.dots.selectedBackgroundColor,border:i!==t.current?t.dots.border:t.dots.selectedBorder}})})),1):t._e(),"nav"===t.mode?n("v-uni-view",{staticClass:"uni-swiper__dots-box uni-swiper__dots-nav",style:{"background-color":t.dotsStyles.backgroundColor}},[n("v-uni-view",{staticClass:"uni-swiper__dots-nav-item",style:{color:t.dotsStyles.color}},[t._v(t._s(t.current+1+"/"+t.info.length)+"\n\t\t\t"+t._s(t.info[t.current][t.field]))])],1):t._e(),"indexes"===t.mode?n("v-uni-view",{staticClass:"uni-swiper__dots-box",style:{bottom:t.dots.bottom+"px"}},t._l(t.info,(function(e,i){return n("v-uni-view",{key:i,staticClass:"uni-swiper__dots-item uni-swiper__dots-indexes",style:{width:t.dots.width+"px",height:t.dots.height+"px",color:i===t.current?t.dots.selectedColor:t.dots.color,"background-color":i!==t.current?t.dots.backgroundColor:t.dots.selectedBackgroundColor,border:i!==t.current?t.dots.border:t.dots.selectedBorder}},[t._v(t._s(i+1))])})),1):t._e()],2)},a=[]},"6fca":function(t,e,n){var i=n("8e8a");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var o=n("4f06").default;o("3c4db81c",i,!0,{sourceMap:!1,shadowMode:!1})},7561:function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=n("99ed"),o=n("f9f8"),a={setGoodsCateList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return(0,o._dispatch)("setGoodsCateList",t)},getGoodsCateList:function(){return(0,o._getters)("goodsCateList",[])},setCate:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._dispatch)("setCate",t)},getCate:function(){return(0,o._getters)("cate",{})},setSnapshot:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._dispatch)("setSnapshot",t)},getSnapshot:function(){return(0,o._getters)("snapshot",[])},setStock:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return(0,o._dispatch)("setStock",t)},getStock:function(){return(0,o._getters)("stock",[])},queryList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.T_route,params:t,callBack:function(){}})},WorksList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.T_route,params:t,callBack:function(){}})},Workssave:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.T_route_timeout,params:t,callBack:function(){}})},queryListPhone:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.P_route,params:t,callBack:function(){}})},WorksListPhone:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.P_route,params:t,callBack:function(){}})},WorkssavePhone:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.P_route_timeout,params:t,callBack:function(){}})},machineGetBaseSetting:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.P_route,params:t,callBack:function(){}})},userphoneappletsIndex:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.P_route,params:t,callBack:function(){}})},WorksListColor:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.C_route,params:t,callBack:function(){}})},queryListColor:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.C_route,params:t,callBack:function(){}})},paypalSuccess:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.paypal_success,params:t,callBack:function(){}})},paypalCancel:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i.paypal_cancel,params:t,callBack:function(){}})},getOrderList:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,o._queryList)({api:i._getOrderList,params:t,callBack:function(){}})}},r=a;e.default=r},"7f16":function(t,e,n){"use strict";n.r(e);var i=n("b6a7"),o=n("c8d8");for(var a in o)"default"!==a&&function(t){n.d(e,t,(function(){return o[t]}))}(a);n("95ee");var r,s=n("f0c5"),u=Object(s["a"])(o["default"],i["b"],i["c"],!1,null,"a9f3c908",null,!1,i["a"],r);e["default"]=u.exports},"808f":function(t,e,n){"use strict";n("a9e3"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i={name:"uni-swiper-dot",props:{info:{type:Array,default:function(){return[]}},current:{info:Number,default:0},dotsStyles:{type:Object,default:function(){return{}}},mode:{type:String,default:"default"},field:{type:String,default:""}},data:function(){return{dots:{width:8,height:8,bottom:10,color:"#fff",backgroundColor:"rgba(0, 0, 0, .3)",border:"1px rgba(0, 0, 0, .3) solid",selectedBackgroundColor:"#333",selectedBorder:"1px rgba(0, 0, 0, .9) solid"}}},created:function(){"indexes"===this.mode&&(this.dots.width=20,this.dots.height=20),this.dots=Object.assign(this.dots,this.dotsStyles)},watch:{dotsStyles:function(t){this.dots=Object.assign(this.dots,this.dotsStyles)},mode:function(t){"indexes"===t?(this.dots.width=20,this.dots.height=20):(this.dots.width=8,this.dots.height=8)}}};e.default=i},"855a":function(t,e,n){var i=n("aa13");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var o=n("4f06").default;o("6647a8fc",i,!0,{sourceMap:!1,shadowMode:!1})},"8e8a":function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */\r\n/*每个页面公共css */uni-page-body[data-v-a9f3c908]{min-height:100%;display:flex;font-size:16px;width:100%;height:100%;display:block;background-color:#fff}.swiper_img[data-v-a9f3c908]{height:100%;width:100%;display:flex;justify-content:center;align-items:center}.swiper_img .swiper-box[data-v-a9f3c908]{width:100%}.swiper_img .image[data-v-a9f3c908]{width:100%}.content[data-v-a9f3c908]{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;height:100%}.loader[data-v-a9f3c908]{z-index:1;position:absolute;top:%?130?%;width:%?250?%;height:%?250?%;border-radius:50%;background:linear-gradient(#f29f3d,#f29f3d,#f29f3d);-webkit-animation:animate-data-v-a9f3c908 1.2s linear infinite;animation:animate-data-v-a9f3c908 1.2s linear infinite}@-webkit-keyframes animate-data-v-a9f3c908{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes animate-data-v-a9f3c908{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.loader[data-v-a9f3c908]:after{content:"";position:absolute;top:10px;left:10px;right:10px;bottom:10px;background:#f1f1f1;border:solid #fff 10px;border-radius:50%}.inputpassword[data-v-a9f3c908]{font-size:%?28?%;margin:20% 0;position:absolute;top:%?600?%;height:%?70?%;width:50%;text-align:center;border-bottom:1px #14141a solid;border-radius:%?10?%}.inputphone[data-v-a9f3c908]{font-size:%?28?%;margin:20% 0;position:absolute;top:%?470?%;height:%?70?%;width:50%;text-align:center;border-bottom:1px #14141a solid;border-radius:%?10?%}.logoimg[data-v-a9f3c908]{position:absolute;top:%?155?%;z-index:10}.loginBtn[data-v-a9f3c908]{font-size:%?34?%;background:linear-gradient(90deg,#f29f3d,#f29f3d);border-radius:%?200?%;width:80%;\r\n /* position: absolute; */color:#fff\r\n /* \ttop: 980rpx; */}.register[data-v-a9f3c908]{position:absolute;top:%?1080?%;text-align:center;color:red}.logoimage[data-v-a9f3c908]{height:%?200?%;width:%?200?%;border-radius:%?100?%;background:#fff;text-align:center;line-height:%?200?%;font-size:%?50?%;color:#14141a}.text-area[data-v-a9f3c908]{position:absolute;top:%?400?%;display:flex;justify-content:center}.title[data-v-a9f3c908]{font-size:%?50?%;color:#14141a}.bgimage[data-v-a9f3c908]{position:absolute;left:0;bottom:0;z-index:-1;width:%?464?%;height:%?590?%}body.?%PAGE?%[data-v-a9f3c908]{background-color:#fff}',""]),t.exports=e},"95ee":function(t,e,n){"use strict";var i=n("6fca"),o=n.n(i);o.a},"99ed":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e._getOrderList=e.paypal_cancel=e.paypal_success=e._utfgetShotBankCode=e.C_route=e.P_route_timeout=e.P_route=e.T_route_timeout=e.T_route=void 0;var o=i(n("c545")),a=n("f439"),r="/baking/index",s="/baking/index",u=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:r,params:t,method:"post",token:!0})};e.T_route=u;var d=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:r,params:t,method:"post",token:!0,timeout:!0})};e.T_route_timeout=d;var c=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:s,params:t,method:"post",token:!0})};e.P_route=c;var l=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:s,params:t,method:"post",token:!0,timeout:!0})};e.P_route_timeout=l;var f=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:"/baking/index",params:t,method:"post",token:!0})};e.C_route=f;var h=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:"/usertshirtsapplets/index",params:t,method:"post",token:!0})};e._utfgetShotBankCode=h;var g=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:"/api/Paypal/success",params:t,method:"post",token:!0})};e.paypal_success=g;var p=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:"/api/Paypal/cancel",params:t,method:"post",token:!0})};e.paypal_cancel=p;var v=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,a._request)({url:"/douyin/Order/getOrderList",params:t,token:!0,method:"post",contentType:o.default.ContentType.FORM_UTF8})};e._getOrderList=v},aa13:function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,".uni-swiper__warp[data-v-fe975466]{position:relative;width:100%;box-sizing:border-box;overflow:hidden}.uni-swiper__dots-box[data-v-fe975466]{position:absolute;bottom:%?20?%;display:flex;justify-content:center;align-items:center;box-sizing:box-sizing;width:100%}.uni-swiper__dots-item[data-v-fe975466]{flex-shrink:0;width:%?16?%;border-radius:50%;margin-left:%?12?%;background:rgba(0,0,0,.3);transition:all .2s linear}.uni-swiper__dots-item[data-v-fe975466]:first-child{margin:0}.uni-swiper__dots-default[data-v-fe975466]{border-radius:50%}.uni-swiper__dots-long[data-v-fe975466]{border-radius:%?100?%}.uni-swiper__dots-nav[data-v-fe975466]{bottom:0;height:%?80?%;justify-content:flex-start;background:rgba(0,0,0,.2);box-sizing:box-sizing;overflow:hidden}.uni-swiper__dots-nav-item[data-v-fe975466]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:%?28?%;color:#fff;box-sizing:box-sizing;margin:0 %?30?%}.uni-swiper__dots-indexes[data-v-fe975466]{display:flex;justify-content:center;align-items:center;color:#fff;font-size:%?24?%}",""]),t.exports=e},b6a7:function(t,e,n){"use strict";n.d(e,"b",(function(){return o})),n.d(e,"c",(function(){return a})),n.d(e,"a",(function(){return i}));var i={uniSwiperDot:n("0c06").default},o=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.longState?n("v-uni-view",{staticClass:"content"},[n("v-uni-view",{staticStyle:{width:"100%",height:"100%",background:"#f5f5f5"}},[n("uni-swiper-dot",{attrs:{info:t.Adlists,current:t.currentSwiper,mode:"round",field:"content"}},[n("v-uni-swiper",{staticStyle:{width:"100%"},style:{height:t.datainfo.windowHeight+"px"},attrs:{autoplay:!0,interval:3e3,duration:1e3},on:{change:function(e){arguments[0]=e=t.$handleEvent(e),t.swiperChange.apply(void 0,arguments)}}},t._l(t.Adlists,(function(e,i){return n("v-uni-swiper-item",{key:i},[n("v-uni-view",{staticClass:"swiper-item"},[n("v-uni-image",{staticStyle:{width:"100%"},style:{height:t.datainfo.windowHeight+"px"},attrs:{src:e.content+"?x-oss-process=image/resize,lfit,w_770",mode:"aspectFill"}})],1)],1)})),1)],1)],1),n("v-uni-view",{staticStyle:{width:"100%","align-items":"center","justify-content":"center",margin:"auto","z-index":"9999",position:"absolute"}},[n("v-uni-button",{staticClass:"loginBtn",attrs:{"hover-class":"hover-class-bg"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.bindLogin.apply(void 0,arguments)}}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["登录"]))]),n("v-uni-button",{staticClass:"loginBtn",staticStyle:{"margin-top":"90upx"},attrs:{"hover-class":"hover-class-bg"},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.autoRegister.apply(void 0,arguments)}}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["访客"]))])],1)],1):t._e()},a=[]},c8d8:function(t,e,n){"use strict";n.r(e);var i=n("310f"),o=n.n(i);for(var a in i)"default"!==a&&function(t){n.d(e,t,(function(){return i[t]}))}(a);e["default"]=o.a},d979:function(t,e,n){"use strict";n.r(e);var i=n("808f"),o=n.n(i);for(var a in i)"default"!==a&&function(t){n.d(e,t,(function(){return i[t]}))}(a);e["default"]=o.a}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-mall-size"],{"04ef":function(e,t,i){"use strict";i("a9e3"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a={name:"NumSlider",props:{min:{type:Number,default:0},max:{type:Number,default:100},initialMin:{type:Number,default:0},width:{type:Number,default:600},disabled:{type:Boolean,default:!1},range:{type:Boolean,default:!1},leftX:{type:Number,default:120},defalutFillet:{type:Number,default:0}},data:function(){return{left:"",right:"",defalutFilletData:0,initialMax:0,filletScale:1}},computed:{scale:function(){return this.width/(this.max-this.min)},low:function(){return Math.round(this.left/this.scale+this.min)},high:function(){return Math.round(this.right/this.scale+this.min)}},watch:{low:function(e){this.$emit("lowChange",e)},high:function(e){this.defalutFilletData=Math.floor(e*this.filletScale),this.$emit("highChange",e)}},mounted:function(){this.left=this.range?(this.initialMin-this.min)*this.scale:0,this.right=(this.initialMax-this.min)*this.scale},methods:{initFilletRadius:function(e,t){this.initialMax=e,this.filletScale=t,this.left=this.range?(this.initialMin-this.min)*this.scale:0,this.right=(this.initialMax-this.min)*this.scale,this.defalutFilletData=Math.floor(e*t)},onRightMouseMove:function(e){var t=e.changedTouches[0].pageX-this.leftX;t>this.width?this.right=this.width:t<=this.left?this.right=this.left:this.right=t},onRightMouseDown:function(e){e.preventDefault();var t=e.changedTouches[0].pageX-this.leftX;t>this.width?this.right=this.width:t<=this.left?this.right=this.left:this.right=t},init:function(){this.left=this.range?(this.initialMin-this.min)*this.scale:0,this.right=(this.initialMax-this.min)*this.scale}}};t.default=a},"0e1b":function(e,t,i){"use strict";i.r(t);var a=i("1d26"),n=i.n(a);for(var r in a)"default"!==r&&function(e){i.d(t,e,(function(){return a[e]}))}(r);t["default"]=n.a},"0e51":function(e,t,i){"use strict";var a=i("3441"),n=i.n(a);n.a},"103e":function(e,t,i){"use strict";i.r(t);var a=i("d668f"),n=i("400e");for(var r in n)"default"!==r&&function(e){i.d(t,e,(function(){return n[e]}))}(r);i("0e51");var l,o=i("f0c5"),s=Object(o["a"])(n["default"],a["b"],a["c"],!1,null,"6a413b34",null,!1,a["a"],l);t["default"]=s.exports},"1d26":function(e,t,i){"use strict";i("a9e3"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a={props:{worksid:{type:Number,default:0},title:{type:String,default:""},size:{type:String,default:"32"},color:{type:String,default:"#000"},titleShow:{type:Boolean,default:!0},backShow:{type:Boolean,default:!0},background:{type:String,default:"linear-gradient(to right, #43e97b 0%, #38f9d7 100%)"}},data:function(){return{height:0,top:0}},mounted:function(){},created:function(){this.height=60,this.top=10},methods:{back:function(){try{var e=uni.getStorageSync("globalData");if(e)uni.reLaunch({url:"../index/detailsphone?machine_id="+e.machine_id});else{var t=uni.getStorageSync("machine_id");t?uni.reLaunch({url:"../index/detailsphone?machine_id="+t}):uni.navigateBack()}}catch(a){var i=uni.getStorageSync("machine_id");i?uni.reLaunch({url:"../index/detailsphone?machine_id="+i}):uni.navigateBack()}}},onLoad:function(e){},onShow:function(){}};t.default=a},"1da1":function(e,t,i){"use strict";function a(e,t,i,a,n,r,l){try{var o=e[r](l),s=o.value}catch(u){return void i(u)}o.done?t(s):Promise.resolve(s).then(a,n)}function n(e){return function(){var t=this,i=arguments;return new Promise((function(n,r){var l=e.apply(t,i);function o(e){a(l,n,r,o,s,"next",e)}function s(e){a(l,n,r,o,s,"throw",e)}o(void 0)}))}}i("d3b7"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=n},"23a9":function(e,t,i){"use strict";(function(e){var a=i("4ea4");i("99af"),i("4160"),i("c975"),i("a434"),i("a9e3"),i("b64b"),i("d3b7"),i("acd8"),i("ac1f"),i("25f0"),i("5319"),i("1276"),i("159b"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,i("96cf");var n=a(i("1da1")),r=a(i("c545")),l=a(i("32cd")),o=(a(i("a272")),a(i("7561"))),s=a(i("264e")),u=a(i("6fca6")),c=a(i("7c21")),h={components:{mpvuePicker:l.default,uniPopup:s.default,NumSlider:u.default,myhead:c.default},computed:{},data:function(){return{mode:"selector",pickerValueArray:[{label:"毫米",value:0},{label:"厘米",value:1}],pickerValueDefault:[0],companyValue:"毫米",equalRatioState:!1,directionState:!1,wValue:0,hValue:0,previewWidth:0,previewHeight:0,inputWidth:0,inputHeight:0,pixel_Width:0,pixel_Height:0,pixel_scale:1,convert_rate:10,OldConvert_rate:10,render_cove_width:0,render_cove_height:0,data:{windowWidth:null,windowHeight:null,pixelRate:null},preview:!1,dataLoadState:{pullDownRefresh:!1,reachBottom:!1},LoupanList:[],Specifications:!1,nav:!0,Loop:null,good:null,parameter:{machine_id:null,goods_id:null,key:null},manyGoodSelectData:[],type:1,selectItemData:null,sliderdefaultWith:120,defalutFillet:0,initialMax:0,heiPixelRate:null,filletScale:1,newDefalutFilletData:0,headheight:0,queryPage:{},good_id:"217",isFirstPage:!0,machineDetail:null,pixelScale:.6}},methods:{onclickTitle:function(e){this.preview=e,this.preview&&(this.defalutFillet=0,this.newDefalutFilletData=0,this.Specifications||(this.dataLoadState={pullDownRefresh:!1,reachBottom:!1},this.LoupanList=[],this.queryPage.page=1,this.queryPage.total=0,this.Specifications=!1,this.queryPage.s="CanvasSize.list",this.loadGoodsList(r.default.DATA_DIRECTION.UP)))},toGoodDetail:function(){uni.navigateTo({url:"../index/goodDetail?machine_id="+this.parameter.machine_id+"&goodTypeData= 2"})},switchChange:function(e){1==e.detail.value?this.switchIsFillet=!0:this.switchIsFillet=!1},highChange:function(e,t){this.newDefalutFilletData=e;var i=Math.floor(this.newDefalutFilletData*this.filletScale);this.defalutFillet=Math.floor(i*(this.pixel_Width*this.pixel_scale/this.inputWidth))},showManyGoodPop:function(){this.$refs["showManyGood"].open()},closeManyGoodPop:function(){this.$refs["showManyGood"].close()},refundNumorder:function(e){var t=Number(e.real_radius),i=Number(e.real_height),a=Number(e.real_width),n=0;n=i>a?a:i,t>n/2&&(t=Math.floor(n/2));var r=e.real_width*this.OldConvert_rate,l=e.real_height*this.OldConvert_rate,o=e.alias_name,s=e.unit,u=e.id;if(this.isFirstPage&&"true"==this.isFirstPage)uni.redirectTo({url:"../index/index?machine_id="+this.parameter.machine_id+"&WidthIndex="+r+"&HeightIndex="+l+"&OldConvert_rate="+this.OldConvert_rate+"&unit="+s+"&title="+o+"&pixel_scale="+this.pixel_scale+"&real_width="+a+"&real_height="+i+"&defalutFillet="+t+"&good_id="+this.good_id+"&type=2&customize_size_id="+u+"&machineDetail="+JSON.stringify(this.machineDetail)});else{var c=getCurrentPages(),h=c[c.length-2],d={WidthIndex:r,HeightIndex:l,defalutFillet:t,real_width:a,real_height:i,title:o,OldConvert_rate:this.OldConvert_rate,unit:s,type:2,goods_id:this.good_id,customize_size_id:u};h.$vm.options=d,uni.navigateBack({delta:1})}},onSave:function(){var e=this;if(""!=this.inputWidth)if(""!=this.inputHeight){var t=null,i=null,a=null;"毫米"==this.companyValue?(t="mm",i=this.inputWidth,a=this.inputHeight):"厘米"==this.companyValue&&(t="cm",i=this.inputWidth,a=this.inputHeight);var n=i+" x "+a+"("+this.companyValue+")",r=Math.floor(this.newDefalutFilletData*this.filletScale);r>0&&(n=i+" x "+a+" - "+r+"("+this.companyValue+")");var l=i*this.OldConvert_rate,s=a*this.OldConvert_rate,u=0;u=this.inputHeight>this.inputWidth?this.inputWidth:this.inputHeight,r>u/2&&(r=Math.floor(u/2)),o.default.queryList({s:"CanvasSize.save",id:null,name:n,real_width:i,real_height:a,unit:t,real_radius:r}).then((function(o){if(e.isFirstPage&&"true"==e.isFirstPage)uni.redirectTo({url:"../index/index?machine_id="+e.parameter.machine_id+"&WidthIndex="+l+"&HeightIndex="+s+"&OldConvert_rate="+e.OldConvert_rate+"&unit="+t+"&title="+n+"&pixel_scale="+e.pixel_scale+"&real_width="+i+"&real_height="+a+"&defalutFillet="+r+"&good_id="+e.good_id+"&type=2&customize_size_id="+o.id+"&machineDetail="+JSON.stringify(e.machineDetail)});else{var u=getCurrentPages(),c=u[u.length-2],h={WidthIndex:l,HeightIndex:s,defalutFillet:r,real_width:i,real_height:a,title:n,OldConvert_rate:e.OldConvert_rate,unit:t,type:2,goods_id:e.good_id,customize_size_id:o.id};c.$vm.options=h,uni.navigateBack({delta:1})}})).catch((function(e){uni.showToast({title:e.msg,icon:"none"})}))}else uni.showToast({title:this.$i18n.messages[this.$i18n.locale]["高度不能为空"],icon:"none"});else uni.showToast({title:this.$i18n.messages[this.$i18n.locale]["宽度不能为空"],icon:"none"})},touchstart:function(e,t){var i=this;i.nav=!0,clearInterval(this.Loop),this.Loop=setTimeout(function(){i.nav=!1,uni.showModal({title:this.$i18n.messages[this.$i18n.locale]["删除"],content:this.$i18n.messages[this.$i18n.locale]["确认要删除当前尺码吗"],confirmText:this.$i18n.messages[this.$i18n.locale]["删除"],confirmColor:"#ff3b32",success:function(){var a=(0,n.default)(regeneratorRuntime.mark((function a(n){return regeneratorRuntime.wrap((function(a){while(1)switch(a.prev=a.next){case 0:n.confirm?(i.LoupanList.splice(t,1),o.default.newqueryList({s:"CanvasSize.del",ids:e.id}).then((function(e){})).catch((function(e){uni.showToast({title:e.msg,icon:"none"})}))):n.cancel;case 1:case"end":return a.stop()}}),a)})));function r(e){return a.apply(this,arguments)}return r}()})}.bind(this),500)},touchend:function(){clearInterval(this.Loop)},OnclickSpecifications:function(e){this.dataLoadState={pullDownRefresh:!1,reachBottom:!1},this.LoupanList=[],this.queryPage.page=1,this.queryPage.total=0,0==e?(this.Specifications=!1,this.queryPage.s="CanvasSize.list"):(this.Specifications=!0,this.queryPage.s="CanvasSize.mylist"),this.loadGoodsList(r.default.DATA_DIRECTION.UP)},direction:function(){this.directionState=!this.directionState;var e=this.pixel_Width,t=this.pixel_Height;this.pixel_Width=t,this.pixel_Height=e,this.inputWidth=t/this.convert_rate,this.inputHeight=e/this.convert_rate,this.wValue=t,this.hValue=e},equalRatio:function(){this.equalRatioState=!this.equalRatioState,this.wValue=this.pixel_Width,this.hValue=this.pixel_Height},onConfirm:function(e){this.companyValue!=e.label&&(this.companyValue=e.label,0==e.value[0]?this.convert_rate=this.OldConvert_rate:1==e.value[0]&&(this.convert_rate=10*this.OldConvert_rate),this.inputHeight=this.previewHeight/this.convert_rate,this.inputWidth=this.previewWidth/this.convert_rate,this.setData({inputWidth:this.previewWidth/this.convert_rate}),this.setData({inputHeight:this.previewHeight/this.convert_rate}))},moneyChangeWidth:function(e){var t=this.moneyone(e.detail.value),i=null;this.setData({inputWidth:t}),this.equalRatioState?(this.setData({inputHeight:(t/(this.wValue/this.hValue)).toFixed(2)}),i=(t/(this.wValue/this.hValue)).toFixed(2)):this.setData({inputHeight:this.inputHeight}),Number(t)>Number(this.render_cove_width)/this.convert_rate&&(t=Number(this.render_cove_width)/this.convert_rate,this.setData({inputWidth:t}),uni.showToast({icon:"success",title:this.$i18n.messages[this.$i18n.locale]["宽度最大值"]+t,duration:2e3})),Number(i)>Number(this.render_cove_height)/this.convert_rate&&(i=Number(this.render_cove_height)/this.convert_rate,this.setData({inputHeight:i})),this.previewWidth=this.inputWidth*this.convert_rate,this.previewHeight=this.inputHeight*this.convert_rate,this.pixel_Width=this.previewWidth,this.pixel_Height=this.previewHeight,this.getWindowScale();var a=Number(this.inputWidth),n=Number(this.inputHeight);this.filletScale=a>n?a/100:n/100;var r=Math.floor(this.newDefalutFilletData*this.filletScale);return this.defalutFillet=Math.floor(r*(this.pixel_Width*this.pixel_scale/this.inputWidth)),this.$refs["NumSlider"].initFilletRadius(this.newDefalutFilletData,this.filletScale),t},moneyChangeHeight:function(e){var t=null,i=this.moneyone(e.detail.value);this.setData({inputHeight:i}),this.equalRatioState?(this.setData({inputWidth:(i/(this.hValue/this.wValue)).toFixed(2)}),t=(i/(this.hValue/this.wValue)).toFixed(2)):this.setData({inputWidth:this.inputWidth}),Number(t)>Number(this.render_cove_width)/this.convert_rate&&(t=Number(this.render_cove_width)/this.convert_rate,this.setData({inputWidth:t})),Number(i)>Number(this.render_cove_height)/this.convert_rate&&(i=Number(this.render_cove_height)/this.convert_rate,this.setData({inputHeight:i}),uni.showToast({icon:"success",title:this.$i18n.messages[this.$i18n.locale]["高度最大值"]+i,duration:2e3})),this.previewWidth=this.inputWidth*this.convert_rate,this.previewHeight=this.inputHeight*this.convert_rate,this.pixel_Width=this.previewWidth,this.pixel_Height=this.previewHeight,this.getWindowScale();var a=Number(this.inputWidth),n=Number(this.inputHeight);this.filletScale=a>n?a/100:n/100;var r=Math.floor(this.newDefalutFilletData*this.filletScale);return this.defalutFillet=Math.floor(r*(this.pixel_Width*this.pixel_scale/this.inputWidth)),this.$refs["NumSlider"].initFilletRadius(this.newDefalutFilletData,this.filletScale),i},getWindowScale:function(){this.pixel_Width>this.data.windowWidth*this.pixelScale?this.pixel_scale=this.data.windowWidth*this.pixelScale/this.pixel_Width:this.pixel_Width<this.data.windowWidth*this.pixelScale&&this.pixel_Height<this.data.windowHeight*this.pixelScale&&(this.pixel_scale=1),this.pixel_Height>this.data.windowHeight*this.pixelScale?this.data.windowHeight*this.pixelScale/this.pixel_Height<this.pixel_scale&&(this.pixel_scale=this.data.windowHeight*this.pixelScale/this.pixel_Height):this.pixel_Width<this.data.windowWidth*this.pixelScale&&this.pixel_Height<this.data.windowHeight*this.pixelScale&&(this.pixel_scale=1)},setData:function(e){var t,i,a=this,n=[];Object.keys(e).forEach((function(r){n=r.split("."),t=e[r],i=a.$data,n.forEach((function(e,r){r+1==n.length?a.$set(i,e,t):i[e]||a.$set(i,e,{}),i=i[e]}))}))},moneyone:function(e){var t=e.toString();return 0==t.indexOf(".")?t="1"+t:0==t.indexOf("0")&&(t=""),t=t.replace(/[^\d.]/g,""),t=t.replace(/\.{2,}/g,"."),t=t.replace(".","$#$").replace(/\./g,"").replace("$#$","."),t=t.replace(/^(\-)*(\d+)\.(\d\d).*$/,"$1$2.$3"),t.indexOf(".")<0&&""!=t&&(t=parseFloat(t)),t},onChange:function(e){},onCancel:function(e){},totop:function(){uni.pageScrollTo({scrollTop:0,duration:300})},loadGoodsList:function(e){var t=this;if(!this.dataLoadState.pullDownRefresh&&!this.dataLoadState.reachBottom){if(uni.showLoading({title:"Loading...",mask:!0}),this.dataLoadState.pullDownRefresh=e===r.default.DATA_DIRECTION.UP,this.dataLoadState.reachBottom=e===r.default.DATA_DIRECTION.DOWN,this.dataLoadState.reachBottom&&Math.ceil(this.queryPage.total/this.queryPage.per_page)<this.queryPage.page)return setTimeout((function(){uni.showToast({title:t.$i18n.messages[t.$i18n.locale]["没有更多数据了"],icon:"none"})}),500);o.default.queryList(this.queryPage).then((function(e){var i=t.LoupanList.concat(e.data);t.LoupanList=i,t.queryPage.total=e.total,t.queryPage.per_page=e.per_page,t.dataLoadState.pullDownRefresh&&uni.stopPullDownRefresh(),t.dataLoadState.pullDownRefresh=!1,t.dataLoadState.reachBottom=!1,uni.hideLoading()})).catch((function(e){t.dataLoadState.pullDownRefresh&&uni.stopPullDownRefresh(),t.dataLoadState.pullDownRefresh=!1,t.dataLoadState.reachBottom=!1,uni.hideLoading()}))}},loadMore:function(){},getCustomSizeInfo:function(){var e=this,t={s:"Product.getCustomize",machine_id:this.queryPage.machine_id};o.default.queryList(t).then((function(t){var i=e.render_cove_width/e.OldConvert_rate,a=e.render_cove_height/e.OldConvert_rate;e.good_id=t.id,e.good=t,e.wValue=i*e.OldConvert_rate,e.hValue=a*e.OldConvert_rate,e.previewWidth=i*e.OldConvert_rate,e.previewHeight=a*e.OldConvert_rate,e.inputWidth=i,e.inputHeight=a,e.pixel_Width=i*e.OldConvert_rate,e.pixel_Height=a*e.OldConvert_rate,e.getWindowScale();var n=Number(e.inputWidth),r=Number(e.inputHeight);e.filletScale=n>r?n/100:r/100,e.$refs["NumSlider"].initFilletRadius(that.newDefalutFilletData,that.filletScale)})).catch((function(e){}))},getDetailMachine:function(){this.getCustomSizeInfo()}},onReachBottom:function(){var e=this;if(this.preview){if(this.LoupanList.length<12)return setTimeout((function(){uni.showToast({title:e.$i18n.messages[e.$i18n.locale]["没有更多数据了"],icon:"none"})}),500);this.queryPage.page=this.queryPage.page+1,this.loadGoodsList(r.default.DATA_DIRECTION.DOWN)}},onLoad:function(t){this.sliderdefaultWith=uni.upx2px(280)+22;var i=this;t&&(this.machineDetail=JSON.parse(t.machineDetail),e.log(this.machineDetail),this.machineDetail&&(this.render_cove_width=this.machineDetail.size.width*this.OldConvert_rate,this.render_cove_height=this.machineDetail.size.height*this.OldConvert_rate)),wx.getSystemInfo({success:function(e){var a=e.windowWidth/750;i.data.windowWidth=e.windowWidth,i.data.windowHeight=e.windowHeight;var n=e.windowHeight/1452;i.heiPixelRate=n,i.data.pixelRate=a,t&&(i.queryPage.machine_id=t.machine_id,i.parameter.machine_id=t.machine_id,i.LoupanList=[],i.getDetailMachine(),t.isFirstPage&&(i.isFirstPage=t.isFirstPage))}})},created:function(){},onShow:function(){}};t.default=h}).call(this,i("5a52")["default"])},"32cd":function(e,t,i){"use strict";i.r(t);var a=i("c531"),n=i("8730");for(var r in n)"default"!==r&&function(e){i.d(t,e,(function(){return n[e]}))}(r);i("fbca");var l,o=i("f0c5"),s=Object(o["a"])(n["default"],a["b"],a["c"],!1,null,"4aba4971",null,!1,a["a"],l);t["default"]=s.exports},3441:function(e,t,i){var a=i("4adb");a.__esModule&&(a=a.default),"string"===typeof a&&(a=[[e.i,a,""]]),a.locals&&(e.exports=a.locals);var n=i("4f06").default;n("3227d8a2",a,!0,{sourceMap:!1,shadowMode:!1})},"400e":function(e,t,i){"use strict";i.r(t);var a=i("23a9"),n=i.n(a);for(var r in a)"default"!==r&&function(e){i.d(t,e,(function(){return a[e]}))}(r);t["default"]=n.a},"41b6":function(e,t,i){var a=i("86e2");a.__esModule&&(a=a.default),"string"===typeof a&&(a=[[e.i,a,""]]),a.locals&&(e.exports=a.locals);var n=i("4f06").default;n("efe991ca",a,!0,{sourceMap:!1,shadowMode:!1})},"47ee":function(e,t,i){"use strict";var a=i("41b6"),n=i.n(a);n.a},"4adb":function(e,t,i){var a=i("24fb");t=a(!1),t.push([e.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */uni-page-body[data-v-6a413b34]{background:#101014;height:100%;width:100%}.equalRatioAxtive[data-v-6a413b34]{color:#e6b01a!important;border-color:#e6b01a!important}.directionAxtive[data-v-6a413b34]{border-color:#e6b01a!important}.classificationLeft[data-v-6a413b34]{background:#e6b01a!important}.classificationRight[data-v-6a413b34]{background:#e6b01a!important}.previewAxtiveLeft[data-v-6a413b34]{background:#e6b01a;box-shadow:0 %?19?% %?48?% %?1?% rgba(20,31,62,.35);border-radius:%?50?% %?50?% 0 %?50?%}.previewAxtiveRight[data-v-6a413b34]{background:#e6b01a;box-shadow:0 %?19?% %?48?% %?1?% rgba(20,31,62,.35);border-radius:%?50?% %?50?% %?50?% 0}.eq_list[data-v-6a413b34]{width:calc(100% - %?60?%);margin:%?20?% auto;border-radius:%?10?%;overflow:hidden;color:#fff}.eq_list .eq_list_div[data-v-6a413b34]{padding:%?40?% %?20?%;display:flex;align-items:center;border-bottom:1px solid #282932}.to-top[data-v-6a413b34]{position:fixed;bottom:%?150?%;right:%?30?%;width:%?80?%;height:%?80?%;border-radius:50%;text-align:center;line-height:%?80?%;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);background:#000;opacity:.5;z-index:999}.to-top-icon[data-v-6a413b34]{color:#fff}.edit-address .form[data-v-6a413b34]{height:100%;color:#fff}.edit-address .form .item[data-v-6a413b34]{height:%?100?%;display:flex;align-items:center;font-size:%?28?%;padding:0 %?30?%;width:calc(100% - %?60?%)}.edit-address .form .item .text[data-v-6a413b34]{width:%?200?%}.edit-address .form .item .value[data-v-6a413b34]{width:%?300?%;margin-left:auto;background:#212027;text-align:center;border-radius:%?10?%;padding:%?15?% 0;color:#fff;display:flex;align-items:center}.edit-address .footer[data-v-6a413b34]{position:absolute;bottom:%?20?%;width:100%}.edit-address .footer .footer_but[data-v-6a413b34]{margin:auto;color:#fff;text-align:center;line-height:%?88?%;width:%?300?%;height:%?88?%;background:linear-gradient(92deg,#e6b01a,#f29f3d);box-shadow:0 %?19?% %?48?% %?1?% rgba(20,31,62,.35);border-radius:%?50?%}body.?%PAGE?%[data-v-6a413b34]{background:#101014}',""]),e.exports=t},"6e9d":function(e,t,i){"use strict";var a;i.d(t,"b",(function(){return n})),i.d(t,"c",(function(){return r})),i.d(t,"a",(function(){return a}));var n=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("v-uni-view",{ref:"slider",staticClass:"m-slider",style:{width:e.width+"px"}},[i("v-uni-view",{staticClass:"u-slider-rail"}),i("v-uni-view",{staticClass:"u-slider-track",style:{left:e.left+"px",width:e.right-e.left+"px"}}),i("v-uni-view",{ref:"right",staticClass:"u-slider-handle",staticStyle:{transform:"translateX(-50%)"},style:{left:e.right+"px"},on:{touchstart:function(t){t.stopPropagation(),t.preventDefault(),arguments[0]=t=e.$handleEvent(t),e.onRightMouseDown.apply(void 0,arguments)},touchmove:function(t){t.stopPropagation(),t.preventDefault(),arguments[0]=t=e.$handleEvent(t),e.onRightMouseMove.apply(void 0,arguments)}}},[i("v-uni-view",{staticStyle:{color:"#F29F3D","font-size":"30upx"}},[e._v(e._s(e.defalutFilletData))])],1)],1)},r=[]},"6fca6":function(e,t,i){"use strict";i.r(t);var a=i("6e9d"),n=i("93e7");for(var r in n)"default"!==r&&function(e){i.d(t,e,(function(){return n[e]}))}(r);i("47ee");var l,o=i("f0c5"),s=Object(o["a"])(n["default"],a["b"],a["c"],!1,null,"63a1c8d8",null,!1,a["a"],l);t["default"]=s.exports},"7c21":function(e,t,i){"use strict";i.r(t);var a=i("eb2b"),n=i("0e1b");for(var r in n)"default"!==r&&function(e){i.d(t,e,(function(){return n[e]}))}(r);i("f39d");var l,o=i("f0c5"),s=Object(o["a"])(n["default"],a["b"],a["c"],!1,null,"7c2c874c",null,!1,a["a"],l);t["default"]=s.exports},"814a":function(e,t){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAB5ElEQVR4Xu3bTUrEMBjG8f8cR/AIom5EUTyIOxci3kDEhTsv48LvEwheREHEjQRmoJSkTdp8vW8667ST5zd503TSrmj8s2o8PwvAMgLKCVwDV8A3cAS8l+hKqRK4B846gV+AvVYA+uFN7mdgvwUAW/g/4BB41A7gCn8CPJQIb74z1xxQZfhcANWGzwFQdfjUANWHTwkgInwqADHhUwCICh8bQFz4mAAiw8cCEBs+BoAt/C9wWnJ5G7KsnrMUdoU39/ZPIZ0o2XYqgIrwU0tATfgpAKrChwLcAee9ejUTnqia7883vnOAyvC+I0BteB8A1eHHANSHHwJoIrwL4AK41Tbbu1abtqvAB7DdOUD8pW5oqW0D+AS2Ogf9AMeS1vch9xY2gEvgpuUSMNmbngQ3P34TCGNLYfUIYwDqy8EHQDWCL4BahBAAg9D0HyKbq4MqhNARoA5hKoCacpgDMITQxMbIUDmYJ7+KPvzke0M0dwSIR4gF4CqH6kdCTACRCLEBxCGkABCFkApADEJKABEIqQGqR8gBUDVCLoBqEXICDCEcrN8a8V3BRmuXG8CFYF6Y2omWKuBEJQBsCK/AbkC/ozUtBWACmN0nswv1td56e4uWKuBEJQECupmu6QKQzlbGmZsfAf9EPqRB6TdviAAAAABJRU5ErkJggg=="},"848a":function(e,t,i){"use strict";var a=i("4ea4");Object.defineProperty(t,"__esModule",{value:!0}),t._login=void 0;var n=a(i("c545")),r=i("f439"),l=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,r._request)({url:"/zijie/index/register",params:e,method:"post",contentType:n.default.ContentType.FORM_UTF8})};t._login=l},"86e2":function(e,t,i){var a=i("24fb");t=a(!1),t.push([e.i,".m-slider[data-v-63a1c8d8]{display:inline-block;height:4px;padding:6px 0;position:relative;z-index:9}.m-slider .u-slider-rail[data-v-63a1c8d8]{position:absolute;z-index:99;height:4px;width:100%;background:#f5f5f5;border-radius:2px}.m-slider .u-slider-track[data-v-63a1c8d8]{position:absolute;z-index:99;background:#f29f3d;border-radius:4px;height:4px}.m-slider .u-slider-handle[data-v-63a1c8d8]{position:absolute;z-index:999;width:25px;height:25px;line-height:27px;text-align:center;top:-8px;background:#fff;border:4px solid #f29f3d;border-radius:50%}",""]),e.exports=t},8730:function(e,t,i){"use strict";i.r(t);var a=i("969e"),n=i.n(a);for(var r in a)"default"!==r&&function(e){i.d(t,e,(function(){return a[e]}))}(r);t["default"]=n.a},"88a0":function(e,t,i){var a=i("24fb");t=a(!1),t.push([e.i,'.pickerMask[data-v-4aba4971]{position:fixed;z-index:1000;top:0;right:0;left:0;bottom:0;background:rgba(0,0,0,.6)}.mpvue-picker-content[data-v-4aba4971]{position:fixed;bottom:0;left:0;width:100%;transition:all .3s ease;-webkit-transform:translateY(100%);transform:translateY(100%);z-index:3000}.mpvue-picker-view-show[data-v-4aba4971]{-webkit-transform:translateY(0);transform:translateY(0)}.mpvue-picker__hd[data-v-4aba4971]{display:flex;padding:9px 15px;background-color:#fff;position:relative;text-align:center;font-size:17px}.mpvue-picker__hd[data-v-4aba4971]:after{content:" ";position:absolute;left:0;bottom:0;right:0;height:1px;border-bottom:1px solid #e5e5e5;color:#e5e5e5;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.mpvue-picker__action[data-v-4aba4971]{display:block;flex:1;color:#1aad19}.mpvue-picker__action[data-v-4aba4971]:first-child{text-align:left;color:#888}.mpvue-picker__action[data-v-4aba4971]:last-child{text-align:right}.picker-item[data-v-4aba4971]{text-align:center;line-height:40px;font-size:16px}.mpvue-picker-view[data-v-4aba4971]{position:relative;bottom:0;left:0;width:100%;height:238px;background-color:#fff}',""]),e.exports=t},"8c9b":function(e,t){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NDkxMSwgMjAxMy8xMC8yOS0xMTo0NzoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NEE4RUQ0RjZDNUQzMTFFQjk1RDE4ODIyNDdCMThFM0YiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NEE4RUQ0RjVDNUQzMTFFQjk1RDE4ODIyNDdCMThFM0YiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU4MDAzMzI1NUM4NDExRUJCMzVGOEVEM0Y0MTY5Qjk3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU4MDAzMzI2NUM4NDExRUJCMzVGOEVEM0Y0MTY5Qjk3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+1GX6CgAAAOdJREFUeNrs2usKgzAMBWB78P0feRkD2S+7WU3Sk3ICheIF8mF6UWxmtq0Q2BYJQQbCjlYaYp1+KYhdPEYNsZvnqCDmdM1UyFmC7WihGCQgzvruGCQhwjFIRIRikIwIw2ACIgSDSQh3DCYiXDGYjHDDgADhggEJ4jEGRIhHGJAhbmOQvd2OwoAUMfwKgGKIbo4oiDjNFQQD22XMoAjiLwYDNzBjvpBWBNHNcS8G6GL07VcQQX7HnrEPGp1KVVqCLDxGrtS/rfBETKUliCB1Zi1jHPwqrYql5VlKn0XyFbL66n8tsngLMADyIz1YrCxxiwAAAABJRU5ErkJggg=="},"93e7":function(e,t,i){"use strict";i.r(t);var a=i("04ef"),n=i.n(a);for(var r in a)"default"!==r&&function(e){i.d(t,e,(function(){return a[e]}))}(r);t["default"]=n.a},"969e":function(e,t,i){"use strict";var a=i("4ea4");i("99af"),i("4de4"),i("c975"),i("ace4"),i("a9e3"),i("d3b7"),i("fd87"),i("9a8c"),i("a975"),i("735e"),i("c1ac"),i("d139"),i("3a7b"),i("d5d6"),i("82f8"),i("e91f"),i("60bd"),i("5f96"),i("3280"),i("3fcc"),i("ca91"),i("25a1"),i("cd26"),i("2954"),i("649e"),i("219c"),i("b39a"),i("72f7"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=a(i("ade3")),r={data:function(){return{pickerChangeValue:[],pickerValue:[],pickerValueArrayChange:!0,modeChange:!1,pickerValueSingleArray:[],pickerValueHour:[],pickerValueMinute:[],pickerValueMulArray:[],pickerValueMulTwoOne:[],pickerValueMulTwoTwo:[],pickerValueMulThreeOne:[],pickerValueMulThreeTwo:[],pickerValueMulThreeThree:[],showPicker:!1}},props:{mode:{type:String,default:"selector"},pickerValueArray:{type:Array,default:function(){return[]}},pickerSearchValueArray:{type:Array,default:function(){return[]}},isShowSerach:{type:Boolean,default:function(){}},pickerValueDefault:{type:Array,default:function(){return[]}},deepLength:{type:Number,default:2},themeColor:String},watch:(0,n.default)({pickerValueArray:function(e,t){this.pickerValueArrayChange=!0},mode:function(e,t){this.modeChange=!0}},"pickerValueArray",(function(e){this.initPicker(e)})),methods:{changeSearchContent:function(e){var t=this,i=e.detail.value;i&&""!=i&&null!=i?(this.pickerValueSingleArray=[],this.pickerSearchValueArray.filter((function(e){-1!==e.label.toUpperCase().indexOf(i.toUpperCase())&&t.pickerValueSingleArray.push(e)}))):this.pickerValueSingleArray=this.pickerSearchValueArray},initPicker:function(e){var t=e;if(this.pickerValue=this.pickerValueDefault,"selector"===this.mode)this.pickerValueSingleArray=e;else if("timeSelector"===this.mode){this.modeChange=!1;for(var i=[],a=[],n=0;n<24;n++)i.push({value:n,label:n>9?"".concat(n," 时"):"0".concat(n," 时")});for(var r=0;r<60;r++)a.push({value:r,label:r>9?"".concat(r," 分"):"0".concat(r," 分")});this.pickerValueHour=i,this.pickerValueMinute=a}else if("multiSelector"===this.mode)this.pickerValueMulArray=e;else if("multiLinkageSelector"===this.mode&&2===this.deepLength){for(var l=[],o=[],s=0,u=t.length;s<u;s++)l.push(t[s]);if(2===this.pickerValueDefault.length)for(var c=this.pickerValueDefault[0],h=0,d=t[c].children.length;h<d;h++)o.push(t[c].children[h]);else for(var p=0,f=t[0].children.length;p<f;p++)o.push(t[0].children[p]);this.pickerValueMulTwoOne=l,this.pickerValueMulTwoTwo=o}else if("multiLinkageSelector"===this.mode&&3===this.deepLength){for(var v=[],g=[],m=[],w=0,y=t.length;w<y;w++)v.push(t[w]);if(this.pickerValueDefault=3===this.pickerValueDefault.length?this.pickerValueDefault:[0,0,0],3===this.pickerValueDefault.length){for(var k=this.pickerValueDefault[0],x=0,b=t[k].children.length;x<b;x++)g.push(t[k].children[x]);for(var _=this.pickerValueDefault[1],S=0,A=t[k].children[_].children.length;S<A;S++)m.push(t[k].children[_].children[S])}this.pickerValueMulThreeOne=v,this.pickerValueMulThreeTwo=g,this.pickerValueMulThreeThree=m}},show:function(){var e=this;setTimeout((function(){e.pickerValueArrayChange||e.modeChange?(e.initPicker(e.pickerValueArray),e.showPicker=!0,e.pickerValueArrayChange=!1,e.modeChange=!1):e.showPicker=!0}),0)},maskClick:function(){this.pickerCancel()},pickerCancel:function(){this.showPicker=!1,this._initPickerVale();var e={index:this.pickerValue,value:this._getPickerLabelAndValue(this.pickerValue,this.mode).value,label:this._getPickerLabelAndValue(this.pickerValue,this.mode).label};this.$emit("onCancel",e)},pickerConfirm:function(e){this.showPicker=!1,this._initPickerVale();var t={index:this.pickerValue,value:this._getPickerLabelAndValue(this.pickerValue,this.mode).value,label:this._getPickerLabelAndValue(this.pickerValue,this.mode).label};this.$emit("onConfirm",t)},showPickerView:function(){this.showPicker=!0},pickerChange:function(e){this.pickerValue=e.mp.detail.value;var t={index:this.pickerValue,value:this._getPickerLabelAndValue(this.pickerValue,this.mode).value,label:this._getPickerLabelAndValue(this.pickerValue,this.mode).label};this.$emit("onChange",t)},pickerChangeMul:function(e){if(2===this.deepLength){var t=this.pickerValueArray,i=e.mp.detail.value;if(i[0]!==this.pickerValue[0]){for(var a=[],n=0,r=t[i[0]].children.length;n<r;n++)a.push(t[i[0]].children[n]);this.pickerValueMulTwoTwo=a,i[1]=0}this.pickerValue=i}else if(3===this.deepLength){var l=this.pickerValueArray,o=e.mp.detail.value,s=[],u=[];if(o[0]!==this.pickerValue[0]){this.pickerValueMulThreeTwo=[];for(var c=0,h=l[o[0]].children.length;c<h;c++)s.push(l[o[0]].children[c]);for(var d=0,p=l[o[0]].children[0].children.length;d<p;d++)u.push(l[o[0]].children[0].children[d]);o[1]=0,o[2]=0,this.pickerValueMulThreeTwo=s,this.pickerValueMulThreeThree=u}else if(o[1]!==this.pickerValue[1]){this.pickerValueMulThreeThree=[],s=this.pickerValueMulThreeTwo;for(var f=0,v=l[o[0]].children[o[1]].children.length;f<v;f++)u.push(l[o[0]].children[o[1]].children[f]);o[2]=0,this.pickerValueMulThreeThree=u}this.pickerValue=o}var g={index:this.pickerValue,value:this._getPickerLabelAndValue(this.pickerValue,this.mode).value,label:this._getPickerLabelAndValue(this.pickerValue,this.mode).label};this.$emit("onChange",g)},_getPickerLabelAndValue:function(e,t){var i,a=[];if("selector"===t)null!=this.pickerValueSingleArray&&this.pickerValueSingleArray.length>0&&(i=this.pickerValueSingleArray[e].label,a.push(this.pickerValueSingleArray[e].value));else if("timeSelector"===t)i="".concat(this.pickerValueHour[e[0]].label,"-").concat(this.pickerValueMinute[e[1]].label),a.push(this.pickerValueHour[e[0]].value),a.push(this.pickerValueHour[e[1]].value);else if("multiSelector"===t)for(var n=0;n<e.length;n++)n>0?i+=this.pickerValueMulArray[n][e[n]].label+(n===e.length-1?"":"-"):i=this.pickerValueMulArray[n][e[n]].label+"-",a.push(this.pickerValueMulArray[n][e[n]].value);else"multiLinkageSelector"===t&&(i=2===this.deepLength?"".concat(this.pickerValueMulTwoOne[e[0]].label).concat(this.pickerValueMulTwoTwo[e[1]].label):"".concat(this.pickerValueMulThreeOne[e[0]].label,"-").concat(this.pickerValueMulThreeTwo[e[1]].label,"-").concat(this.pickerValueMulThreeThree[e[2]].label),2===this.deepLength?(a.push(this.pickerValueMulTwoOne[e[0]].value),a.push(this.pickerValueMulTwoTwo[e[1]].value)):(a.push(this.pickerValueMulThreeOne[e[0]].value),a.push(this.pickerValueMulThreeTwo[e[1]].value),a.push(this.pickerValueMulThreeThree[e[2]].value)));return{label:i,value:a}},_initPickerVale:function(){0===this.pickerValue.length&&("selector"===this.mode?this.pickerValue=[0]:"multiSelector"===this.mode?this.pickerValue=new Int8Array(this.pickerValueArray.length):"multiLinkageSelector"===this.mode&&2===this.deepLength?this.pickerValue=[0,0]:"multiLinkageSelector"===this.mode&&3===this.deepLength&&(this.pickerValue=[0,0,0]))}}};t.default=r},"96cf":function(e,t){!function(t){"use strict";var i,a=Object.prototype,n=a.hasOwnProperty,r="function"===typeof Symbol?Symbol:{},l=r.iterator||"@@iterator",o=r.asyncIterator||"@@asyncIterator",s=r.toStringTag||"@@toStringTag",u="object"===typeof e,c=t.regeneratorRuntime;if(c)u&&(e.exports=c);else{c=t.regeneratorRuntime=u?e.exports:{},c.wrap=k;var h="suspendedStart",d="suspendedYield",p="executing",f="completed",v={},g={};g[l]=function(){return this};var m=Object.getPrototypeOf,w=m&&m(m(F([])));w&&w!==a&&n.call(w,l)&&(g=w);var y=S.prototype=b.prototype=Object.create(g);_.prototype=y.constructor=S,S.constructor=_,S[s]=_.displayName="GeneratorFunction",c.isGeneratorFunction=function(e){var t="function"===typeof e&&e.constructor;return!!t&&(t===_||"GeneratorFunction"===(t.displayName||t.name))},c.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,S):(e.__proto__=S,s in e||(e[s]="GeneratorFunction")),e.prototype=Object.create(y),e},c.awrap=function(e){return{__await:e}},A(C.prototype),C.prototype[o]=function(){return this},c.AsyncIterator=C,c.async=function(e,t,i,a){var n=new C(k(e,t,i,a));return c.isGeneratorFunction(t)?n:n.next().then((function(e){return e.done?e.value:n.next()}))},A(y),y[s]="Generator",y[l]=function(){return this},y.toString=function(){return"[object Generator]"},c.keys=function(e){var t=[];for(var i in e)t.push(i);return t.reverse(),function i(){while(t.length){var a=t.pop();if(a in e)return i.value=a,i.done=!1,i}return i.done=!0,i}},c.values=F,I.prototype={constructor:I,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=i,this.done=!1,this.delegate=null,this.method="next",this.arg=i,this.tryEntries.forEach(L),!e)for(var t in this)"t"===t.charAt(0)&&n.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=i)},stop:function(){this.done=!0;var e=this.tryEntries[0],t=e.completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function a(a,n){return o.type="throw",o.arg=e,t.next=a,n&&(t.method="next",t.arg=i),!!n}for(var r=this.tryEntries.length-1;r>=0;--r){var l=this.tryEntries[r],o=l.completion;if("root"===l.tryLoc)return a("end");if(l.tryLoc<=this.prev){var s=n.call(l,"catchLoc"),u=n.call(l,"finallyLoc");if(s&&u){if(this.prev<l.catchLoc)return a(l.catchLoc,!0);if(this.prev<l.finallyLoc)return a(l.finallyLoc)}else if(s){if(this.prev<l.catchLoc)return a(l.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<l.finallyLoc)return a(l.finallyLoc)}}}},abrupt:function(e,t){for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i];if(a.tryLoc<=this.prev&&n.call(a,"finallyLoc")&&this.prev<a.finallyLoc){var r=a;break}}r&&("break"===e||"continue"===e)&&r.tryLoc<=t&&t<=r.finallyLoc&&(r=null);var l=r?r.completion:{};return l.type=e,l.arg=t,r?(this.method="next",this.next=r.finallyLoc,v):this.complete(l)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),v},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var i=this.tryEntries[t];if(i.finallyLoc===e)return this.complete(i.completion,i.afterLoc),L(i),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var i=this.tryEntries[t];if(i.tryLoc===e){var a=i.completion;if("throw"===a.type){var n=a.arg;L(i)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,a){return this.delegate={iterator:F(e),resultName:t,nextLoc:a},"next"===this.method&&(this.arg=i),v}}}function k(e,t,i,a){var n=t&&t.prototype instanceof b?t:b,r=Object.create(n.prototype),l=new I(a||[]);return r._invoke=V(e,i,l),r}function x(e,t,i){try{return{type:"normal",arg:e.call(t,i)}}catch(a){return{type:"throw",arg:a}}}function b(){}function _(){}function S(){}function A(e){["next","throw","return"].forEach((function(t){e[t]=function(e){return this._invoke(t,e)}}))}function C(e){function t(i,a,r,l){var o=x(e[i],e,a);if("throw"!==o.type){var s=o.arg,u=s.value;return u&&"object"===typeof u&&n.call(u,"__await")?Promise.resolve(u.__await).then((function(e){t("next",e,r,l)}),(function(e){t("throw",e,r,l)})):Promise.resolve(u).then((function(e){s.value=e,r(s)}),(function(e){return t("throw",e,r,l)}))}l(o.arg)}var i;function a(e,a){function n(){return new Promise((function(i,n){t(e,a,i,n)}))}return i=i?i.then(n,n):n()}this._invoke=a}function V(e,t,i){var a=h;return function(n,r){if(a===p)throw new Error("Generator is already running");if(a===f){if("throw"===n)throw r;return E()}i.method=n,i.arg=r;while(1){var l=i.delegate;if(l){var o=M(l,i);if(o){if(o===v)continue;return o}}if("next"===i.method)i.sent=i._sent=i.arg;else if("throw"===i.method){if(a===h)throw a=f,i.arg;i.dispatchException(i.arg)}else"return"===i.method&&i.abrupt("return",i.arg);a=p;var s=x(e,t,i);if("normal"===s.type){if(a=i.done?f:d,s.arg===v)continue;return{value:s.arg,done:i.done}}"throw"===s.type&&(a=f,i.method="throw",i.arg=s.arg)}}}function M(e,t){var a=e.iterator[t.method];if(a===i){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=i,M(e,t),"throw"===t.method))return v;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return v}var n=x(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,v;var r=n.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=i),t.delegate=null,v):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,v)}function D(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function L(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function I(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(D,this),this.reset(!0)}function F(e){if(e){var t=e[l];if(t)return t.call(e);if("function"===typeof e.next)return e;if(!isNaN(e.length)){var a=-1,r=function t(){while(++a<e.length)if(n.call(e,a))return t.value=e[a],t.done=!1,t;return t.value=i,t.done=!0,t};return r.next=r}}return{next:E}}function E(){return{value:i,done:!0}}}(function(){return this||"object"===typeof self&&self}()||Function("return this")())},9732:function(e,t,i){var a=i("88a0");a.__esModule&&(a=a.default),"string"===typeof a&&(a=[[e.i,a,""]]),a.locals&&(e.exports=a.locals);var n=i("4f06").default;n("43c6ff04",a,!0,{sourceMap:!1,shadowMode:!1})},a272:function(e,t,i){"use strict";var a=i("4ea4");Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=i("848a"),r=i("f9f8"),l=a(i("8d20")),o={parseL:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return e},cacheAppUser:function(e){return l.default.setSync(l.default.$Keys.app.APP_USER,e)},cacheWxInfo:function(e){return l.default.setSync(l.default.$Keys.app.WX_INFO,e)},cacheUserInfo:function(e){return l.default.setSync(l.default.$Keys.app.USER_INFO,e)},getCacheAppUser:function(){return l.default.getSync(l.default.$Keys.app.APP_USER)},getCacheWxInfo:function(){return l.default.getSync(l.default.$Keys.app.wxInfo)},getCacheUserInfo:function(){return l.default.getSync(l.default.$Keys.app.USER_INFO)},setAppUser:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,r._dispatch)("setAppUser",{openid:e.openId,token:e.token,tokenHead:e.tokenHead,userid:e.memberId,currentTime:(new Date).getTime()})},setToken:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return(0,r._dispatch)("setToken",e)},setUserInfo:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,r._dispatch)("setUserInfo",e)},setWxInfo:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,r._dispatch)("setWxInfo",e)},getAppUser:function(){return(0,r._getters)("appUser",{})},getWxInfo:function(){return(0,r._getters)("wxInfo",{})},getUserInfo:function(){return(0,r._getters)("userInfo",{})},login:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,r._query)({api:n._login,params:e,callBack:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};o.setAppUser(e),o.cacheAppUser(o.getAppUser()),o.setUserInfo(e),o.cacheUserInfo(o.getUserInfo())}})}},s=o;t.default=s},b48e:function(e,t,i){var a=i("cf78");a.__esModule&&(a=a.default),"string"===typeof a&&(a=[[e.i,a,""]]),a.locals&&(e.exports=a.locals);var n=i("4f06").default;n("164d5150",a,!0,{sourceMap:!1,shadowMode:!1})},c531:function(e,t,i){"use strict";var a;i.d(t,"b",(function(){return n})),i.d(t,"c",(function(){return r})),i.d(t,"a",(function(){return a}));var n=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("v-uni-view",{staticClass:"mpvue-picker"},[i("v-uni-view",{class:{pickerMask:e.showPicker},attrs:{catchtouchmove:"true"},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.maskClick.apply(void 0,arguments)}}}),i("v-uni-view",{staticClass:"mpvue-picker-content ",class:{"mpvue-picker-view-show":e.showPicker}},[i("v-uni-view",{staticClass:"mpvue-picker__hd",attrs:{catchtouchmove:"true"}},[i("v-uni-view",{staticClass:"mpvue-picker__action",on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.pickerCancel.apply(void 0,arguments)}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["取消"]))]),e.isShowSerach?i("v-uni-view",{staticStyle:{"border-radius":"20upx",background:"#EEE",height:"60upx",display:"block",flex:"1.5"}},[i("v-uni-input",{staticStyle:{color:"#333","margin-top":"8upx"},attrs:{maxlength:"10",placeholder:e.$i18n.messages[e.$i18n.locale]["搜索"]},on:{input:function(t){arguments[0]=t=e.$handleEvent(t),e.changeSearchContent.apply(void 0,arguments)}}})],1):e._e(),i("v-uni-view",{staticClass:"mpvue-picker__action",style:{color:e.themeColor},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.pickerConfirm.apply(void 0,arguments)}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["确认"]))])],1),"selector"===e.mode&&0==e.pickerValueSingleArray.length&&e.isShowSerach?i("v-uni-view",{staticClass:"mpvue-picker-view"}):e._e(),"selector"===e.mode&&e.pickerValueSingleArray.length>0?i("v-uni-picker-view",{staticClass:"mpvue-picker-view",attrs:{"indicator-style":"height: 40px;",value:e.pickerValue},on:{change:function(t){arguments[0]=t=e.$handleEvent(t),e.pickerChange.apply(void 0,arguments)}}},[[i("v-uni-picker-view-column",e._l(e.pickerValueSingleArray,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1)]],2):e._e(),"timeSelector"===e.mode?i("v-uni-picker-view",{staticClass:"mpvue-picker-view",attrs:{"indicator-style":"height: 40px;",value:e.pickerValue},on:{change:function(t){arguments[0]=t=e.$handleEvent(t),e.pickerChange.apply(void 0,arguments)}}},[[i("v-uni-picker-view-column",e._l(e.pickerValueHour,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1),i("v-uni-picker-view-column",e._l(e.pickerValueMinute,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1)]],2):e._e(),"multiSelector"===e.mode?i("v-uni-picker-view",{staticClass:"mpvue-picker-view",attrs:{"indicator-style":"height: 40px;",value:e.pickerValue},on:{change:function(t){arguments[0]=t=e.$handleEvent(t),e.pickerChange.apply(void 0,arguments)}}},[e._l(e.pickerValueMulArray.length,(function(t,a){return[i("v-uni-picker-view-column",e._l(e.pickerValueMulArray[t],(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1)]}))],2):e._e(),"multiLinkageSelector"===e.mode&&2===e.deepLength?i("v-uni-picker-view",{staticClass:"mpvue-picker-view",attrs:{"indicator-style":"height: 40px;",value:e.pickerValue},on:{change:function(t){arguments[0]=t=e.$handleEvent(t),e.pickerChangeMul.apply(void 0,arguments)}}},[[i("v-uni-picker-view-column",e._l(e.pickerValueMulTwoOne,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1),i("v-uni-picker-view-column",e._l(e.pickerValueMulTwoTwo,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1)]],2):e._e(),"multiLinkageSelector"===e.mode&&3===e.deepLength?i("v-uni-picker-view",{staticClass:"mpvue-picker-view",attrs:{"indicator-style":"height: 40px;",value:e.pickerValue},on:{change:function(t){arguments[0]=t=e.$handleEvent(t),e.pickerChangeMul.apply(void 0,arguments)}}},[[i("v-uni-picker-view-column",e._l(e.pickerValueMulThreeOne,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1),i("v-uni-picker-view-column",e._l(e.pickerValueMulThreeTwo,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1),i("v-uni-picker-view-column",e._l(e.pickerValueMulThreeThree,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1)]],2):e._e()],1)],1)},r=[]},cf78:function(e,t,i){var a=i("24fb");t=a(!1),t.push([e.i,".head[data-v-7c2c874c]{position:fixed;width:%?750?%;z-index:888;align-items:center}.title[data-v-7c2c874c]{position:fixed;width:%?750?%;text-align:center;line-height:32px;height:32px}.back[data-v-7c2c874c]{position:fixed;width:%?81?%;text-align:center;line-height:32px;height:32px;font-size:%?32?%;font-weight:900;z-index:9;align-items:center}",""]),e.exports=t},d668f:function(e,t,i){"use strict";var a;i.d(t,"b",(function(){return n})),i.d(t,"c",(function(){return r})),i.d(t,"a",(function(){return a}));var n=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("v-uni-view",{staticClass:"edit-address full-height full-width"},[i("v-uni-view",{staticClass:"form full-width"},[i("v-uni-view",{staticStyle:{width:"100%",height:"70upx",display:"flex","align-items":"center","justify-content":"center"}},[i("v-uni-view",{staticStyle:{display:"flex","font-size":"30upx",margin:"auto",width:"440upx",height:"70upx",background:"#282932","border-radius":"50upx",color:"#FFFFFF"}},[i("v-uni-view",{class:{previewAxtiveLeft:!e.preview},staticStyle:{"line-height":"70upx","text-align":"center",width:"220upx"},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.onclickTitle(!1)}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["自定义尺寸"]))]),i("v-uni-view",{class:{previewAxtiveRight:e.preview},staticStyle:{"line-height":"70upx","text-align":"center",width:"220upx"},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.onclickTitle(!0)}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["预置尺寸"]))])],1)],1),e.preview?e._e():i("v-uni-view",{staticClass:"full-width",staticStyle:{height:"92%"},attrs:{"scroll-y":!0}},[i("v-uni-view",{staticStyle:{height:"700upx",overflow:"hidden",margin:"0upx auto 40upx",display:"flex","margin-top":"15upx","justify-content":"center","align-items":"center"},style:{width:e.pixel_Width*e.pixel_scale+"px",borderRadius:e.defalutFillet+"px"}},[i("v-uni-view",{staticStyle:{background:"#FFFFFF",margin:"auto","box-shadow":"0px 2px 6px 0px rgba(0,0,0,0.5)"},style:{width:e.pixel_Width*e.pixel_scale+"px",height:e.pixel_Height*e.pixel_scale+"px",borderRadius:e.defalutFillet+"px"}})],1),i("v-uni-view",{staticStyle:{position:"relative"}},[i("v-uni-view",{staticStyle:{display:"flex","align-items":"center","justify-content":"center","margin-top":"5upx"}},[i("v-uni-view",{staticStyle:{"font-size":"30upx","font-weight":"400",color:"#FFFFFF",width:"240upx"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["物料宽度"])+":")]),i("v-uni-view",{staticStyle:{width:"282upx",height:"66upx",background:"#282932","border-radius":"30upx",display:"flex","align-items":"center"}},[i("v-uni-input",{staticStyle:{color:"#FFFFFF","font-size":"28upx","padding-left":"35upx",width:"200upx"},attrs:{type:"digit",placeholder:e.$i18n.messages[e.$i18n.locale]["请输入宽度"],value:e.inputWidth},on:{input:function(t){arguments[0]=t=e.$handleEvent(t),e.moneyChangeWidth.apply(void 0,arguments)}}}),i("v-uni-view",{staticStyle:{color:"#898989","font-size":"26upx",width:"82upx"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale][e.companyValue]))])],1)],1),i("v-uni-view",{staticStyle:{display:"flex","align-items":"center","justify-content":"center","margin-top":"20upx",position:"relative"}},[i("v-uni-view",{staticStyle:{"font-size":"30upx","font-weight":"400",color:"#FFFFFF",width:"240upx"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["物料高度"])+":")]),i("v-uni-view",{staticStyle:{width:"282upx",height:"66upx",background:"#282932","border-radius":"30upx",display:"flex","align-items":"center"}},[i("v-uni-input",{staticStyle:{color:"#FFFFFF","font-size":"28upx","padding-left":"35upx",width:"200upx"},attrs:{type:"digit",value:e.inputHeight,placeholder:e.$i18n.messages[e.$i18n.locale]["请输入高度"]},on:{input:function(t){arguments[0]=t=e.$handleEvent(t),e.moneyChangeHeight.apply(void 0,arguments)}}}),i("v-uni-view",{staticStyle:{color:"#898989","font-size":"26upx",width:"82upx"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale][e.companyValue]))])],1)],1),i("v-uni-view",{staticStyle:{display:"flex","align-items":"center","justify-content":"center","margin-top":"25upx"}},[i("v-uni-view",{staticStyle:{"font-size":"30upx","font-weight":"400",color:"#FFFFFF",width:"240upx"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["圆角半径"])+":")]),i("v-uni-view",{staticStyle:{width:"282upx",height:"66upx",display:"flex","align-items":"center","margin-top":"5upx"}},[i("NumSlider",{ref:"NumSlider",attrs:{min:0,max:100,width:e.sliderdefaultWith,disabled:!1,range:!1,leftX:e.sliderdefaultWith},on:{highChange:function(t){arguments[0]=t=e.$handleEvent(t),e.highChange.apply(void 0,arguments)}}})],1)],1),i("v-uni-view",{staticStyle:{margin:"auto",color:"#fff","text-align":"center","line-height":"88upx",width:"300upx",height:"88upx",background:"linear-gradient(92deg, #E6B01A, #F29F3D)","box-shadow":"0px 19upx 48upx 1upx rgba(20, 31, 62, 0.35)","border-radius":"50upx","margin-top":"40upx"},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.onSave()}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["确认"]))])],1)],1),e.preview?i("v-uni-view",{staticClass:"full-width"},[i("v-uni-view",{staticStyle:{height:"90upx",display:"flex","align-items":"center",width:"calc(100% - 60upx)",margin:"auto"}},[i("v-uni-view",{staticStyle:{display:"flex","align-items":"center","font-size":"28upx"}},[i("v-uni-view",{class:{classificationLeft:!e.Specifications},staticStyle:{"line-height":"60upx","text-align":"center",width:"160upx",height:"60upx",background:"#282932","border-radius":"30upx"},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.OnclickSpecifications(0)}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["内置"]))]),i("v-uni-view",{class:{classificationRight:e.Specifications},staticStyle:{"line-height":"60upx","text-align":"center",width:"160upx","margin-left":"20upx",height:"60upx",background:"#282932","border-radius":"30upx"},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.OnclickSpecifications(1)}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["常用"]))])],1)],1),i("v-uni-view",{staticClass:"full-width"},[i("v-uni-view",{staticClass:"full-width",attrs:{"scroll-y":!0},on:{scrolltolower:function(t){arguments[0]=t=e.$handleEvent(t),e.loadMore()}}},[e._l(e.LoupanList,(function(t,a){return i("v-uni-view",{key:a,staticClass:"eq_list",on:{click:function(i){if(!i.type.indexOf("key")&&e._k(i.keyCode,"preven",void 0,i.key,void 0))return null;arguments[0]=i=e.$handleEvent(i),e.refundNumorder(t)},touchstart:function(i){if(!i.type.indexOf("key")&&e._k(i.keyCode,"preven",void 0,i.key,void 0))return null;arguments[0]=i=e.$handleEvent(i),e.touchstart(t,a)},touchend:function(t){if(!t.type.indexOf("key")&&e._k(t.keyCode,"preven",void 0,t.key,void 0))return null;arguments[0]=t=e.$handleEvent(t),e.touchend.apply(void 0,arguments)}}},[i("v-uni-view",{staticClass:"eq_list_div"},[i("v-uni-view",{staticStyle:{"font-size":"30upx","font-weight":"500"}},[e._v(e._s(t.alias_name))]),i("v-uni-view",{staticStyle:{"margin-left":"auto","margin-right":"20upx"}},[i("v-uni-label",{staticClass:"fa fa-angle-right align-right sub-color",staticStyle:{"font-size":"40upx"}})],1)],1)],1)})),0==e.LoupanList.length||null==e.LoupanList.length?i("v-uni-view",{staticClass:"align-center content-color",staticStyle:{position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)"}},[i("span",{staticClass:"iconfont icon-wushuju",staticStyle:{"font-size":"100upx","text-align":"center",color:"#B2B2B2"}}),i("v-uni-view",{staticStyle:{color:"#B2B2B2","text-align":"center","line-height":"50upx","font-size":"23upx"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["暂无数据"]))])],1):e._e()],2)],1),i("v-uni-view",{staticClass:"to-top content-color",on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.totop()}}},[i("v-uni-view",{staticClass:"fa fa-angle-right to-top-icon"})],1)],1):e._e()],1),i("mpvue-picker",{ref:"mpvuePicker",attrs:{themeColor:"#53B2B0",mode:e.mode,pickerValueDefault:e.pickerValueDefault,pickerValueArray:e.pickerValueArray},on:{onChange:function(t){arguments[0]=t=e.$handleEvent(t),e.onChange.apply(void 0,arguments)},onConfirm:function(t){arguments[0]=t=e.$handleEvent(t),e.onConfirm.apply(void 0,arguments)},onCancel:function(t){arguments[0]=t=e.$handleEvent(t),e.onCancel.apply(void 0,arguments)}}})],1)},r=[]},e749:function(e,t){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAnCAYAAADkUNMNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NDkxMSwgMjAxMy8xMC8yOS0xMTo0NzoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MURCRjQ3RTJDNUQzMTFFQkI4NUVFQ0VBMjYyMzIwNzMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MURCRjQ3RTFDNUQzMTFFQkI4NUVFQ0VBMjYyMzIwNzMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjczQjA5RkE3NUIwNzExRUJBMkEwQjRGRDJDQjQyRjEwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjczQjA5RkE4NUIwNzExRUJBMkEwQjRGRDJDQjQyRjEwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+AOUs4gAAASNJREFUeNq0l98LgjAQx50JRvUSRS/9//9VD/nSS0IF/mhtc01BM5267W4HIhzy+R6Hu/uOSCkDXxFigRitrjTnBXuLpEvWlUOfd85S2YtPyZM6D66cFjyNN9Ghn6uEPIHbogM30BVJQW0ZtqKNMmOP9htvYCe4KdgabgO2gtuCjeEuYCO4K3gRDgHPwqHgSTgGWAvHAo/gmOA/ODa4g/sA/+a5DNbaNRWSEjTsu7ZkLNNVr2b2DdQWXwLjXxFRQH+IkASmjz+CwPzgAgosj1yAgNmycBQwX3MOAnYL2lLA3lpYCLiZIkMBdztnIACzzhMCyqNfwBY63kY7ZfjzYV7w6oxys9AJkJC8mjfWnYgW4k5IsFe8p/LsR1S41wuXLr4CDADMzr+hAB/Z7wAAAABJRU5ErkJggg=="},eb2b:function(e,t,i){"use strict";var a;i.d(t,"b",(function(){return n})),i.d(t,"c",(function(){return r})),i.d(t,"a",(function(){return a}));var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("v-uni-view",{staticStyle:{position:"fixed","z-index":"999"},style:{height:e.height+"px",background:e.background}},[a("v-uni-view",{staticClass:"head",style:{height:e.height+"px",background:e.background}},[e.backShow?a("v-uni-view",{staticClass:"back",style:{top:e.top+"px",color:e.color},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.back.apply(void 0,arguments)}}},[1==e.worksid?a("v-uni-image",{staticStyle:{width:"39upx",height:"39upx","margin-top":"calc((32px - 39upx)/2)","margin-left":"auto","margin-right":"auto"},attrs:{src:i("8c9b"),mode:"aspectFit"}}):e._e(),0==e.worksid?a("v-uni-image",{staticStyle:{width:"23upx",height:"39upx","margin-top":"calc((32px - 39upx)/2)","margin-left":"auto","margin-right":"auto"},attrs:{src:i("e749"),mode:"aspectFit"}}):e._e(),4==e.worksid?a("v-uni-image",{staticStyle:{width:"40upx",height:"40upx","margin-top":"calc((32px - 39upx)/2)","margin-left":"auto","margin-right":"auto"},attrs:{src:i("814a"),mode:"aspectFit"}}):e._e()],1):e._e(),e.titleShow&&4==e.worksid?a("v-uni-view",{staticClass:"title",staticStyle:{"font-weight":"550"},style:{top:e.top+"px",color:e.color,"font-size":e.size+"rpx"}},[e._v(e._s(e.title))]):e._e(),e.titleShow&&4!=e.worksid?a("v-uni-view",{staticClass:"title",style:{top:e.top+"px",color:e.color,"font-size":e.size+"rpx"}},[e._v(e._s(e.title))]):e._e()],1)],1)},r=[]},f39d:function(e,t,i){"use strict";var a=i("b48e"),n=i.n(a);n.a},fbca:function(e,t,i){"use strict";var a=i("9732"),n=i.n(a);n.a},fd87:function(e,t,i){var a=i("74e8");a("Int8",(function(e){return function(t,i,a){return e(this,t,i,a)}}))}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-mall-size"],{"04ef":function(e,t,i){"use strict";i("a9e3"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a={name:"NumSlider",props:{min:{type:Number,default:0},max:{type:Number,default:100},initialMin:{type:Number,default:0},width:{type:Number,default:600},disabled:{type:Boolean,default:!1},range:{type:Boolean,default:!1},leftX:{type:Number,default:120},defalutFillet:{type:Number,default:0}},data:function(){return{left:"",right:"",defalutFilletData:0,initialMax:0,filletScale:1}},computed:{scale:function(){return this.width/(this.max-this.min)},low:function(){return Math.round(this.left/this.scale+this.min)},high:function(){return Math.round(this.right/this.scale+this.min)}},watch:{low:function(e){this.$emit("lowChange",e)},high:function(e){this.defalutFilletData=Math.floor(e*this.filletScale),this.$emit("highChange",e)}},mounted:function(){this.left=this.range?(this.initialMin-this.min)*this.scale:0,this.right=(this.initialMax-this.min)*this.scale},methods:{initFilletRadius:function(e,t){this.initialMax=e,this.filletScale=t,this.left=this.range?(this.initialMin-this.min)*this.scale:0,this.right=(this.initialMax-this.min)*this.scale,this.defalutFilletData=Math.floor(e*t)},onRightMouseMove:function(e){var t=e.changedTouches[0].pageX-this.leftX;t>this.width?this.right=this.width:t<=this.left?this.right=this.left:this.right=t},onRightMouseDown:function(e){e.preventDefault();var t=e.changedTouches[0].pageX-this.leftX;t>this.width?this.right=this.width:t<=this.left?this.right=this.left:this.right=t},init:function(){this.left=this.range?(this.initialMin-this.min)*this.scale:0,this.right=(this.initialMax-this.min)*this.scale}}};t.default=a},"0e1b":function(e,t,i){"use strict";i.r(t);var a=i("1d26"),n=i.n(a);for(var r in a)"default"!==r&&function(e){i.d(t,e,(function(){return a[e]}))}(r);t["default"]=n.a},"103e":function(e,t,i){"use strict";i.r(t);var a=i("5e43"),n=i("400e");for(var r in n)"default"!==r&&function(e){i.d(t,e,(function(){return n[e]}))}(r);i("146a");var l,o=i("f0c5"),s=Object(o["a"])(n["default"],a["b"],a["c"],!1,null,"70c41e0b",null,!1,a["a"],l);t["default"]=s.exports},"146a":function(e,t,i){"use strict";var a=i("5ba0"),n=i.n(a);n.a},"1d26":function(e,t,i){"use strict";i("a9e3"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a={props:{worksid:{type:Number,default:0},title:{type:String,default:""},size:{type:String,default:"32"},color:{type:String,default:"#000"},titleShow:{type:Boolean,default:!0},backShow:{type:Boolean,default:!0},background:{type:String,default:"linear-gradient(to right, #43e97b 0%, #38f9d7 100%)"}},data:function(){return{height:0,top:0}},mounted:function(){},created:function(){this.height=60,this.top=10},methods:{back:function(){try{var e=uni.getStorageSync("globalData");if(e)uni.reLaunch({url:"../index/detailsphone?machine_id="+e.machine_id});else{var t=uni.getStorageSync("machine_id");t?uni.reLaunch({url:"../index/detailsphone?machine_id="+t}):uni.navigateBack()}}catch(a){var i=uni.getStorageSync("machine_id");i?uni.reLaunch({url:"../index/detailsphone?machine_id="+i}):uni.navigateBack()}}},onLoad:function(e){},onShow:function(){}};t.default=a},"1da1":function(e,t,i){"use strict";function a(e,t,i,a,n,r,l){try{var o=e[r](l),s=o.value}catch(u){return void i(u)}o.done?t(s):Promise.resolve(s).then(a,n)}function n(e){return function(){var t=this,i=arguments;return new Promise((function(n,r){var l=e.apply(t,i);function o(e){a(l,n,r,o,s,"next",e)}function s(e){a(l,n,r,o,s,"throw",e)}o(void 0)}))}}i("d3b7"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=n},"23a9":function(e,t,i){"use strict";(function(e){var a=i("4ea4");i("99af"),i("4160"),i("c975"),i("a434"),i("a9e3"),i("b64b"),i("d3b7"),i("acd8"),i("ac1f"),i("25f0"),i("5319"),i("1276"),i("159b"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0,i("96cf");var n=a(i("1da1")),r=a(i("c545")),l=a(i("32cd")),o=(a(i("a272")),a(i("7561"))),s=a(i("264e")),u=a(i("6fca")),c=a(i("7c21")),h={components:{mpvuePicker:l.default,uniPopup:s.default,NumSlider:u.default,myhead:c.default},computed:{},data:function(){return{mode:"selector",pickerValueArray:[{label:"毫米",value:0},{label:"厘米",value:1}],pickerValueDefault:[0],companyValue:"毫米",equalRatioState:!1,directionState:!1,wValue:0,hValue:0,previewWidth:0,previewHeight:0,inputWidth:0,inputHeight:0,pixel_Width:0,pixel_Height:0,pixel_scale:1,convert_rate:10,OldConvert_rate:10,render_cove_width:0,render_cove_height:0,data:{windowWidth:null,windowHeight:null,pixelRate:null},preview:!1,dataLoadState:{pullDownRefresh:!1,reachBottom:!1},LoupanList:[],Specifications:!1,nav:!0,Loop:null,good:null,parameter:{machine_id:null,goods_id:null,key:null},manyGoodSelectData:[],type:1,selectItemData:null,sliderdefaultWith:120,defalutFillet:0,initialMax:0,heiPixelRate:null,filletScale:1,newDefalutFilletData:0,headheight:0,queryPage:{},good_id:"217",isFirstPage:!0,machineDetail:null,pixelScale:.6}},methods:{onclickTitle:function(e){this.preview=e,this.preview&&(this.defalutFillet=0,this.newDefalutFilletData=0,this.Specifications||(this.dataLoadState={pullDownRefresh:!1,reachBottom:!1},this.LoupanList=[],this.queryPage.page=1,this.queryPage.total=0,this.Specifications=!1,this.queryPage.s="CanvasSize.list",this.loadGoodsList(r.default.DATA_DIRECTION.UP)))},toGoodDetail:function(){uni.navigateTo({url:"../index/goodDetail?machine_id="+this.parameter.machine_id+"&goodTypeData= 2"})},switchChange:function(e){1==e.detail.value?this.switchIsFillet=!0:this.switchIsFillet=!1},highChange:function(e,t){this.newDefalutFilletData=e;var i=Math.floor(this.newDefalutFilletData*this.filletScale);this.defalutFillet=Math.floor(i*(this.pixel_Width*this.pixel_scale/this.inputWidth))},showManyGoodPop:function(){this.$refs["showManyGood"].open()},closeManyGoodPop:function(){this.$refs["showManyGood"].close()},refundNumorder:function(e){var t=Number(e.real_radius),i=Number(e.real_height),a=Number(e.real_width),n=0;n=i>a?a:i,t>n/2&&(t=Math.floor(n/2));var r=e.real_width*this.OldConvert_rate,l=e.real_height*this.OldConvert_rate,o=e.alias_name,s=e.unit,u=e.id;if(this.isFirstPage&&"true"==this.isFirstPage)uni.redirectTo({url:"../index/index?machine_id="+this.parameter.machine_id+"&WidthIndex="+r+"&HeightIndex="+l+"&OldConvert_rate="+this.OldConvert_rate+"&unit="+s+"&title="+o+"&pixel_scale="+this.pixel_scale+"&real_width="+a+"&real_height="+i+"&defalutFillet="+t+"&good_id="+this.good_id+"&type=2&customize_size_id="+u+"&machineDetail="+JSON.stringify(this.machineDetail)});else{var c=getCurrentPages(),h=c[c.length-2],d={WidthIndex:r,HeightIndex:l,defalutFillet:t,real_width:a,real_height:i,title:o,OldConvert_rate:this.OldConvert_rate,unit:s,type:2,goods_id:this.good_id,customize_size_id:u};h.$vm.options=d,uni.navigateBack({delta:1})}},onSave:function(){var e=this;if(""!=this.inputWidth)if(""!=this.inputHeight){var t=null,i=null,a=null;"毫米"==this.companyValue?(t="mm",i=this.inputWidth,a=this.inputHeight):"厘米"==this.companyValue&&(t="cm",i=this.inputWidth,a=this.inputHeight);var n=i+" x "+a+"("+this.companyValue+")",r=Math.floor(this.newDefalutFilletData*this.filletScale);r>0&&(n=i+" x "+a+" - "+r+"("+this.companyValue+")");var l=i*this.OldConvert_rate,s=a*this.OldConvert_rate,u=0;u=this.inputHeight>this.inputWidth?this.inputWidth:this.inputHeight,r>u/2&&(r=Math.floor(u/2)),o.default.queryList({s:"CanvasSize.save",id:null,name:n,real_width:i,real_height:a,unit:t,real_radius:r}).then((function(o){if(e.isFirstPage&&"true"==e.isFirstPage)uni.redirectTo({url:"../index/index?machine_id="+e.parameter.machine_id+"&WidthIndex="+l+"&HeightIndex="+s+"&OldConvert_rate="+e.OldConvert_rate+"&unit="+t+"&title="+n+"&pixel_scale="+e.pixel_scale+"&real_width="+i+"&real_height="+a+"&defalutFillet="+r+"&good_id="+e.good_id+"&type=2&customize_size_id="+o.id+"&machineDetail="+JSON.stringify(e.machineDetail)});else{var u=getCurrentPages(),c=u[u.length-2],h={WidthIndex:l,HeightIndex:s,defalutFillet:r,real_width:i,real_height:a,title:n,OldConvert_rate:e.OldConvert_rate,unit:t,type:2,goods_id:e.good_id,customize_size_id:o.id};c.$vm.options=h,uni.navigateBack({delta:1})}})).catch((function(e){uni.showToast({title:e.msg,icon:"none"})}))}else uni.showToast({title:this.$i18n.messages[this.$i18n.locale]["高度不能为空"],icon:"none"});else uni.showToast({title:this.$i18n.messages[this.$i18n.locale]["宽度不能为空"],icon:"none"})},touchstart:function(e,t){var i=this;i.nav=!0,clearInterval(this.Loop),this.Loop=setTimeout(function(){i.nav=!1,uni.showModal({title:this.$i18n.messages[this.$i18n.locale]["删除"],content:this.$i18n.messages[this.$i18n.locale]["确认要删除当前尺码吗"],confirmText:this.$i18n.messages[this.$i18n.locale]["删除"],confirmColor:"#ff3b32",success:function(){var a=(0,n.default)(regeneratorRuntime.mark((function a(n){return regeneratorRuntime.wrap((function(a){while(1)switch(a.prev=a.next){case 0:n.confirm?(i.LoupanList.splice(t,1),o.default.newqueryList({s:"CanvasSize.del",ids:e.id}).then((function(e){})).catch((function(e){uni.showToast({title:e.msg,icon:"none"})}))):n.cancel;case 1:case"end":return a.stop()}}),a)})));function r(e){return a.apply(this,arguments)}return r}()})}.bind(this),500)},touchend:function(){clearInterval(this.Loop)},OnclickSpecifications:function(e){this.dataLoadState={pullDownRefresh:!1,reachBottom:!1},this.LoupanList=[],this.queryPage.page=1,this.queryPage.total=0,0==e?(this.Specifications=!1,this.queryPage.s="CanvasSize.list"):(this.Specifications=!0,this.queryPage.s="CanvasSize.mylist"),this.loadGoodsList(r.default.DATA_DIRECTION.UP)},direction:function(){this.directionState=!this.directionState;var e=this.pixel_Width,t=this.pixel_Height;this.pixel_Width=t,this.pixel_Height=e,this.inputWidth=t/this.convert_rate,this.inputHeight=e/this.convert_rate,this.wValue=t,this.hValue=e},equalRatio:function(){this.equalRatioState=!this.equalRatioState,this.wValue=this.pixel_Width,this.hValue=this.pixel_Height},onConfirm:function(e){this.companyValue!=e.label&&(this.companyValue=e.label,0==e.value[0]?this.convert_rate=this.OldConvert_rate:1==e.value[0]&&(this.convert_rate=10*this.OldConvert_rate),this.inputHeight=this.previewHeight/this.convert_rate,this.inputWidth=this.previewWidth/this.convert_rate,this.setData({inputWidth:this.previewWidth/this.convert_rate}),this.setData({inputHeight:this.previewHeight/this.convert_rate}))},moneyChangeWidth:function(e){var t=this.moneyone(e.detail.value),i=null;this.setData({inputWidth:t}),this.equalRatioState?(this.setData({inputHeight:(t/(this.wValue/this.hValue)).toFixed(2)}),i=(t/(this.wValue/this.hValue)).toFixed(2)):this.setData({inputHeight:this.inputHeight}),Number(t)>Number(this.render_cove_width)/this.convert_rate&&(t=Number(this.render_cove_width)/this.convert_rate,this.setData({inputWidth:t}),uni.showToast({icon:"success",title:this.$i18n.messages[this.$i18n.locale]["宽度最大值"]+t,duration:2e3})),Number(i)>Number(this.render_cove_height)/this.convert_rate&&(i=Number(this.render_cove_height)/this.convert_rate,this.setData({inputHeight:i})),this.previewWidth=this.inputWidth*this.convert_rate,this.previewHeight=this.inputHeight*this.convert_rate,this.pixel_Width=this.previewWidth,this.pixel_Height=this.previewHeight,this.getWindowScale();var a=Number(this.inputWidth),n=Number(this.inputHeight);this.filletScale=a>n?a/100:n/100;var r=Math.floor(this.newDefalutFilletData*this.filletScale);return this.defalutFillet=Math.floor(r*(this.pixel_Width*this.pixel_scale/this.inputWidth)),this.$refs["NumSlider"].initFilletRadius(this.newDefalutFilletData,this.filletScale),t},moneyChangeHeight:function(e){var t=null,i=this.moneyone(e.detail.value);this.setData({inputHeight:i}),this.equalRatioState?(this.setData({inputWidth:(i/(this.hValue/this.wValue)).toFixed(2)}),t=(i/(this.hValue/this.wValue)).toFixed(2)):this.setData({inputWidth:this.inputWidth}),Number(t)>Number(this.render_cove_width)/this.convert_rate&&(t=Number(this.render_cove_width)/this.convert_rate,this.setData({inputWidth:t})),Number(i)>Number(this.render_cove_height)/this.convert_rate&&(i=Number(this.render_cove_height)/this.convert_rate,this.setData({inputHeight:i}),uni.showToast({icon:"success",title:this.$i18n.messages[this.$i18n.locale]["高度最大值"]+i,duration:2e3})),this.previewWidth=this.inputWidth*this.convert_rate,this.previewHeight=this.inputHeight*this.convert_rate,this.pixel_Width=this.previewWidth,this.pixel_Height=this.previewHeight,this.getWindowScale();var a=Number(this.inputWidth),n=Number(this.inputHeight);this.filletScale=a>n?a/100:n/100;var r=Math.floor(this.newDefalutFilletData*this.filletScale);return this.defalutFillet=Math.floor(r*(this.pixel_Width*this.pixel_scale/this.inputWidth)),this.$refs["NumSlider"].initFilletRadius(this.newDefalutFilletData,this.filletScale),i},getWindowScale:function(){this.pixel_Width>this.data.windowWidth*this.pixelScale?this.pixel_scale=this.data.windowWidth*this.pixelScale/this.pixel_Width:this.pixel_Width<this.data.windowWidth*this.pixelScale&&this.pixel_Height<this.data.windowHeight*this.pixelScale&&(this.pixel_scale=1),this.pixel_Height>this.data.windowHeight*this.pixelScale?this.data.windowHeight*this.pixelScale/this.pixel_Height<this.pixel_scale&&(this.pixel_scale=this.data.windowHeight*this.pixelScale/this.pixel_Height):this.pixel_Width<this.data.windowWidth*this.pixelScale&&this.pixel_Height<this.data.windowHeight*this.pixelScale&&(this.pixel_scale=1)},setData:function(e){var t,i,a=this,n=[];Object.keys(e).forEach((function(r){n=r.split("."),t=e[r],i=a.$data,n.forEach((function(e,r){r+1==n.length?a.$set(i,e,t):i[e]||a.$set(i,e,{}),i=i[e]}))}))},moneyone:function(e){var t=e.toString();return 0==t.indexOf(".")?t="1"+t:0==t.indexOf("0")&&(t=""),t=t.replace(/[^\d.]/g,""),t=t.replace(/\.{2,}/g,"."),t=t.replace(".","$#$").replace(/\./g,"").replace("$#$","."),t=t.replace(/^(\-)*(\d+)\.(\d\d).*$/,"$1$2.$3"),t.indexOf(".")<0&&""!=t&&(t=parseFloat(t)),t},onChange:function(e){},onCancel:function(e){},totop:function(){uni.pageScrollTo({scrollTop:0,duration:300})},loadGoodsList:function(e){var t=this;if(!this.dataLoadState.pullDownRefresh&&!this.dataLoadState.reachBottom){if(uni.showLoading({title:"Loading...",mask:!0}),this.dataLoadState.pullDownRefresh=e===r.default.DATA_DIRECTION.UP,this.dataLoadState.reachBottom=e===r.default.DATA_DIRECTION.DOWN,this.dataLoadState.reachBottom&&Math.ceil(this.queryPage.total/this.queryPage.per_page)<this.queryPage.page)return setTimeout((function(){uni.showToast({title:t.$i18n.messages[t.$i18n.locale]["没有更多数据了"],icon:"none"})}),500);o.default.queryList(this.queryPage).then((function(e){var i=t.LoupanList.concat(e.data);t.LoupanList=i,t.queryPage.total=e.total,t.queryPage.per_page=e.per_page,t.dataLoadState.pullDownRefresh&&uni.stopPullDownRefresh(),t.dataLoadState.pullDownRefresh=!1,t.dataLoadState.reachBottom=!1,uni.hideLoading()})).catch((function(e){t.dataLoadState.pullDownRefresh&&uni.stopPullDownRefresh(),t.dataLoadState.pullDownRefresh=!1,t.dataLoadState.reachBottom=!1,uni.hideLoading()}))}},loadMore:function(){},getCustomSizeInfo:function(){var e=this,t={s:"Product.getCustomize",machine_id:this.queryPage.machine_id};o.default.queryList(t).then((function(t){var i=e.render_cove_width/e.OldConvert_rate,a=e.render_cove_height/e.OldConvert_rate;e.good_id=t.id,e.good=t,e.wValue=i*e.OldConvert_rate,e.hValue=a*e.OldConvert_rate,e.previewWidth=i*e.OldConvert_rate,e.previewHeight=a*e.OldConvert_rate,e.inputWidth=i,e.inputHeight=a,e.pixel_Width=i*e.OldConvert_rate,e.pixel_Height=a*e.OldConvert_rate,e.getWindowScale();var n=Number(e.inputWidth),r=Number(e.inputHeight);e.filletScale=n>r?n/100:r/100,e.$refs["NumSlider"].initFilletRadius(that.newDefalutFilletData,that.filletScale)})).catch((function(e){}))},getDetailMachine:function(){this.getCustomSizeInfo()}},onReachBottom:function(){var e=this;if(this.LoupanList.length<12)return setTimeout((function(){uni.showToast({title:e.$i18n.messages[e.$i18n.locale]["没有更多数据了"],icon:"none"})}),500);this.queryPage.page=this.queryPage.page+1,this.loadGoodsList(r.default.DATA_DIRECTION.DOWN)},onLoad:function(t){this.sliderdefaultWith=uni.upx2px(280)+22;var i=this;t&&(this.machineDetail=JSON.parse(t.machineDetail),e.log(this.machineDetail),this.machineDetail&&(this.render_cove_width=this.machineDetail.size.width*this.OldConvert_rate,this.render_cove_height=this.machineDetail.size.height*this.OldConvert_rate)),wx.getSystemInfo({success:function(e){var a=e.windowWidth/750;i.data.windowWidth=e.windowWidth,i.data.windowHeight=e.windowHeight;var n=e.windowHeight/1452;i.heiPixelRate=n,i.data.pixelRate=a,t&&(i.queryPage.machine_id=t.machine_id,i.parameter.machine_id=t.machine_id,i.LoupanList=[],i.getDetailMachine(),t.isFirstPage&&(i.isFirstPage=t.isFirstPage))}})},created:function(){},onShow:function(){}};t.default=h}).call(this,i("5a52")["default"])},"32cd":function(e,t,i){"use strict";i.r(t);var a=i("c531"),n=i("8730");for(var r in n)"default"!==r&&function(e){i.d(t,e,(function(){return n[e]}))}(r);i("fbca");var l,o=i("f0c5"),s=Object(o["a"])(n["default"],a["b"],a["c"],!1,null,"4aba4971",null,!1,a["a"],l);t["default"]=s.exports},"3b3e":function(e,t,i){var a=i("24fb");t=a(!1),t.push([e.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */uni-page-body[data-v-70c41e0b]{background:#101014}.equalRatioAxtive[data-v-70c41e0b]{color:#e6b01a!important;border-color:#e6b01a!important}.directionAxtive[data-v-70c41e0b]{border-color:#e6b01a!important}.classificationLeft[data-v-70c41e0b]{background:#e6b01a!important}.classificationRight[data-v-70c41e0b]{background:#e6b01a!important}.previewAxtiveLeft[data-v-70c41e0b]{background:#e6b01a;box-shadow:0 %?19?% %?48?% %?1?% rgba(20,31,62,.35);border-radius:%?50?% %?50?% 0 %?50?%}.previewAxtiveRight[data-v-70c41e0b]{background:#e6b01a;box-shadow:0 %?19?% %?48?% %?1?% rgba(20,31,62,.35);border-radius:%?50?% %?50?% %?50?% 0}.eq_list[data-v-70c41e0b]{width:calc(100% - %?60?%);margin:%?20?% auto;border-radius:%?10?%;overflow:hidden;color:#fff}.eq_list .eq_list_div[data-v-70c41e0b]{padding:%?40?% %?20?%;display:flex;align-items:center;border-bottom:1px solid #282932}.to-top[data-v-70c41e0b]{position:fixed;bottom:%?150?%;right:%?30?%;width:%?80?%;height:%?80?%;border-radius:50%;text-align:center;line-height:%?80?%;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);background:#000;opacity:.5;z-index:999}.to-top-icon[data-v-70c41e0b]{color:#fff}.edit-address .form[data-v-70c41e0b]{height:100%;color:#fff}.edit-address .form .item[data-v-70c41e0b]{height:%?100?%;display:flex;align-items:center;font-size:%?28?%;padding:0 %?30?%;width:calc(100% - %?60?%)}.edit-address .form .item .text[data-v-70c41e0b]{width:%?200?%}.edit-address .form .item .value[data-v-70c41e0b]{width:%?300?%;margin-left:auto;background:#212027;text-align:center;border-radius:%?10?%;padding:%?15?% 0;color:#fff;display:flex;align-items:center}.edit-address .footer[data-v-70c41e0b]{position:fixed;bottom:%?20?%;width:100%}.edit-address .footer .footer_but[data-v-70c41e0b]{margin:auto;color:#fff;text-align:center;line-height:%?88?%;width:%?300?%;height:%?88?%;background:linear-gradient(92deg,#e6b01a,#f29f3d);box-shadow:0 %?19?% %?48?% %?1?% rgba(20,31,62,.35);border-radius:%?50?%}body.?%PAGE?%[data-v-70c41e0b]{background:#101014}',""]),e.exports=t},"400e":function(e,t,i){"use strict";i.r(t);var a=i("23a9"),n=i.n(a);for(var r in a)"default"!==r&&function(e){i.d(t,e,(function(){return a[e]}))}(r);t["default"]=n.a},"41b6":function(e,t,i){var a=i("86e2");a.__esModule&&(a=a.default),"string"===typeof a&&(a=[[e.i,a,""]]),a.locals&&(e.exports=a.locals);var n=i("4f06").default;n("efe991ca",a,!0,{sourceMap:!1,shadowMode:!1})},"47ee":function(e,t,i){"use strict";var a=i("41b6"),n=i.n(a);n.a},"5ba0":function(e,t,i){var a=i("3b3e");a.__esModule&&(a=a.default),"string"===typeof a&&(a=[[e.i,a,""]]),a.locals&&(e.exports=a.locals);var n=i("4f06").default;n("2a12ec2a",a,!0,{sourceMap:!1,shadowMode:!1})},"5e43":function(e,t,i){"use strict";var a;i.d(t,"b",(function(){return n})),i.d(t,"c",(function(){return r})),i.d(t,"a",(function(){return a}));var n=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("v-uni-view",{staticClass:"edit-address full-height full-width"},[i("v-uni-view",{staticClass:"form full-width"},[i("v-uni-view",{staticStyle:{width:"100%",height:"70upx",display:"flex","align-items":"center","justify-content":"center"}},[i("v-uni-view",{staticStyle:{display:"flex","font-size":"30upx",margin:"auto",width:"440upx",height:"70upx",background:"#282932","border-radius":"50upx",color:"#FFFFFF"}},[i("v-uni-view",{class:{previewAxtiveLeft:!e.preview},staticStyle:{"line-height":"70upx","text-align":"center",width:"220upx"},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.onclickTitle(!1)}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["自定义尺寸"]))]),i("v-uni-view",{class:{previewAxtiveRight:e.preview},staticStyle:{"line-height":"70upx","text-align":"center",width:"220upx"},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.onclickTitle(!0)}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["预置尺寸"]))])],1)],1),e.preview?e._e():i("v-uni-view",{staticClass:"full-width",staticStyle:{height:"calc(100% - 160upx)",overflow:"scroll"},attrs:{"scroll-y":!0}},[i("v-uni-view",{staticStyle:{height:"700upx",overflow:"hidden",margin:"0upx auto 40upx",display:"flex","margin-top":"10upx","justify-content":"center","align-items":"center"},style:{width:e.pixel_Width*e.pixel_scale+"px",borderRadius:e.defalutFillet+"px"}},[i("v-uni-view",{staticStyle:{background:"#FFFFFF",margin:"auto","box-shadow":"0px 2px 6px 0px rgba(0,0,0,0.5)"},style:{width:e.pixel_Width*e.pixel_scale+"px",height:e.pixel_Height*e.pixel_scale+"px",borderRadius:e.defalutFillet+"px"}})],1),i("v-uni-view",{staticStyle:{position:"relative"}},[i("v-uni-view",{staticStyle:{display:"flex","align-items":"center","justify-content":"center","margin-top":"5upx"}},[i("v-uni-view",{staticStyle:{"font-size":"30upx","font-weight":"400",color:"#FFFFFF",width:"240upx"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["物料宽度"])+":")]),i("v-uni-view",{staticStyle:{width:"282upx",height:"66upx",background:"#282932","border-radius":"30upx",display:"flex","align-items":"center"}},[i("v-uni-input",{staticStyle:{color:"#FFFFFF","font-size":"28upx","padding-left":"35upx",width:"200upx"},attrs:{type:"digit",placeholder:e.$i18n.messages[e.$i18n.locale]["请输入宽度"],value:e.inputWidth},on:{input:function(t){arguments[0]=t=e.$handleEvent(t),e.moneyChangeWidth.apply(void 0,arguments)}}}),i("v-uni-view",{staticStyle:{color:"#898989","font-size":"26upx",width:"82upx"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale][e.companyValue]))])],1)],1),i("v-uni-view",{staticStyle:{display:"flex","align-items":"center","justify-content":"center","margin-top":"20upx",position:"relative"}},[i("v-uni-view",{staticStyle:{"font-size":"30upx","font-weight":"400",color:"#FFFFFF",width:"240upx"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["物料高度"])+":")]),i("v-uni-view",{staticStyle:{width:"282upx",height:"66upx",background:"#282932","border-radius":"30upx",display:"flex","align-items":"center"}},[i("v-uni-input",{staticStyle:{color:"#FFFFFF","font-size":"28upx","padding-left":"35upx",width:"200upx"},attrs:{type:"digit",value:e.inputHeight,placeholder:e.$i18n.messages[e.$i18n.locale]["请输入高度"]},on:{input:function(t){arguments[0]=t=e.$handleEvent(t),e.moneyChangeHeight.apply(void 0,arguments)}}}),i("v-uni-view",{staticStyle:{color:"#898989","font-size":"26upx",width:"82upx"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale][e.companyValue]))])],1)],1),i("v-uni-view",{staticStyle:{display:"flex","align-items":"center","justify-content":"center","margin-top":"25upx"}},[i("v-uni-view",{staticStyle:{"font-size":"30upx","font-weight":"400",color:"#FFFFFF",width:"240upx"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["圆角半径"])+":")]),i("v-uni-view",{staticStyle:{width:"282upx",height:"66upx",display:"flex","align-items":"center","margin-top":"5upx"}},[i("NumSlider",{ref:"NumSlider",attrs:{min:0,max:100,width:e.sliderdefaultWith,disabled:!1,range:!1,leftX:e.sliderdefaultWith},on:{highChange:function(t){arguments[0]=t=e.$handleEvent(t),e.highChange.apply(void 0,arguments)}}})],1)],1)],1)],1),e.preview?i("v-uni-view",{staticClass:"full-width"},[i("v-uni-view",{staticStyle:{height:"90upx",display:"flex","align-items":"center",width:"calc(100% - 60upx)",margin:"auto"}},[i("v-uni-view",{staticStyle:{display:"flex","align-items":"center","font-size":"28upx"}},[i("v-uni-view",{class:{classificationLeft:!e.Specifications},staticStyle:{"line-height":"60upx","text-align":"center",width:"160upx",height:"60upx",background:"#282932","border-radius":"30upx"},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.OnclickSpecifications(0)}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["内置"]))]),i("v-uni-view",{class:{classificationRight:e.Specifications},staticStyle:{"line-height":"60upx","text-align":"center",width:"160upx","margin-left":"20upx",height:"60upx",background:"#282932","border-radius":"30upx"},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.OnclickSpecifications(1)}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["常用"]))])],1)],1),i("v-uni-view",{staticClass:"full-width"},[i("v-uni-view",{staticClass:"full-width",attrs:{"scroll-y":!0},on:{scrolltolower:function(t){arguments[0]=t=e.$handleEvent(t),e.loadMore()}}},[e._l(e.LoupanList,(function(t,a){return i("v-uni-view",{key:a,staticClass:"eq_list",on:{click:function(i){if(!i.type.indexOf("key")&&e._k(i.keyCode,"preven",void 0,i.key,void 0))return null;arguments[0]=i=e.$handleEvent(i),e.refundNumorder(t)},touchstart:function(i){if(!i.type.indexOf("key")&&e._k(i.keyCode,"preven",void 0,i.key,void 0))return null;arguments[0]=i=e.$handleEvent(i),e.touchstart(t,a)},touchend:function(t){if(!t.type.indexOf("key")&&e._k(t.keyCode,"preven",void 0,t.key,void 0))return null;arguments[0]=t=e.$handleEvent(t),e.touchend.apply(void 0,arguments)}}},[i("v-uni-view",{staticClass:"eq_list_div"},[i("v-uni-view",{staticStyle:{"font-size":"30upx","font-weight":"500"}},[e._v(e._s(t.alias_name))]),i("v-uni-view",{staticStyle:{"margin-left":"auto","margin-right":"20upx"}},[i("v-uni-label",{staticClass:"fa fa-angle-right align-right sub-color",staticStyle:{"font-size":"40upx"}})],1)],1)],1)})),0==e.LoupanList.length||null==e.LoupanList.length?i("v-uni-view",{staticClass:"align-center content-color",staticStyle:{position:"absolute",top:"50%",left:"50%",transform:"translate(-50%, -50%)"}},[i("span",{staticClass:"iconfont icon-wushuju",staticStyle:{"font-size":"100upx","text-align":"center",color:"#B2B2B2"}}),i("v-uni-view",{staticStyle:{color:"#B2B2B2","text-align":"center","line-height":"50upx","font-size":"23upx"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["暂无数据"]))])],1):e._e()],2)],1),i("v-uni-view",{staticClass:"to-top content-color",on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.totop()}}},[i("v-uni-view",{staticClass:"fa fa-angle-right to-top-icon"})],1)],1):e._e()],1),i("mpvue-picker",{ref:"mpvuePicker",attrs:{themeColor:"#53B2B0",mode:e.mode,pickerValueDefault:e.pickerValueDefault,pickerValueArray:e.pickerValueArray},on:{onChange:function(t){arguments[0]=t=e.$handleEvent(t),e.onChange.apply(void 0,arguments)},onConfirm:function(t){arguments[0]=t=e.$handleEvent(t),e.onConfirm.apply(void 0,arguments)},onCancel:function(t){arguments[0]=t=e.$handleEvent(t),e.onCancel.apply(void 0,arguments)}}}),e.preview?e._e():i("v-uni-view",{staticClass:"footer"},[i("v-uni-view",{staticClass:"footer_but",attrs:{"hover-class":"hover-class-bg"},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.onSave()}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["确认"]))])],1)],1)},r=[]},"6e9d":function(e,t,i){"use strict";var a;i.d(t,"b",(function(){return n})),i.d(t,"c",(function(){return r})),i.d(t,"a",(function(){return a}));var n=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("v-uni-view",{ref:"slider",staticClass:"m-slider",style:{width:e.width+"px"}},[i("v-uni-view",{staticClass:"u-slider-rail"}),i("v-uni-view",{staticClass:"u-slider-track",style:{left:e.left+"px",width:e.right-e.left+"px"}}),i("v-uni-view",{ref:"right",staticClass:"u-slider-handle",staticStyle:{transform:"translateX(-50%)"},style:{left:e.right+"px"},on:{touchstart:function(t){t.stopPropagation(),t.preventDefault(),arguments[0]=t=e.$handleEvent(t),e.onRightMouseDown.apply(void 0,arguments)},touchmove:function(t){t.stopPropagation(),t.preventDefault(),arguments[0]=t=e.$handleEvent(t),e.onRightMouseMove.apply(void 0,arguments)}}},[i("v-uni-view",{staticStyle:{color:"#F29F3D","font-size":"30upx"}},[e._v(e._s(e.defalutFilletData))])],1)],1)},r=[]},"6fca":function(e,t,i){"use strict";i.r(t);var a=i("6e9d"),n=i("93e7");for(var r in n)"default"!==r&&function(e){i.d(t,e,(function(){return n[e]}))}(r);i("47ee");var l,o=i("f0c5"),s=Object(o["a"])(n["default"],a["b"],a["c"],!1,null,"63a1c8d8",null,!1,a["a"],l);t["default"]=s.exports},"7c21":function(e,t,i){"use strict";i.r(t);var a=i("eb2b"),n=i("0e1b");for(var r in n)"default"!==r&&function(e){i.d(t,e,(function(){return n[e]}))}(r);i("f39d");var l,o=i("f0c5"),s=Object(o["a"])(n["default"],a["b"],a["c"],!1,null,"7c2c874c",null,!1,a["a"],l);t["default"]=s.exports},"814a":function(e,t){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAB5ElEQVR4Xu3bTUrEMBjG8f8cR/AIom5EUTyIOxci3kDEhTsv48LvEwheREHEjQRmoJSkTdp8vW8667ST5zd503TSrmj8s2o8PwvAMgLKCVwDV8A3cAS8l+hKqRK4B846gV+AvVYA+uFN7mdgvwUAW/g/4BB41A7gCn8CPJQIb74z1xxQZfhcANWGzwFQdfjUANWHTwkgInwqADHhUwCICh8bQFz4mAAiw8cCEBs+BoAt/C9wWnJ5G7KsnrMUdoU39/ZPIZ0o2XYqgIrwU0tATfgpAKrChwLcAee9ejUTnqia7883vnOAyvC+I0BteB8A1eHHANSHHwJoIrwL4AK41Tbbu1abtqvAB7DdOUD8pW5oqW0D+AS2Ogf9AMeS1vch9xY2gEvgpuUSMNmbngQ3P34TCGNLYfUIYwDqy8EHQDWCL4BahBAAg9D0HyKbq4MqhNARoA5hKoCacpgDMITQxMbIUDmYJ7+KPvzke0M0dwSIR4gF4CqH6kdCTACRCLEBxCGkABCFkApADEJKABEIqQGqR8gBUDVCLoBqEXICDCEcrN8a8V3BRmuXG8CFYF6Y2omWKuBEJQBsCK/AbkC/ozUtBWACmN0nswv1td56e4uWKuBEJQECupmu6QKQzlbGmZsfAf9EPqRB6TdviAAAAABJRU5ErkJggg=="},"848a":function(e,t,i){"use strict";var a=i("4ea4");Object.defineProperty(t,"__esModule",{value:!0}),t._login=void 0;var n=a(i("c545")),r=i("f439"),l=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,r._request)({url:"/zijie/index/register",params:e,method:"post",contentType:n.default.ContentType.FORM_UTF8})};t._login=l},"86e2":function(e,t,i){var a=i("24fb");t=a(!1),t.push([e.i,".m-slider[data-v-63a1c8d8]{display:inline-block;height:4px;padding:6px 0;position:relative;z-index:9}.m-slider .u-slider-rail[data-v-63a1c8d8]{position:absolute;z-index:99;height:4px;width:100%;background:#f5f5f5;border-radius:2px}.m-slider .u-slider-track[data-v-63a1c8d8]{position:absolute;z-index:99;background:#f29f3d;border-radius:4px;height:4px}.m-slider .u-slider-handle[data-v-63a1c8d8]{position:absolute;z-index:999;width:25px;height:25px;line-height:27px;text-align:center;top:-8px;background:#fff;border:4px solid #f29f3d;border-radius:50%}",""]),e.exports=t},8730:function(e,t,i){"use strict";i.r(t);var a=i("969e"),n=i.n(a);for(var r in a)"default"!==r&&function(e){i.d(t,e,(function(){return a[e]}))}(r);t["default"]=n.a},"88a0":function(e,t,i){var a=i("24fb");t=a(!1),t.push([e.i,'.pickerMask[data-v-4aba4971]{position:fixed;z-index:1000;top:0;right:0;left:0;bottom:0;background:rgba(0,0,0,.6)}.mpvue-picker-content[data-v-4aba4971]{position:fixed;bottom:0;left:0;width:100%;transition:all .3s ease;-webkit-transform:translateY(100%);transform:translateY(100%);z-index:3000}.mpvue-picker-view-show[data-v-4aba4971]{-webkit-transform:translateY(0);transform:translateY(0)}.mpvue-picker__hd[data-v-4aba4971]{display:flex;padding:9px 15px;background-color:#fff;position:relative;text-align:center;font-size:17px}.mpvue-picker__hd[data-v-4aba4971]:after{content:" ";position:absolute;left:0;bottom:0;right:0;height:1px;border-bottom:1px solid #e5e5e5;color:#e5e5e5;-webkit-transform-origin:0 100%;transform-origin:0 100%;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.mpvue-picker__action[data-v-4aba4971]{display:block;flex:1;color:#1aad19}.mpvue-picker__action[data-v-4aba4971]:first-child{text-align:left;color:#888}.mpvue-picker__action[data-v-4aba4971]:last-child{text-align:right}.picker-item[data-v-4aba4971]{text-align:center;line-height:40px;font-size:16px}.mpvue-picker-view[data-v-4aba4971]{position:relative;bottom:0;left:0;width:100%;height:238px;background-color:#fff}',""]),e.exports=t},"8c9b":function(e,t){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NDkxMSwgMjAxMy8xMC8yOS0xMTo0NzoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NEE4RUQ0RjZDNUQzMTFFQjk1RDE4ODIyNDdCMThFM0YiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NEE4RUQ0RjVDNUQzMTFFQjk1RDE4ODIyNDdCMThFM0YiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU4MDAzMzI1NUM4NDExRUJCMzVGOEVEM0Y0MTY5Qjk3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU4MDAzMzI2NUM4NDExRUJCMzVGOEVEM0Y0MTY5Qjk3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+1GX6CgAAAOdJREFUeNrs2usKgzAMBWB78P0feRkD2S+7WU3Sk3ICheIF8mF6UWxmtq0Q2BYJQQbCjlYaYp1+KYhdPEYNsZvnqCDmdM1UyFmC7WihGCQgzvruGCQhwjFIRIRikIwIw2ACIgSDSQh3DCYiXDGYjHDDgADhggEJ4jEGRIhHGJAhbmOQvd2OwoAUMfwKgGKIbo4oiDjNFQQD22XMoAjiLwYDNzBjvpBWBNHNcS8G6GL07VcQQX7HnrEPGp1KVVqCLDxGrtS/rfBETKUliCB1Zi1jHPwqrYql5VlKn0XyFbL66n8tsngLMADyIz1YrCxxiwAAAABJRU5ErkJggg=="},"93e7":function(e,t,i){"use strict";i.r(t);var a=i("04ef"),n=i.n(a);for(var r in a)"default"!==r&&function(e){i.d(t,e,(function(){return a[e]}))}(r);t["default"]=n.a},"969e":function(e,t,i){"use strict";var a=i("4ea4");i("99af"),i("4de4"),i("c975"),i("ace4"),i("a9e3"),i("d3b7"),i("fd87"),i("9a8c"),i("a975"),i("735e"),i("c1ac"),i("d139"),i("3a7b"),i("d5d6"),i("82f8"),i("e91f"),i("60bd"),i("5f96"),i("3280"),i("3fcc"),i("ca91"),i("25a1"),i("cd26"),i("2954"),i("649e"),i("219c"),i("b39a"),i("72f7"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=a(i("ade3")),r={data:function(){return{pickerChangeValue:[],pickerValue:[],pickerValueArrayChange:!0,modeChange:!1,pickerValueSingleArray:[],pickerValueHour:[],pickerValueMinute:[],pickerValueMulArray:[],pickerValueMulTwoOne:[],pickerValueMulTwoTwo:[],pickerValueMulThreeOne:[],pickerValueMulThreeTwo:[],pickerValueMulThreeThree:[],showPicker:!1}},props:{mode:{type:String,default:"selector"},pickerValueArray:{type:Array,default:function(){return[]}},pickerSearchValueArray:{type:Array,default:function(){return[]}},isShowSerach:{type:Boolean,default:function(){}},pickerValueDefault:{type:Array,default:function(){return[]}},deepLength:{type:Number,default:2},themeColor:String},watch:(0,n.default)({pickerValueArray:function(e,t){this.pickerValueArrayChange=!0},mode:function(e,t){this.modeChange=!0}},"pickerValueArray",(function(e){this.initPicker(e)})),methods:{changeSearchContent:function(e){var t=this,i=e.detail.value;i&&""!=i&&null!=i?(this.pickerValueSingleArray=[],this.pickerSearchValueArray.filter((function(e){-1!==e.label.toUpperCase().indexOf(i.toUpperCase())&&t.pickerValueSingleArray.push(e)}))):this.pickerValueSingleArray=this.pickerSearchValueArray},initPicker:function(e){var t=e;if(this.pickerValue=this.pickerValueDefault,"selector"===this.mode)this.pickerValueSingleArray=e;else if("timeSelector"===this.mode){this.modeChange=!1;for(var i=[],a=[],n=0;n<24;n++)i.push({value:n,label:n>9?"".concat(n," 时"):"0".concat(n," 时")});for(var r=0;r<60;r++)a.push({value:r,label:r>9?"".concat(r," 分"):"0".concat(r," 分")});this.pickerValueHour=i,this.pickerValueMinute=a}else if("multiSelector"===this.mode)this.pickerValueMulArray=e;else if("multiLinkageSelector"===this.mode&&2===this.deepLength){for(var l=[],o=[],s=0,u=t.length;s<u;s++)l.push(t[s]);if(2===this.pickerValueDefault.length)for(var c=this.pickerValueDefault[0],h=0,d=t[c].children.length;h<d;h++)o.push(t[c].children[h]);else for(var p=0,f=t[0].children.length;p<f;p++)o.push(t[0].children[p]);this.pickerValueMulTwoOne=l,this.pickerValueMulTwoTwo=o}else if("multiLinkageSelector"===this.mode&&3===this.deepLength){for(var v=[],g=[],m=[],w=0,y=t.length;w<y;w++)v.push(t[w]);if(this.pickerValueDefault=3===this.pickerValueDefault.length?this.pickerValueDefault:[0,0,0],3===this.pickerValueDefault.length){for(var k=this.pickerValueDefault[0],x=0,b=t[k].children.length;x<b;x++)g.push(t[k].children[x]);for(var _=this.pickerValueDefault[1],S=0,A=t[k].children[_].children.length;S<A;S++)m.push(t[k].children[_].children[S])}this.pickerValueMulThreeOne=v,this.pickerValueMulThreeTwo=g,this.pickerValueMulThreeThree=m}},show:function(){var e=this;setTimeout((function(){e.pickerValueArrayChange||e.modeChange?(e.initPicker(e.pickerValueArray),e.showPicker=!0,e.pickerValueArrayChange=!1,e.modeChange=!1):e.showPicker=!0}),0)},maskClick:function(){this.pickerCancel()},pickerCancel:function(){this.showPicker=!1,this._initPickerVale();var e={index:this.pickerValue,value:this._getPickerLabelAndValue(this.pickerValue,this.mode).value,label:this._getPickerLabelAndValue(this.pickerValue,this.mode).label};this.$emit("onCancel",e)},pickerConfirm:function(e){this.showPicker=!1,this._initPickerVale();var t={index:this.pickerValue,value:this._getPickerLabelAndValue(this.pickerValue,this.mode).value,label:this._getPickerLabelAndValue(this.pickerValue,this.mode).label};this.$emit("onConfirm",t)},showPickerView:function(){this.showPicker=!0},pickerChange:function(e){this.pickerValue=e.mp.detail.value;var t={index:this.pickerValue,value:this._getPickerLabelAndValue(this.pickerValue,this.mode).value,label:this._getPickerLabelAndValue(this.pickerValue,this.mode).label};this.$emit("onChange",t)},pickerChangeMul:function(e){if(2===this.deepLength){var t=this.pickerValueArray,i=e.mp.detail.value;if(i[0]!==this.pickerValue[0]){for(var a=[],n=0,r=t[i[0]].children.length;n<r;n++)a.push(t[i[0]].children[n]);this.pickerValueMulTwoTwo=a,i[1]=0}this.pickerValue=i}else if(3===this.deepLength){var l=this.pickerValueArray,o=e.mp.detail.value,s=[],u=[];if(o[0]!==this.pickerValue[0]){this.pickerValueMulThreeTwo=[];for(var c=0,h=l[o[0]].children.length;c<h;c++)s.push(l[o[0]].children[c]);for(var d=0,p=l[o[0]].children[0].children.length;d<p;d++)u.push(l[o[0]].children[0].children[d]);o[1]=0,o[2]=0,this.pickerValueMulThreeTwo=s,this.pickerValueMulThreeThree=u}else if(o[1]!==this.pickerValue[1]){this.pickerValueMulThreeThree=[],s=this.pickerValueMulThreeTwo;for(var f=0,v=l[o[0]].children[o[1]].children.length;f<v;f++)u.push(l[o[0]].children[o[1]].children[f]);o[2]=0,this.pickerValueMulThreeThree=u}this.pickerValue=o}var g={index:this.pickerValue,value:this._getPickerLabelAndValue(this.pickerValue,this.mode).value,label:this._getPickerLabelAndValue(this.pickerValue,this.mode).label};this.$emit("onChange",g)},_getPickerLabelAndValue:function(e,t){var i,a=[];if("selector"===t)null!=this.pickerValueSingleArray&&this.pickerValueSingleArray.length>0&&(i=this.pickerValueSingleArray[e].label,a.push(this.pickerValueSingleArray[e].value));else if("timeSelector"===t)i="".concat(this.pickerValueHour[e[0]].label,"-").concat(this.pickerValueMinute[e[1]].label),a.push(this.pickerValueHour[e[0]].value),a.push(this.pickerValueHour[e[1]].value);else if("multiSelector"===t)for(var n=0;n<e.length;n++)n>0?i+=this.pickerValueMulArray[n][e[n]].label+(n===e.length-1?"":"-"):i=this.pickerValueMulArray[n][e[n]].label+"-",a.push(this.pickerValueMulArray[n][e[n]].value);else"multiLinkageSelector"===t&&(i=2===this.deepLength?"".concat(this.pickerValueMulTwoOne[e[0]].label).concat(this.pickerValueMulTwoTwo[e[1]].label):"".concat(this.pickerValueMulThreeOne[e[0]].label,"-").concat(this.pickerValueMulThreeTwo[e[1]].label,"-").concat(this.pickerValueMulThreeThree[e[2]].label),2===this.deepLength?(a.push(this.pickerValueMulTwoOne[e[0]].value),a.push(this.pickerValueMulTwoTwo[e[1]].value)):(a.push(this.pickerValueMulThreeOne[e[0]].value),a.push(this.pickerValueMulThreeTwo[e[1]].value),a.push(this.pickerValueMulThreeThree[e[2]].value)));return{label:i,value:a}},_initPickerVale:function(){0===this.pickerValue.length&&("selector"===this.mode?this.pickerValue=[0]:"multiSelector"===this.mode?this.pickerValue=new Int8Array(this.pickerValueArray.length):"multiLinkageSelector"===this.mode&&2===this.deepLength?this.pickerValue=[0,0]:"multiLinkageSelector"===this.mode&&3===this.deepLength&&(this.pickerValue=[0,0,0]))}}};t.default=r},"96cf":function(e,t){!function(t){"use strict";var i,a=Object.prototype,n=a.hasOwnProperty,r="function"===typeof Symbol?Symbol:{},l=r.iterator||"@@iterator",o=r.asyncIterator||"@@asyncIterator",s=r.toStringTag||"@@toStringTag",u="object"===typeof e,c=t.regeneratorRuntime;if(c)u&&(e.exports=c);else{c=t.regeneratorRuntime=u?e.exports:{},c.wrap=k;var h="suspendedStart",d="suspendedYield",p="executing",f="completed",v={},g={};g[l]=function(){return this};var m=Object.getPrototypeOf,w=m&&m(m(E([])));w&&w!==a&&n.call(w,l)&&(g=w);var y=S.prototype=b.prototype=Object.create(g);_.prototype=y.constructor=S,S.constructor=_,S[s]=_.displayName="GeneratorFunction",c.isGeneratorFunction=function(e){var t="function"===typeof e&&e.constructor;return!!t&&(t===_||"GeneratorFunction"===(t.displayName||t.name))},c.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,S):(e.__proto__=S,s in e||(e[s]="GeneratorFunction")),e.prototype=Object.create(y),e},c.awrap=function(e){return{__await:e}},A(C.prototype),C.prototype[o]=function(){return this},c.AsyncIterator=C,c.async=function(e,t,i,a){var n=new C(k(e,t,i,a));return c.isGeneratorFunction(t)?n:n.next().then((function(e){return e.done?e.value:n.next()}))},A(y),y[s]="Generator",y[l]=function(){return this},y.toString=function(){return"[object Generator]"},c.keys=function(e){var t=[];for(var i in e)t.push(i);return t.reverse(),function i(){while(t.length){var a=t.pop();if(a in e)return i.value=a,i.done=!1,i}return i.done=!0,i}},c.values=E,I.prototype={constructor:I,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=i,this.done=!1,this.delegate=null,this.method="next",this.arg=i,this.tryEntries.forEach(L),!e)for(var t in this)"t"===t.charAt(0)&&n.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=i)},stop:function(){this.done=!0;var e=this.tryEntries[0],t=e.completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function a(a,n){return o.type="throw",o.arg=e,t.next=a,n&&(t.method="next",t.arg=i),!!n}for(var r=this.tryEntries.length-1;r>=0;--r){var l=this.tryEntries[r],o=l.completion;if("root"===l.tryLoc)return a("end");if(l.tryLoc<=this.prev){var s=n.call(l,"catchLoc"),u=n.call(l,"finallyLoc");if(s&&u){if(this.prev<l.catchLoc)return a(l.catchLoc,!0);if(this.prev<l.finallyLoc)return a(l.finallyLoc)}else if(s){if(this.prev<l.catchLoc)return a(l.catchLoc,!0)}else{if(!u)throw new Error("try statement without catch or finally");if(this.prev<l.finallyLoc)return a(l.finallyLoc)}}}},abrupt:function(e,t){for(var i=this.tryEntries.length-1;i>=0;--i){var a=this.tryEntries[i];if(a.tryLoc<=this.prev&&n.call(a,"finallyLoc")&&this.prev<a.finallyLoc){var r=a;break}}r&&("break"===e||"continue"===e)&&r.tryLoc<=t&&t<=r.finallyLoc&&(r=null);var l=r?r.completion:{};return l.type=e,l.arg=t,r?(this.method="next",this.next=r.finallyLoc,v):this.complete(l)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),v},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var i=this.tryEntries[t];if(i.finallyLoc===e)return this.complete(i.completion,i.afterLoc),L(i),v}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var i=this.tryEntries[t];if(i.tryLoc===e){var a=i.completion;if("throw"===a.type){var n=a.arg;L(i)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,a){return this.delegate={iterator:E(e),resultName:t,nextLoc:a},"next"===this.method&&(this.arg=i),v}}}function k(e,t,i,a){var n=t&&t.prototype instanceof b?t:b,r=Object.create(n.prototype),l=new I(a||[]);return r._invoke=V(e,i,l),r}function x(e,t,i){try{return{type:"normal",arg:e.call(t,i)}}catch(a){return{type:"throw",arg:a}}}function b(){}function _(){}function S(){}function A(e){["next","throw","return"].forEach((function(t){e[t]=function(e){return this._invoke(t,e)}}))}function C(e){function t(i,a,r,l){var o=x(e[i],e,a);if("throw"!==o.type){var s=o.arg,u=s.value;return u&&"object"===typeof u&&n.call(u,"__await")?Promise.resolve(u.__await).then((function(e){t("next",e,r,l)}),(function(e){t("throw",e,r,l)})):Promise.resolve(u).then((function(e){s.value=e,r(s)}),(function(e){return t("throw",e,r,l)}))}l(o.arg)}var i;function a(e,a){function n(){return new Promise((function(i,n){t(e,a,i,n)}))}return i=i?i.then(n,n):n()}this._invoke=a}function V(e,t,i){var a=h;return function(n,r){if(a===p)throw new Error("Generator is already running");if(a===f){if("throw"===n)throw r;return F()}i.method=n,i.arg=r;while(1){var l=i.delegate;if(l){var o=M(l,i);if(o){if(o===v)continue;return o}}if("next"===i.method)i.sent=i._sent=i.arg;else if("throw"===i.method){if(a===h)throw a=f,i.arg;i.dispatchException(i.arg)}else"return"===i.method&&i.abrupt("return",i.arg);a=p;var s=x(e,t,i);if("normal"===s.type){if(a=i.done?f:d,s.arg===v)continue;return{value:s.arg,done:i.done}}"throw"===s.type&&(a=f,i.method="throw",i.arg=s.arg)}}}function M(e,t){var a=e.iterator[t.method];if(a===i){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=i,M(e,t),"throw"===t.method))return v;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return v}var n=x(a,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,v;var r=n.arg;return r?r.done?(t[e.resultName]=r.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=i),t.delegate=null,v):r:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,v)}function D(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function L(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function I(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(D,this),this.reset(!0)}function E(e){if(e){var t=e[l];if(t)return t.call(e);if("function"===typeof e.next)return e;if(!isNaN(e.length)){var a=-1,r=function t(){while(++a<e.length)if(n.call(e,a))return t.value=e[a],t.done=!1,t;return t.value=i,t.done=!0,t};return r.next=r}}return{next:F}}function F(){return{value:i,done:!0}}}(function(){return this||"object"===typeof self&&self}()||Function("return this")())},9732:function(e,t,i){var a=i("88a0");a.__esModule&&(a=a.default),"string"===typeof a&&(a=[[e.i,a,""]]),a.locals&&(e.exports=a.locals);var n=i("4f06").default;n("43c6ff04",a,!0,{sourceMap:!1,shadowMode:!1})},a272:function(e,t,i){"use strict";var a=i("4ea4");Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=i("848a"),r=i("f9f8"),l=a(i("8d20")),o={parseL:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return e},cacheAppUser:function(e){return l.default.setSync(l.default.$Keys.app.APP_USER,e)},cacheWxInfo:function(e){return l.default.setSync(l.default.$Keys.app.WX_INFO,e)},cacheUserInfo:function(e){return l.default.setSync(l.default.$Keys.app.USER_INFO,e)},getCacheAppUser:function(){return l.default.getSync(l.default.$Keys.app.APP_USER)},getCacheWxInfo:function(){return l.default.getSync(l.default.$Keys.app.wxInfo)},getCacheUserInfo:function(){return l.default.getSync(l.default.$Keys.app.USER_INFO)},setAppUser:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,r._dispatch)("setAppUser",{openid:e.openId,token:e.token,tokenHead:e.tokenHead,userid:e.memberId,currentTime:(new Date).getTime()})},setToken:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return(0,r._dispatch)("setToken",e)},setUserInfo:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,r._dispatch)("setUserInfo",e)},setWxInfo:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,r._dispatch)("setWxInfo",e)},getAppUser:function(){return(0,r._getters)("appUser",{})},getWxInfo:function(){return(0,r._getters)("wxInfo",{})},getUserInfo:function(){return(0,r._getters)("userInfo",{})},login:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,r._query)({api:n._login,params:e,callBack:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};o.setAppUser(e),o.cacheAppUser(o.getAppUser()),o.setUserInfo(e),o.cacheUserInfo(o.getUserInfo())}})}},s=o;t.default=s},b48e:function(e,t,i){var a=i("cf78");a.__esModule&&(a=a.default),"string"===typeof a&&(a=[[e.i,a,""]]),a.locals&&(e.exports=a.locals);var n=i("4f06").default;n("164d5150",a,!0,{sourceMap:!1,shadowMode:!1})},c531:function(e,t,i){"use strict";var a;i.d(t,"b",(function(){return n})),i.d(t,"c",(function(){return r})),i.d(t,"a",(function(){return a}));var n=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("v-uni-view",{staticClass:"mpvue-picker"},[i("v-uni-view",{class:{pickerMask:e.showPicker},attrs:{catchtouchmove:"true"},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.maskClick.apply(void 0,arguments)}}}),i("v-uni-view",{staticClass:"mpvue-picker-content ",class:{"mpvue-picker-view-show":e.showPicker}},[i("v-uni-view",{staticClass:"mpvue-picker__hd",attrs:{catchtouchmove:"true"}},[i("v-uni-view",{staticClass:"mpvue-picker__action",on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.pickerCancel.apply(void 0,arguments)}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["取消"]))]),e.isShowSerach?i("v-uni-view",{staticStyle:{"border-radius":"20upx",background:"#EEE",height:"60upx",display:"block",flex:"1.5"}},[i("v-uni-input",{staticStyle:{color:"#333","margin-top":"8upx"},attrs:{maxlength:"10",placeholder:e.$i18n.messages[e.$i18n.locale]["搜索"]},on:{input:function(t){arguments[0]=t=e.$handleEvent(t),e.changeSearchContent.apply(void 0,arguments)}}})],1):e._e(),i("v-uni-view",{staticClass:"mpvue-picker__action",style:{color:e.themeColor},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.pickerConfirm.apply(void 0,arguments)}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["确认"]))])],1),"selector"===e.mode&&0==e.pickerValueSingleArray.length&&e.isShowSerach?i("v-uni-view",{staticClass:"mpvue-picker-view"}):e._e(),"selector"===e.mode&&e.pickerValueSingleArray.length>0?i("v-uni-picker-view",{staticClass:"mpvue-picker-view",attrs:{"indicator-style":"height: 40px;",value:e.pickerValue},on:{change:function(t){arguments[0]=t=e.$handleEvent(t),e.pickerChange.apply(void 0,arguments)}}},[[i("v-uni-picker-view-column",e._l(e.pickerValueSingleArray,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1)]],2):e._e(),"timeSelector"===e.mode?i("v-uni-picker-view",{staticClass:"mpvue-picker-view",attrs:{"indicator-style":"height: 40px;",value:e.pickerValue},on:{change:function(t){arguments[0]=t=e.$handleEvent(t),e.pickerChange.apply(void 0,arguments)}}},[[i("v-uni-picker-view-column",e._l(e.pickerValueHour,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1),i("v-uni-picker-view-column",e._l(e.pickerValueMinute,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1)]],2):e._e(),"multiSelector"===e.mode?i("v-uni-picker-view",{staticClass:"mpvue-picker-view",attrs:{"indicator-style":"height: 40px;",value:e.pickerValue},on:{change:function(t){arguments[0]=t=e.$handleEvent(t),e.pickerChange.apply(void 0,arguments)}}},[e._l(e.pickerValueMulArray.length,(function(t,a){return[i("v-uni-picker-view-column",e._l(e.pickerValueMulArray[t],(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1)]}))],2):e._e(),"multiLinkageSelector"===e.mode&&2===e.deepLength?i("v-uni-picker-view",{staticClass:"mpvue-picker-view",attrs:{"indicator-style":"height: 40px;",value:e.pickerValue},on:{change:function(t){arguments[0]=t=e.$handleEvent(t),e.pickerChangeMul.apply(void 0,arguments)}}},[[i("v-uni-picker-view-column",e._l(e.pickerValueMulTwoOne,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1),i("v-uni-picker-view-column",e._l(e.pickerValueMulTwoTwo,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1)]],2):e._e(),"multiLinkageSelector"===e.mode&&3===e.deepLength?i("v-uni-picker-view",{staticClass:"mpvue-picker-view",attrs:{"indicator-style":"height: 40px;",value:e.pickerValue},on:{change:function(t){arguments[0]=t=e.$handleEvent(t),e.pickerChangeMul.apply(void 0,arguments)}}},[[i("v-uni-picker-view-column",e._l(e.pickerValueMulThreeOne,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1),i("v-uni-picker-view-column",e._l(e.pickerValueMulThreeTwo,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1),i("v-uni-picker-view-column",e._l(e.pickerValueMulThreeThree,(function(t,a){return i("v-uni-view",{key:a,staticClass:"picker-item"},[e._v(e._s(t.label))])})),1)]],2):e._e()],1)],1)},r=[]},cf78:function(e,t,i){var a=i("24fb");t=a(!1),t.push([e.i,".head[data-v-7c2c874c]{position:fixed;width:%?750?%;z-index:888;align-items:center}.title[data-v-7c2c874c]{position:fixed;width:%?750?%;text-align:center;line-height:32px;height:32px}.back[data-v-7c2c874c]{position:fixed;width:%?81?%;text-align:center;line-height:32px;height:32px;font-size:%?32?%;font-weight:900;z-index:9;align-items:center}",""]),e.exports=t},e749:function(e,t){e.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAnCAYAAADkUNMNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NDkxMSwgMjAxMy8xMC8yOS0xMTo0NzoxNiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MURCRjQ3RTJDNUQzMTFFQkI4NUVFQ0VBMjYyMzIwNzMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MURCRjQ3RTFDNUQzMTFFQkI4NUVFQ0VBMjYyMzIwNzMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjczQjA5RkE3NUIwNzExRUJBMkEwQjRGRDJDQjQyRjEwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjczQjA5RkE4NUIwNzExRUJBMkEwQjRGRDJDQjQyRjEwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+AOUs4gAAASNJREFUeNq0l98LgjAQx50JRvUSRS/9//9VD/nSS0IF/mhtc01BM5267W4HIhzy+R6Hu/uOSCkDXxFigRitrjTnBXuLpEvWlUOfd85S2YtPyZM6D66cFjyNN9Ghn6uEPIHbogM30BVJQW0ZtqKNMmOP9htvYCe4KdgabgO2gtuCjeEuYCO4K3gRDgHPwqHgSTgGWAvHAo/gmOA/ODa4g/sA/+a5DNbaNRWSEjTsu7ZkLNNVr2b2DdQWXwLjXxFRQH+IkASmjz+CwPzgAgosj1yAgNmycBQwX3MOAnYL2lLA3lpYCLiZIkMBdztnIACzzhMCyqNfwBY63kY7ZfjzYV7w6oxys9AJkJC8mjfWnYgW4k5IsFe8p/LsR1S41wuXLr4CDADMzr+hAB/Z7wAAAABJRU5ErkJggg=="},eb2b:function(e,t,i){"use strict";var a;i.d(t,"b",(function(){return n})),i.d(t,"c",(function(){return r})),i.d(t,"a",(function(){return a}));var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("v-uni-view",{staticStyle:{position:"fixed","z-index":"999"},style:{height:e.height+"px",background:e.background}},[a("v-uni-view",{staticClass:"head",style:{height:e.height+"px",background:e.background}},[e.backShow?a("v-uni-view",{staticClass:"back",style:{top:e.top+"px",color:e.color},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.back.apply(void 0,arguments)}}},[1==e.worksid?a("v-uni-image",{staticStyle:{width:"39upx",height:"39upx","margin-top":"calc((32px - 39upx)/2)","margin-left":"auto","margin-right":"auto"},attrs:{src:i("8c9b"),mode:"aspectFit"}}):e._e(),0==e.worksid?a("v-uni-image",{staticStyle:{width:"23upx",height:"39upx","margin-top":"calc((32px - 39upx)/2)","margin-left":"auto","margin-right":"auto"},attrs:{src:i("e749"),mode:"aspectFit"}}):e._e(),4==e.worksid?a("v-uni-image",{staticStyle:{width:"40upx",height:"40upx","margin-top":"calc((32px - 39upx)/2)","margin-left":"auto","margin-right":"auto"},attrs:{src:i("814a"),mode:"aspectFit"}}):e._e()],1):e._e(),e.titleShow&&4==e.worksid?a("v-uni-view",{staticClass:"title",staticStyle:{"font-weight":"550"},style:{top:e.top+"px",color:e.color,"font-size":e.size+"rpx"}},[e._v(e._s(e.title))]):e._e(),e.titleShow&&4!=e.worksid?a("v-uni-view",{staticClass:"title",style:{top:e.top+"px",color:e.color,"font-size":e.size+"rpx"}},[e._v(e._s(e.title))]):e._e()],1)],1)},r=[]},f39d:function(e,t,i){"use strict";var a=i("b48e"),n=i.n(a);n.a},fbca:function(e,t,i){"use strict";var a=i("9732"),n=i.n(a);n.a},fd87:function(e,t,i){var a=i("74e8");a("Int8",(function(e){return function(t,i,a){return e(this,t,i,a)}}))}}]);
\ No newline at end of file
......@@ -158,10 +158,10 @@
"确认":"confermare",
"取消":"soppressione",
"搜索":"ricerca",
"6寸":"Da 6 pollici",
"8寸":"Da 8 pollici",
"10寸":"10 pollici",
"12寸":"Da 12 pollici",
"6寸":"6pollici",
"8寸":"8pollici",
"10寸":"10pollici",
"12寸":"12pollici",
"圆形蛋糕":"Torta rotonda",
"方形蛋糕":"Torta quadrata",
"自定义尺寸":"personalizzato",
......
......@@ -158,10 +158,10 @@
"确认":"확인",
"取消":"취소",
"搜索":"검색",
"6寸":"6 인치",
"8寸":"8 인치",
"10寸":"10 인치",
"12寸":"12 인치",
"6寸":"6인치",
"8寸":"8인치",
"10寸":"10인치",
"12寸":"12인치",
"圆形蛋糕":"둥근 케이크",
"方形蛋糕":"네모난 케이크",
"自定义尺寸":"사용자 정의 크기",
......
......@@ -155,11 +155,11 @@
"输入详细地址": "подтверд",
"输入邮政编码": "отмен",
"输入邮箱": "поиск",
"确认": "определение",
"取消": "8дюйм",
"搜索": "10дюйм",
"6寸": "12дюйм",
"8寸": "8дюйм",
"确认": "подтверждение",
"取消": "отмена",
"搜索": "поиск",
"6寸": "6дюймов",
"8寸": "8дюймов",
"10寸": "10дюймов",
"12寸": "12дюймов",
"圆形蛋糕": "торт",
......
// 开发版
const baseURL = "http://bake.refinecolor.com/api/"
//const baseURL = "http://bake.refinecolor.com/api/"
//正式服:bake.colorpark.cn
//测试服:bake.refinecolor.com
//正式版
//const baseURL = "https://bake.colorpark.cn/api/"
const baseURL = "https://bake.colorpark.cn/api/"
//正式服:
//https://tprint.colorpark.cn/ 改成 https://h5.colorpark.cn/api/
......
const Fly = require("flyio/dist/npm/wx")
//const Fly = require("flyio/dist/npm/wx")
const Fly = require("flyio/dist/npm/fly")
import Env from './Env'
import $n from './nothing'
import store from '../store'
......@@ -47,9 +48,8 @@ request.interceptors.response.use(
// url: '/pages/login/login'
// })
// }
// })
// })
// }
uni.showModal({
title: '',
content: 'Login timeout, please login again!',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment