|
|
@ -36,14 +36,15 @@ |
|
|
|
<image src="/static/img/index/title_zj.png" mode="widthFix"></image> |
|
|
|
<image src="/static/img/index/title_zj.png" mode="widthFix"></image> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="listBox"> |
|
|
|
<view class="listBox"> |
|
|
|
<view class="photoBox" v-for="(item,index) in specs_list" :key="index"> |
|
|
|
<view class="photoBox" v-for="(item,index) in specs_list" :key="index" v-if="item.ilk != 2" @click="merge(item)"> |
|
|
|
<view class="photoTop"> |
|
|
|
<view class="photoTop"> |
|
|
|
<view class="topLeft"> |
|
|
|
<view class="topLeft"> |
|
|
|
<image :src="item.icon" mode="widthFix" @error="specsErr(index)"></image> |
|
|
|
<image :src="item.icon" mode="widthFix" @error="specsErr(index)"></image> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="topCenter"> |
|
|
|
<view class="topCenter"> |
|
|
|
<view class="title">{{item.title}}</view> |
|
|
|
<view class="title">{{item.title}}</view> |
|
|
|
<view class="desc">{{item.w_h_mm.w}}×{{item.w_h_mm.h}}mm | {{item.w_h_px.w}}×{{item.w_h_px.h}}px</view> |
|
|
|
<view class="desc" v-if="item.ilk == 1 || item.ilk == 2">{{item.w_h_mm.w}}×{{item.w_h_mm.h}}mm | {{item.w_h_px.w}}×{{item.w_h_px.h}}px</view> |
|
|
|
|
|
|
|
<view class="desc" v-else>自己设置照片的宽和高</view> |
|
|
|
|
|
|
|
|
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<view class="topRight"> |
|
|
|
<view class="topRight"> |
|
|
@ -226,96 +227,24 @@ |
|
|
|
scroll2(e) { |
|
|
|
scroll2(e) { |
|
|
|
console.log(e); |
|
|
|
console.log(e); |
|
|
|
}, |
|
|
|
}, |
|
|
|
//扫码 |
|
|
|
|
|
|
|
scanQrcode() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
var _this =this; |
|
|
|
|
|
|
|
_this.$com.showLoading('识别中...'); |
|
|
|
|
|
|
|
uni.scanCode({ |
|
|
|
|
|
|
|
onlyFromCamera: false, |
|
|
|
|
|
|
|
success: function (res) { |
|
|
|
|
|
|
|
console.log(res); |
|
|
|
|
|
|
|
console.log('条码类型:' + res.scanType); |
|
|
|
|
|
|
|
console.log('条码内容:' + res.result); |
|
|
|
|
|
|
|
if (res.scanType == 'QR_CODE') |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
var url = res.result; |
|
|
|
|
|
|
|
var codeTypeArr = ['deviceKey', 'deviceCode', 'qrcode', 'code']; //支持的条码参数 |
|
|
|
|
|
|
|
var url_str = ''; |
|
|
|
|
|
|
|
codeTypeArr.forEach(function(item) { |
|
|
|
|
|
|
|
if(url.indexOf(item) != -1 ) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
var keyindex = item; |
|
|
|
|
|
|
|
var deviceKey = _this.getParameterByName(url,item); |
|
|
|
|
|
|
|
if(!_this.$com.isNull(deviceKey)) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if(['qrcode', 'code'].includes(item)) { |
|
|
|
|
|
|
|
keyindex = 'deviceCode'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
console.log(keyindex+'='+deviceKey); |
|
|
|
|
|
|
|
url_str = `${keyindex}=${deviceKey}`; |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
if(!_this.$com.isNull(url_str)) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
uni.$u.route({ |
|
|
|
|
|
|
|
url: '/pages/order/order?'+url_str, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_this.$com.alert('二维码格式有误'); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
_this.$com.alert('暂不支持此种条码类型'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
fail:function(err){ |
|
|
|
|
|
|
|
_this.$com.alert('扫码失败,请重试'); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
complete:function(end){ |
|
|
|
|
|
|
|
_this.$com.hideLoading(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
//获取url中是否有某个参数的值 |
|
|
|
|
|
|
|
getParameterByName(url,name) { |
|
|
|
|
|
|
|
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]"); |
|
|
|
|
|
|
|
var regexS = "[\\?&]" + name + "=([^&#]*)"; |
|
|
|
|
|
|
|
var regex = new RegExp(regexS); |
|
|
|
|
|
|
|
var results = regex.exec(url); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (results == null) return ""; |
|
|
|
|
|
|
|
else return decodeURIComponent(results[1].replace(/\+/g, " ")); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
openAd(index) |
|
|
|
openAd(index) |
|
|
|
{ |
|
|
|
{ |
|
|
|
var _this =this; |
|
|
|
var _this =this; |
|
|
|
var item = _this.banner[index]; |
|
|
|
var item = _this.banner[index]; |
|
|
|
console.log(item); |
|
|
|
console.log(item); |
|
|
|
if(!_this.$com.isNull(item.jumpUrl)) |
|
|
|
if(!_this.$com.isNull(item.link_url)) |
|
|
|
{ |
|
|
|
{ |
|
|
|
console.log(item.jumpUrl); |
|
|
|
console.log(item.link_url); |
|
|
|
var url = ''; |
|
|
|
var url = ''; |
|
|
|
switch(item.jumpType) |
|
|
|
switch(item.type) |
|
|
|
{ |
|
|
|
{ |
|
|
|
case 0: |
|
|
|
|
|
|
|
url=item.jumpUrl; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
case 1: |
|
|
|
case 1: |
|
|
|
url='/pages/web/index?title='+item.adName+'&url='+encodeURIComponent(item.jumpUrl); |
|
|
|
url=item.jumpUrl; |
|
|
|
break; |
|
|
|
break; |
|
|
|
|
|
|
|
|
|
|
|
case 2: |
|
|
|
case 2: |
|
|
|
url='/pages/web/video?title='+item.adName+'&url='+encodeURIComponent(item.jumpUrl); |
|
|
|
url='/pages/web/index?title='+item.adName+'&url='+encodeURIComponent(item.jumpUrl); |
|
|
|
break; |
|
|
|
break; |
|
|
|
|
|
|
|
|
|
|
|
default: |
|
|
|
default: |
|
|
|