Commit eba2b9eb by 谢中龙

修改布局样式

parent c6a6063e
<!--pages/userCenter.wxml-->
<view class='page-integral-mall' style="padding-bottom: {{currentTab =='goods' ? '70rpx' : '40rpx'}}">
<view class='page-integral-mall' style="padding-bottom: {{currentTab =='goods' ? '80rpx' : '40rpx'}}">
<!-- title -->
<view class='mall-title'>
<view class='title-num-point'>
......
......@@ -146,7 +146,7 @@ page {
display: flex;
justify-content: center;
align-items: center;
height: 70rpx;
height: 80rpx;
position: fixed;
left: 0;
bottom: 0;
......
......@@ -36,6 +36,13 @@ wxService.page({
//获取兑换记录
getWxchangeRecords(){
const { memberId } = wx.getStorageSync('_baseUserInfo')
if(!memberId){
wx.showToast({
title: '登录失效,请返回登录',
icon : 'none'
});
return ;
}
let pageNo = this.data.pageNo,
pageSize = this.data.pageSize;
wxService.post(`/member/pointsRedemptionProductRecord/page?pageNo=${pageNo}&pageSize=${pageSize}`,{
......
......@@ -9,7 +9,11 @@
</view>
<view class="list-point">-{{item.point}}积分</view>
</view>
<view class="desc-address">{{item.fullAddress}}</view>
<view class="desc-address">
{{item.fullAddress}}
<text style='margin-left:20rpx;margin-right:10rpx;'>{{item.exchangeInfo.name}}</text>
<text>{{item.exchangeInfo.mobile}}</text>
</view>
</view>
</block>
<!-- view -->
......
......@@ -7,9 +7,9 @@
box-sizing: border-box;
}
.list-item {
height: 164rpx;
height: auto;
border-bottom: 1px solid #eeeeee;
padding: 35rpx 20rpx 34rpx 20rpx;
padding: 30rpx 20rpx;
box-sizing: border-box;
overflow: hidden;
}
......@@ -43,14 +43,14 @@
.desc-time,
.desc-address {
color: rgba(170, 170, 170, 1);
font-size: 22rpx;
font-size: 24rpx;
}
.desc-address {
width: 100%;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
-webkit-line-clamp: 3;
overflow: hidden;
}
.desc-time {
......
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