main
JING 8 months ago
parent 9471ba32e0
commit 516c159c41
  1. 87
      pages/index/index.vue
  2. 34
      pages/user/index.vue
  3. 8
      pagesA/merge/index.vue

@ -36,14 +36,15 @@
<image src="/static/img/index/title_zj.png" mode="widthFix"></image>
</view>
<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="topLeft">
<image :src="item.icon" mode="widthFix" @error="specsErr(index)"></image>
</view>
<view class="topCenter">
<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 class="topRight">
@ -226,96 +227,24 @@
scroll2(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)
{
var _this =this;
var item = _this.banner[index];
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 = '';
switch(item.jumpType)
switch(item.type)
{
case 0:
url=item.jumpUrl;
break;
case 1:
url='/pages/web/index?title='+item.adName+'&url='+encodeURIComponent(item.jumpUrl);
url=item.jumpUrl;
break;
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;
default:

@ -146,8 +146,8 @@
</view>
<u-empty icon="/static/img/user/nodata.png" mode="list" text="暂无数据,快去添加吧!" width="180rpx" marginTop="120px"></u-empty>
<view class="newBtn">去创建</view>
<u-empty icon="/static/img/user/nodata.png" mode="list" text="暂无数据,快去添加吧!" width="180rpx" marginTop="120px" v-if="dataList.length == 0"></u-empty>
<view class="newBtn" @click="createNew" v-if="dataList.length == 0">去创建</view>
</view>
@ -388,6 +388,36 @@ export default {
});
},
createNew(){
var _this =this;
console.log(e);
_this.current = e.index;
var type = _this.tabList[_this.current].type;
switch(type)
{
case 1:
uni.navigateTo({
url:'/pagesA/merge/index',
})
break;
case 2:
uni.navigateTo({
url:'/pagesA/color/index',
})
break;
case 3:
uni.navigateTo({
url:'/pagesA/photo/photo_1',
})
break;
case 4:
uni.navigateTo({
url:'/pagesA/photo/cartoon_1',
})
break;
}
},
},
};

@ -45,7 +45,7 @@
</view>
<view class="topCenter">
<view class="title">{{item.title}}</view>
<view class="desc" v-if="!(item.w_h_mm.w == 0 && item.w_h_mm.h == 0 && item.w_h_px.w == 0 && item.w_h_px.h == 0)">{{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 class="topRight">
@ -393,7 +393,11 @@
_this.curPage = post.page;
_this.total = d.total;
_this.temList = _this.temList.concat(d.data);
var Data = d.data;
Data.forEach((item, index) => {
Data[index].icon = _this.$api.ossurl(item.icon);
});
_this.temList = _this.temList.concat(Data);
});

Loading…
Cancel
Save