Authored by QC-L

修复`朋友圈`字样审核不通过的问题 review by 黄敬囿

... ... @@ -157,7 +157,7 @@ class App extends Component {
//登录态过期
Taro.setStorage({key: 'WXThird_session', data: ''});
Taro.setStorage({key: 'userInfo', data: ''});
Taro.setStorage({key: 'unionID', data: ''});
Taro.setStorage({key: 'unionid', data: ''});
Taro.setStorage({key: 'user_union_type', data: ''});
Taro.setStorage({key: 'session_key', data: ''});
}
... ...
... ... @@ -51,6 +51,7 @@
white-space: nowrap;
.item-group {
vertical-align:top;
display: inline-block;
width: 600px;
height: 440px;
... ...
... ... @@ -37,11 +37,11 @@
.size-list {
display: flex;
// align-items: center;
flex-wrap: wrap;
margin-top: 38px;
// border-left: 2px solid #ddd;
min-height:402px;
align-content: flex-start;
.size-item {
... ...
... ... @@ -9,7 +9,7 @@
<button class='item right' bindtap='onShare' hover-class="none" plain='true' data-type="moments">
<image class='icon' src='../../assets/images/wechat@3x.png'></image>
<text class='title'>朋友圈</text>
<text class='title'>生成海报分享</text>
</button>
</view>
<view class='line'></view>
... ...
... ... @@ -45,15 +45,15 @@
}
.left {
margin-left: 183rpx;
margin-left: 160rpx;
}
.right {
margin-right: 183rpx;
margin-right: 160rpx;
}
.main-view .share-view .item {
width: 100rpx;
width: 150rpx;
height: 100%;
border-radius: 0;
border-style: none;
... ...
... ... @@ -32,7 +32,7 @@ export default {
api: 'https://2.yohobuy.com',
yohoApi: 'https://api.yoho.cn',
yohoLogin: 'https://api.yoho.cn',
activityHost: 'http://action.yoho.cn',
activityHost: 'https://action.yoho.cn',
reportHost: 'https://app.yoho.cn/collect/v3'
},
apiParams: {
... ...
... ... @@ -5,7 +5,7 @@ export const LOG_EVENT_HOST = 'https://analysis.yohobuy.com/yas_mobile';
// export const ACTIVITY_HOST = 'http://192.168.102.49:6006';
// export const ACTIVITY_HOST = 'http://127.0.0.1:6006'
export const ACTIVITY_HOST = 'http://action.yoho.cn';
export const ACTIVITY_HOST = 'https://action.yoho.cn';
// export const API_HOST = 'http://dev-api.yohops.com:9999';
// export const SERVICE_HOST = 'http://dev-api.yohops.com:9999/';
... ...
... ... @@ -91,7 +91,7 @@ Page(Object.assign({
image_src: '../../assets/images/wechat@3x.png',
},
{
name: '分享到朋友圈',
name: '生成海报分享',
className: 'action-class',
loading: false,
image_src: '../../assets/images/wechat_friend@3x.png'
... ...
... ... @@ -40,7 +40,7 @@ Page(Object.assign({
image_src: '../../assets/images/wechat@3x.png',
},
{
name: '分享到朋友圈',
name: '生成海报分享',
className: 'action-class',
loading: false,
image_src: '../../assets/images/wechat_friend@3x.png'
... ...