wangfukang 1 month ago
parent
commit
2e790d84be
  1. 16
      package1/buyFood/buyFood.vue
  2. 3
      package1/order/orderDetail.vue
  3. 13
      package1/post/postDetail.vue

16
package1/buyFood/buyFood.vue

@ -1635,6 +1635,22 @@
pointer-events: auto;
}
.pay-popup {
max-height: 92vh;
background: #fff;
border-radius: 40rpx 40rpx 0 0;
padding: 22rpx 0 calc(36rpx + constant(safe-area-inset-bottom));
padding: 22rpx 0 calc(36rpx + env(safe-area-inset-bottom));
box-sizing: border-box;
overflow: hidden;
}
.pay-popup .content {
max-height: calc(92vh - 58rpx - env(safe-area-inset-bottom));
margin-top: 0;
overflow-y: auto;
}
.checkout-fixed-header--store {
height: 360rpx;
background: #fff0df;

3
package1/order/orderDetail.vue

@ -2904,7 +2904,8 @@
.cancel-popup {
position: relative;
max-height: 86vh;
padding: 20rpx 20rpx calc(8rpx + env(safe-area-inset-bottom)) !important;
padding: 20rpx 20rpx calc(36rpx + constant(safe-area-inset-bottom)) !important;
padding: 20rpx 20rpx calc(36rpx + env(safe-area-inset-bottom)) !important;
overflow: visible;
box-sizing: border-box;
background: #fff;

13
package1/post/postDetail.vue

@ -238,7 +238,20 @@
displayName(item) {
return item && item.userName ? item.userName : '半径同学'
},
isAnonymousItem(item) {
if (!item) return false
return item.anonymous === true
|| item.anonymous === 1
|| item.anonymous === '1'
|| item.anonymous === 'true'
|| item.isAnonymous === true
|| item.isAnonymous === 1
|| item.isAnonymous === '1'
|| item.isAnonymous === 'true'
|| item.userName === '半径同学'
},
displayAvatar(item) {
if (this.isAnonymousItem(item)) return this.defaultAvatar
return item && item.userAvatar ? item.userAvatar : this.defaultAvatar
},
stripHtml(html = '') { return String(html).replace(/<[^>]+>/g, '') },

Loading…
Cancel
Save