Browse Source

个人信息生日完善问题;测评列表标题修改;积分跳转页面调整;普通、积分、秒杀、拼团商品详情富文本调整

home_hotList
whyneedname 2 years ago
parent
commit
66b7af52d9
  1. 2
      assets/css/style.css
  2. 2
      assets/css/style.less
  3. 2
      pages/activity/GroupDetails/index.vue
  4. 2
      pages/activity/SeckillDetails/index.vue
  5. 4
      pages/shop/Evaluations/index.vue
  6. 5
      pages/shop/GoodsCon/index.vue
  7. 4
      pages/shop/IntegralGoodsCon/index.vue
  8. 3
      pages/user/PersonalData/index.vue
  9. 3
      pages/user/User/index.vue
  10. 3
      pages/user/signIn/Sign/index.vue

2
assets/css/style.css

@ -1591,6 +1591,8 @@ page {
}
.product-con .product-intro .conter {
width: 100%;
background-color: #FFFFFF;
padding: 0rpx 30rpx;
}
.product-con .product-intro .conter * {
width: 100% !important;

2
assets/css/style.less

@ -3126,6 +3126,8 @@ page {
.product-con .product-intro .conter {
width: 100%;
background-color: #FFFFFF;
padding: 0rpx 30rpx;
}
.product-con .product-intro .conter * {

2
pages/activity/GroupDetails/index.vue

@ -193,7 +193,7 @@
</view>
<!-- 操作栏 -->
<view :style="addBottom?'height: 162rpx;':'height: 122rpx;'"></view>
<view :style="(addBottom?'height: 162rpx;':'height: 122rpx;')+'background: #FFFFFF;'"></view>
<!--底部操作栏-->
<view class="tui-operation acea-row" :style="addBottom?'height: 162rpx;':'height: 122rpx;'">

2
pages/activity/SeckillDetails/index.vue

@ -122,7 +122,7 @@
</view>
<!-- 操作栏 -->
<view :style="addBottom?'height: 162rpx;':'height: 122rpx;'"></view>
<view :style="(addBottom?'height: 162rpx;':'height: 122rpx;')+'background: #FFFFFF;'"></view>
<!--底部操作栏-->
<view class="tui-operation acea-row row-between" :style="addBottom?'height: 162rpx;':'height: 122rpx;'">

4
pages/shop/Evaluations/index.vue

@ -14,8 +14,8 @@
</view>
<view class="title-box">
<view class="en-title">EXPERT EVALUATION</view>
<view class="title">权威评测</view>
<view class="en-title">SELECTION EVALUATION</view>
<view class="title">甄选评测</view>
</view>
<view class="list-box">

5
pages/shop/GoodsCon/index.vue

@ -414,7 +414,7 @@
showEntry: false,
tagStyle: {
a: 'color:#2DB5AE;text-decoration:underline;',
p: 'text-indent:2em;',
// p: 'text-indent:2em;',
// span: 'padding: 0rpx 30rpx;text-indent:2em;text-align: justify;text-justify: auto;'
// span: 'padding: 0rpx 30rpx;display: inline-block;',
img: 'padding:0;margin:0;font-size:0;display:block;'
@ -573,8 +573,7 @@
.then(res => {
res.data.storeInfo.description = res.data.storeInfo.description.replace(/\<img/gi,
'<img style="max-width:100%;height:auto;"')
res.data.storeInfo.description = res.data.storeInfo.description.replace(/&nbsp;/gi,
' ')
// res.data.storeInfo.description = res.data.storeInfo.description.replace(/&nbsp;/gi,'')
that.brandInfo = res.data.brandInfo;
that.$set(that, 'storeInfo', res.data.storeInfo)
// attr attr

4
pages/shop/IntegralGoodsCon/index.vue

@ -183,7 +183,7 @@ export default {
isIntegral: true,
tagStyle: {
a: 'color:#2DB5AE;text-decoration:underline;',
p: 'text-indent:2em;',
// p: 'text-indent:2em;',
// span: 'padding: 0rpx 32rpx !important;display: inline-block;',
img: 'padding:0;margin:0;font-size:0;display:block;'
},
@ -312,7 +312,7 @@ export default {
getProductDetail(that.id, from)
.then(res => {
res.data.storeInfo.description = res.data.storeInfo.description.replace(/\<img/gi, '<img style="max-width:100%;height:auto;"');
res.data.storeInfo.description = res.data.storeInfo.description.replace(/&nbsp;/gi, ' ');
// res.data.storeInfo.description = res.data.storeInfo.description.replace(/&nbsp;/gi, ' ');
that.$set(that, 'storeInfo', res.data.storeInfo)
// attr attr
that.$set(that.attr, 'productAttr', res.data.productAttr)

3
pages/user/PersonalData/index.vue

@ -42,7 +42,7 @@
<view class="item acea-row row-between-wrapper">
<view>生日</view>
<view class="input">
<picker mode="date" :value="birth" @change="bindDateChange()">
<picker mode="date" :value="birth" @change="bindDateChange">
<view v-if="!birth" class="empty">点击完善生日</view>
<view v-else>
{{birth}}
@ -200,6 +200,7 @@
});
},
bindDateChange(e) {
console.log(e)
this.birth = e.detail.value;
},
//

3
pages/user/User/index.vue

@ -349,7 +349,8 @@ export default {
this.$yrouter.push('/pages/user/coupon/UserCoupon/index')
},
goIntegral() {
this.$yrouter.push('/pages/user/signIn/Integral/index')
this.$yrouter.push('/pages/user/signIn/Sign/index');
// this.$yrouter.push('/pages/user/signIn/Integral/index')
},
// goUserPromotion() {
// this.$yrouter.push('/pages/user/promotion/UserPromotion/index')

3
pages/user/signIn/Sign/index.vue

@ -443,7 +443,8 @@
},
methods: {
goSignRecord() {
this.$yrouter.push("/pages/user/signIn/SignRecord/index");
this.$yrouter.push('/pages/user/signIn/Integral/index');
// this.$yrouter.push("/pages/user/signIn/SignRecord/index");
},
getGoodsList() {
getProductsIntegral(this.from).then(res => {

Loading…
Cancel
Save