Merge branch 'develop' of https://gitee.com/qinxingxing/alpha-shopping into develop
# Conflicts: # pages/mine/mine.vue # pages/supply_chain/supply_chain.vue
@@ -81,14 +81,15 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.tab-icon {
|
.tab-icon {
|
||||||
width: 24px;
|
margin-top: 5rpx;
|
||||||
|
width: 44rpx;
|
||||||
/* 图标大小 */
|
/* 图标大小 */
|
||||||
height: 24px;
|
height: 44rpx;
|
||||||
/* 图标大小 */
|
/* 图标大小 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-text {
|
.tab-text {
|
||||||
font-size: 12px;
|
font-size: 24rpx
|
||||||
/* 文字大小 */
|
/* 文字大小 */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -495,7 +495,7 @@ export default {
|
|||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.home_warp {
|
.home_warp {
|
||||||
background: $app-bj;
|
background: $app-bj;
|
||||||
height: calc(100vh - 140rpx); // 140rpx 是底部的导航栏高度
|
height: calc(100vh - env(safe-area-inset-bottom)); // 是底部的导航栏高度
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -352,7 +352,7 @@ export default {
|
|||||||
onLoad(options) {
|
onLoad(options) {
|
||||||
const type = options.type;
|
const type = options.type;
|
||||||
this.form.type =
|
this.form.type =
|
||||||
type && type < 5 ? parseInt(type, 10) : MINE_ORDER_TYPE.UNPAID;
|
type ? parseInt(type, 10) : MINE_ORDER_TYPE.UNPAID;
|
||||||
this.loadData();
|
this.loadData();
|
||||||
// 待收货判断是否签署
|
// 待收货判断是否签署
|
||||||
if (
|
if (
|
||||||
@@ -403,7 +403,7 @@ export default {
|
|||||||
this.aftterSalesProduct = item;
|
this.aftterSalesProduct = item;
|
||||||
this.afterShow = true;
|
this.afterShow = true;
|
||||||
this.aftterSalesProduct.status = 9;
|
this.aftterSalesProduct.status = 9;
|
||||||
this.aftterSalesProduct.afterType = this.form.type - 1;
|
this.aftterSalesProduct.afterType = this.form.type == MINE_ORDER_TYPE.UNSHIPPED ? 1 : 2;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// 售后订单详情
|
// 售后订单详情
|
||||||
@@ -800,7 +800,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.order_warp {
|
.order_warp {
|
||||||
height: calc(100vh - 130rpx);
|
height: calc(100vh - env(safe-area-inset-bottom));
|
||||||
background-color: $app-bj;
|
background-color: $app-bj;
|
||||||
padding: 100rpx 30rpx 30rpx;
|
padding: 100rpx 30rpx 30rpx;
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="invite_friends_warp">
|
<view class="invite_friends_warp">
|
||||||
<view class="invite_img">
|
<view class="invite_img">
|
||||||
<up-image :loading="imageLoading" :src="inviteImage" width="100%" height="460" bgColor="#f1f6ff00" shape="square"
|
<!-- <up-image :loading="imageLoading" :src="inviteImage" class="invite_imgage" bgColor="#f1f6ff00" shape="square"
|
||||||
radius=10></up-image>
|
radius=10></up-image> -->
|
||||||
|
<image :src="inviteImage" class="invite_imgage"></image>
|
||||||
</view>
|
</view>
|
||||||
<view class="invite_but">
|
<view class="invite_but">
|
||||||
<view class="save_but">
|
<view class="save_but">
|
||||||
@@ -97,12 +98,23 @@ export default {
|
|||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.invite_friends_warp {
|
.invite_friends_warp {
|
||||||
height: calc(100vh - 80rpx);
|
height: calc(100vh - 80rpx);
|
||||||
padding: 40rpx;
|
padding: 10rpx 40rpx 40rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.invite_img {
|
// .invite_img {
|
||||||
margin-top: 52rpx;
|
// height: 920rpx;
|
||||||
height: 930rpx;
|
// }
|
||||||
|
|
||||||
|
.invite_imgage{
|
||||||
|
// width="100%" height="460"
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
height: 920rpx;
|
||||||
|
}
|
||||||
|
::v-deep(uni-image){
|
||||||
|
width: 100%;
|
||||||
|
height: 920rpx;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.invite_but {
|
.invite_but {
|
||||||
|
|||||||
@@ -244,7 +244,7 @@ export default {
|
|||||||
display: flex;
|
display: flex;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-top: 20rpx;
|
margin-top: 20rpx;
|
||||||
height: calc(100vh - 356rpx);
|
height: calc(100vh - 216rpx - env(safe-area-inset-bottom));
|
||||||
}
|
}
|
||||||
|
|
||||||
.u-search-inner {
|
.u-search-inner {
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 450 B |
|
After Width: | Height: | Size: 5.1 KiB |
|
After Width: | Height: | Size: 4.7 KiB |
|
After Width: | Height: | Size: 7.7 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 708 B |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 1.6 KiB |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 764 B |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 766 B |
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 969 B |
|
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 905 B |
|
After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 2.5 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 2.1 KiB |