feat: 优化部分页面

dev_1.0.1
hu-qi 5 months ago
parent c51d0fbd4c
commit 7601e45078
Signed by: huqi
GPG Key ID: B66F8F763A3A3251

@ -166,17 +166,21 @@
position: fixed;
left: 30upx;
right: 30upx;
bottom: 16upx;
bottom: constant(safe-area-inset-bottom);
bottom: env(safe-area-inset-bottom);
/* bottom: 16upx; */
width: 100vw;
height: 100vh;
z-index: 95;
display: flex;
align-items: center;
justify-content: center;
width: 690upx;
width: 640upx;
height: 80upx;
font-size: 32upx;
color: #fff;
background-color: $base-color;
border-radius: 10upx;
box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
background-color: #CC342D;
border-radius: 50upx;
}
</style>

@ -21,11 +21,14 @@
</view> -->
<view class="row b-b">
<text class="tit">收货地区</text>
<input class="input" type="text" v-model="addressData.prefixAddress" placeholder="省市区县 乡镇" placeholder-class="placeholder" />
<input class="input" type="text" v-model="addressData.prefixAddress" placeholder="省市区县乡镇" placeholder-class="placeholder" />
</view>
<view class="row b-b">
<text class="tit">详细地址</text>
<input class="input" type="text" v-model="addressData.detailAddress" placeholder="街道 楼牌号" placeholder-class="placeholder" />
<input class="input" type="text" v-model="addressData.detailAddress" placeholder="街道、楼牌号" placeholder-class="placeholder" />
</view>
<view class="row b-b">
<input class="input" type="textarea" v-model="content" placeholder="粘贴收货人、手机号、收货地址信息" placeholder-class="placeholder" />
</view>
<view class="row default-row">
@ -56,7 +59,8 @@
city: '',
region: '',
prefixAddress: ''
}
},
content: '',
}
},
onLoad(option) {

@ -204,7 +204,7 @@
switch (code) {
case 'myOrders':
uni.navigateTo({
url: '/pages/order/order'
url: '/pages/order/order?state=0'
})
break;
case 'collections':

@ -421,8 +421,8 @@
.goods-img {
display: block;
width: 120upx;
height: 120upx;
width: 192upx;
height: 192upx;
}
.right {
@ -431,6 +431,7 @@
flex-direction: column;
padding: 0 30upx 0 24upx;
overflow: hidden;
position: relative;
.title {
font-size: $font-base + 2upx;
@ -447,6 +448,9 @@
.price {
font-size: $font-base + 2upx;
color: $font-color-dark;
position: absolute;
left: 24upx;
bottom: 0;
&:before {
content: '¥';

@ -9,7 +9,7 @@
<view class="tips_text">{{tips.text}} {{data.area}} {{data.mobile}}</view>
</view>
<view class="numBox">
<uni-code-input v-model="data.mobileCheckCode" mode="line" :space="12" :focus="true" borderColor="rgba(0, 0, 0, 0.1)"
<uni-code-input v-model="data.mobileCheckCode" mode="line" :size="88" :fontSize="48" :space="24" :focus="true" color="rgba(0, 0, 0, 0.2)" borderColor="rgba(0, 0, 0, 0.1)"
hairline :maxlength="6" @finish="finish"></uni-code-input>
</view>
<view class="cutdownBox">
@ -23,13 +23,11 @@
</template>
<script>
// import uniLoadMore from '@/components/uni-load-more/uni-load-more.vue';
import uniCodeInput from '@/components/uni-code-input/uni-code-input.vue';
export default {
name: 'CheckCode',
components: {
uniCodeInput
// uniLoadMore
},
data() {
return {

@ -72,7 +72,7 @@
//
isRead: false,
//
isShowCode: false,
isShowCode: true,
//
isLogining: false,
//

@ -77,6 +77,7 @@ http.interceptor.response((response) => {
}
}
});
uni.setStorageSync('token', '')
}
return Promise.reject(response);
} else {

Loading…
Cancel
Save