2023-3-20
This commit is contained in:
@@ -79,7 +79,7 @@
|
||||
setTimeout(function() {
|
||||
uni.stopPullDownRefresh();
|
||||
}, 2000);
|
||||
|
||||
|
||||
},
|
||||
//加载更多
|
||||
onReachBottom() {
|
||||
@@ -188,23 +188,19 @@
|
||||
}
|
||||
|
||||
.listcard-content {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding-left: 10px;
|
||||
width: 100%;
|
||||
justify-content: space-between;
|
||||
|
||||
.listcard-content_title {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
font-size: 14px;
|
||||
color: #333;
|
||||
font-weight: 400;
|
||||
line-height: 1.2;
|
||||
position: relative;
|
||||
align-items: center;
|
||||
|
||||
text {
|
||||
flex:2.5;
|
||||
margin-right: 10px;
|
||||
font-size: 22px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
@@ -214,9 +210,9 @@
|
||||
}
|
||||
|
||||
.text2 {
|
||||
flex: 1;
|
||||
color: #999;
|
||||
margin-right: 10px;
|
||||
font-size: 18px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -130,7 +130,7 @@
|
||||
mode="aspectFill"></image>
|
||||
</scroll-view>
|
||||
<list-cell icon="icon-iconfontweixin" iconColor="#e07472" title="我的订单"
|
||||
@eventClick="navTo('../../pages/order/order?status=0')" ></list-cell>
|
||||
@eventClick="navTo('../../pages/order/order?status=0')"></list-cell>
|
||||
<list-cell icon="icon-dizhi" iconColor="#5fcda2" title="地址管理"
|
||||
@eventClick="navTo('../../pagesU/address/address')"></list-cell>
|
||||
<list-cell icon="icon-tuandui" iconColor="#EE82EE" title="个人资料"
|
||||
@@ -179,9 +179,9 @@
|
||||
<list-cell icon="icon-shezhi1" iconColor="#e07472" title="系统设置" border=""
|
||||
@eventClick="navTo('/pages/set/set')"></list-cell>
|
||||
<!-- <list-cell icon="icon-shezhi1" iconColor="#e07472" title="test" border="" @eventClick="navTo('/pages/search/test')"></list-cell> -->
|
||||
|
||||
|
||||
<!-- <view>{{push}}</view> -->
|
||||
|
||||
|
||||
</view>
|
||||
</view>
|
||||
<neil-modal :show="inputShow" @close="cancel" title="编辑" @cancel="cancel" @confirm="confirm">
|
||||
@@ -326,8 +326,13 @@
|
||||
this.userDetailInfo = data1.member;
|
||||
uni.setStorageSync('userInfos', data1.member);
|
||||
console.log(this.userDetailInfo);
|
||||
let couponList = data1.histories;
|
||||
this.couponList = couponList;
|
||||
data1.histories.forEach(item => {
|
||||
if (item.useStatus == 0) {
|
||||
this.couponList.push(item);
|
||||
}
|
||||
});
|
||||
|
||||
console.log("couponList>>>>>", this.couponList);
|
||||
}
|
||||
},
|
||||
// 获取浏览历史
|
||||
|
||||
Reference in New Issue
Block a user