Browse Source

细碎修复

master
zhengshuiqi 3 years ago
parent
commit
9a9b5c8403
  1. 3
      pages/account/addAddress.vue
  2. 7
      pages/account/myProfile.vue
  3. 7
      pages/shippingCart/index.vue
  4. 4
      pages/specialTitle/index.vue

3
pages/account/addAddress.vue

@ -612,4 +612,7 @@
line-height: 88rpx; line-height: 88rpx;
} }
} }
/deep/ .uni-input-input {
padding-top: 0 !important;
}
</style> </style>

7
pages/account/myProfile.vue

@ -20,7 +20,7 @@
</view> </view>
<view class="profile_item "> <view class="profile_item ">
<text>Email</text> <text>Email</text>
<view class="profile_item_right"> <view @click="goEmail" class="profile_item_right">
<image src="../../static/img/gantan.png" alt="" class="right_img1" v-if="user_info.is_validated==0"></image> <image src="../../static/img/gantan.png" alt="" class="right_img1" v-if="user_info.is_validated==0"></image>
<image src="../../static/img/qr.png" alt="" class="right_img1" v-if="user_info.is_validated!=0"></image> <image src="../../static/img/qr.png" alt="" class="right_img1" v-if="user_info.is_validated!=0"></image>
<text>{{user_info.is_validated==0?'Unverified':''+user_info.email}}</text> <text>{{user_info.is_validated==0?'Unverified':''+user_info.email}}</text>
@ -135,6 +135,11 @@
url:'../index/address' url:'../index/address'
}) })
}, },
goEmail() {
uni.navigateTo({
url:'../login/verifyEmail'
})
}
}, },
onLoad(e) { onLoad(e) {

7
pages/shippingCart/index.vue

@ -1400,10 +1400,11 @@
justify-content: space-between; justify-content: space-between;
border-bottom: none; border-bottom: none;
padding: 0; padding: 0;
margin-bottom: 10px;
// margin-bottom: 78.67rpx; // margin-bottom: 78.67rpx;
&:nth-child(odd) { // &:nth-child(odd) {
margin-bottom: 10px; // margin-bottom: 20px;
} // }
&:last-child { &:last-child {
margin-bottom: 0; margin-bottom: 0;
} }

4
pages/specialTitle/index.vue

@ -12,7 +12,8 @@
:style="{height:(item.zone_code=='ONEPIC')?item.zone_column+'rpx':''}"> :style="{height:(item.zone_code=='ONEPIC')?item.zone_column+'rpx':''}">
<!-- class="discount page_padding" --> <!-- class="discount page_padding" -->
<image :src="item1.block_pic" mode="" @click="imgTo(item1)"> <image :src="item1.block_pic" mode="" @click="imgTo(item1)">
<a style="display: block;width: 100%;height: 100%;top: 0;position: absolute;" :href="item1.block_link"></a> <a v-if="item1.block_title = 1" style="display: block;width: 100%;height: 100%;top: 0;position: absolute;" :href="item1.block_link"></a>
<web-view v-if="item1.block_title = 0" :webview-styles="webviewStyles" style="display: block;width: 100%;height: 100%;top: 0;position: absolute;":src="item1.block_link"></web-view>
</image> </image>
</view> </view>
</view> </view>
@ -78,6 +79,7 @@
this.getpage() this.getpage()
}, },
methods: { methods: {
getpage() { getpage() {
let imglist let imglist
defaultRequest(this.data).then(res => { defaultRequest(this.data).then(res => {

Loading…
Cancel
Save