Commit 8f334ac0 by huahua

提交

parent 910a242c
......@@ -16,7 +16,6 @@
});
},
//设置语言
saveLanguage(defaultStr) {
switch (defaultStr) {
......@@ -66,7 +65,6 @@
onLaunch: function(options) {
try {
const value = uni.getStorageSync('globalData');
if (value) {
......@@ -75,15 +73,14 @@
} catch (e) {
};
let lang = uni.getStorageSync('lang');
if (lang && lang != "" && lang != null) {
this._i18n.locale = lang;
}
if (options.query.machine_id && options.query.machine_id != "null") { //判断传的有没有设备id
this.globalData.machine_id = options.query.machine_id
try { //数据缓存 同步 一定要用try catch 包裹
try {
//数据缓存 同步 一定要用try catch 包裹
uni.setStorageSync('machine_id', this.globalData.machine_id);
} catch (e) {
//TODO handle the exception
......@@ -92,23 +89,24 @@
this._i18n.locale = lang;
} else {
this.saveLanguage('en-us');
// logoservice.verifyToken({
// machine_id: options.query.machine_id,
// s: 'MachineLanguage.getLanguageList'
// }).then(res => {
// let defaultStr = res.default
// this.saveLanguage(defaultStr);
// }).catch(err => {
// this.saveLanguage('en-us');
// });
logoservice.verifyToken({
machine_id: options.query.machine_id,
s: 'MachineLanguage.getLanguageList'
}).then(res => {
let defaultStr = res.default
this.saveLanguage(defaultStr);
}).catch(err => {
this.saveLanguage('en-us');
});
}
} else {
let hrefStr = window.location.href;
if (hrefStr.indexOf("mine/pay_paypal") !== -1 ||
hrefStr.indexOf("mine/pay_success") !== -1 ||
hrefStr.indexOf("mine/pay_fail") !== -1 ||
hrefStr.indexOf("mine/orderDetail") !== -1
if (hrefStr.indexOf("mine/pay_paypal") != -1 ||
hrefStr.indexOf("mine/pay_success") != -1 ||
hrefStr.indexOf("mine/pay_fail") != -1 ||
hrefStr.indexOf("mine/orderDetail") != -1 ||
hrefStr.indexOf("login/login") != -1 ||
hrefStr.indexOf("login/select_login") != -1
) { //不抱哈
// uni.reLaunch({
// url: '/pages/index/mall',
......@@ -116,11 +114,10 @@
// return;
} else {
uni.reLaunch({
url: 'pages/index/mall',
url: '/pages/index/mall',
});
return;
}
}
try { //数据缓存 同步 一定要用try catch 包裹
......@@ -130,14 +127,12 @@
} catch (e) {
};
var bindWx = null;
try {
bindWx = uni.getStorageSync('bindWx');
} catch (e) {
};
if (this.globalData.bindWx || bindWx) { //判断有没有用户之前登录过
logoservice.verifyToken({
s: 'User.verifyToken'
......@@ -152,9 +147,6 @@
}
},
onShow: function() {
//调用监听网络状态的方法
uni.getNetworkType({
......@@ -176,7 +168,8 @@
onLoad: function(options) {
}
},
}
</script>
......
{
"name" : "Customize Phone case",
"name" : "Customized cake",
"appid" : "__UNI__DD721DC",
"description" : "build20191015",
"versionName" : "1.0.0",
......@@ -131,7 +131,7 @@
}
},
"h5" : {
"title" : "Customize Phone case",
"title" : "Customized cake",
"domain" : "http://h5.refinecolor.com/#/?language=en-us&machine_id=100022",
"template" : "estpublish/index.html",
"router" : {
......
......@@ -84,7 +84,8 @@
},
{
"root": "pages/mall",
"pages": [{
"pages": [
{
"path": "lineUp",
"style": {
"navigationBarTitleText": "",
......@@ -93,6 +94,17 @@
"navigationBarTextStyle": "white",
"navigationBarBackgroundColor": "#131319"
}
},
{
"path": "size",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false,
"navigationBarTextStyle": "white",
"navigationBarBackgroundColor": "#101014",
"backgroundColor": "#101014"
//"navigationStyle": "custom"
}
}]
},
{
......
<template>
<view class="m-slider" ref="slider" :style="{width: width + 'px'}">
<view class="u-slider-rail"></view>
<view class="u-slider-track" :style="{left: left +'px', width: (right - left) +'px'}"></view>
<view style=" transform: translateX(-50%); " class="u-slider-handle" ref="right"
@touchstart.stop.prevent="onRightMouseDown" @touchmove.stop.prevent="onRightMouseMove"
:style="{left: right +'px'}">
<view style="color: #F29F3D; font-size: 30upx;"> {{defalutFilletData}} </view>
</view>
</view>
</template>
<script>
export default {
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: false
},
range: { // 是否双滑块模式
type: Boolean,
default: false
},
leftX: {
type: Number,
default: 120
},
defalutFillet: {
type: Number,
default: 0
},
},
data() {
return {
left: '', // 左滑块距离滑动条左端的距离
right: '', // 右滑动距离滑动条左端的距离
defalutFilletData: 0,
initialMax: 0,
filletScale: 1,
}
},
computed: {
scale() {
return this.width / (this.max - this.min)
},
low() {
return Math.round(this.left / this.scale + this.min)
},
high() {
return Math.round(this.right / this.scale + this.min)
}
},
watch: {
low(to) {
this.$emit('lowChange', to) // 左滑块对应数字回调
},
high(to) {
//右滑块对应数字回调
this.defalutFilletData = Math.floor(to * this.filletScale);
this.$emit('highChange', to)
}
},
mounted() {
this.left = this.range ? (this.initialMin - this.min) * this.scale : 0
this.right = (this.initialMax - this.min) * this.scale
},
methods: {
//初始化默认圆角
initFilletRadius(filletRadius, filletScale) {
//console.log("filletScale="+filletScale);
this.initialMax = filletRadius
this.filletScale = filletScale
this.left = this.range ? (this.initialMin - this.min) * this.scale : 0
this.right = (this.initialMax - this.min) * this.scale
this.defalutFilletData = Math.floor(filletRadius * filletScale)
},
onRightMouseMove(e) {
var moveX = e.changedTouches[0].pageX - this.leftX
if (moveX > this.width) {
this.right = this.width
} else if (moveX <= this.left) {
this.right = this.left
} else {
this.right = moveX
}
},
onRightMouseDown(e) { // 在滚动条上拖动右滑块
e.preventDefault();
var moveX = e.changedTouches[0].pageX - this.leftX
if (moveX > this.width) {
this.right = this.width
} else if (moveX <= this.left) {
this.right = this.left
} else {
this.right = moveX
}
},
init() {
this.left = this.range ? (this.initialMin - this.min) * this.scale : 0
this.right = (this.initialMax - this.min) * this.scale
},
},
}
</script>
<style lang="less" scoped>
@themeColor: #F29F3D;
.m-slider {
display: inline-block;
height: 4px;
padding: 6px 0;
position: relative;
z-index: 9;
.u-slider-rail {
position: absolute;
z-index: 99;
height: 4px;
width: 100%;
background: #f5f5f5;
border-radius: 2px;
}
.u-slider-track {
position: absolute;
z-index: 99;
background: #F29F3D;
border-radius: 4px;
height: 4px;
}
.u-slider-handle {
// 滑块
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%;
}
}
.disabled {}
</style>
......@@ -39,9 +39,9 @@
height: 70upx;
line-height: 70upx;
text-align: center;
color: #F56364;
color: #F29F3D;
margin:140upx auto 0;
border: 1upx solid #F56364;
border: 1upx solid #F29F3D;
border-radius: 35upx;
}
......
......@@ -4,10 +4,9 @@
<image v-if="statusloading == 1" @tap="toLineList()" src="../../static/img/icon_home_lineup_image.png" style="position: fixed; z-index: 99; right: -120upx; bottom: 480upx; display: flex;align-items: center;justify-content: center;
width: 220upx;
height: 110upx;">
</image>
<image v-if="statusloading == 1" src="../../static/img/icon_home_order_image.png" style="
<image v-if="statusloading == 1 && support_paypal" src="../../static/img/icon_home_order_image.png" style="
position: fixed;
z-index: 997;
right: -10upx;
......@@ -23,9 +22,7 @@
width:90upx;
height:80upx;
font-size: 20upx; text-align: center;
line-height:80upx;
" @click="toSelectLanguage()">
line-height:80upx; " @click="toSelectLanguage()">
</image>
<!-- 自定义头部 -->
......@@ -69,10 +66,6 @@
</view>
</view>
<!-- <view @click="Customize_now" class="experiencebutton" hover-class="loginBtn-hover" style="position: fixed; bottom: 112upx; text-align: center;left: 0; right: 0;
width: 420upx; height: 105upx; line-height: 105upx; border-radius: 53upx; font-size: 39upx;">
{{$i18n.messages[$i18n.locale]['立即定制']}}
</view> -->
</view>
<!-- 错误提示信息 -->
<view v-if="statusloading == 2" style="min-height: 100%;background: #131319 !important;">
......@@ -97,7 +90,7 @@
</view>
</view>
<switchGoods ref="switchGoods" @selectGoodItem="selectGoodItem"></switchGoods>
<switchGoods ref="switchGoods" @selectGoodItem="selectGoodItem" @toCustomSize="toCustomSize"></switchGoods>
<!-- 选择语言 -->
<switchLanguage ref="switchLanguage" @backLanguage="backLanguage"></switchLanguage>
......@@ -147,10 +140,19 @@
promoter_id: "", //推广Id
isLoad: false, //是否加载过
isReload: false, //加载页面
support_paypal: false //是否开启支付
};
},
methods: {
//自定义尺寸
toCustomSize() {
uni.navigateTo({
url: '../mall/size?machine_id=' + this.machine_id +
"&isFirstPage=true" +
"&machineDetail=" + JSON.stringify(this.list)
})
},
//去排队列表
toLineList() {
......@@ -162,7 +164,12 @@
//选择商品进来
selectGoodItem(item) {
uni.navigateTo({
url: '../index/index?machine_id=' + this.machine_id + "&good_id=" + item.id + "&title=" + item.title + "&real_width=" + item.key + "&machineDetail=" + JSON.stringify(this.list),
url: '../index/index?machine_id=' + this.machine_id +
"&good_id=" + item.id +
"&title=" + item.title +
"&real_width=" + item.key +
"&machineDetail=" + JSON.stringify(this.list) +
"&type = 1",
})
},
......@@ -177,8 +184,6 @@
//刷新页面
reload() {
//console.log("进来"+this._i18n.locale)
//this._i18n.locale = 'zh-tc';
this.isReload = false
this.$nextTick(() => {
this.isReload = true
......@@ -231,7 +236,10 @@
let that = this;
if (this.list != null) {
if (this.list.status.value == 1 || this.list.status.value == 2) {
this.$refs['switchGoods'].open(this.machine_id);
//this.$refs['switchGoods'].open(this.machine_id);
let isShowCustomizeData = this.list.customize_size == 1 ? true : false
this.$refs['switchGoods'].open(this.machine_id,isShowCustomizeData);
} else if (this.list.status.value == 0 || this.list.status.value == 3 || this.list.status.value == 4 ||
this.list.status.value == 5) {
uni.showToast({
......@@ -270,6 +278,20 @@
this.statusloading = 1;
if (res) {
this.list = res;
this.support_paypal = false;
if (this.list.support_paypal == 1) {
this.support_paypal = true;
} else {
this.support_paypal = false;
}
//判断挂起
uni.setStorageSync('privacy', this.list.privacy);
this.myheadtext = this.machine_id + '-' + res.code //头部标题栏
}
uni.stopPullDownRefresh();
......@@ -352,7 +374,30 @@
this.statusloading = 2;
}
},
onShow(options) {},
onShow(options) {
if (this.machine_id && this.machine_id != 'null') {
homeservice.WorksList({
machine_id: this.machine_id,
s: 'machine.newDetail'
}).then(res => {
this.statusloading = 1;
if (res) {
this.list = res;
this.support_paypal = false;
if (this.list.support_paypal == 1) {
this.support_paypal = true;
} else {
this.support_paypal = false;
}
uni.setStorageSync('privacy', this.list.privacy);
}
}).catch(err => {
});
}
},
};
</script>
......
......@@ -5,28 +5,27 @@
style="position: absolute; top: 0; width: 100%; height: 100%; background: #999999; z-index:997; opacity: 0.5; "
@click="closeView()">
</view>
<view
style=" width: 562upx; border-radius: 20upx; height: 742upx; z-index: 998; position: absolute ;margin:auto; top:0; right: 0; left: 0; bottom: 0;flex-direction: column">
<view style=" width: 562upx; 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: 562upx; border-radius: 20upx;
height: 720upx;
height: 780upx;
left:50%;
top:50%;
transform: translate(-50%,-50%);
position: absolute; "/>
position: absolute; " />
<view style="position: absolute;
width: 562upx; height:720upx;
top: 0; ">
width: 562upx; height:780upx;
top: 0;">
<view style="
width: 200upx;
height: 120upx;
font-size: 34upx;
font-weight: 500;
color: #000; margin: 0 auto;
text-align: center;line-height: 120upx;">蛋糕形状</view>
color: #000; margin: 0 auto;
text-align: center;line-height: 120upx;">{{$i18n.messages[$i18n.locale]['形状']}}</view>
<view style="height: 280upx; ">
<view v-for="(item,index) in goods" :key="index" @click="goodclick(item,index)">
......@@ -38,10 +37,11 @@
width: 180upx">
<image mode="widthFix"
:class="[goodCurrentIndexTop == index? 'good-item-select':'good-item-no-select' ]"
:src="item.goods_pic + '?x-oss-process=image/resize,lfit,w_180'" ></image>
:src="item.goods_pic + '?x-oss-process=image/resize,lfit,w_180'"></image>
<view style="text-align: center; font-size: 30upx; width: 100%;
color:#000; margin-top: 30upx;">
{{item !=null ? item.name : ''}}
{{item !=null ? $i18n.messages[$i18n.locale][item.name] : ''}}
</view>
</view>
</view>
......@@ -55,25 +55,34 @@
position: relative;
margin: 10upx;">
<view :class="[sizeCurrentIndexTop == index? 'size-item-select':'size-item-no-select' ]">
{{item !=null ? item.title : ''}}
{{item !=null ? $i18n.messages[$i18n.locale][item.title] : ''}}
</view>
</view>
</view>
</view>
<view @click="saveGood()" style="width: 289upx;
height: 84upx;
background: #F29F3D;
border-radius: 42px;
color: #fff;
font-size: 32upx;
margin: 0 auto;
line-height: 84upx;
margin-top:60upx;
text-align: center;"> 确定</view>
height: 84upx;
background: #F29F3D;
border-radius: 42px;
color: #fff;
font-size: 32upx;
margin: 0 auto;
line-height: 84upx;
margin-top:60upx;
text-align: center;"> {{$i18n.messages[$i18n.locale]['确认']}}</view>
<view v-if="isShowCustomize" @click="toCustomSize()" style="width: 289upx;
height: 40upx;
color: #F29F3D;
font-size: 32upx;
margin: 0 auto;
line-height: 40upx;
margin-top:35upx;
text-align: center;"> {{$i18n.messages[$i18n.locale]['自定义尺寸']}}</view>
</view>
</view>
</view>
</view>
</view>
</template>
......@@ -90,12 +99,21 @@
goodCurrentIndexTop: 0, //上面商品选中
sizeCurrentIndexTop: 0, //下面尺寸选中
selectGoodSize: null, //选中商品尺寸
isShowCustomize: false,
};
},
mounted() {},
mounted() {
},
methods: {
//自定义尺寸
toCustomSize() {
this.isShow = false;
this.$emit('toCustomSize');
},
//保存商品
saveGood() {
if (this.selectGood == null) {
......@@ -135,7 +153,15 @@
},
//打开页面
open(machineId) {
open(machineId, isShowCustomize) {
if (isShowCustomize) {
this.isShowCustomize = isShowCustomize
} else {
this.isShowCustomize = false
}
//this.isShowCustomize =true;
this.machine_id = machineId;
this.getGooods();
},
......@@ -150,18 +176,18 @@
this.goods = result.goods;
if (this.goods != null && this.goods.length > 0) {
this.selectGood = this.goods[0];
this.goodCurrentIndexTop = 0; //上面商品选中
this.goodCurrentIndexTop = 0; //上面商品选中
}
if (this.selectGood.attribute && this.selectGood.attribute.length > 0) {
this.selectGoodSize = this.selectGood.attribute[0];
this.selectGoodSize = this.selectGood.attribute[0];
this.sizeCurrentIndexTop = 0; //下面尺寸选中
}
if (this.goods == null || this.goods.length == 0) {
this.isShow = false;
uni.showToast({
title: "设备号不存在,或者没配置商品",
icon: 'none'
});
// uni.showToast({
// title: "设备号不存在,或者没配置商品",
// icon: 'none'
// });
} else {
this.isShow = true;
}
......@@ -211,22 +237,22 @@
.size-item-select {
border: 2upx #F29F3D solid;
width: 66upx;
height: 66upx;
width: 90upx;
height: 65upx;
background: #F5F5F5;
border-radius: 15upx;
line-height: 66upx;
line-height: 65upx;
color: #000;
font-size: 30upx;
text-align: center;
}
.size-item-no-select {
width: 66upx;
height: 66upx;
width: 90upx;
height: 65upx;
background: #F5F5F5;
border-radius: 15upx;
line-height: 66upx;
line-height: 65upx;
font-size: 30upx;
color: #000;
text-align: center;
......
......@@ -54,9 +54,6 @@
uni.reLaunch({
url: '/pages/login/select_login?machine_id=' + this.globalData.machine_id
});
//uni.reLaunch({
//url: '/pages/login/select_login?machine_id=' + this.globalData.machine_id +"&promoter_id=" + promoter_id
//});
},
bindLogin() {
......@@ -142,9 +139,9 @@
this.promoter_id = options.promoter_id;
}
this.longState = true
wx.setNavigationBarTitle({
title: "Customize Phone case"
}) /* this.$i18n.messages[this.$i18n.locale]['定制手机壳'] */
uni.setNavigationBarTitle({
title: this.$i18n.messages[this.$i18n.locale]['定制蛋糕']
})
try { //数据缓存 同步 一定要用try catch 包裹
uni.setStorageSync('globalData', this.globalData);
......
......@@ -72,9 +72,7 @@
auto_register: null, //为1时就自动注册帐号和登陆。为0时就关闭自动登陆。
statusloading: 1,
promoter_id: "", //推广Id
isComefrist: false,
}
},
methods: {
......@@ -127,7 +125,7 @@
this.globalData.bindWx = result
uni.setStorageSync('globalData', this.globalData);
uni.hideLoading();
// if (this.promoter_id != "" && this.promoter_id != "null") {
//if (this.promoter_id != "" && this.promoter_id != "null") {
// uni.reLaunch({
// url: '/pages/index/detailsphone?machine_id=' + this.globalData.machine_id +
// "&promoter_id=" + this.promoter_id
......@@ -174,7 +172,6 @@
return code;
},
//获取注册开关 //为1时就自动注册帐号和登陆。为0时就关闭自动登陆。
getAutoRegister() {
homeservice.WorksListPhone({
......@@ -230,42 +227,22 @@
getUserToken() {
//if(this.isComefrist){
var bindWx = null;
try {
bindWx = uni.getStorageSync('bindWx');
} catch (e) {
};
if (this.globalData.machine_id ) {
if (this.globalData.machine_id && bindWx ) {
logoservice.verifyToken({
s: 'User.verifyToken'
}).then(result => {
//console.log("数据+"+result)
// if (this.promoter_id != "" && this.promoter_id != "null") {
// uni.reLaunch({
// url: '/pages/index/detailsphone?machine_id=' + this.globalData.machine_id
// });
// } else {
// uni.reLaunch({
// url: '/pages/index/detailsphone?machine_id=' + this.globalData.machine_id
// });
// }
uni.reLaunch({
url: '/pages/index/detailsphone?machine_id=' + this.globalData.machine_id
});
}).catch(err => {
// setTimeout(function () {
// uni.hideModal();
// }, 2000);
//uni.hideToast();
//console.log(err)
this.handleLoginAndRegister()
})
} else {
......@@ -302,46 +279,13 @@
},
})
wx.setNavigationBarTitle({
title: "Customize Phone case"
uni.setNavigationBarTitle({
title: this.$i18n.messages[this.$i18n.locale]['定制蛋糕']
}) /* this.$i18n.messages[this.$i18n.locale]['定制手机壳'] */
//console.log(options);
if (options.isComefrist && options.isComefrist != "") {
this.isComefrist = options.isComefrist;
}
if (options.promoter_id && options.promoter_id != "") {
this.promoter_id = options.promoter_id
try { //数据缓存 同步 一定要用try catch 包裹
uni.setStorageSync('promoter_id', this.promoter_id);
} catch (e) {
//TODO handle the exception
};
} else {
try { //数据缓存 同步 一定要用try catch 包裹
uni.setStorageSync('promoter_id', "");
} catch (e) {
//TODO handle the exception
};
}
//console.log("this.globalData=" + this.globalData.bindWx)
if (options.machine_id && options.machine_id != "null") {
this.globalData.machine_id = options.machine_id
homeservice.WorksListPhone({
s: 'machine.newDetail',
machine_id: this.globalData.machine_id,
}).then(res => {
//this.auto_register = res.auto_register
//this.handleLoginAndRegister();
}).catch(err => {
this.statusloading = 2;
});
this.getAutoRegister();
} else {
this.longState = false;
......
......@@ -8,18 +8,20 @@
<image v-if="worksid == 0" src="../../../static/recommend/icon_back.png" mode="aspectFit"
style="width: 23upx; height: 39upx; margin-top: calc((32px - 39upx)/2);margin-left: auto; margin-right: auto;">
</image>
<image v-if="worksid == 4" src="../../../static/image/icon_new_back_image.png" mode="aspectFit"
style="width: 40upx; height: 40upx; margin-top: calc((32px - 39upx)/2);margin-left: auto; margin-right: auto;">
</image>
</view>
<view class="title" v-if="titleShow && worksid == 4" :style="{ top: top + 'px', color:color, 'font-size': size + 'rpx' }" style="font-weight: 550">
<view class="title" v-if="titleShow && worksid == 4"
:style="{ top: top + 'px', color:color, 'font-size': size + 'rpx' }" style="font-weight: 550">
{{title}}
</view>
<view class="title" v-if="titleShow && worksid != 4" :style="{ top: top + 'px', color:color, 'font-size': size + 'rpx' }">
<view class="title" v-if="titleShow && worksid != 4"
:style="{ top: top + 'px', color:color, 'font-size': size + 'rpx' }">
{{title}}
</view>
</view>
......@@ -73,74 +75,33 @@
},
methods: {
back() {
let promoterId = "";
try {
promoterId = uni.getStorageSync('promoter_id');
} catch (e) {
}
//console.log("进来" + promoterId)
try {
const globalData = uni.getStorageSync('globalData');
if (globalData) {
//console.log("返回=" + globalData.machine_id)
//this.globalData = value
if (promoterId != null && promoterId != "") {
uni.reLaunch({
url: '../index/detailsphone?machine_id=' + globalData.machine_id + "&promoterId=" + promoterId
})
} else {
uni.reLaunch({
url: '../index/detailsphone?machine_id=' + globalData.machine_id
})
}
uni.reLaunch({
url: '../index/detailsphone?machine_id=' + globalData.machine_id
})
//console.log("his.userId="+this.userId)
} else {
const machine_id = uni.getStorageSync('machine_id');
if (machine_id) {
if (promoterId != null && promoterId != "") {
uni.reLaunch({
url: '../index/detailsphone?machine_id=' + machine_id + "&promoterId=" +
promoterId
})
} else {
uni.reLaunch({
url: '../index/detailsphone?machine_id=' + machine_id
})
}
// uni.reLaunch({
// url: '../index/detailsphone?machine_id=' + machine_id
// })
uni.reLaunch({
url: '../index/detailsphone?machine_id=' + machine_id
})
} else {
uni.navigateBack();
}
}
} catch (e) {
const machine_id = uni.getStorageSync('machine_id');
if (machine_id) {
if (promoterId != null && promoterId != "") {
uni.reLaunch({
url: '../index/detailsphone?machine_id=' + machine_id + "&promoterId=" + promoterId
})
} else {
uni.reLaunch({
url: '../index/detailsphone?machine_id=' + machine_id
})
}
uni.reLaunch({
url: '../index/detailsphone?machine_id=' + machine_id
})
// uni.reLaunch({
// url: '../index/detailsphone?machine_id=' + machine_id
// })
} else {
uni.navigateBack();
}
......
......@@ -3,7 +3,7 @@
<!-- 自定义头部 -->
<myhead :worksid="4" :title="myheadtext" :color="'#000'" :titleShow="true" :backShow="true"
:background="'#fff'" ></myhead>
:background="'#fff'"></myhead>
<view class="uni-tab-bar full-width">
<view style="margin-top: 110upx;" class="content full-width" scroll-y>
......@@ -22,7 +22,7 @@
@click="self_help_payment(designer)">
<view style="color: #fff; display: flex; align-items: center;width: 690upx; ">
<view v-if="designer.user_id != userId" class="border-image-pesudo-no">
<view v-if="designer.user_id != userId && privacy == 0 " class="border-image-pesudo-no">
<view class="border-image-pesudo-in-no">
<image
style="width: 141upx; height: 132upx; position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; z-index:8;"
......@@ -31,7 +31,17 @@
</image>
</view>
</view>
<view v-if="designer.user_id != userId && privacy == 1 " class="border-image-pesudo-no">
<view class="border-image-pesudo-in-no">
<image
style="width: 141upx; height: 132upx; position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto; z-index:8;"
src="../../static/icon_has_no_picture.png"
mode="aspectFit">
</image>
</view>
</view>
<view v-if="designer.user_id == userId" class="border-image-pesudo">
<view class="border-image-pesudo-in">
<image
......@@ -41,31 +51,28 @@
</image>
</view>
</view>
<view style="width: calc(100% - 360upx);">
<view style="width: 100%;font-size: 28upx; ">
<view style="width: 100%;font-size: 28upx; ">
<view v-if="designer.status.value == 1">
<view style="text-align: left; font-size: 28upx; color: #F29F3D ; line-height: 60upx;">
<view
style="text-align: left; font-size: 28upx; color: #F29F3D ; line-height: 60upx;">
{{$i18n.messages[$i18n.locale]['打印中']}}
</view>
</view>
<view v-else
style=" height: 60upx;background: transparent;border-radius: 30upx;">
<view style="text-align: left; font-size: 28upx; color: #F29F3D ; line-height: 60upx;">
<view v-else style=" height: 60upx;background: transparent;border-radius: 30upx;">
<view
style="text-align: left; font-size: 28upx; color: #F29F3D ; line-height: 60upx;">
{{$i18n.messages[$i18n.locale]['排队中']}}
</view>
</view>
<!-- <text style="font-size: 40upx;font-weight: bold; color: #333 ">{{designer.id || ''}}</text> -->
</view>
</view>
<view style="font-size: 24upx; color: #333 ; margin-top: 10upx;">
{{designer.goods_name || ''}} {{designer.goods_specs || ''}}
{{$i18n.messages[$i18n.locale][designer.goods_name] || ''}}
{{ $i18n.messages[$i18n.locale][designer.goods_specs] || ''}}
</view>
</view>
<view style="margin-right: 20upx; margin-left: auto; padding-top:75upx">
<text style="font-size: 40upx;font-weight: bold; color: #333 ">{{designer.id || ''}}</text>
</view>
</view>
</view>
......@@ -80,8 +87,7 @@
display: flex; align-items: center; justify-content: center;">
<view style="position: absolute;
top: 0; right: 0;" @click.stop="sighstate = false">
<image src="../../static/icon_guanbi.png" mode=""
style="width: 26upx; height: 26upx; padding: 12upx 22upx;"></image>
<image src="../../static/icon_guanbi.png" mode="" style="width: 26upx; height: 26upx; padding: 12upx 22upx;"></image>
</view>
<view style="width: 558upx;">
<view style="display: flex; align-items: center; justify-content: center;
......@@ -91,7 +97,7 @@
<image :src="designer.back_image + '?x-oss-process=image/resize,lfit,w_150'"
mode="aspectFit" style=" width: 150upx; margin-left: -150upx; "></image>
</view>
<view style="font-size: 25upx;
color: #000;margin: auto;
margin-top: 30upx;
......@@ -101,7 +107,7 @@
line-height:20upx;">
{{designer.goods_name || ''}}
</view>
<view v-if="designer.status.value == 1" style="text-align: center;
font-size: 36upx;
width: 200upx;
......@@ -111,34 +117,24 @@
background: #F29F3D ;
color: #fff;
margin: auto;
margin-top: 20px;
">{{$i18n.messages[$i18n.locale]['打印中']}}
margin-top: 20px;">{{$i18n.messages[$i18n.locale]['打印中']}}
</view>
<view v-else style="text-align: center; font-size: 36upx;
width: 200upx; height: 70upx;
line-height:70upx;
border-radius: 40upx;
background: #fff; color: #F29F3D ;
margin: auto;
margin-top: 15px;">
{{$i18n.messages[$i18n.locale]['排队中']}}
margin-top: 15px;">{{$i18n.messages[$i18n.locale]['排队中']}}
</view>
<view v-if = "phone && phone != '' "
style="font-size: 25upx; color: #000;margin: auto; margin-top: 20upx; width: 400upx; height: 20upx;
<view v-if="phone && phone != '' " style="font-size: 25upx; color: #000;margin: auto; margin-top: 20upx; width: 400upx; height: 20upx;
text-align: center;
line-height:20upx;">
Contact al {{phone}}
</view>
<!-- <view
style="text-align: center; font-size: 36upx; margin-top: 41upx; line-height: 1.2; width: 98%;">
{{$i18n.messages[$i18n.locale]['作品排队中']}}
</view> -->
<!-- <view style="text-align: center; font-size: 36upx; line-height: 1.2;width: 98%;">
{{$i18n.messages[$i18n.locale]['如需要打印可与客服确认']}}
</view> -->
</view>
</view>
</view>
......@@ -179,12 +175,12 @@
designer: null,
userId: null, //用户信息
myheadtext: "",
phone:"",//手机号码
phone: "", //手机号码
privacy: 0, //1开启 0 不开启
};
},
methods: {
self_help_payment(designer) {
if (designer.user_id != this.userId) {
return;
......@@ -306,24 +302,28 @@
icon: 'none'
});
}, 500);
},
onLoad(options) {
try {
const value = uni.getStorageSync('bindWx');
if (value) {
this.userId = value.id;
}
} catch (e) {
//TODO handle the exception
};
let value = uni.getStorageSync('bindWx');
if (value) {
this.userId = value.id;
}
let privacy = uni.getStorageSync('privacy');
if (privacy) {
this.privacy = privacy;
}
console.log("this.privacy="+this.privacy);
/* var appUser = userService.getCacheAppUser();
if (appUser != null) {
this.userId = appUser.userInfo.id
} */
this.phone = uni.getStorageSync('phone');
var that = this
if (options.machine_id && options.machine_id != 'null') {
this.queryPage.machine_id = options.machine_id;
......@@ -346,11 +346,11 @@
title: this.$i18n.messages[this.$i18n.locale]['排队列表']
}) */
},
onShow() {
},
// 卸载程序
onUnload() {
this.clearIntervalTime()
......@@ -372,7 +372,7 @@
background: #fff;
border: 5upx solid;
padding: 10upx;
border-image: linear-gradient(0deg, #F29F3D , #F29F3D ) 2 2;
border-image: linear-gradient(0deg, #F29F3D, #F29F3D) 2 2;
margin: 25upx 35upx;
position: relative;
overflow: hidden;
......@@ -391,7 +391,7 @@
background: #fff;
border: 5upx solid;
padding: 10upx;
border-image: linear-gradient(0deg, #F29F3D , #F29F3D ) 2 2;
border-image: linear-gradient(0deg, #F29F3D, #F29F3D) 2 2;
margin: 25upx 35upx;
position: relative;
overflow: hidden;
......
......@@ -7,19 +7,18 @@
<view class="order_detail_top">
<view style="display:flex; flex-direction: row; padding-left: 40upx; width: 100%; ">
<view style="width:60upx; margin-top: 40upx;margin-bottom: 30upx; ">
<view style="width: 10px;height: 10px;background: #854AC2;border-radius: 50%;"></view>
<view style="width: 1px;height: 50px;background: #854AC2;margin-left: 10upx;"></view>
<view style="width: 10px;height: 10px;background: #F29F3D;border-radius: 50%;"></view>
<view style="width: 1px;height: 50px;background: #F29F3D;margin-left: 10upx;"></view>
<view
style="width: 12upx;height: 12upx;background: #FFFFFF;border: 2px solid #854AC2; border-radius: 50%; margin-left: 3upx; ">
style="width: 12upx;height: 12upx;background: #FFFFFF;border: 2px solid #F29F3D; border-radius: 50%; margin-left: 3upx; ">
</view>
</view>
<view style=" margin-top: 20upx; margin-bottom: 20upx; width: 100%; ">
<view style="font-size: 32upx;font-weight: 580;color: #854AC2;">
<view style="font-size: 32upx;font-weight: 580;color: #F29F3D;">
{{$i18n.messages[$i18n.locale][orderData.status.text]}}
</view>
<view
style="font-size: 32upx;font-weight: 580;color: #854AC2; width: 340upx; height: 50upx; position: absolute; top: 170upx">
<!-- {{orderData.type.text == '自提' ? 'Pay with PayPal' :'Pay offine' }} -->
style="font-size: 32upx;font-weight: 580;color: #F29F3D; width: 340upx; height: 50upx; position: absolute; top: 170upx">
{{orderData.pay_type.text == 'PayPal' ? 'Pay with PayPal' :'Pay offine' }}
</view>
<view style="font-size: 27upx; color: #333333; margin-top:120upx; font-weight: 550;
......@@ -41,13 +40,12 @@
<view style="display: flex;width: calc(100% - 30upx); flex-direction: row; height: 220upx; ">
<view style="width:150upx;
height:150upx;
background: #131319;
border-radius:10upx;
margin-top: 10upx;
margin-left: 40upx;
position:relative;
align-items: center;
justify-content: center;">
justify-content: center; border: 5upx solid #F29F3D;">
<image :src="orderData.order_queue.back_image"
style="position: absolute;height: 150upx;border-radius: 10upx;top: 0; left: 0; right: 0; bottom: 0; margin: auto; "
mode="heightFix"></image>
......@@ -55,15 +53,11 @@
left: 0;top: 0; left: 0; right: 0; bottom: 0; " mode="heightFix"></image>
</view>
<view style=" font-size: 28upx;color: #333333;margin-left: 30upx; width: 360upx; margin-top: 15upx; ">
{{orderData.order_goods.goods_name}}
{{$i18n.messages[$i18n.locale][orderData.order_goods.goods_name] || ''}}
</view>
</view>
<!-- <view
style=" font-size: 32upx;font-family: PingFang;font-weight: 500;color: #F56364;margin-top: -80upx; float: right; margin-right: 32upx;">
{{orderData.currency_symbol}}{{orderData.goods_amount}}
</view> -->
<view style="width: 100%;height: 1upx;background: #EEEEEE;"></view>
<view
style="display: flex; flex-direction: row; float: right; justify-content: center; align-items: center;height: 110upx; margin-right: 32upx; ">
......@@ -83,10 +77,8 @@
<view class="text"> {{$i18n.messages[$i18n.locale]['设备编号']}}{{orderData.order_queue.machine_id}}</view>
<view class="text"> {{$i18n.messages[$i18n.locale]['订单编号']}}{{orderData.id}}</view>
<view class="text"> {{$i18n.messages[$i18n.locale]['下单时间']}}{{orderData.create_time}}</view>
<view class="text" v-if="orderData.promoter_id != 0 ">
{{$i18n.messages[$i18n.locale]['推广编号']}}{{orderData.promoter_id}}</view>
<view class="text"
v-if="orderData.order_express != null && orderData.order_express.express_name != null">
{{$i18n.messages[$i18n.locale]['物流公司']}}{{orderData.order_express.express_name}}
......@@ -141,7 +133,6 @@
window.location.href = linkUrl
},
//再来一单
againOrder() {
const machine_id = uni.getStorageSync('machine_id');
......@@ -244,7 +235,7 @@
.button_save {
background: #F5F5F5;
border: 1upx solid #854AC2;
border: 1upx solid #F29F3D;
height: 70upx;
width: 300upx;
position: fixed;
......@@ -257,6 +248,6 @@
margin: auto;
border-radius: 60upx;
line-height: 70upx;
color: #854AC2;
color: #F29F3D;
}
</style>
......@@ -27,12 +27,12 @@
</view>
</view>
<view style="width: 20upx;font-size: 36upx; color: #854AC2; position: absolute; right: 20upx;top:60upx; ">
<view style="width: 20upx;font-size: 36upx; color: #F29F3D ; position: absolute; right: 20upx;top:60upx; ">
></view>
<view style="width: calc(100% - 400upx);">
<view style="width: 100%;font-size: 28upx;">
<text
style="font-size: 26upx; color:#333333; font-weight: 550;">{{designer.goods_specs || ''}}</text>
style="font-size: 26upx; color:#333333; font-weight: 550;"> {{ $i18n.messages[$i18n.locale][designer.goods_specs] || ''}}</text>
</view>
<view style="font-size: 25upx; color: #333333 ; margin-top: 10upx;">
{{$i18n.messages[$i18n.locale][designer.status.text]}}
......@@ -191,7 +191,7 @@
background: #FFFFFF;
padding: 15upx;
border: 5upx solid;
border-image: linear-gradient(0deg, #178CE6, #984ACE) 2 2;
border-image: linear-gradient(0deg, #F29F3D, #F29F3D) 2 2;
border-radius: 20upx;
position: relative;
overflow: hidden;
......
{
"语言": "德语",
"切换": "Schalter",
"形状": "Form",
"排队列表": "Warteliste",
"定制手机壳": "kundenspezifisch",
"定制蛋糕": "Kundenspezifischer Kuchen",
"绘制成功": "Zeichnen erfolgreich",
"绘制失败": "Zeichnen fehlgeschlagen",
"登录文本": "Anmeldeskript",
......@@ -72,39 +74,39 @@
"个手机壳正在打印": "Koffer werden gedruckt",
"排队": "aufstellen",
"立即定制": "Jetzt anpassen",
"深圳市瑞丰彩科技有限公司": "Shenzhen Ruifengcai Technology Co., Ltd.",
"深圳市瑞丰彩科技有限公司": "Shenzhen Ruifengcai Technology Co., Ltd.",
"定制壳": "Benutzerdefinierte Shell",
"自带壳": "In sich geschlossene Schale",
"材质详情": "Détails du matériau",
"请在扇区点选您自带的手机壳颜色": "Wählen Sie eine Gehäusefarbe",
"暂无数据": "Keine Daten",
"休息中": "Ruhen",
"不支持色系": "Farbschema wird nicht unterstützt",
"请选择颜色": "Bitte wählen Sie eine Farbe",
"材质详情": "Détails du matériau",
"请在扇区点选您自带的手机壳颜色": "Wählen Sie eine Gehäusefarbe",
"暂无数据": "Keine Daten",
"休息中": "Ruhen",
"不支持色系": "Farbschema wird nicht unterstützt",
"请选择颜色": "Bitte wählen Sie eine Farbe",
"请选择手机壳材质": "Wählen Sie ein Gehäusematerial",
"啊嘞当前还没有打印任务呢": "Ah Le hat noch keine Druckaufgabe",
"啊嘞当前还没有打印任务呢": "Ah Le hat noch keine Druckaufgabe",
"去定制一个作品吧": "Gehe zum Anpassen eines Werkes",
"去定制": "Anpassen",
"打印中": "Drucken",
"排队中": "In der Warteschlange",
"作品排队中": "Arbeiten in Linie",
"打印中": "Drucken",
"排队中": "In der Warteschlange",
"作品排队中": "Arbeiten in Linie",
"如需要打印可与客服确认": "Bestätigung des Kundenservice",
"返回": "zurück",
"请选择自带壳颜色": "Bitte wählen Sie die Farbe Ihrer eigenen Schale",
"啊嘞没有更多的数据了": "Ah, es gibt keine Daten mehr",
"松开即可删除": "Zum Löschen freigeben",
"拖到此处可删除": "Ziehen Sie hier zum Löschen",
"拖到此处可删除": "Ziehen Sie hier zum Löschen",
"啊嘞色彩定制站必须扫码才能使用": "Code Scannen ist erforderlich",
"复制成功": "Kopieren erfolgreich",
"背景底色": "Hintergrundfarbe",
"编辑": "Ébearbeiten",
"访客": "Besucher",
"没有更多数据了": "Keine Daten mehr",
"我的收藏": "Meine Sammlung",
"设备信息不存在": "Geräteinformationen existieren nicht",
"没有更多数据了": "Keine Daten mehr",
"我的收藏": "Meine Sammlung",
"设备信息不存在": "Geräteinformationen existieren nicht",
"支付成功": "Zahlung erfolgreich",
"支付失败": "Zahlung fehlgeschlagen",
"支付取消": "Stornierung der Zahlung",
"支付取消": "Stornierung der Zahlung",
"付款区": "Zahlungsbereich",
"支付领取": "Zahlung und Einziehung",
"历史作品": "Geschichte",
......@@ -116,7 +118,7 @@
"物流详情": "Logistik Details",
"再来一单": "Ein weiterer Auftrag",
"等待生产": "Warten auf die Produktion",
"生产中": "In der Produktion",
"生产中": "In der Produktion",
"生产完成": "Produktion abgeschlossen",
"出料中": "Beim Entladen",
"待入货": "Zu empfangen",
......@@ -125,35 +127,35 @@
"啊嘞当前还没有订单任务": "Keine Auftragsaufgabe",
"设备编号": "Ausrüstungsnummer",
"打印编号": "Drucknummer",
"生成涂鸦成功":"Erfolgreich bei der Erzeugung von Graffiti",
"线下支付":"Offline-Zahlungen",
"订单列表":"Bestellliste",
"切换语言":"Sprache wechseln",
"收件人不能为空":"Der Empfänger kann nicht leer sein",
"号码不能为空":"Die Zahl kann nicht leer sein",
"国家不能为空":"Land kann nicht leer sein",
"省份不能为空":"Die Provinz darf nicht leer sein",
"城市不能为空":"Stadt kann nicht leer sein",
"地址不能为空":"Adresse kann nicht leer sein",
"邮政编码不能为空":"Postleitzahl kann nicht leer sein",
"邮箱不能为空":"Das Postfach kann nicht leer sein",
"收件人":"Adressat",
"电话号码":"Telefonnummer",
"国家":"Land",
"省份":"Provinz",
"城市":"Stadt",
"详细地址":"Detaillierte Adresse",
"邮政编码":"Postleitzahl",
"邮箱":"Postfach",
"输入收件人":"Adressat eingeben",
"输入电话号码":"Telefonnummer eingeben",
"输入国家":"Land eingeben",
"输入省份":"Provinz eingeben",
"输入城市":"Stadt eingeben",
"输入详细地址":"Adresse eingeben",
"输入邮政编码":"Postleitzahl eingeben",
"输入邮箱":"Postfach eingeben",
"确认":"bestätigen",
"取消":"Abbrechen",
"搜索":"Suche"
"生成涂鸦成功": "Erfolgreich bei der Erzeugung von Graffiti",
"线下支付": "Offline-Zahlungen",
"订单列表": "Bestellliste",
"切换语言": "Sprache wechseln",
"收件人不能为空": "Der Empfänger kann nicht leer sein",
"号码不能为空": "Die Zahl kann nicht leer sein",
"国家不能为空": "Land kann nicht leer sein",
"省份不能为空": "Die Provinz darf nicht leer sein",
"城市不能为空": "Stadt kann nicht leer sein",
"地址不能为空": "Adresse kann nicht leer sein",
"邮政编码不能为空": "Postleitzahl kann nicht leer sein",
"邮箱不能为空": "Das Postfach kann nicht leer sein",
"收件人": "Adressat",
"电话号码": "Telefonnummer",
"国家": "Land",
"省份": "Provinz",
"城市": "Stadt",
"详细地址": "Detaillierte Adresse",
"邮政编码": "Postleitzahl",
"邮箱": "Postfach",
"输入收件人": "Adressat eingeben",
"输入电话号码": "Telefonnummer eingeben",
"输入国家": "Land eingeben",
"输入省份": "Provinz eingeben",
"输入城市": "Stadt eingeben",
"输入详细地址": "Adresse eingeben",
"输入邮政编码": "Postleitzahl eingeben",
"输入邮箱": "Postfach eingeben",
"确认": "bestätigen",
"取消": "Abbrechen",
"搜索": "Suche"
}
{
"语言": "英文",
"切换": "switch",
"形状": "shape",
"排队列表": "Waiting list",
"定制手机壳": "Customize Phone case",
"定制蛋糕": "Customized cake",
"绘制成功": "success",
"绘制失败": "fail!",
"登录文本": "Login",
......@@ -155,5 +157,12 @@
"输入邮箱":"enter email",
"确认":"confirm",
"取消":"cancel",
"搜索":"search"
"搜索":"search",
"6寸":"6inch",
"8寸":"8inch",
"10寸":"10inch",
"12寸":"12inch",
"圆形蛋糕":"Round cake",
"方形蛋糕":"Square cake",
"自定义尺寸":"Custom Size"
}
{
"语言": "西班牙语",
"切换": "Conmutar",
"形状": "Forma",
"排队列表": "Lista de cola",
"定制手机壳": "Personalización",
"定制蛋糕": "Pastel personalizado",
"绘制成功": "Dibujo exitoso",
"绘制失败": "Fallo de dibujo",
"登录文本": "Texto de inicio de sesión",
......
{
"语言": "法语",
"切换": "Basculer",
"形状": "Forme",
"排队列表": "Liste d'attente",
"定制手机壳": "Personnalisation",
"定制蛋糕": "Gâteau sur mesure",
"绘制成功": "Dessin réussi",
"绘制失败": "Échec de la peinture",
"登录文本": "Texte de connexion",
......
{
"语言": "意大利语言",
"切换": "switch",
"形状": "forma",
"排队列表": "Coda di lavorazione",
"定制手机壳": "Personalizza la Cover",
"定制蛋糕": "Torta personalizzata",
"绘制成功": "completato",
"绘制失败": "errore!",
"登录文本": "Login",
......
{
"语言": "日语",
"切换": "切り替え",
"形状": "フォーム",
"排队列表": "待機リスト",
"定制手机壳": "カスタマイズ",
"定制蛋糕": "カステラのカスタマイズ",
"绘制成功": "描画に成功しました",
"绘制失败": "描画に失敗しました",
"登录文本": "ログインテキスト",
......
{
"语言": "葡萄牙语",
"切换": "interruptor",
"形状": "forma",
"排队列表": "Lista de Filas",
"定制手机壳": "personalizado",
"定制蛋糕": "Bolo personalizado",
"绘制成功": "Desenhar com sucesso",
"绘制失败": "O desenho falhou",
"登录文本": "programa de autenticação",
......@@ -125,35 +127,35 @@
"啊嘞当前还没有订单任务": "Sem tarefa de ordem",
"设备编号": "Número do equipamento",
"打印编号": "Número de Impressão",
"生成涂鸦成功":"Conseguiu gerar graffiti",
"线下支付":"Pagamento off-line",
"订单列表":"Lista de Ordens",
"切换语言":"mudar de idioma",
"收件人不能为空":"O destinatário não pode estar vazio",
"号码不能为空":"O número não pode estar vazio",
"国家不能为空":"O país não pode estar vazio",
"省份不能为空":"A província não pode estar vazia.",
"城市不能为空":"A cidade não pode estar vazia",
"地址不能为空":"O endereço não pode estar vazio",
"邮政编码不能为空":"O código postal não pode estar vazio",
"邮箱不能为空":"A caixa de correio não pode estar vazia",
"收件人":"Destinatário",
"电话号码":"Número de telefone",
"国家":"país",
"省份":"província",
"城市":"cidade",
"详细地址":"Endereço pormenorizado",
"邮政编码":"Código Postal",
"邮箱":"caixa de correio",
"输入收件人":"Indique os destinatários",
"输入电话号码":"indicar o número de telefone",
"输入国家":"Indique o país",
"输入省份":"Entrar na Província",
"输入城市":"Entrar na Cidade",
"输入详细地址":"Indique o endereço pormenorizado",
"输入邮政编码":"Indique o Código Postal",
"输入邮箱":"Indique o E- mail",
"确认":"confirmar",
"取消":"cancelar",
"搜索":"pesquisa"
"生成涂鸦成功": "Conseguiu gerar graffiti",
"线下支付": "Pagamento off-line",
"订单列表": "Lista de Ordens",
"切换语言": "mudar de idioma",
"收件人不能为空": "O destinatário não pode estar vazio",
"号码不能为空": "O número não pode estar vazio",
"国家不能为空": "O país não pode estar vazio",
"省份不能为空": "A província não pode estar vazia.",
"城市不能为空": "A cidade não pode estar vazia",
"地址不能为空": "O endereço não pode estar vazio",
"邮政编码不能为空": "O código postal não pode estar vazio",
"邮箱不能为空": "A caixa de correio não pode estar vazia",
"收件人": "Destinatário",
"电话号码": "Número de telefone",
"国家": "país",
"省份": "província",
"城市": "cidade",
"详细地址": "Endereço pormenorizado",
"邮政编码": "Código Postal",
"邮箱": "caixa de correio",
"输入收件人": "Indique os destinatários",
"输入电话号码": "indicar o número de telefone",
"输入国家": "Indique o país",
"输入省份": "Entrar na Província",
"输入城市": "Entrar na Cidade",
"输入详细地址": "Indique o endereço pormenorizado",
"输入邮政编码": "Indique o Código Postal",
"输入邮箱": "Indique o E- mail",
"确认": "confirmar",
"取消": "cancelar",
"搜索": "pesquisa"
}
{
"语言": "中文",
"切换": "切换",
"形状": "形状",
"排队列表": "排队列表",
"定制手机壳": "定制手机壳",
"定制蛋糕": "定制蛋糕",
"绘制成功": "绘制成功",
"绘制失败": "绘制失败",
"登录文本": "Login",
......@@ -125,33 +127,40 @@
"啊嘞当前还没有订单任务": "啊嘞当前还没有订单任务",
"设备编号": "设备编号",
"打印编号": "打印编号",
"生成涂鸦成功":"生成涂鸦成功",
"线下支付":"线下支付",
"订单列表":"订单列表",
"切换语言":"切换语言",
"收件人不能为空":"收件人不能为空",
"号码不能为空":"号码不能为空",
"国家不能为空":"国家不能为空",
"省份不能为空":"省份不能为空",
"城市不能为空":"城市不能为空",
"地址不能为空":"地址不能为空",
"邮政编码不能为空":"邮政编码不能为空",
"邮箱不能为空":"邮箱不能为空",
"收件人":"收件人",
"电话号码":"电话号码",
"国家":"国家",
"省份":"省份",
"城市":"城市",
"详细地址":"详细地址",
"邮政编码":"邮政编码",
"邮箱":"邮箱",
"输入收件人":"输入收件人",
"输入电话号码":"输入电话号码",
"输入国家":"输入国家",
"输入省份":"输入省份",
"输入城市":"输入城市",
"输入详细地址":"输入详细地址",
"输入邮政编码":"输入邮政编码",
"输入邮箱":"输入邮箱",
"确认":"确认"
"生成涂鸦成功": "生成涂鸦成功",
"线下支付": "线下支付",
"订单列表": "订单列表",
"切换语言": "切换语言",
"收件人不能为空": "收件人不能为空",
"号码不能为空": "号码不能为空",
"国家不能为空": "国家不能为空",
"省份不能为空": "省份不能为空",
"城市不能为空": "城市不能为空",
"地址不能为空": "地址不能为空",
"邮政编码不能为空": "邮政编码不能为空",
"邮箱不能为空": "邮箱不能为空",
"收件人": "收件人",
"电话号码": "电话号码",
"国家": "国家",
"省份": "省份",
"城市": "城市",
"详细地址": "详细地址",
"邮政编码": "邮政编码",
"邮箱": "邮箱",
"输入收件人": "输入收件人",
"输入电话号码": "输入电话号码",
"输入国家": "输入国家",
"输入省份": "输入省份",
"输入城市": "输入城市",
"输入详细地址": "输入详细地址",
"输入邮政编码": "输入邮政编码",
"输入邮箱": "输入邮箱",
"确认": "确认",
"6寸":"6寸",
"8寸":"8寸",
"10寸":"10寸",
"12寸":"12寸",
"圆形蛋糕":"圆形蛋糕",
"方形蛋糕":"方形蛋糕",
"自定义尺寸":"自定义尺寸"
}
{
"语言": "繁體中文",
"切换": "切換",
"形状":"形狀",
"排队列表": "排隊列表",
"定制手机壳": "定製手機殼",
"定制蛋糕": "定制蛋糕",
"绘制成功": "繪製成功",
"绘制失败": "繪製失敗",
"登录文本": "登錄文本",
......@@ -153,5 +155,11 @@
"输入详细地址":"輸入詳細地址",
"输入邮政编码":"輸入郵遞區號",
"输入邮箱":"輸入郵箱",
"確認":"确认"
"确认":"確認",
"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>Customize Phone case</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.2116acd6.js></script><script src=/static/js/index.1bcc7616.js></script></body></html>
\ No newline at end of file
<!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.2116acd6.js></script><script src=/static/js/index.2bde8d59.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.
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-login"],{"02e6":function(t,a,e){"use strict";var n;e.d(a,"b",(function(){return i})),e.d(a,"c",(function(){return o})),e.d(a,"a",(function(){return n}));var i=function(){var t=this,a=t.$createElement,n=t._self._c||a;return t.longState?n("v-uni-view",{staticClass:"content"},[n("v-uni-view",{staticStyle:{width:"100%",height:"120upx"},on:{click:function(a){arguments[0]=a=t.$handleEvent(a),t.back()}}},[n("v-uni-image",{staticStyle:{width:"60upx",height:"60upx","margin-left":"25upx","margin-top":"25upx"},attrs:{src:e("6eb5"),mode:"aspectFit"}})],1),n("v-uni-view",{staticClass:"loader"}),n("v-uni-view",{staticClass:"logoimg"},[n("v-uni-view",{staticClass:"logoimage"},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["登录文本"]))])],1),n("v-uni-input",{staticClass:"inputphone",attrs:{type:"number",placeholder:t.$i18n.messages[t.$i18n.locale]["请输入您的手机号"],clearable:!0,focus:!0},model:{value:t.phone,callback:function(a){t.phone=a},expression:"phone"}}),n("v-uni-input",{staticClass:"inputpassword",attrs:{type:"password",placeholder:t.$i18n.messages[t.$i18n.locale]["请输入登录密码"],displayable:!0},model:{value:t.password,callback:function(a){t.password=a},expression:"password"}}),t.logoState?n("v-uni-button",{staticClass:"loginBtn",attrs:{"hover-class":"hover-class-bg"},on:{click:function(a){arguments[0]=a=t.$handleEvent(a),t.bindLogin.apply(void 0,arguments)}}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["登录"]))]):t._e(),n("v-uni-image",{staticClass:"bgimage",attrs:{src:e("bc47"),mode:""}})],1):t._e()},o=[]},"6eb5":function(t,a){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAABW5JREFUeF7tm19oHEUcx7+/O9iAWDViIOzcpUZrGvXyYp+0Vcib6IMgeglJpH8QfFILGn0QkhYUpFZqxRdBkkqxoGITHxSftdEXY/IQbROqobmdI+RPz1SfNtyN/M7deNkkt3t3u7ebnPOW3Mxv5vvZmZ2d+f1+hIBLJpMRRPQogAeJqBNAB4BWAHcC2Gd1/xeANQCLAOaUUtcAXFVK/ZRMJmWQQ6QgjGez2UMA+pRSTwFg0bWUa0T0LYBLuq5P1mJou7a+AVheXt5nmuZLAI4DeMjvgVr2fgMwqmnaxy0tLTxrai41A5ifn79L07RXAbwC4O6aR+TNwE0AH5qmeb69vf1Pb022r1U1AKUUSSmPEtF7AO6pZRA1tF1RSg0KIT4lIlWNnaoAZDKZA7FY7AKAw9V0GkCbiXw+f7Stre33Sm1XDMAwjOeJ6BMAd1TaWcD1bymlXkwkEl9W0o9nADzls9ksT/fXKukghLrv67o+6HVJeAIwMzOjNTc3j/LWFoKgarq8lMvljqdSKdOtsSsAS/zXAJ50Mxax37/L5XLPuEEoC8Ca9hcB9EdMnNfhfKbr+gvllkNZAFLKdwG86bW3iNY7I4TYUcOOAAzDeI6IKnqjRhQAlFLpnXaHbQEsLi7el8/nf7EOLFHVVcm41uLx+COtra1/OBttAWCt++8BHKmkh11Q94qu60843wdbABiGcYyIeMsLpUxPT2NlZQXd3d2Ix+N+j+GEEGKTtk0ArIPNHIAWv3v2Ym98fBwjIyPFqv39/ejp6fHSrJI6y6ZpdpQeoDYBkFIOAzhViUW/6paKZ5vpdBoDAwN+mS+1c0oIcdr+xwaApaWl29fX12/U8Ui7MSin+FQqheHhYTQ1NQUB4Kamaffa9wkbAKSUrwPgb/26ljqLt7XxEfos/1EEYL35ZwE8UE/1IYlnidd1Xe/gHaEIQEr5GICJBhFvyzwshPixCMAwjHNEdLJeAEJ88hsSlVLnE4nESXsGXPXh9tYTvyiItwY6K4ToJMMwEkSU8TT6GitFSLytpI0B1OXQE0Hx/PLv4Wuut5VSb9X4cMs2j6L44hZI9A7PgK+I6NmgAERVvLX9X+a7/Z8BsCvL9xJl8ZbYSQbAzkfdb/W7QDxLvsEAbpV4aX3jMDY2htHR/06eXV1dGBoaCur7vtpxrzKAqlxKXnrcBRDMQAEwpIhDKAIIZAmUzpAIQygugUBegs4lElEIxZdgYNugG4SALz68vKYmA/8QijIEpdTlunwKRxWC/SmcJqLPvcwXP+s43wlhLIfiYUhKmQSw4Kc4r7YiAGG/fSHCcXkHvQ7cz3ohQpgTQhy0r8Q+ICKO9AqlhAHBeSXGwU5XQlFvdeo8PLFXiL1DAZYjQoiJ0mtxdokdCLBDV9OlEPr6+tDb2+vapsoKm6/F2UhYjhGngKmpKayurgblHLW72+wY4f9aoa7sGmuukupuaZbTNG3/FteYNQtCc47Wkd5pIcSGAzhS7vE6QFguFAqdyWSSY42LZUuAhJSSo73/ddLvvVI+QIL1Wo7SHyIUB+zXY5jQdf1x1xAZ7m1hYeH+eDzOyQmc1bEXylo+nz+0XTB1uTA5Dor+Yi+orzhMzhYtpTwDYHCXQzgrhNhRw/+hsm5Pt6GDpW04DR0ub0No6ISJ0mXSsCkzpRAaOmnKsSSOAeCtMrS0OQBv6Lp+wWuOkPOl75oy47ZLWPHFHGH2ch2jTPkw85FpmudCS5x0gilJnT3BidJu4Kr8naPZRiKVOrudEE6eLhQKnKvztA/XbNeVUt/EYrGLkU6e3umJ2unzRPSwdfVup8/zzdNtRLSulPpbKZUjohynzwOYVUr9Wo/0+X8Ac8mstMkUD9gAAAAASUVORK5CYII="},"813d":function(t,a,e){var n=e("8378");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=e("4f06").default;i("78249eec",n,!0,{sourceMap:!1,shadowMode:!1})},8378:function(t,a,e){var n=e("24fb");a=n(!1),a.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-4bb9d7bc]{height:100%;display:flex;font-size:16px;width:100%;height:100%;display:block;background-color:#fff}.content[data-v-4bb9d7bc]{display:flex;flex-direction:column;align-items:center;justify-content:center}.loader[data-v-4bb9d7bc]{z-index:1;position:absolute;top:%?130?%;width:%?250?%;height:%?250?%;border-radius:50%;background:linear-gradient(#f07e6e,#84cdfa,#5ad1cd);-webkit-animation:animate-data-v-4bb9d7bc 1.2s linear infinite;animation:animate-data-v-4bb9d7bc 1.2s linear infinite}@-webkit-keyframes animate-data-v-4bb9d7bc{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes animate-data-v-4bb9d7bc{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.loader[data-v-4bb9d7bc]:after{content:"";position:absolute;top:10px;left:10px;right:10px;bottom:10px;background:#f1f1f1;border:solid #fff 10px;border-radius:50%}.inputpassword[data-v-4bb9d7bc]{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-4bb9d7bc]{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-4bb9d7bc]{position:absolute;top:%?155?%;z-index:10}.loginBtn[data-v-4bb9d7bc]{font-size:%?34?%;background:linear-gradient(90deg,#4bb0ff,#6149f6);border-radius:%?200?%;width:80%;position:absolute;color:#fff;top:%?980?%}.register[data-v-4bb9d7bc]{position:absolute;top:%?1080?%;text-align:center;color:red}.logoimage[data-v-4bb9d7bc]{height:%?200?%;width:%?200?%;border-radius:%?100?%;background:#fff;text-align:center;line-height:%?200?%;font-size:%?50?%;color:#14141a}.text-area[data-v-4bb9d7bc]{position:absolute;top:%?400?%;display:flex;justify-content:center}.title[data-v-4bb9d7bc]{font-size:%?50?%;color:#14141a}.bgimage[data-v-4bb9d7bc]{position:absolute;left:0;bottom:0;z-index:-1;width:%?464?%;height:%?590?%}body.?%PAGE?%[data-v-4bb9d7bc]{background-color:#fff}',""]),t.exports=a},"8c13":function(t,a,e){"use strict";var n=e("813d"),i=e.n(n);i.a},a321:function(t,a,e){"use strict";e.r(a);var n=e("a3f3"),i=e.n(n);for(var o in n)"default"!==o&&function(t){e.d(a,t,(function(){return n[t]}))}(o);a["default"]=i.a},a3f3:function(t,a,e){"use strict";var n=e("4ea4");Object.defineProperty(a,"__esModule",{value:!0}),a.default=void 0;n(e("7a11"));var i=n(e("73ca")),o={components:{},data:function(){return{title:"Login",phone:"",language:null,password:"",logoState:!0,longState:!1,globalData:{bindWx:null,machine_id:null},promoter_id:""}},methods:{back:function(){uni.reLaunch({url:"/pages/login/select_login?machine_id="+this.globalData.machine_id})},bindLogin:function(){var t=this;if(this.phone)if(this.password){this.phone,this.password;uni.showLoading({title:this.$i18n.messages[this.$i18n.locale]["正在登录中"]}),i.default.bindWx({s:"User.webLogin",phone:this.phone,password:this.password}).then((function(a){t.globalData.bindWx=a,uni.setStorageSync("globalData",t.globalData),uni.hideLoading(),uni.showToast({icon:"none",title:t.$i18n.messages[t.$i18n.locale]["登陆成功"]}),uni.reLaunch({url:"/pages/index/detailsphone?machine_id="+t.globalData.machine_id})})).catch((function(t){uni.hideLoading(),uni.showToast({title:t.msg,icon:"none"})}))}else uni.showToast({icon:"none",title:this.$i18n.messages[this.$i18n.locale]["请输入登录密码"]});else uni.showToast({icon:"none",title:this.$i18n.messages[this.$i18n.locale]["请输入您的手机号"]})},isPoneAvailable:function(t){var a=/^1[0-9]{10}$/;return!!a.test(t)}},onReady:function(){},onLoad:function(t){try{var a=uni.getStorageSync("globalData");a&&(this.globalData=a)}catch(e){}t.promoter_id&&(this.promoter_id=t.promoter_id),this.longState=!0,wx.setNavigationBarTitle({title:"Customize Phone case"});try{uni.setStorageSync("globalData",this.globalData)}catch(e){}},onShow:function(){}};a.default=o},b555:function(t,a,e){"use strict";e.r(a);var n=e("02e6"),i=e("a321");for(var o in i)"default"!==o&&function(t){e.d(a,t,(function(){return i[t]}))}(o);e("8c13");var s,r=e("f0c5"),d=Object(r["a"])(i["default"],n["b"],n["c"],!1,null,"4bb9d7bc",null,!1,n["a"],s);a["default"]=d.exports},bc47:function(t,a,e){t.exports=e.p+"static/img/bg.f6e7ea0d.png"}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-login-login"],{"010a":function(t,a,e){var n=e("24fb");a=n(!1),a.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-b2f5a1fc]{height:100%;display:flex;font-size:16px;width:100%;height:100%;display:block;background-color:#fff}.content[data-v-b2f5a1fc]{display:flex;flex-direction:column;align-items:center;justify-content:center}.loader[data-v-b2f5a1fc]{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-b2f5a1fc 1.2s linear infinite;animation:animate-data-v-b2f5a1fc 1.2s linear infinite}@-webkit-keyframes animate-data-v-b2f5a1fc{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes animate-data-v-b2f5a1fc{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.loader[data-v-b2f5a1fc]:after{content:"";position:absolute;top:10px;left:10px;right:10px;bottom:10px;background:#f1f1f1;border:solid #fff 10px;border-radius:50%}.inputpassword[data-v-b2f5a1fc]{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-b2f5a1fc]{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-b2f5a1fc]{position:absolute;top:%?155?%;z-index:10}.loginBtn[data-v-b2f5a1fc]{font-size:%?34?%;background:linear-gradient(90deg,#f29f3d,#f29f3d);border-radius:%?200?%;width:80%;position:absolute;color:#fff;top:%?980?%}.register[data-v-b2f5a1fc]{position:absolute;top:%?1080?%;text-align:center;color:red}.logoimage[data-v-b2f5a1fc]{height:%?200?%;width:%?200?%;border-radius:%?100?%;background:#fff;text-align:center;line-height:%?200?%;font-size:%?50?%;color:#14141a}.text-area[data-v-b2f5a1fc]{position:absolute;top:%?400?%;display:flex;justify-content:center}.title[data-v-b2f5a1fc]{font-size:%?50?%;color:#14141a}.bgimage[data-v-b2f5a1fc]{position:absolute;left:0;bottom:0;z-index:-1;width:%?464?%;height:%?590?%}body.?%PAGE?%[data-v-b2f5a1fc]{background-color:#fff}',""]),t.exports=a},"0469":function(t,a,e){t.exports=e.p+"static/img/bg.f6e7ea0d.png"},"24e3":function(t,a,e){var n=e("010a");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=e("4f06").default;i("4784dcb6",n,!0,{sourceMap:!1,shadowMode:!1})},"4a75":function(t,a,e){"use strict";var n=e("4ea4");Object.defineProperty(a,"__esModule",{value:!0}),a.default=void 0;n(e("be66"));var i=n(e("c190")),o={components:{},data:function(){return{title:"Login",phone:"",language:null,password:"",logoState:!0,longState:!1,globalData:{bindWx:null,machine_id:null},promoter_id:""}},methods:{back:function(){uni.reLaunch({url:"/pages/login/select_login?machine_id="+this.globalData.machine_id})},bindLogin:function(){var t=this;if(this.phone)if(this.password){this.phone,this.password;uni.showLoading({title:this.$i18n.messages[this.$i18n.locale]["正在登录中"]}),i.default.bindWx({s:"User.webLogin",phone:this.phone,password:this.password}).then((function(a){t.globalData.bindWx=a,uni.setStorageSync("globalData",t.globalData),uni.hideLoading(),uni.showToast({icon:"none",title:t.$i18n.messages[t.$i18n.locale]["登陆成功"]}),uni.reLaunch({url:"/pages/index/detailsphone?machine_id="+t.globalData.machine_id})})).catch((function(t){uni.hideLoading(),uni.showToast({title:t.msg,icon:"none"})}))}else uni.showToast({icon:"none",title:this.$i18n.messages[this.$i18n.locale]["请输入登录密码"]});else uni.showToast({icon:"none",title:this.$i18n.messages[this.$i18n.locale]["请输入您的手机号"]})},isPoneAvailable:function(t){var a=/^1[0-9]{10}$/;return!!a.test(t)}},onReady:function(){},onLoad:function(t){try{var a=uni.getStorageSync("globalData");a&&(this.globalData=a)}catch(e){}t.promoter_id&&(this.promoter_id=t.promoter_id),this.longState=!0,uni.setNavigationBarTitle({title:this.$i18n.messages[this.$i18n.locale]["定制蛋糕"]});try{uni.setStorageSync("globalData",this.globalData)}catch(e){}},onShow:function(){}};a.default=o},"4e88":function(t,a,e){"use strict";var n;e.d(a,"b",(function(){return i})),e.d(a,"c",(function(){return o})),e.d(a,"a",(function(){return n}));var i=function(){var t=this,a=t.$createElement,n=t._self._c||a;return t.longState?n("v-uni-view",{staticClass:"content"},[n("v-uni-view",{staticStyle:{width:"100%",height:"120upx"},on:{click:function(a){arguments[0]=a=t.$handleEvent(a),t.back()}}},[n("v-uni-image",{staticStyle:{width:"60upx",height:"60upx","margin-left":"25upx","margin-top":"25upx"},attrs:{src:e("f655"),mode:"aspectFit"}})],1),n("v-uni-view",{staticClass:"loader"}),n("v-uni-view",{staticClass:"logoimg"},[n("v-uni-view",{staticClass:"logoimage"},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["登录文本"]))])],1),n("v-uni-input",{staticClass:"inputphone",attrs:{type:"number",placeholder:t.$i18n.messages[t.$i18n.locale]["请输入您的手机号"],clearable:!0,focus:!0},model:{value:t.phone,callback:function(a){t.phone=a},expression:"phone"}}),n("v-uni-input",{staticClass:"inputpassword",attrs:{type:"password",placeholder:t.$i18n.messages[t.$i18n.locale]["请输入登录密码"],displayable:!0},model:{value:t.password,callback:function(a){t.password=a},expression:"password"}}),t.logoState?n("v-uni-button",{staticClass:"loginBtn",attrs:{"hover-class":"hover-class-bg"},on:{click:function(a){arguments[0]=a=t.$handleEvent(a),t.bindLogin.apply(void 0,arguments)}}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["登录"]))]):t._e(),n("v-uni-image",{staticClass:"bgimage",attrs:{src:e("0469"),mode:""}})],1):t._e()},o=[]},"93c6":function(t,a,e){"use strict";var n=e("24e3"),i=e.n(n);i.a},c46a:function(t,a,e){"use strict";e.r(a);var n=e("4e88"),i=e("c9d8");for(var o in i)"default"!==o&&function(t){e.d(a,t,(function(){return i[t]}))}(o);e("93c6");var s,r=e("f0c5"),l=Object(r["a"])(i["default"],n["b"],n["c"],!1,null,"b2f5a1fc",null,!1,n["a"],s);a["default"]=l.exports},c9d8:function(t,a,e){"use strict";e.r(a);var n=e("4a75"),i=e.n(n);for(var o in n)"default"!==o&&function(t){e.d(a,t,(function(){return n[t]}))}(o);a["default"]=i.a},f655:function(t,a){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAABW5JREFUeF7tm19oHEUcx7+/O9iAWDViIOzcpUZrGvXyYp+0Vcib6IMgeglJpH8QfFILGn0QkhYUpFZqxRdBkkqxoGITHxSftdEXY/IQbROqobmdI+RPz1SfNtyN/M7deNkkt3t3u7ebnPOW3Mxv5vvZmZ2d+f1+hIBLJpMRRPQogAeJqBNAB4BWAHcC2Gd1/xeANQCLAOaUUtcAXFVK/ZRMJmWQQ6QgjGez2UMA+pRSTwFg0bWUa0T0LYBLuq5P1mJou7a+AVheXt5nmuZLAI4DeMjvgVr2fgMwqmnaxy0tLTxrai41A5ifn79L07RXAbwC4O6aR+TNwE0AH5qmeb69vf1Pb022r1U1AKUUSSmPEtF7AO6pZRA1tF1RSg0KIT4lIlWNnaoAZDKZA7FY7AKAw9V0GkCbiXw+f7Stre33Sm1XDMAwjOeJ6BMAd1TaWcD1bymlXkwkEl9W0o9nADzls9ksT/fXKukghLrv67o+6HVJeAIwMzOjNTc3j/LWFoKgarq8lMvljqdSKdOtsSsAS/zXAJ50Mxax37/L5XLPuEEoC8Ca9hcB9EdMnNfhfKbr+gvllkNZAFLKdwG86bW3iNY7I4TYUcOOAAzDeI6IKnqjRhQAlFLpnXaHbQEsLi7el8/nf7EOLFHVVcm41uLx+COtra1/OBttAWCt++8BHKmkh11Q94qu60843wdbABiGcYyIeMsLpUxPT2NlZQXd3d2Ix+N+j+GEEGKTtk0ArIPNHIAWv3v2Ym98fBwjIyPFqv39/ejp6fHSrJI6y6ZpdpQeoDYBkFIOAzhViUW/6paKZ5vpdBoDAwN+mS+1c0oIcdr+xwaApaWl29fX12/U8Ui7MSin+FQqheHhYTQ1NQUB4Kamaffa9wkbAKSUrwPgb/26ljqLt7XxEfos/1EEYL35ZwE8UE/1IYlnidd1Xe/gHaEIQEr5GICJBhFvyzwshPixCMAwjHNEdLJeAEJ88hsSlVLnE4nESXsGXPXh9tYTvyiItwY6K4ToJMMwEkSU8TT6GitFSLytpI0B1OXQE0Hx/PLv4Wuut5VSb9X4cMs2j6L44hZI9A7PgK+I6NmgAERVvLX9X+a7/Z8BsCvL9xJl8ZbYSQbAzkfdb/W7QDxLvsEAbpV4aX3jMDY2htHR/06eXV1dGBoaCur7vtpxrzKAqlxKXnrcBRDMQAEwpIhDKAIIZAmUzpAIQygugUBegs4lElEIxZdgYNugG4SALz68vKYmA/8QijIEpdTlunwKRxWC/SmcJqLPvcwXP+s43wlhLIfiYUhKmQSw4Kc4r7YiAGG/fSHCcXkHvQ7cz3ohQpgTQhy0r8Q+ICKO9AqlhAHBeSXGwU5XQlFvdeo8PLFXiL1DAZYjQoiJ0mtxdokdCLBDV9OlEPr6+tDb2+vapsoKm6/F2UhYjhGngKmpKayurgblHLW72+wY4f9aoa7sGmuukupuaZbTNG3/FteYNQtCc47Wkd5pIcSGAzhS7vE6QFguFAqdyWSSY42LZUuAhJSSo73/ddLvvVI+QIL1Wo7SHyIUB+zXY5jQdf1x1xAZ7m1hYeH+eDzOyQmc1bEXylo+nz+0XTB1uTA5Dor+Yi+orzhMzhYtpTwDYHCXQzgrhNhRw/+hsm5Pt6GDpW04DR0ub0No6ISJ0mXSsCkzpRAaOmnKsSSOAeCtMrS0OQBv6Lp+wWuOkPOl75oy47ZLWPHFHGH2ch2jTPkw85FpmudCS5x0gilJnT3BidJu4Kr8naPZRiKVOrudEE6eLhQKnKvztA/XbNeVUt/EYrGLkU6e3umJ2unzRPSwdfVup8/zzdNtRLSulPpbKZUjohynzwOYVUr9Wo/0+X8Ac8mstMkUD9gAAAAASUVORK5CYII="}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-mine-goodsordersize"],{"0150":function(t,e,n){"use strict";var i;n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return i}));var a=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",{staticStyle:{position:"fixed","z-index":"999"},style:{height:t.height+"px",background:t.background}},[i("v-uni-view",{staticClass:"head",style:{height:t.height+"px",background:t.background}},[t.backShow?i("v-uni-view",{staticClass:"back",style:{top:t.top+"px",color:t.color},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.back.apply(void 0,arguments)}}},[1==t.worksid?i("v-uni-image",{staticStyle:{width:"39upx",height:"39upx","margin-top":"calc((32px - 39upx)/2)","margin-left":"auto","margin-right":"auto"},attrs:{src:n("8c9b"),mode:"aspectFit"}}):t._e(),0==t.worksid?i("v-uni-image",{staticStyle:{width:"38upx",height:"38upx","margin-top":"calc((32px - 39upx)/2)","margin-left":"auto","margin-right":"auto"},attrs:{src:n("814a"),mode:"aspectFit"}}):t._e()],1):t._e(),t.titleShow?i("v-uni-view",{staticClass:"title",style:{top:t.top+"px",color:t.color,"font-size":t.size+"rpx"}},[t._v(t._s(t.title))]):t._e()],1)],1)},o=[]},"1ada":function(t,e,n){"use strict";var i=n("8af9"),a=n.n(i);a.a},"3ad5":function(t,e,n){"use strict";var i=n("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=i(n("b898")),o=i(n("7561")),r=i(n("f960")),u={components:{uParse:a.default,myhead:r.default},computed:{},data:function(){return{goods:{},queryPage:{s:"Surface.getDetail",surface_id:null},myheadtext:""}},methods:{loadData:function(){var t=this;uni.showLoading({title:this.$i18n.messages[this.$i18n.locale]["正在加载中"]}),o.default.queryListPhone(this.queryPage).then((function(e){t.goods=e,t.myheadtext=e.alias_name,wx.setNavigationBarTitle({title:t.goods.alias_name}),uni.hideLoading(),uni.stopPullDownRefresh()})).catch((function(t){uni.hideLoading(),uni.showToast({title:t.msg||t.data,icon:"none"})}))}},onPullDownRefresh:function(){this.loadData()},onLoad:function(t){this.queryPage.surface_id=t.surface_id,this.loadData()},onShow:function(){}};e.default=u},"3b69":function(t,e,n){"use strict";n("a9e3"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i={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(){this.worksid>0?uni.switchTab({url:"../home/home"}):uni.navigateBack()}},onLoad:function(t){},onShow:function(){}};e.default=i},"3fe2":function(t,e,n){"use strict";n.r(e);var i=n("d839"),a=n("9766");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("1ada");var r,u=n("f0c5"),s=Object(u["a"])(a["default"],i["b"],i["c"],!1,null,"40bb636a",null,!1,i["a"],r);e["default"]=s.exports},"453d":function(t,e,n){"use strict";n.r(e);var i=n("3b69"),a=n.n(i);for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},7864: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/* 文章场景相关 */uni-page-body[data-v-40bb636a]{background:#131319!important;color:#fff}body.?%PAGE?%[data-v-40bb636a]{background:#131319!important}',""]),t.exports=e},"814a":function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAB5ElEQVR4Xu3bTUrEMBjG8f8cR/AIom5EUTyIOxci3kDEhTsv48LvEwheREHEjQRmoJSkTdp8vW8667ST5zd503TSrmj8s2o8PwvAMgLKCVwDV8A3cAS8l+hKqRK4B846gV+AvVYA+uFN7mdgvwUAW/g/4BB41A7gCn8CPJQIb74z1xxQZfhcANWGzwFQdfjUANWHTwkgInwqADHhUwCICh8bQFz4mAAiw8cCEBs+BoAt/C9wWnJ5G7KsnrMUdoU39/ZPIZ0o2XYqgIrwU0tATfgpAKrChwLcAee9ejUTnqia7883vnOAyvC+I0BteB8A1eHHANSHHwJoIrwL4AK41Tbbu1abtqvAB7DdOUD8pW5oqW0D+AS2Ogf9AMeS1vch9xY2gEvgpuUSMNmbngQ3P34TCGNLYfUIYwDqy8EHQDWCL4BahBAAg9D0HyKbq4MqhNARoA5hKoCacpgDMITQxMbIUDmYJ7+KPvzke0M0dwSIR4gF4CqH6kdCTACRCLEBxCGkABCFkApADEJKABEIqQGqR8gBUDVCLoBqEXICDCEcrN8a8V3BRmuXG8CFYF6Y2omWKuBEJQBsCK/AbkC/ozUtBWACmN0nswv1td56e4uWKuBEJQECupmu6QKQzlbGmZsfAf9EPqRB6TdviAAAAABJRU5ErkJggg=="},"8af9":function(t,e,n){var i=n("7864");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("4f06").default;a("1f7cfb67",i,!0,{sourceMap:!1,shadowMode:!1})},"8d18":function(t,e,n){var i=n("ea19");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var a=n("4f06").default;a("4bc5b904",i,!0,{sourceMap:!1,shadowMode:!1})},9766:function(t,e,n){"use strict";n.r(e);var i=n("3ad5"),a=n.n(i);for(var o in i)"default"!==o&&function(t){n.d(e,t,(function(){return i[t]}))}(o);e["default"]=a.a},d622:function(t,e,n){"use strict";var i=n("8d18"),a=n.n(i);a.a},d839:function(t,e,n){"use strict";var i;n.d(e,"b",(function(){return a})),n.d(e,"c",(function(){return o})),n.d(e,"a",(function(){return i}));var a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("v-uni-view",{staticClass:"detail full-width"},[n("myhead",{attrs:{worksid:0,title:t.myheadtext,color:"#fff",titleShow:!0,backShow:!0,background:"none"}}),n("v-uni-view",{staticStyle:{width:"484upx","min-height":"577upx",position:"relative",margin:"40upx auto 40upx"}},[n("v-uni-image",{staticStyle:{width:"484upx",height:"577upx",margin:"auto",display:"block"},attrs:{src:t.goods.preview,mode:"widthFix"}})],1),t.goods.detail?n("uParse",{attrs:{content:t.goods.detail}}):t._e()],1)},o=[]},ea19:function(t,e,n){var i=n("24fb");e=i(!1),e.push([t.i,".head[data-v-0cb5907e]{position:fixed;width:%?750?%;z-index:888;align-items:center}.title[data-v-0cb5907e]{position:fixed;width:%?750?%;text-align:center;line-height:32px;height:32px}.back[data-v-0cb5907e]{position:fixed;width:%?81?%;text-align:center;line-height:32px;height:32px;font-size:%?32?%;font-weight:900;z-index:9;align-items:center}",""]),t.exports=e},f960:function(t,e,n){"use strict";n.r(e);var i=n("0150"),a=n("453d");for(var o in a)"default"!==o&&function(t){n.d(e,t,(function(){return a[t]}))}(o);n("d622");var r,u=n("f0c5"),s=Object(u["a"])(a["default"],i["b"],i["c"],!1,null,"0cb5907e",null,!1,i["a"],r);e["default"]=s.exports}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-mine-goodsordersize"],{"0f9c":function(t,e,i){"use strict";var n=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var a=n(i("6ae2")),o=n(i("5574")),r=n(i("9cb9")),u={components:{uParse:a.default,myhead:r.default},computed:{},data:function(){return{goods:{},queryPage:{s:"Surface.getDetail",surface_id:null},myheadtext:""}},methods:{loadData:function(){var t=this;uni.showLoading({title:this.$i18n.messages[this.$i18n.locale]["正在加载中"]}),o.default.queryListPhone(this.queryPage).then((function(e){t.goods=e,t.myheadtext=e.alias_name,wx.setNavigationBarTitle({title:t.goods.alias_name}),uni.hideLoading(),uni.stopPullDownRefresh()})).catch((function(t){uni.hideLoading(),uni.showToast({title:t.msg||t.data,icon:"none"})}))}},onPullDownRefresh:function(){this.loadData()},onLoad:function(t){this.queryPage.surface_id=t.surface_id,this.loadData()},onShow:function(){}};e.default=u},"128f":function(t,e,i){"use strict";i.r(e);var n=i("5035"),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},2175: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:"detail full-width"},[i("myhead",{attrs:{worksid:0,title:t.myheadtext,color:"#fff",titleShow:!0,backShow:!0,background:"none"}}),i("v-uni-view",{staticStyle:{width:"484upx","min-height":"577upx",position:"relative",margin:"40upx auto 40upx"}},[i("v-uni-image",{staticStyle:{width:"484upx",height:"577upx",margin:"auto",display:"block"},attrs:{src:t.goods.preview,mode:"widthFix"}})],1),t.goods.detail?i("uParse",{attrs:{content:t.goods.detail}}):t._e()],1)},o=[]},"3e5b":function(t,e,i){var n=i("24fb");e=n(!1),e.push([t.i,".head[data-v-a3c3d528]{position:fixed;width:%?750?%;z-index:888;align-items:center}.title[data-v-a3c3d528]{position:fixed;width:%?750?%;text-align:center;line-height:32px;height:32px}.back[data-v-a3c3d528]{position:fixed;width:%?81?%;text-align:center;line-height:32px;height:32px;font-size:%?32?%;font-weight:900;z-index:9;align-items:center}",""]),t.exports=e},5035:function(t,e,i){"use strict";i("a9e3"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={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(){this.worksid>0?uni.switchTab({url:"../home/home"}):uni.navigateBack()}},onLoad:function(t){},onShow:function(){}};e.default=n},"5d93":function(t,e){t.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=="},"843e":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/* 文章场景相关 */uni-page-body[data-v-40bb636a]{background:#131319!important;color:#fff}body.?%PAGE?%[data-v-40bb636a]{background:#131319!important}',""]),t.exports=e},"9cb9":function(t,e,i){"use strict";i.r(e);var n=i("f48e"),a=i("128f");for(var o in a)"default"!==o&&function(t){i.d(e,t,(function(){return a[t]}))}(o);i("b2f2");var r,u=i("f0c5"),c=Object(u["a"])(a["default"],n["b"],n["c"],!1,null,"a3c3d528",null,!1,n["a"],r);e["default"]=c.exports},a047:function(t,e,i){"use strict";i.r(e);var n=i("0f9c"),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},b2f2:function(t,e,i){"use strict";var n=i("f0dc"),a=i.n(n);a.a},d67e:function(t,e,i){"use strict";i.r(e);var n=i("2175"),a=i("a047");for(var o in a)"default"!==o&&function(t){i.d(e,t,(function(){return a[t]}))}(o);i("e8d3");var r,u=i("f0c5"),c=Object(u["a"])(a["default"],n["b"],n["c"],!1,null,"40bb636a",null,!1,n["a"],r);e["default"]=c.exports},e8d3:function(t,e,i){"use strict";var n=i("fa4a"),a=i.n(n);a.a},f0dc:function(t,e,i){var n=i("3e5b");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var a=i("4f06").default;a("56a5a55e",n,!0,{sourceMap:!1,shadowMode:!1})},f48e: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",{staticStyle:{position:"fixed","z-index":"999"},style:{height:t.height+"px",background:t.background}},[n("v-uni-view",{staticClass:"head",style:{height:t.height+"px",background:t.background}},[t.backShow?n("v-uni-view",{staticClass:"back",style:{top:t.top+"px",color:t.color},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.back.apply(void 0,arguments)}}},[1==t.worksid?n("v-uni-image",{staticStyle:{width:"39upx",height:"39upx","margin-top":"calc((32px - 39upx)/2)","margin-left":"auto","margin-right":"auto"},attrs:{src:i("ed3c"),mode:"aspectFit"}}):t._e(),0==t.worksid?n("v-uni-image",{staticStyle:{width:"23upx",height:"39upx","margin-top":"calc((32px - 39upx)/2)","margin-left":"auto","margin-right":"auto"},attrs:{src:i("5d93"),mode:"aspectFit"}}):t._e()],1):t._e(),t.titleShow?n("v-uni-view",{staticClass:"title",style:{top:t.top+"px",color:t.color,"font-size":t.size+"rpx"}},[t._v(t._s(t.title))]):t._e()],1)],1)},o=[]},fa4a:function(t,e,i){var n=i("843e");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var a=i("4f06").default;a("a8c2a80e",n,!0,{sourceMap:!1,shadowMode:!1})}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-mine-orderDetail"],{"08c9":function(e,t,i){var r=i("c7de");r.__esModule&&(r=r.default),"string"===typeof r&&(r=[[e.i,r,""]]),r.locals&&(e.exports=r.locals);var a=i("4f06").default;a("355b73a4",r,!0,{sourceMap:!1,shadowMode:!1})},"2c8a":function(e,t,i){"use strict";i.r(t);var r=i("513f"),a=i("6243");for(var o in a)"default"!==o&&function(e){i.d(t,e,(function(){return a[e]}))}(o);i("77bf");var n,s=i("f0c5"),d=Object(s["a"])(a["default"],r["b"],r["c"],!1,null,"b9ab6740",null,!1,r["a"],n);t["default"]=d.exports},"513f":function(e,t,i){"use strict";var r;i.d(t,"b",(function(){return a})),i.d(t,"c",(function(){return o})),i.d(t,"a",(function(){return r}));var a=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("v-uni-view",{staticClass:"full-width full-height"},[null!=e.orderData?i("v-uni-scroll-view",{staticClass:"scroll_content"},[i("v-uni-view",{staticClass:"order_detail_top"},[i("v-uni-view",{staticStyle:{display:"flex","flex-direction":"row","padding-left":"40upx",width:"100%"}},[i("v-uni-view",{staticStyle:{width:"60upx","margin-top":"40upx","margin-bottom":"30upx"}},[i("v-uni-view",{staticStyle:{width:"10px",height:"10px",background:"#F29F3D","border-radius":"50%"}}),i("v-uni-view",{staticStyle:{width:"1px",height:"50px",background:"#F29F3D","margin-left":"10upx"}}),i("v-uni-view",{staticStyle:{width:"12upx",height:"12upx",background:"#FFFFFF",border:"2px solid #F29F3D","border-radius":"50%","margin-left":"3upx"}})],1),i("v-uni-view",{staticStyle:{"margin-top":"20upx","margin-bottom":"20upx",width:"100%"}},[i("v-uni-view",{staticStyle:{"font-size":"32upx","font-weight":"580",color:"#F29F3D"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale][e.orderData.status.text]))]),i("v-uni-view",{staticStyle:{"font-size":"32upx","font-weight":"580",color:"#F29F3D",width:"340upx",height:"50upx",position:"absolute",top:"170upx"}},[e._v(e._s("PayPal"==e.orderData.pay_type.text?"Pay with PayPal":"Pay offine"))]),i("v-uni-view",{staticStyle:{"font-size":"27upx",color:"#333333","margin-top":"120upx","font-weight":"550",width:"calc(100% - 10upx)",display:"flex","flex-direction":"row","max-width":"calc(100% - 20upx)"}},[e._v(e._s(null!=e.orderData.order_express?e.orderData.order_express.address:""))]),i("v-uni-view",{staticStyle:{"font-size":"25upx","font-family":"PingFang","font-weight":"400",color:"#333333","margin-top":"3upx"}},[e._v(e._s(null!=e.orderData.order_express?e.orderData.order_express.receivor:"")+"\n\t\t\t\t\t\t"+e._s(null!=e.orderData.order_express?e.orderData.order_express.phone:""))])],1)],1)],1),null!=e.orderData.order_queue?i("v-uni-view",{staticClass:"order_detail_image"},[i("v-uni-view",{staticStyle:{display:"flex",width:"calc(100% - 30upx)","flex-direction":"row",height:"220upx"}},[i("v-uni-view",{staticStyle:{width:"150upx",height:"150upx","border-radius":"10upx","margin-top":"10upx","margin-left":"40upx",position:"relative","align-items":"center","justify-content":"center",border:"5upx solid #F29F3D"}},[i("v-uni-image",{staticStyle:{position:"absolute",height:"150upx","border-radius":"10upx",top:"0",left:"0",right:"0",bottom:"0",margin:"auto"},attrs:{src:e.orderData.order_queue.back_image,mode:"heightFix"}}),i("v-uni-image",{staticStyle:{height:"150upx",position:"absolute","border-radius":"10upx",margin:"auto",left:"0",top:"0",right:"0",bottom:"0"},attrs:{src:e.orderData.order_queue.works_image,mode:"heightFix"}})],1),i("v-uni-view",{staticStyle:{"font-size":"28upx",color:"#333333","margin-left":"30upx",width:"360upx","margin-top":"15upx"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale][e.orderData.order_goods.goods_name]||""))])],1),i("v-uni-view",{staticStyle:{width:"100%",height:"1upx",background:"#EEEEEE"}}),i("v-uni-view",{staticStyle:{display:"flex","flex-direction":"row",float:"right","justify-content":"center","align-items":"center",height:"110upx","margin-right":"32upx"}},[i("v-uni-view",{staticStyle:{"font-size":"28upx","font-family":"Source Han Sans CN","font-weight":"600",color:"#333333"}},[e._v("Actual payment:")]),i("v-uni-view",{staticStyle:{"font-size":"36upx","font-family":"Source Han Sans CN","font-weight":"600",color:"#F56364"}},[e._v(e._s(e.orderData.currency_symbol)+e._s(e.orderData.order_queue.price))])],1)],1):e._e(),null!=e.orderData?i("v-uni-view",{staticClass:"order_detail_logistics"},[i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["打印编号"])+":"+e._s(e.orderData.order_queue.id))]),i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["设备编号"])+":"+e._s(e.orderData.order_queue.machine_id))]),i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["订单编号"])+":"+e._s(e.orderData.id))]),i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["下单时间"])+":"+e._s(e.orderData.create_time))]),0!=e.orderData.promoter_id?i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["推广编号"])+":"+e._s(e.orderData.promoter_id))]):e._e(),null!=e.orderData.order_express&&null!=e.orderData.order_express.express_name?i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["物流公司"])+":"+e._s(e.orderData.order_express.express_name))]):e._e(),null!=e.orderData.order_express&&null!=e.orderData.order_express.express_no?i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["快递单号"])+": "+e._s(e.orderData.order_express.express_no))]):e._e(),null!=e.orderData.send_goods_time?i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["发货时间"])+":"+e._s(e.orderData.send_goods_time))]):e._e(),null!=e.orderData.order_express&&null!=e.orderData.order_express.express_url?i("v-uni-view",{staticClass:"text_logistics",on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.toSearchLogistics(e.orderData.order_express.express_url)}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["物流详情"])+">")]):e._e()],1):e._e()],1):e._e(),i("v-uni-view",{staticClass:"button_save",on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.againOrder()}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["再来一单"]))])],1)},o=[]},6243:function(e,t,i){"use strict";i.r(t);var r=i("de9d"),a=i.n(r);for(var o in r)"default"!==o&&function(e){i.d(t,e,(function(){return r[e]}))}(o);t["default"]=a.a},"77bf":function(e,t,i){"use strict";var r=i("08c9"),a=i.n(r);a.a},c7de:function(e,t,i){var r=i("24fb");t=r(!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-b9ab6740]{background:#f5f5f5!important}.scroll_content[data-v-b9ab6740]{height:100%;width:100%;overflow:hidden;overflow-y:scroll;position:relative}.scroll_content .order_detail_top[data-v-b9ab6740]{width:calc(100% - %?55?%);margin:%?25?%;background:#fff;border-radius:%?30?%}.scroll_content .order_detail_image[data-v-b9ab6740]{width:calc(100% - %?55?%);height:%?320?%;margin:%?25?%;background:#fff;border-radius:%?30?%;padding-top:%?30?%}.scroll_content .order_detail_logistics[data-v-b9ab6740]{width:calc(100% - %?80?%);margin:%?25?%;background:#fff;border-radius:%?30?%;padding-top:%?25?%;padding-left:%?30?%;padding-bottom:%?25?%;position:relative}.scroll_content .order_detail_logistics .text[data-v-b9ab6740]{font-size:%?28?%;color:#666}.scroll_content .order_detail_logistics .text_logistics[data-v-b9ab6740]{position:absolute;right:%?20?%;top:calc(50% - %?20?%);font-size:%?25?%;font-weight:500;color:#333}.button_save[data-v-b9ab6740]{background:#f5f5f5;border:%?1?% solid #f29f3d;height:%?70?%;width:%?300?%;position:fixed;bottom:%?25?%;font-size:%?40?%;font-weight:500;text-align:center;left:0;right:0;margin:auto;border-radius:%?60?%;line-height:%?70?%;color:#f29f3d}body.?%PAGE?%[data-v-b9ab6740]{background:#f5f5f5!important}',""]),e.exports=t},de9d:function(e,t,i){"use strict";var r=i("4ea4");Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(i("7561")),o=r(i("264e")),n=(r(i("c545")),{components:{uniPopup:o.default},computed:{},data:function(){return{machine_id:null,order_id:null,orderData:null}},methods:{toSearchLogistics:function(e){null!=e&&(window.location.href=e)},againOrder:function(){var e=uni.getStorageSync("machine_id");e&&uni.reLaunch({url:"../index/detailsphone?machine_id="+e})},getOrderDetail:function(){var e=this,t={s:"Order.detail",id:this.order_id};a.default.WorksListPhone(t).then((function(t){e.orderData=t})).catch((function(e){}))}},onLoad:function(e){e.id&&(this.order_id=e.id),"null"!=e.goods_id&&(this.goods_id=e.goods_id),"null"!=e.machine_id&&(this.machine_id=e.machine_id),"null"!=e.goodid&&(this.works_id=e.goodid),this.getOrderDetail()},onShow:function(){},onUnload:function(){}});t.default=n}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-mine-orderDetail"],{"0ed5":function(e,t,i){"use strict";var r;i.d(t,"b",(function(){return a})),i.d(t,"c",(function(){return o})),i.d(t,"a",(function(){return r}));var a=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("v-uni-view",{staticClass:"full-width full-height"},[null!=e.orderData?i("v-uni-scroll-view",{staticClass:"scroll_content"},[i("v-uni-view",{staticClass:"order_detail_top"},[i("v-uni-view",{staticStyle:{display:"flex","flex-direction":"row","padding-left":"40upx",width:"100%"}},[i("v-uni-view",{staticStyle:{width:"60upx","margin-top":"40upx","margin-bottom":"30upx"}},[i("v-uni-view",{staticStyle:{width:"10px",height:"10px",background:"#854AC2","border-radius":"50%"}}),i("v-uni-view",{staticStyle:{width:"1px",height:"50px",background:"#854AC2","margin-left":"10upx"}}),i("v-uni-view",{staticStyle:{width:"12upx",height:"12upx",background:"#FFFFFF",border:"2px solid #854AC2","border-radius":"50%","margin-left":"3upx"}})],1),i("v-uni-view",{staticStyle:{"margin-top":"20upx","margin-bottom":"20upx",width:"100%"}},[i("v-uni-view",{staticStyle:{"font-size":"32upx","font-weight":"580",color:"#854AC2"}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale][e.orderData.status.text]))]),i("v-uni-view",{staticStyle:{"font-size":"32upx","font-weight":"580",color:"#854AC2",width:"340upx",height:"50upx",position:"absolute",top:"170upx"}},[e._v(e._s("PayPal"==e.orderData.pay_type.text?"Pay with PayPal":"Pay offine"))]),i("v-uni-view",{staticStyle:{"font-size":"27upx",color:"#333333","margin-top":"120upx","font-weight":"550",width:"calc(100% - 10upx)",display:"flex","flex-direction":"row","max-width":"calc(100% - 20upx)"}},[e._v(e._s(null!=e.orderData.order_express?e.orderData.order_express.address:""))]),i("v-uni-view",{staticStyle:{"font-size":"25upx","font-family":"PingFang","font-weight":"400",color:"#333333","margin-top":"3upx"}},[e._v(e._s(null!=e.orderData.order_express?e.orderData.order_express.receivor:"")+"\n\t\t\t\t\t\t"+e._s(null!=e.orderData.order_express?e.orderData.order_express.phone:""))])],1)],1)],1),null!=e.orderData.order_queue?i("v-uni-view",{staticClass:"order_detail_image"},[i("v-uni-view",{staticStyle:{display:"flex",width:"calc(100% - 30upx)","flex-direction":"row",height:"220upx"}},[i("v-uni-view",{staticStyle:{width:"150upx",height:"150upx",background:"#131319","border-radius":"10upx","margin-top":"10upx","margin-left":"40upx",position:"relative","align-items":"center","justify-content":"center"}},[i("v-uni-image",{staticStyle:{position:"absolute",height:"150upx","border-radius":"10upx",top:"0",left:"0",right:"0",bottom:"0",margin:"auto"},attrs:{src:e.orderData.order_queue.back_image,mode:"heightFix"}}),i("v-uni-image",{staticStyle:{height:"150upx",position:"absolute","border-radius":"10upx",margin:"auto",left:"0",top:"0",right:"0",bottom:"0"},attrs:{src:e.orderData.order_queue.works_image,mode:"heightFix"}})],1),i("v-uni-view",{staticStyle:{"font-size":"28upx",color:"#333333","margin-left":"30upx",width:"360upx","margin-top":"15upx"}},[e._v(e._s(e.orderData.order_goods.goods_name))])],1),i("v-uni-view",{staticStyle:{width:"100%",height:"1upx",background:"#EEEEEE"}}),i("v-uni-view",{staticStyle:{display:"flex","flex-direction":"row",float:"right","justify-content":"center","align-items":"center",height:"110upx","margin-right":"32upx"}},[i("v-uni-view",{staticStyle:{"font-size":"28upx","font-family":"Source Han Sans CN","font-weight":"600",color:"#333333"}},[e._v("Actual payment:")]),i("v-uni-view",{staticStyle:{"font-size":"36upx","font-family":"Source Han Sans CN","font-weight":"600",color:"#F56364"}},[e._v(e._s(e.orderData.currency_symbol)+e._s(e.orderData.order_queue.price))])],1)],1):e._e(),null!=e.orderData?i("v-uni-view",{staticClass:"order_detail_logistics"},[i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["打印编号"])+":"+e._s(e.orderData.order_queue.id))]),i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["设备编号"])+":"+e._s(e.orderData.order_queue.machine_id))]),i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["订单编号"])+":"+e._s(e.orderData.id))]),i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["下单时间"])+":"+e._s(e.orderData.create_time))]),0!=e.orderData.promoter_id?i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["推广编号"])+":"+e._s(e.orderData.promoter_id))]):e._e(),null!=e.orderData.order_express&&null!=e.orderData.order_express.express_name?i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["物流公司"])+":"+e._s(e.orderData.order_express.express_name))]):e._e(),null!=e.orderData.order_express&&null!=e.orderData.order_express.express_no?i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["快递单号"])+": "+e._s(e.orderData.order_express.express_no))]):e._e(),null!=e.orderData.send_goods_time?i("v-uni-view",{staticClass:"text"},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["发货时间"])+":"+e._s(e.orderData.send_goods_time))]):e._e(),null!=e.orderData.order_express&&null!=e.orderData.order_express.express_url?i("v-uni-view",{staticClass:"text_logistics",on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.toSearchLogistics(e.orderData.order_express.express_url)}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["物流详情"])+">")]):e._e()],1):e._e()],1):e._e(),i("v-uni-view",{staticClass:"button_save",on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.againOrder()}}},[e._v(e._s(e.$i18n.messages[e.$i18n.locale]["再来一单"]))])],1)},o=[]},1555:function(e,t,i){"use strict";i.r(t);var r=i("aed7"),a=i.n(r);for(var o in r)"default"!==o&&function(e){i.d(t,e,(function(){return r[e]}))}(o);t["default"]=a.a},"22d5":function(e,t,i){"use strict";var r=i("c261"),a=i.n(r);a.a},"86fe":function(e,t,i){"use strict";i.r(t);var r=i("0ed5"),a=i("1555");for(var o in a)"default"!==o&&function(e){i.d(t,e,(function(){return a[e]}))}(o);i("22d5");var n,s=i("f0c5"),d=Object(s["a"])(a["default"],r["b"],r["c"],!1,null,"0f600532",null,!1,r["a"],n);t["default"]=d.exports},aed7:function(e,t,i){"use strict";var r=i("4ea4");Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=r(i("5574")),o=r(i("bfb7")),n=(r(i("0e1a")),{components:{uniPopup:o.default},computed:{},data:function(){return{machine_id:null,order_id:null,orderData:null}},methods:{toSearchLogistics:function(e){null!=e&&(window.location.href=e)},againOrder:function(){var e=uni.getStorageSync("machine_id");e&&uni.reLaunch({url:"../index/detailsphone?machine_id="+e})},getOrderDetail:function(){var e=this,t={s:"Order.detail",id:this.order_id};a.default.WorksListPhone(t).then((function(t){e.orderData=t})).catch((function(e){}))}},onLoad:function(e){e.id&&(this.order_id=e.id),"null"!=e.goods_id&&(this.goods_id=e.goods_id),"null"!=e.machine_id&&(this.machine_id=e.machine_id),"null"!=e.goodid&&(this.works_id=e.goodid),this.getOrderDetail()},onShow:function(){},onUnload:function(){}});t.default=n},c261:function(e,t,i){var r=i("e95e");r.__esModule&&(r=r.default),"string"===typeof r&&(r=[[e.i,r,""]]),r.locals&&(e.exports=r.locals);var a=i("4f06").default;a("705aac31",r,!0,{sourceMap:!1,shadowMode:!1})},e95e:function(e,t,i){var r=i("24fb");t=r(!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-0f600532]{background:#f5f5f5!important}.scroll_content[data-v-0f600532]{height:100%;width:100%;overflow:hidden;overflow-y:scroll;position:relative}.scroll_content .order_detail_top[data-v-0f600532]{width:calc(100% - %?55?%);margin:%?25?%;background:#fff;border-radius:%?30?%}.scroll_content .order_detail_image[data-v-0f600532]{width:calc(100% - %?55?%);height:%?320?%;margin:%?25?%;background:#fff;border-radius:%?30?%;padding-top:%?30?%}.scroll_content .order_detail_logistics[data-v-0f600532]{width:calc(100% - %?80?%);margin:%?25?%;background:#fff;border-radius:%?30?%;padding-top:%?25?%;padding-left:%?30?%;padding-bottom:%?25?%;position:relative}.scroll_content .order_detail_logistics .text[data-v-0f600532]{font-size:%?28?%;color:#666}.scroll_content .order_detail_logistics .text_logistics[data-v-0f600532]{position:absolute;right:%?20?%;top:calc(50% - %?20?%);font-size:%?25?%;font-weight:500;color:#333}.button_save[data-v-0f600532]{background:#f5f5f5;border:%?1?% solid #854ac2;height:%?70?%;width:%?300?%;position:fixed;bottom:%?25?%;font-size:%?40?%;font-weight:500;text-align:center;left:0;right:0;margin:auto;border-radius:%?60?%;line-height:%?70?%;color:#854ac2}body.?%PAGE?%[data-v-0f600532]{background:#f5f5f5!important}',""]),e.exports=t}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-mine-orderList"],{"254e":function(t,e,a){"use strict";a.r(e);var i=a("37e1"),n=a("3376");for(var o in n)"default"!==o&&function(t){a.d(e,t,(function(){return n[t]}))}(o);a("e993");var s,r=a("f0c5"),u=Object(r["a"])(n["default"],i["b"],i["c"],!1,null,"2e4a1138",null,!1,i["a"],s);e["default"]=u.exports},3376:function(t,e,a){"use strict";a.r(e);var i=a("a81e"),n=a.n(i);for(var o in i)"default"!==o&&function(t){a.d(e,t,(function(){return i[t]}))}(o);e["default"]=n.a},"37e1":function(t,e,a){"use strict";var i;a.d(e,"b",(function(){return n})),a.d(e,"c",(function(){return o})),a.d(e,"a",(function(){return i}));var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("v-uni-view",{staticClass:"colletion full-width"},[i("v-uni-view",{staticClass:"uni-tab-bar full-width"},[i("v-uni-view",{staticClass:"content full-width",attrs:{"scroll-y":!0}},[0==t.LoupanList.length&&1==t.stateindex?i("v-uni-view",[i("v-uni-view",{staticClass:"noData"},[i("v-uni-image",{staticClass:"noData_img",attrs:{src:a("62ea"),mode:"aspectFill"}}),i("v-uni-view",{staticClass:"noData_title",staticStyle:{color:"#000000"}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["啊嘞当前还没有订单任务"])),i("br"),i("v-uni-view",{staticClass:"noData_text"},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["去定制一个作品吧"]))])],1),i("v-uni-view",{staticClass:"noData_but",on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.tomain()}}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["去定制"]))])],1)],1):t._l(t.LoupanList,(function(e,a){return i("v-uni-view",{key:a,staticStyle:{background:"#fff !important",margin:"15upx 15upx","border-radius":"30upx"},on:{click:function(a){arguments[0]=a=t.$handleEvent(a),t.orderDetail(e)}}},[i("v-uni-view",{staticStyle:{color:"#fff",display:"flex","align-items":"center",width:"690upx",position:"relative"}},[i("v-uni-view",{staticClass:"border-image-pesudo"},[i("v-uni-view",{staticClass:"border-image-pesudo-in"},[i("v-uni-image",{staticStyle:{width:"110upx",height:"102upx",position:"absolute",top:"0",left:"0",right:"0",bottom:"0",margin:"auto","z-index":"8"},attrs:{src:e.works_image+"?x-oss-process=image/resize,lfit,w_300",mode:"aspectFit"}})],1)],1),i("v-uni-view",{staticStyle:{width:"20upx","font-size":"36upx",color:"#F29F3D",position:"absolute",right:"20upx",top:"60upx"}},[t._v(">")]),i("v-uni-view",{staticStyle:{width:"calc(100% - 400upx)"}},[i("v-uni-view",{staticStyle:{width:"100%","font-size":"28upx"}},[i("v-uni-text",{staticStyle:{"font-size":"26upx",color:"#333333","font-weight":"550"}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale][e.goods_specs]||""))])],1),i("v-uni-view",{staticStyle:{"font-size":"25upx",color:"#333333","margin-top":"10upx"}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale][e.status.text]))]),i("v-uni-view",{staticStyle:{width:"90%","font-size":"28upx"}},[i("v-uni-text",{staticStyle:{"font-size":"27upx",color:"#333333"}},[t._v(t._s(e.id||""))])],1)],1),i("v-uni-view",{staticStyle:{"margin-left":"auto","padding-top":"95upx"}},[i("v-uni-view",{staticStyle:{"text-align":"center",color:"#000000","line-height":"80upx","font-weight":"550","font-size":"9upx"}},[t._v(t._s("PayPal"==e.pay_type.text?"Pay with PayPal":"Pay offine"))])],1)],1)],1)}))],2)],1)],1)},o=[]},"3b86":function(t,e,a){var i=a("d562");i.__esModule&&(i=i.default),"string"===typeof i&&(i=[[t.i,i,""]]),i.locals&&(t.exports=i.locals);var n=a("4f06").default;n("1d6898f4",i,!0,{sourceMap:!1,shadowMode:!1})},a81e:function(t,e,a){"use strict";var i=a("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;i(a("a272"));var n=i(a("7561")),o=i(a("7c21")),s=i(a("c545")),r={components:{myhead:o.default},computed:{},data:function(){return{LoupanList:[],dataLoadState:{pullDownRefresh:!1,reachBottom:!1},queryPage:{machine_id:null},stateindex:!1,key:2,sighstate:!1,statetime:null,animMaind_time:1e4,designer:null,userId:null,myheadtext:""}},methods:{tomain:function(){var t=uni.getStorageSync("machine_id");t&&uni.reLaunch({url:"../index/detailsphone?machine_id="+t})},orderDetail:function(t){JSON.stringify(t);uni.navigateTo({url:"../mine/orderDetail?id="+t.id})},loadGoodsList:function(t){var e=this;uni.showLoading({title:this.$i18n.messages[this.$i18n.locale]["正在加载中"]}),n.default.getOrderList(null).then((function(t){e.stateindex=!0,e.LoupanList=t.data,e.dataLoadState.pullDownRefresh&&uni.stopPullDownRefresh(),e.dataLoadState.pullDownRefresh=!1,e.dataLoadState.reachBottom=!1,uni.hideLoading()})).catch((function(t){e.dataLoadState.pullDownRefresh&&uni.stopPullDownRefresh(),e.dataLoadState.pullDownRefresh=!1,e.dataLoadState.reachBottom=!1,uni.hideLoading()}))},loadMore:function(){}},onPullDownRefresh:function(){this.dataLoadState.pullDownRefresh=!1,this.dataLoadState.reachBottom=!1,this.queryPage.page=1,this.queryPage.total=0,this.LoupanList=[],this.loadGoodsList(s.default.DATA_DIRECTION.UP)},onReachBottom:function(){},onLoad:function(t){t.machine_id&&"null"!=t.machine_id?(this.queryPage.machine_id=t.machine_id,this.LoupanList=[],this.queryPage.page=1,this.queryPage.total=0,this.loadGoodsList(s.default.DATA_DIRECTION.UP)):this.stateindex=!0},onReady:function(){uni.setNavigationBarTitle({title:this.$i18n.messages[this.$i18n.locale]["订单列表"]})},onShow:function(){}};e.default=r},d562:function(t,e,a){var i=a("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/* 隐藏滚动条 */[data-v-2e4a1138]::-webkit-scrollbar{width:0;height:0;color:transparent;display:none}\r\n/* 无数据 */.noData[data-v-2e4a1138]{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.noData_img[data-v-2e4a1138]{width:%?513?%;height:%?251?%;display:block;margin:0 auto %?36?%}.noData_title[data-v-2e4a1138]{color:#fff;text-align:center;font-size:%?36?%}.noData_text[data-v-2e4a1138]{margin-top:%?35?%;font-size:%?30?%;font-weight:400;color:#999}.noData_but[data-v-2e4a1138]{width:90%;height:%?70?%;line-height:%?70?%;text-align:center;color:#f29f3d;margin:%?140?% auto 0;border:%?1?% solid #f29f3d;border-radius:%?35?%}\r\n/* 啊嘞,附近没有T恤定制站哦 */uni-page-body[data-v-2e4a1138]{background:#f5f5f5!important}.border-image-pesudo[data-v-2e4a1138]{width:%?110?%;height:%?110?%;background:#fff;padding:%?15?%;border:%?5?% solid;border-image:linear-gradient(0deg,#f29f3d,#f29f3d) 2 2;border-radius:%?20?%;position:relative;overflow:hidden;margin:%?30?% %?20?% %?30?% %?30?%;-webkit-clip-path:inset(0 round %?7?%);clip-path:inset(0 round %?7?%)}.border-image-pesudo .border-image-pesudo-in[data-v-2e4a1138]{width:100%;height:100%}body.?%PAGE?%[data-v-2e4a1138]{background:#f5f5f5!important}',""]),t.exports=e},e993:function(t,e,a){"use strict";var i=a("3b86"),n=a.n(i);n.a}}]);
\ No newline at end of file
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["pages-mine-orderList"],{1121:function(t,e,i){"use strict";var a;i.d(e,"b",(function(){return n})),i.d(e,"c",(function(){return o})),i.d(e,"a",(function(){return a}));var n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-uni-view",{staticClass:"colletion full-width"},[a("v-uni-view",{staticClass:"uni-tab-bar full-width"},[a("v-uni-view",{staticClass:"content full-width",attrs:{"scroll-y":!0}},[0==t.LoupanList.length&&1==t.stateindex?a("v-uni-view",[a("v-uni-view",{staticClass:"noData"},[a("v-uni-image",{staticClass:"noData_img",attrs:{src:i("b7b8"),mode:"aspectFill"}}),a("v-uni-view",{staticClass:"noData_title",staticStyle:{color:"#000000"}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["啊嘞当前还没有订单任务"])),a("br"),a("v-uni-view",{staticClass:"noData_text"},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["去定制一个作品吧"]))])],1),a("v-uni-view",{staticClass:"noData_but",on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.tomain()}}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale]["去定制"]))])],1)],1):t._l(t.LoupanList,(function(e,i){return a("v-uni-view",{key:i,staticStyle:{background:"#fff !important",margin:"15upx 15upx","border-radius":"30upx"},on:{click:function(i){arguments[0]=i=t.$handleEvent(i),t.orderDetail(e)}}},[a("v-uni-view",{staticStyle:{color:"#fff",display:"flex","align-items":"center",width:"690upx",position:"relative"}},[a("v-uni-view",{staticClass:"border-image-pesudo"},[a("v-uni-view",{staticClass:"border-image-pesudo-in"},[a("v-uni-image",{staticStyle:{width:"110upx",height:"102upx",position:"absolute",top:"0",left:"0",right:"0",bottom:"0",margin:"auto","z-index":"8"},attrs:{src:e.works_image+"?x-oss-process=image/resize,lfit,w_300",mode:"aspectFit"}})],1)],1),a("v-uni-view",{staticStyle:{width:"20upx","font-size":"36upx",color:"#854AC2",position:"absolute",right:"20upx",top:"60upx"}},[t._v(">")]),a("v-uni-view",{staticStyle:{width:"calc(100% - 400upx)"}},[a("v-uni-view",{staticStyle:{width:"100%","font-size":"28upx"}},[a("v-uni-text",{staticStyle:{"font-size":"26upx",color:"#333333","font-weight":"550"}},[t._v(t._s(e.goods_specs||""))])],1),a("v-uni-view",{staticStyle:{"font-size":"25upx",color:"#333333","margin-top":"10upx"}},[t._v(t._s(t.$i18n.messages[t.$i18n.locale][e.status.text]))]),a("v-uni-view",{staticStyle:{width:"90%","font-size":"28upx"}},[a("v-uni-text",{staticStyle:{"font-size":"27upx",color:"#333333"}},[t._v(t._s(e.id||""))])],1)],1),a("v-uni-view",{staticStyle:{"margin-left":"auto","padding-top":"95upx"}},[a("v-uni-view",{staticStyle:{"text-align":"center",color:"#000000","line-height":"80upx","font-weight":"550","font-size":"9upx"}},[t._v(t._s("PayPal"==e.pay_type.text?"Pay with PayPal":"Pay offine"))])],1)],1)],1)}))],2)],1)],1)},o=[]},"5dab":function(t,e,i){var a=i("9132");a.__esModule&&(a=a.default),"string"===typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);var n=i("4f06").default;n("55743628",a,!0,{sourceMap:!1,shadowMode:!1})},9132:function(t,e,i){var a=i("24fb");e=a(!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/* 隐藏滚动条 */[data-v-be908b8c]::-webkit-scrollbar{width:0;height:0;color:transparent;display:none}\r\n/* 无数据 */.noData[data-v-be908b8c]{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.noData_img[data-v-be908b8c]{width:%?513?%;height:%?251?%;display:block;margin:0 auto %?36?%}.noData_title[data-v-be908b8c]{color:#fff;text-align:center;font-size:%?36?%}.noData_text[data-v-be908b8c]{margin-top:%?35?%;font-size:%?30?%;font-weight:400;color:#999}.noData_but[data-v-be908b8c]{width:90%;height:%?70?%;line-height:%?70?%;text-align:center;color:#f56364;margin:%?140?% auto 0;border:%?1?% solid #f56364;border-radius:%?35?%}\r\n/* 啊嘞,附近没有T恤定制站哦 */uni-page-body[data-v-be908b8c]{background:#f5f5f5!important}.border-image-pesudo[data-v-be908b8c]{width:%?110?%;height:%?110?%;background:#fff;padding:%?15?%;border:%?5?% solid;border-image:linear-gradient(0deg,#178ce6,#984ace) 2 2;border-radius:%?20?%;position:relative;overflow:hidden;margin:%?30?% %?20?% %?30?% %?30?%;-webkit-clip-path:inset(0 round %?7?%);clip-path:inset(0 round %?7?%)}.border-image-pesudo .border-image-pesudo-in[data-v-be908b8c]{width:100%;height:100%}body.?%PAGE?%[data-v-be908b8c]{background:#f5f5f5!important}',""]),t.exports=e},b0a8:function(t,e,i){"use strict";var a=i("4ea4");Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;a(i("ce1c"));var n=a(i("5574")),o=a(i("f4e8")),s=a(i("0e1a")),r={components:{myhead:o.default},computed:{},data:function(){return{LoupanList:[],dataLoadState:{pullDownRefresh:!1,reachBottom:!1},queryPage:{machine_id:null},stateindex:!1,key:2,sighstate:!1,statetime:null,animMaind_time:1e4,designer:null,userId:null,myheadtext:""}},methods:{tomain:function(){var t=uni.getStorageSync("machine_id");t&&uni.reLaunch({url:"../index/detailsphone?machine_id="+t})},orderDetail:function(t){JSON.stringify(t);uni.navigateTo({url:"../mine/orderDetail?id="+t.id})},loadGoodsList:function(t){var e=this;uni.showLoading({title:this.$i18n.messages[this.$i18n.locale]["正在加载中"]}),n.default.getOrderList(null).then((function(t){e.stateindex=!0,e.LoupanList=t.data,e.dataLoadState.pullDownRefresh&&uni.stopPullDownRefresh(),e.dataLoadState.pullDownRefresh=!1,e.dataLoadState.reachBottom=!1,uni.hideLoading()})).catch((function(t){e.dataLoadState.pullDownRefresh&&uni.stopPullDownRefresh(),e.dataLoadState.pullDownRefresh=!1,e.dataLoadState.reachBottom=!1,uni.hideLoading()}))},loadMore:function(){}},onPullDownRefresh:function(){this.dataLoadState.pullDownRefresh=!1,this.dataLoadState.reachBottom=!1,this.queryPage.page=1,this.queryPage.total=0,this.LoupanList=[],this.loadGoodsList(s.default.DATA_DIRECTION.UP)},onReachBottom:function(){},onLoad:function(t){t.machine_id&&"null"!=t.machine_id?(this.queryPage.machine_id=t.machine_id,this.LoupanList=[],this.queryPage.page=1,this.queryPage.total=0,this.loadGoodsList(s.default.DATA_DIRECTION.UP)):this.stateindex=!0},onReady:function(){uni.setNavigationBarTitle({title:this.$i18n.messages[this.$i18n.locale]["订单列表"]})},onShow:function(){}};e.default=r},b432:function(t,e,i){"use strict";i.r(e);var a=i("b0a8"),n=i.n(a);for(var o in a)"default"!==o&&function(t){i.d(e,t,(function(){return a[t]}))}(o);e["default"]=n.a},cddb:function(t,e,i){"use strict";i.r(e);var a=i("1121"),n=i("b432");for(var o in n)"default"!==o&&function(t){i.d(e,t,(function(){return n[t]}))}(o);i("dcb6");var s,r=i("f0c5"),u=Object(r["a"])(n["default"],a["b"],a["c"],!1,null,"be908b8c",null,!1,a["a"],s);e["default"]=u.exports},dcb6:function(t,e,i){"use strict";var a=i("5dab"),n=i.n(a);n.a}}]);
\ No newline at end of file
{
"语言": "德语",
"切换": "Schalter",
"形状": "Form",
"排队列表": "Warteliste",
"定制手机壳": "kundenspezifisch",
"定制蛋糕": "Kundenspezifischer Kuchen",
"绘制成功": "Zeichnen erfolgreich",
"绘制失败": "Zeichnen fehlgeschlagen",
"登录文本": "Anmeldeskript",
......@@ -72,39 +74,39 @@
"个手机壳正在打印": "Koffer werden gedruckt",
"排队": "aufstellen",
"立即定制": "Jetzt anpassen",
"深圳市瑞丰彩科技有限公司": "Shenzhen Ruifengcai Technology Co., Ltd.",
"深圳市瑞丰彩科技有限公司": "Shenzhen Ruifengcai Technology Co., Ltd.",
"定制壳": "Benutzerdefinierte Shell",
"自带壳": "In sich geschlossene Schale",
"材质详情": "Détails du matériau",
"请在扇区点选您自带的手机壳颜色": "Wählen Sie eine Gehäusefarbe",
"暂无数据": "Keine Daten",
"休息中": "Ruhen",
"不支持色系": "Farbschema wird nicht unterstützt",
"请选择颜色": "Bitte wählen Sie eine Farbe",
"材质详情": "Détails du matériau",
"请在扇区点选您自带的手机壳颜色": "Wählen Sie eine Gehäusefarbe",
"暂无数据": "Keine Daten",
"休息中": "Ruhen",
"不支持色系": "Farbschema wird nicht unterstützt",
"请选择颜色": "Bitte wählen Sie eine Farbe",
"请选择手机壳材质": "Wählen Sie ein Gehäusematerial",
"啊嘞当前还没有打印任务呢": "Ah Le hat noch keine Druckaufgabe",
"啊嘞当前还没有打印任务呢": "Ah Le hat noch keine Druckaufgabe",
"去定制一个作品吧": "Gehe zum Anpassen eines Werkes",
"去定制": "Anpassen",
"打印中": "Drucken",
"排队中": "In der Warteschlange",
"作品排队中": "Arbeiten in Linie",
"打印中": "Drucken",
"排队中": "In der Warteschlange",
"作品排队中": "Arbeiten in Linie",
"如需要打印可与客服确认": "Bestätigung des Kundenservice",
"返回": "zurück",
"请选择自带壳颜色": "Bitte wählen Sie die Farbe Ihrer eigenen Schale",
"啊嘞没有更多的数据了": "Ah, es gibt keine Daten mehr",
"松开即可删除": "Zum Löschen freigeben",
"拖到此处可删除": "Ziehen Sie hier zum Löschen",
"拖到此处可删除": "Ziehen Sie hier zum Löschen",
"啊嘞色彩定制站必须扫码才能使用": "Code Scannen ist erforderlich",
"复制成功": "Kopieren erfolgreich",
"背景底色": "Hintergrundfarbe",
"编辑": "Ébearbeiten",
"访客": "Besucher",
"没有更多数据了": "Keine Daten mehr",
"我的收藏": "Meine Sammlung",
"设备信息不存在": "Geräteinformationen existieren nicht",
"没有更多数据了": "Keine Daten mehr",
"我的收藏": "Meine Sammlung",
"设备信息不存在": "Geräteinformationen existieren nicht",
"支付成功": "Zahlung erfolgreich",
"支付失败": "Zahlung fehlgeschlagen",
"支付取消": "Stornierung der Zahlung",
"支付取消": "Stornierung der Zahlung",
"付款区": "Zahlungsbereich",
"支付领取": "Zahlung und Einziehung",
"历史作品": "Geschichte",
......@@ -116,7 +118,7 @@
"物流详情": "Logistik Details",
"再来一单": "Ein weiterer Auftrag",
"等待生产": "Warten auf die Produktion",
"生产中": "In der Produktion",
"生产中": "In der Produktion",
"生产完成": "Produktion abgeschlossen",
"出料中": "Beim Entladen",
"待入货": "Zu empfangen",
......@@ -125,8 +127,35 @@
"啊嘞当前还没有订单任务": "Keine Auftragsaufgabe",
"设备编号": "Ausrüstungsnummer",
"打印编号": "Drucknummer",
"生成涂鸦成功":"Erfolgreich bei der Erzeugung von Graffiti",
"线下支付":"Offline-Zahlungen",
"订单列表":"Bestellliste",
"切换语言":"Sprache wechseln"
"生成涂鸦成功": "Erfolgreich bei der Erzeugung von Graffiti",
"线下支付": "Offline-Zahlungen",
"订单列表": "Bestellliste",
"切换语言": "Sprache wechseln",
"收件人不能为空": "Der Empfänger kann nicht leer sein",
"号码不能为空": "Die Zahl kann nicht leer sein",
"国家不能为空": "Land kann nicht leer sein",
"省份不能为空": "Die Provinz darf nicht leer sein",
"城市不能为空": "Stadt kann nicht leer sein",
"地址不能为空": "Adresse kann nicht leer sein",
"邮政编码不能为空": "Postleitzahl kann nicht leer sein",
"邮箱不能为空": "Das Postfach kann nicht leer sein",
"收件人": "Adressat",
"电话号码": "Telefonnummer",
"国家": "Land",
"省份": "Provinz",
"城市": "Stadt",
"详细地址": "Detaillierte Adresse",
"邮政编码": "Postleitzahl",
"邮箱": "Postfach",
"输入收件人": "Adressat eingeben",
"输入电话号码": "Telefonnummer eingeben",
"输入国家": "Land eingeben",
"输入省份": "Provinz eingeben",
"输入城市": "Stadt eingeben",
"输入详细地址": "Adresse eingeben",
"输入邮政编码": "Postleitzahl eingeben",
"输入邮箱": "Postfach eingeben",
"确认": "bestätigen",
"取消": "Abbrechen",
"搜索": "Suche"
}
{
"语言": "英文",
"切换": "switch",
"形状": "shape",
"排队列表": "Waiting list",
"定制手机壳": "Customize Phone case",
"定制蛋糕": "Customized cake",
"绘制成功": "success",
"绘制失败": "fail!",
"登录文本": "Login",
......@@ -128,5 +130,38 @@
"生成中":"Generating",
"线下支付":"pay offline",
"订单列表":"Order list",
"切换语言":"switch language"
"切换语言":"switch language",
"收件人不能为空":"The name cannot be empty",
"号码不能为空":"The number cannot be empty",
"国家不能为空":"Country cannot be empty",
"省份不能为空":"The province cannot be empty",
"城市不能为空":"City cannot be empty",
"地址不能为空":"Address cannot be empty",
"邮政编码不能为空":"zip code cannot be empty",
"邮箱不能为空":"The email cannot be empty",
"收件人":"Name",
"电话号码":"Phone number",
"国家":"Country",
"省份":"Province",
"城市":"City",
"详细地址":"Datail address",
"邮政编码":"Zip code",
"邮箱":"Email",
"输入收件人":"enter recipients",
"输入电话号码":"enter phone number",
"输入国家":"enter country",
"输入省份":"enter province",
"输入城市":"enter city",
"输入详细地址":"enter address",
"输入邮政编码":"enter zip code",
"输入邮箱":"enter email",
"确认":"confirm",
"取消":"cancel",
"搜索":"search",
"6寸":"6inch",
"8寸":"8inch",
"10寸":"10inch",
"12寸":"12inch",
"圆形蛋糕":"Round cake",
"方形蛋糕":"Square cake"
}
{
"语言": "西班牙语",
"切换": "Conmutar",
"形状": "Forma",
"排队列表": "Lista de cola",
"定制手机壳": "Personalización",
"定制蛋糕": "Pastel personalizado",
"绘制成功": "Dibujo exitoso",
"绘制失败": "Fallo de dibujo",
"登录文本": "Texto de inicio de sesión",
......@@ -128,5 +130,32 @@
"生成涂鸦成功":"Graffiti generado con éxito",
"线下支付":"Pagos fuera de línea",
"订单列表":"Lista de pedidos",
"切换语言":"Cambiar idioma"
"切换语言":"Cambiar idioma",
"收件人不能为空":"El destinatario no puede estar vacío",
"号码不能为空":"El número no puede estar vacío",
"国家不能为空":"El país no puede estar vacío",
"省份不能为空":"La provincia no puede estar vacía",
"城市不能为空":"La ciudad no puede estar vacía",
"地址不能为空":"La Dirección no puede estar vacía",
"邮政编码不能为空":"El código postal no puede estar vacío",
"邮箱不能为空":"El buzón de correo no puede estar vacío",
"收件人":"Destinatarios",
"电话号码":"Número",
"国家":"País",
"省份":"Provincias",
"城市":"Ciudad",
"详细地址":"Dirección detallada",
"邮政编码":"Código postal",
"邮箱":"Buzón de correo",
"输入收件人":"Introduzca el destinatario",
"输入电话号码":"Introduzca el número de teléfono",
"输入国家":"País importador",
"输入省份":"Provincia de entrada",
"输入城市":"Ciudad de entrada",
"输入详细地址":"Introduzca la dirección detallada",
"输入邮政编码":"Introduzca el código postal",
"输入邮箱":"Introduzca el buzón de correo",
"确认":"Confirmar",
"取消":"Cancelar",
"搜索":"Buscar"
}
{
"语言": "法语",
"切换": "Basculer",
"形状": "Forme",
"排队列表": "Liste d'attente",
"定制手机壳": "Personnalisation",
"定制蛋糕": "Gâteau sur mesure",
"绘制成功": "Dessin réussi",
"绘制失败": "Échec de la peinture",
"登录文本": "Texte de connexion",
......@@ -128,5 +130,32 @@
"生成涂鸦成功":"Graffiti généré avec succès",
"线下支付":"Paiements hors ligne",
"订单列表":"Liste des commandes",
"切换语言":"Langues"
"切换语言":"Langues",
"收件人不能为空":"Le destinataire ne peut pas être vide",
"号码不能为空":"Le numéro ne peut pas être vide",
"国家不能为空":"Le pays ne peut pas être vide",
"省份不能为空":"La province ne peut pas être vide",
"城市不能为空":"La ville ne peut pas être vide",
"地址不能为空":"L'adresse ne peut pas être vide",
"邮政编码不能为空":"Le Code Postal ne peut pas être vide",
"邮箱不能为空":"La boîte aux lettres ne peut pas être vide",
"收件人":"Destinataires",
"电话号码":"Numéro de téléphone",
"国家":"Pays",
"省份":"Province",
"城市":"Les villes",
"详细地址":"Adresse détaillée",
"邮政编码":"Code Postal",
"邮箱":"E - mail",
"输入收件人":"Entrez le destinataire",
"输入电话号码":"Entrez le numéro de téléphone",
"输入国家":"Pays d'importation",
"输入省份":"Province d'entrée",
"输入城市":"Entrez la ville",
"输入详细地址":"Saisissez l'adresse détaillée",
"输入邮政编码":"Entrez le Code Postal",
"输入邮箱":"Saisissez la boîte aux lettres",
"确认":"Confirmation",
"取消":"Annulation",
"搜索":"Recherche"
}
{
"语言": "意大利语言",
"切换": "switch",
"形状": "forma",
"排队列表": "Coda di lavorazione",
"定制手机壳": "Personalizza la Cover",
"定制蛋糕": "Torta personalizzata",
"绘制成功": "completato",
"绘制失败": "errore!",
"登录文本": "Login",
......@@ -129,5 +131,33 @@
"生成涂鸦成功":"Riuscito a generare graffiti",
"线下支付":"pagare offline",
"订单列表":"Elenco ordini",
"切换语言":"Cambia lingua"
"切换语言":"Cambia lingua",
"收件人不能为空":"Il destinatario non può essere vuoto",
"号码不能为空":"Il numero non può essere vuoto",
"国家不能为空":"Il paese non può essere vuoto",
"省份不能为空":"La provincia non può essere vuota",
"城市不能为空":"La città non può essere vuota",
"地址不能为空":"L'indirizzo non può essere vuoto",
"邮政编码不能为空":"Il codice postale non può essere vuoto",
"邮箱不能为空":"La cassetta postale non può essere vuota",
"收件人":"destinatario",
"电话号码":"Numero di telefono",
"国家":"paese",
"省份":"provincia",
"城市":"città",
"详细地址":"Indirizzo dettagliato",
"邮政编码":"Codice postale",
"邮箱":"cassetta postale",
"输入收件人":"Inserisci destinatari",
"输入电话号码":"Inserisci il numero di telefono",
"输入国家":"Inserisci il paese",
"输入省份":"Inserisci provincia",
"输入城市":"Inserisci provincia",
"输入详细地址":"Inserisci indirizzo dettagliato",
"输入邮政编码":"Inserire il codice postale",
"输入邮箱":"Inserisci email",
"确认":"conferma",
"取消":"annulla",
"搜索":"ricerca"
}
{
"语言": "日语",
"切换": "切り替え",
"形状": "フォーム",
"排队列表": "待機リスト",
"定制手机壳": "カスタマイズ",
"定制蛋糕": "カステラのカスタマイズ",
"绘制成功": "描画に成功しました",
"绘制失败": "描画に失敗しました",
"登录文本": "ログインテキスト",
......@@ -128,5 +130,32 @@
"生成涂鸦成功":"落書き生成に成功",
"线下支付":"オフライン支払い",
"订单列表":"受注リスト",
"切换语言":"言語の切り替え"
"切换语言":"言語の切り替え",
"收件人不能为空":"受信者を空にすることはできません",
"号码不能为空":"番号を空白にすることはできません",
"国家不能为空":"国を空にすることはできません",
"省份不能为空":"省を空にすることはできません",
"城市不能为空":"都市を空にすることはできません",
"地址不能为空":"アドレスを空にすることはできません",
"邮政编码不能为空":"郵便番号を空にすることはできません",
"邮箱不能为空":"メールボックスを空にすることはできません",
"收件人":"受信者",
"电话号码":"電話番号",
"国家":"国",
"省份":"省",
"城市":"とし",
"详细地址":"詳細アドレス",
"邮政编码":"郵便番号",
"邮箱":"メールボックス",
"输入收件人":"受信者の入力",
"输入电话号码":"電話番号を入力",
"输入国家":"輸入国",
"输入省份":"省を入力",
"输入城市":"にゅうりょくとし",
"输入详细地址":"詳細アドレスの入力",
"输入邮政编码":"郵便番号の入力",
"输入邮箱":"入力メールボックス",
"确认":"確認",
"取消":"キャンセル",
"搜索":"検索けんさく"
}
{
"语言": "葡萄牙语",
"切换": "interruptor",
"形状": "forma",
"排队列表": "Lista de Filas",
"定制手机壳": "personalizado",
"定制蛋糕": "Bolo personalizado",
"绘制成功": "Desenhar com sucesso",
"绘制失败": "O desenho falhou",
"登录文本": "programa de autenticação",
......@@ -125,8 +127,35 @@
"啊嘞当前还没有订单任务": "Sem tarefa de ordem",
"设备编号": "Número do equipamento",
"打印编号": "Número de Impressão",
"生成涂鸦成功":"Conseguiu gerar graffiti",
"线下支付":"Pagamento off-line",
"订单列表":"Lista de Ordens",
"切换语言":"mudar de idioma"
"生成涂鸦成功": "Conseguiu gerar graffiti",
"线下支付": "Pagamento off-line",
"订单列表": "Lista de Ordens",
"切换语言": "mudar de idioma",
"收件人不能为空": "O destinatário não pode estar vazio",
"号码不能为空": "O número não pode estar vazio",
"国家不能为空": "O país não pode estar vazio",
"省份不能为空": "A província não pode estar vazia.",
"城市不能为空": "A cidade não pode estar vazia",
"地址不能为空": "O endereço não pode estar vazio",
"邮政编码不能为空": "O código postal não pode estar vazio",
"邮箱不能为空": "A caixa de correio não pode estar vazia",
"收件人": "Destinatário",
"电话号码": "Número de telefone",
"国家": "país",
"省份": "província",
"城市": "cidade",
"详细地址": "Endereço pormenorizado",
"邮政编码": "Código Postal",
"邮箱": "caixa de correio",
"输入收件人": "Indique os destinatários",
"输入电话号码": "indicar o número de telefone",
"输入国家": "Indique o país",
"输入省份": "Entrar na Província",
"输入城市": "Entrar na Cidade",
"输入详细地址": "Indique o endereço pormenorizado",
"输入邮政编码": "Indique o Código Postal",
"输入邮箱": "Indique o E- mail",
"确认": "confirmar",
"取消": "cancelar",
"搜索": "pesquisa"
}
{
"语言": "中文",
"切换": "切换",
"形状": "形状",
"排队列表": "排队列表",
"定制手机壳": "定制手机壳",
"定制蛋糕": "定制蛋糕",
"绘制成功": "绘制成功",
"绘制失败": "绘制失败",
"登录文本": "Login",
......@@ -125,8 +127,39 @@
"啊嘞当前还没有订单任务": "啊嘞当前还没有订单任务",
"设备编号": "设备编号",
"打印编号": "打印编号",
"生成涂鸦成功":"生成涂鸦成功",
"线下支付":"线下支付",
"订单列表":"订单列表",
"切换语言":"切换语言"
"生成涂鸦成功": "生成涂鸦成功",
"线下支付": "线下支付",
"订单列表": "订单列表",
"切换语言": "切换语言",
"收件人不能为空": "收件人不能为空",
"号码不能为空": "号码不能为空",
"国家不能为空": "国家不能为空",
"省份不能为空": "省份不能为空",
"城市不能为空": "城市不能为空",
"地址不能为空": "地址不能为空",
"邮政编码不能为空": "邮政编码不能为空",
"邮箱不能为空": "邮箱不能为空",
"收件人": "收件人",
"电话号码": "电话号码",
"国家": "国家",
"省份": "省份",
"城市": "城市",
"详细地址": "详细地址",
"邮政编码": "邮政编码",
"邮箱": "邮箱",
"输入收件人": "输入收件人",
"输入电话号码": "输入电话号码",
"输入国家": "输入国家",
"输入省份": "输入省份",
"输入城市": "输入城市",
"输入详细地址": "输入详细地址",
"输入邮政编码": "输入邮政编码",
"输入邮箱": "输入邮箱",
"确认": "确认",
"6寸":"6寸",
"8寸":"8寸",
"10寸":"10寸",
"12寸":"12寸",
"圆形蛋糕":"圆形蛋糕",
"方形蛋糕":"方形蛋糕"
}
{
"语言": "繁體中文",
"切换": "切換",
"形状":"形狀",
"排队列表": "排隊列表",
"定制手机壳": "定製手機殼",
"定制蛋糕": "定制蛋糕",
"绘制成功": "繪製成功",
"绘制失败": "繪製失敗",
"登录文本": "登錄文本",
......@@ -128,5 +130,36 @@
"生成涂鸦成功":"生成塗鴉成功",
"线下支付":"線下支付",
"订单列表":"訂單清單",
"切换语言":"切換語言"
"切换语言":"切換語言",
"收件人不能为空":"收件人不能為空",
"号码不能为空":"號碼不能為空",
"国家不能为空":"國家不能為空",
"省份不能为空":"省份不能為空",
"城市不能为空":"都市不能為空",
"地址不能为空":"地址不能為空",
"邮政编码不能为空":"郵遞區號不能為空",
"邮箱不能为空":"郵箱不能為空",
"收件人":"收件人",
"电话号码":"電話號碼",
"国家":"國家",
"省份":"省份",
"城市":"都市",
"详细地址":"詳細地址",
"邮政编码":"郵遞區號",
"邮箱":"郵箱",
"输入收件人":"輸入收件人",
"输入电话号码":"輸入電話號碼",
"输入国家":"輸入國家",
"输入省份":"輸入省份",
"输入城市":"輸入都市",
"输入详细地址":"輸入詳細地址",
"输入邮政编码":"輸入郵遞區號",
"输入邮箱":"輸入郵箱",
"确认":"確認",
"6寸":"6寸",
"8寸":"8寸",
"10寸":"10寸",
"12寸":"12寸",
"圆形蛋糕":"圆形蛋糕",
"方形蛋糕":"方形蛋糕"
}
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.
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