Commit 8bdb4fd5 by 程默

init

parent ea92cb7c
......@@ -166,8 +166,12 @@ export default {
let len = res.target.data.length - 1;
console.log(res, "h5消息", res.target.data[len]);
this.shareShopName = res.target.data[len].shareShopName || "";
this.shareLogoUrl = DFSImg(res.target.data[len].shareLogoUrl, 500, 400);
this.shareLogoUrl = res.target.data[len].shareLogoUrl;
// this.shareLogoUrl = DFSImg(res.target.data[len].shareLogoUrl, 500, 400);
// console.log()
console.log(this.shareLogoUrl,'logourl');
}
},
onUnload() {
......
<template>
<div class="domain">
<div class="toCLogin">
<image class="img" mode="aspectFit" :src="logoUrl"></image>
<image class="img" mode="aspectFit" :src="logoUrl"/>
<p class="shopName" v-if="shopName">{{shopName}}</p>
<div class="btn_info">
<button class="btn" lang="zh_CN" open-type="getUserInfo" @getuserinfo="getUserInfo">微信一键登录</button>
......@@ -120,11 +120,11 @@ export default {
});
},
getUserInfo: function(e) {
// wx.showLoading({
// title: "加载中"
// });
wx.showLoading({
title: "加载中"
});
if (e.target.errMsg == "getUserInfo:ok" && this.isShow) {
// wx.hideLoading();
wx.hideLoading();
if (this.isHaveUnion) {
//是会员 直接登录
wx.reLaunch({
......@@ -174,6 +174,8 @@ export default {
this.isShowPhone = true;
}
}
} else {
wx.hideLoading();
}
},
getPhoneNumber(e) {
......
......@@ -56,8 +56,10 @@ export function DFSImg(path, w, h) { //
if (w) style += ',w_' + w;
if (h) style += ',h_' + h;
if (style.length > 0) {
if(path.indexOf('?x-oss-process') == -1){
path += '?x-oss-process=image/resize,m_pad,limit_0' + style
}
}
if (path.indexOf('http') == 0) {
return path;
}
......
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