init
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
.getTimePicker {
|
||||
::v-deep .uni-popup__wrapper {
|
||||
height: 680rpx;
|
||||
background-color: white !important;
|
||||
border-radius: 24rpx 24rpx 0 0;
|
||||
}
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
height: 56rpx;
|
||||
padding: 30rpx 38rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border-radius: 24rpx 24rpx 0 0;
|
||||
|
||||
.header-title {
|
||||
font-size: 32rpx;
|
||||
color: #151515;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.close {
|
||||
width: 24rpx;
|
||||
height: 24rpx;
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
background-image: url('../../../static/icon21.png');
|
||||
}
|
||||
}
|
||||
.time-select{
|
||||
display: flex;
|
||||
.select-day{
|
||||
width: 296rpx;
|
||||
height: 500rpx;
|
||||
background: #F6F6F6;
|
||||
.select-day-item{
|
||||
height: 108rpx;
|
||||
line-height: 108rpx;
|
||||
text-align: center;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
.select-day-item.active{
|
||||
background: #fff;
|
||||
color:#E84134 ;
|
||||
}
|
||||
}
|
||||
.select-time{
|
||||
.time-item{
|
||||
font-size: 28rpx;
|
||||
display: flex;
|
||||
padding-left: 80rpx;
|
||||
margin-bottom: 46rpx;
|
||||
.time-value{
|
||||
padding-right: 126rpx;
|
||||
}
|
||||
.time-select{
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
background-image: url('../../../static/gouxuan.png');
|
||||
}
|
||||
}
|
||||
.time-item.active{
|
||||
color:#E84134 ;
|
||||
}
|
||||
::v-deep scroll-view{
|
||||
height:500rpx ;
|
||||
}
|
||||
|
||||
//隐藏滚动条
|
||||
::v-deep ::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,103 @@
|
||||
<!-- 期待上门时间弹窗 -->
|
||||
<template>
|
||||
<view class="getTimePicker">
|
||||
<uni-popup ref="popup" type="bottom" :safe-area="false">
|
||||
<view class="header">
|
||||
<view class="header-title">期望上门时间</view>
|
||||
<view class="close" @click="handleCancel"></view>
|
||||
</view>
|
||||
<!-- 时间选择区域 -->
|
||||
<view class="time-select">
|
||||
<view class="select-day">
|
||||
<view :class="selectedDay === index ?'active':''" class="select-day-item"
|
||||
@click="handleSelectDay(index,item)" v-for="(item,index) in selectDay" :key='index'>
|
||||
{{item}}
|
||||
</view>
|
||||
</view>
|
||||
<view class="select-time">
|
||||
<scroll-view scroll-y :scroll-top="scrollTop" @scroll="scroll">
|
||||
<view :class="selectedTime === item.value ?'active':''" class="time-item"
|
||||
v-for="(item,index) in (selectedDay===0?todayList.todos:dateList)" :key="index"
|
||||
@click='handleSelectTime(item.value,item.label)'>
|
||||
<view class="time-value">{{item.label}}</view>
|
||||
<view class="time-select" v-if='selectedTime === item.value'></view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
</view>
|
||||
</uni-popup>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
ref,
|
||||
reactive,
|
||||
onMounted,
|
||||
} from 'vue';
|
||||
const emits = defineEmits(["@getTime"]);
|
||||
const popup = ref()
|
||||
let scrollTop = ref(0) //顶部位置
|
||||
let selectedDay = ref(0)
|
||||
let selectedDayLabel = ref('今天')
|
||||
let selectedTime = ref(0)
|
||||
let selectedTimeLabel = ref()
|
||||
const selectDay = reactive(['今天', '明天', '后天'])
|
||||
let todayList = reactive({
|
||||
todos: [{
|
||||
label: '一小时内',
|
||||
value: 1
|
||||
}]
|
||||
})
|
||||
onMounted(() => {
|
||||
todayList.todos = [...todayList.todos.concat(
|
||||
dateList.filter(item => item.value > new Date().getHours())
|
||||
)]
|
||||
})
|
||||
const dateList = reactive(
|
||||
// 弹窗中的时间列表
|
||||
Array.from({
|
||||
length: 11
|
||||
}, (v, k) => ({
|
||||
label: `${k + 9}:00-${k + 10}:00`,
|
||||
value: k + 9
|
||||
}))
|
||||
)
|
||||
const scroll = (e) => {
|
||||
scrollTop.value = e.detail.scrollTop
|
||||
}
|
||||
//选择具体时间段
|
||||
const handleSelectTime = (index, item) => {
|
||||
selectedTime.value = index
|
||||
selectedTimeLabel.value = item
|
||||
popup.value.close('bottom');
|
||||
emits('getTime', {
|
||||
selectedDay: selectedDay.value,
|
||||
selectedDayLabel: selectedDayLabel.value,
|
||||
selectedTime: selectedTime.value,
|
||||
selectedTimeLabel: selectedTimeLabel.value
|
||||
})
|
||||
}
|
||||
//选择哪天
|
||||
const handleSelectDay = (index, item) => {
|
||||
selectedDay.value = index
|
||||
scrollTop.value = 0
|
||||
selectedTime.value = 0
|
||||
selectedDayLabel.value = item
|
||||
}
|
||||
// 打开弹层
|
||||
const handleOpen = () => {
|
||||
popup.value.open('bottom');
|
||||
|
||||
};
|
||||
// 关闭弹层
|
||||
const handleCancel = () => {
|
||||
popup.value.close('bottom');
|
||||
}
|
||||
// 暴漏给父组件
|
||||
defineExpose({
|
||||
handleOpen
|
||||
});
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped src='./getTimePicker.scss'></style>
|
@@ -0,0 +1,80 @@
|
||||
.payType{
|
||||
::v-deep .uni-popup__wrapper {
|
||||
height:480rpx;
|
||||
background-color: white !important;
|
||||
border-radius: 24rpx 24rpx 0 0;
|
||||
padding: 29rpx 38rpx 43rpx;
|
||||
}
|
||||
|
||||
.headers {
|
||||
display: flex;
|
||||
height: 56rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border-radius: 24rpx 24rpx 0 0;
|
||||
|
||||
.header-title {
|
||||
font-size: 32rpx;
|
||||
color: #151515;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.close {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
background-image: url('../../../static/guanbi.png');
|
||||
}
|
||||
}
|
||||
.contents{
|
||||
margin-top: 64rpx;
|
||||
.content-item{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
.left-content{
|
||||
.title{
|
||||
font-size: 28rpx;
|
||||
color: #151515;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
.subTitle{
|
||||
font-size: 24rpx;
|
||||
color: #888888;
|
||||
}
|
||||
}
|
||||
.right-content{
|
||||
.active,.checkbox{
|
||||
width: 50rpx;
|
||||
height: 50rpx;
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
}
|
||||
.checkbox{
|
||||
background-image: url('../../../static/checkbox.png');
|
||||
}
|
||||
.active{
|
||||
|
||||
background-image: url('../../../static/checkboxActive.png');
|
||||
}
|
||||
}
|
||||
}
|
||||
.content-item:last-child{
|
||||
margin-top: 60rpx;
|
||||
}
|
||||
}
|
||||
.footers{
|
||||
.btn{
|
||||
width: 404rpx;
|
||||
height: 88rpx;
|
||||
background-color: #E84134;
|
||||
border-radius: 44rpx;
|
||||
text-align: center;
|
||||
line-height: 88rpx;
|
||||
color: white;
|
||||
margin: 0 auto;
|
||||
margin-top: 43rpx;
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,70 @@
|
||||
<!-- 付款方式弹窗 -->
|
||||
<template>
|
||||
<view class="payType">
|
||||
<uni-popup ref="popup" type="bottom" :safe-area="false">
|
||||
<view class="headers">
|
||||
<view class="header-title">付款方式</view>
|
||||
<view class="close" @click="handleCancel"></view>
|
||||
</view>
|
||||
<view class="contents">
|
||||
<view class="content-item" v-for="(item,index) in list" :key="index" @click="handleChangePayType(item)">
|
||||
<view class="left-content">
|
||||
<view class="title">{{item.title}}</view>
|
||||
<view class="subTitle">{{item.subTitle}}</view>
|
||||
</view>
|
||||
<view class="right-content">
|
||||
<view class="checkbox" :class="{active:item.value===payType}"></view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="footers" @click="handleCancel">
|
||||
<view class="btn">确定</view>
|
||||
</view>
|
||||
</uni-popup>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
ref,
|
||||
reactive,
|
||||
} from 'vue';
|
||||
const emits = defineEmits(["@getPayType"]);
|
||||
const popup = ref()
|
||||
const payType = ref(1)
|
||||
const list = reactive([
|
||||
{
|
||||
title:'寄付',
|
||||
subTitle:'快递员取件时,寄方可在线支付、扫快递员收款码进行支付',
|
||||
value:1
|
||||
},
|
||||
{
|
||||
title:'到付',
|
||||
subTitle:'快递签收后,收方可通过扫快递员收款码进行支付',
|
||||
value:2
|
||||
}
|
||||
])
|
||||
//选择付款方式
|
||||
const handleChangePayType =(item)=>{
|
||||
payType.value = item.value
|
||||
}
|
||||
// 打开弹层
|
||||
const handleOpen = () => {
|
||||
popup.value.open('bottom');
|
||||
|
||||
};
|
||||
// 关闭弹层
|
||||
const handleCancel = () => {
|
||||
popup.value.close('bottom');
|
||||
emits('getPayType',payType.value)
|
||||
}
|
||||
// 暴漏给父组件
|
||||
defineExpose({
|
||||
handleOpen
|
||||
});
|
||||
</script>
|
||||
|
||||
<style lang="scss" src='./payType.scss' scoped></style>
|
||||
|
||||
|
||||
|
@@ -0,0 +1,351 @@
|
||||
.express-delivery{
|
||||
background-color: #F3F5F9 !important;
|
||||
padding: 20rpx;
|
||||
height: 80vh;
|
||||
.address-box{
|
||||
background: #FFFFFF;
|
||||
border-radius: 20rpx;
|
||||
display: flex;
|
||||
padding: 42rpx 28rpx;
|
||||
padding-bottom: 0rpx;
|
||||
.left{
|
||||
margin-right: 20rpx;
|
||||
.send,.get{
|
||||
width: 40rpx;
|
||||
height: 40prx;
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
line-height: 40rpx;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
.send{
|
||||
background: #000000;
|
||||
color: white;
|
||||
}
|
||||
.get{
|
||||
background: #E63E32;
|
||||
color: white;
|
||||
}
|
||||
.line{
|
||||
width: 2rpx;
|
||||
height: 120rpx;
|
||||
border-left: 2rpx dashed #D5D1D1;
|
||||
margin-left: 18rpx;
|
||||
}
|
||||
.active{
|
||||
height: 153rpx;
|
||||
}
|
||||
}
|
||||
.right{
|
||||
width: 100%;
|
||||
position: relative;
|
||||
.send-people,.get-people{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
.send-title{
|
||||
max-width: 490rpx;
|
||||
height: 100%;
|
||||
}
|
||||
.send-sub-title{
|
||||
color: #151515;
|
||||
font-size: 32rpx;
|
||||
margin-bottom: 6rpx;
|
||||
font-weight: bold;
|
||||
text{
|
||||
color: #888888;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
}
|
||||
.send-desc{
|
||||
color: #888888;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
.address-enter{
|
||||
font-weight: bold;
|
||||
border-left: 2rpx solid #F4F4F4;
|
||||
padding-left: 28rpx;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
}
|
||||
.get-people{
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
.send-people{
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
.line{
|
||||
width: 100%;
|
||||
height: 2rpx;
|
||||
background-color: #F4F4F4;
|
||||
margin-bottom: 40rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.send-form{
|
||||
height: 400rpx;
|
||||
width: 100%;
|
||||
border-radius: 20rpx;
|
||||
margin-top: 40rpx;
|
||||
|
||||
.tab-box{
|
||||
display: flex;
|
||||
position: relative;
|
||||
background-color: white;
|
||||
border-radius: 0 20rpx 0 0;
|
||||
.tab-item{
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
height: 76rpx;
|
||||
line-height: 76rpx;
|
||||
font-size: 30rpx;
|
||||
background-color:#E3E7ED ;
|
||||
border-radius:0 20rpx 0 20rpx ;
|
||||
position: relative;
|
||||
}
|
||||
.tab-item.active{
|
||||
font-weight: bold;
|
||||
height: 96rpx;
|
||||
line-height: 96rpx;
|
||||
background-color:white ;
|
||||
border-radius:20rpx 20rpx 0 0rpx ;
|
||||
position: relative;
|
||||
bottom: 20rpx;
|
||||
}
|
||||
.isNotActive.tab-item:first-child{
|
||||
border-radius:20rpx 0rpx 20rpx 0rpx ;
|
||||
}
|
||||
}
|
||||
.tab-box.active{
|
||||
border-radius: 20rpx 0 0 0;
|
||||
}
|
||||
.form-box{
|
||||
background-color: #FFFFFF;
|
||||
position: relative;
|
||||
bottom: 20rpx;
|
||||
padding: 0 36rpx 0 28rpx;
|
||||
border-radius: 0 0 20rpx 20rpx;
|
||||
.form-getTime,.goods-info,.pay-type{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
height: 96rpx;
|
||||
border-bottom: 2rpx solid #F4F4F4;
|
||||
.left{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.label{
|
||||
font-size: 26rpx;
|
||||
color:#151515 ;
|
||||
font-weight: bold;
|
||||
}
|
||||
.required{
|
||||
margin-left: 12rpx;
|
||||
width: 62rpx;
|
||||
height: 30rpx;
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
background-image: url('../../static/required.png');
|
||||
}
|
||||
}
|
||||
.right{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.nextIcon{
|
||||
margin-left: 18rpx;
|
||||
}
|
||||
.value{
|
||||
color: #888888;
|
||||
font-size: 26rpx;
|
||||
}
|
||||
.value.active{
|
||||
color: #151515;
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
.pay-type{
|
||||
border-bottom: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.footer{
|
||||
height:172rpx ;
|
||||
background-color: white;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
padding-top: 22rpx;
|
||||
.right{
|
||||
.btn{
|
||||
width: 268rpx;
|
||||
height: 88rpx;
|
||||
background-color: #CCCCCC;
|
||||
border-radius: 44rpx;
|
||||
text-align: center;
|
||||
line-height: 88rpx;
|
||||
color: white;
|
||||
margin-right: 29rpx;
|
||||
}
|
||||
.btn.active{
|
||||
background-color:#E84134 ;
|
||||
}
|
||||
}
|
||||
.left{
|
||||
margin-left: 29rpx;
|
||||
.left-top{
|
||||
font-size:26rpx ;
|
||||
color:#323232 ;
|
||||
display: flex;
|
||||
.all-account{
|
||||
border-right: 2rpx solid #F4F4F4;
|
||||
display: flex;
|
||||
padding-right: 10rpx;
|
||||
margin-right: 10rpx;
|
||||
.price{
|
||||
color: #E73F33;
|
||||
}
|
||||
}
|
||||
.price-detail{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
.arrow{
|
||||
width: 0;
|
||||
height: 0;
|
||||
border: 10rpx solid transparent;
|
||||
border-top-color: black;
|
||||
margin-left: 10rpx;
|
||||
margin-top: 8rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
.left-bottom{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-top: 22rpx;
|
||||
.active,.checkbox{
|
||||
width: 32rpx;
|
||||
height: 32rpx;
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
margin-right: 10rpx;
|
||||
}
|
||||
.checkbox{
|
||||
background-image: url('../../static/checkbox.png');
|
||||
}
|
||||
.active{
|
||||
|
||||
background-image: url('../../static/checkboxActive.png');
|
||||
}
|
||||
.content{
|
||||
color: #696969;
|
||||
font-size: 20rpx;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.footer.active{
|
||||
z-index: 9999;
|
||||
}
|
||||
.priceDetail{
|
||||
::v-deep .uni-popup__wrapper {
|
||||
height:640rpx;
|
||||
background-color: white !important;
|
||||
border-radius: 24rpx 24rpx 0 0;
|
||||
padding: 29rpx 38rpx 150rpx;
|
||||
}
|
||||
.header {
|
||||
display: flex;
|
||||
height: 56rpx;
|
||||
// padding: 30rpx 38rpx;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border-radius: 24rpx 24rpx 0 0;
|
||||
|
||||
.header-title {
|
||||
font-size: 32rpx;
|
||||
color: #151515;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.close {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
background-image: url('../../static/guanbi.png');
|
||||
}
|
||||
}
|
||||
.title{
|
||||
margin-top: 40rpx;
|
||||
font-size: 26rpx;
|
||||
color: #151515;
|
||||
display: flex;
|
||||
.title-red{
|
||||
color: #E84134;
|
||||
}
|
||||
}
|
||||
.base-price{
|
||||
margin-top: 36rpx;
|
||||
font-size: 26rpx;
|
||||
color: #151515;
|
||||
font-weight: bold;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.price-rule{
|
||||
font-size: 24rpx;
|
||||
color: #888888;
|
||||
margin-top: 20rpx;
|
||||
}
|
||||
.billing-weight{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
height: 80rpx;
|
||||
background-color:#F5F5F5 ;
|
||||
border-radius: 4rpx;
|
||||
padding: 10rpx 27rpx;
|
||||
margin-top: 22rpx;
|
||||
.left{
|
||||
font-size: 24prx;
|
||||
color: #888888;
|
||||
}
|
||||
.right{
|
||||
font-size: 26rpx;
|
||||
}
|
||||
}
|
||||
.line{
|
||||
margin-top: 20rpx;
|
||||
width: 100%;
|
||||
height: 2rpx;
|
||||
background-color: #F4F4F4;
|
||||
}
|
||||
.add-service,.setTimeout-send{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.add-service{
|
||||
font-size: 26rpx;
|
||||
font-weight: bold;
|
||||
margin-top: 22rpx;
|
||||
margin-bottom: 22rpx;
|
||||
}
|
||||
.setTimeout-send{
|
||||
font-size: 26rpx;
|
||||
.left{
|
||||
color: #888888;
|
||||
}
|
||||
.right{
|
||||
font-weight: bold;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,578 @@
|
||||
<template>
|
||||
<!-- 头部导航栏 -->
|
||||
<nav-bar title='寄快递' :handleToLink="handleToLink"></nav-bar>
|
||||
<view class="express-delivery" v-if="netStatus">
|
||||
<!-- 寄件人,收件人信息填写(地址簿) -->
|
||||
<view class="address-box">
|
||||
<view class="left">
|
||||
<view class="send">寄</view>
|
||||
<view class="line" :class="{active:twoLine>=2}"></view>
|
||||
<view class="get">收</view>
|
||||
</view>
|
||||
<view class="right">
|
||||
<view class="send-people">
|
||||
<view class="send-title" @click="toSendAddressInfo">
|
||||
<view class="send-sub-title">
|
||||
{{senderInfo.name?senderInfo.name:'寄件人信息'}}
|
||||
<text
|
||||
v-if="senderInfo.phone">{{senderInfo.phone.replace(/(\d{3})\d{4}(\d{4})/, "$1****$2")}}</text>
|
||||
</view>
|
||||
<view class="send-desc">
|
||||
{{senderInfo.address?senderInfo.areaLabel+senderInfo.address:'去填写'}}
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="address-enter" @click="handleToAddress('send')">地址簿</view>
|
||||
</view>
|
||||
<view class="line"></view>
|
||||
<view class="get-people">
|
||||
<view class="send-title" @click="toGetAddressInfo">
|
||||
<view class="send-sub-title">
|
||||
{{geterInfo.name?geterInfo.name:'收件人信息'}}
|
||||
<text
|
||||
v-if="geterInfo.phone">{{geterInfo.phone.replace(/(\d{3})\d{4}(\d{4})/, "$1****$2")}}</text>
|
||||
</view>
|
||||
<view class="send-desc">
|
||||
{{geterInfo.address?geterInfo.areaLabel+geterInfo.address:'去填写'}}
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="address-enter" @click="handleToAddress('get')">地址簿</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<!-- 寄件其他信息填写 -->
|
||||
<view class="send-form">
|
||||
<view class="tab-box" :class="activeIndex===1?'active':''">
|
||||
<view class="tab-item" :class="activeIndex===index?'active':'isNotActive'"
|
||||
v-for='(item,index) in tabList' @click="changeTab(index)" :key='index'>
|
||||
{{item}}
|
||||
</view>
|
||||
</view>
|
||||
<view class="form-box">
|
||||
<view class="toDoor" v-if='activeIndex === 0'>
|
||||
<!-- 期望上门时间 -->
|
||||
<view class="form-getTime" @click='handleGetTime'>
|
||||
<view class="left">
|
||||
<view class="label">期望上门时间</view>
|
||||
<view class="required"></view>
|
||||
</view>
|
||||
<view class="right">
|
||||
<view class="value" :class="toDoorTimeLabel?'active':''">
|
||||
{{toDoorTimeLabel?toDoorTimeLabel:'请选择'}}
|
||||
</view>
|
||||
<icon class="nextIcon"></icon>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 物品信息 -->
|
||||
<view class="goods-info" @click='handleToGoodsInfo'>
|
||||
<view class="left">
|
||||
<view class="label">物品信息</view>
|
||||
<view class="required"></view>
|
||||
</view>
|
||||
<view class="right">
|
||||
<view class="value" :class="goods.goodsName?'active':''">
|
||||
{{goods.goodsName?(goods.goodsName + ', '+ (goods.weight+'公斤') + (goods.volume?', '+(dealWithVolume(goods.volume/1000000)+'m³'):'')):'请选择'}}
|
||||
</view>
|
||||
<icon class="nextIcon"></icon>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 付款方式 -->
|
||||
<view class="pay-type" @click='handleToPayType'>
|
||||
<view class="left">
|
||||
<view class="label">付款方式</view>
|
||||
</view>
|
||||
<view class="right">
|
||||
<view class="value" :class="payMethod?'active':''">
|
||||
{{payMethod ===1?'寄付':payMethod ===2?'到付':'请选择'}}
|
||||
</view>
|
||||
<icon class="nextIcon"></icon>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 网点自寄 -->
|
||||
<view class="branch-send" v-else>
|
||||
网点自寄
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<!-- 期待上门时间弹窗 -->
|
||||
<GetTimePicker ref='timePicker' @getTime="getTime"></GetTimePicker>
|
||||
|
||||
<!-- 付款方式弹窗 -->
|
||||
<PayTypeDialog ref='payType' @getPayType="getPayType"></PayTypeDialog>
|
||||
|
||||
<!-- 底部 -->
|
||||
<view class="footer" :class="{active:isSeachPriceDetail}">
|
||||
<view class="left">
|
||||
<view class="left-top" @click="searchPriceDetail">
|
||||
<view class="all-account">
|
||||
预估总价
|
||||
<view class="price">¥{{feightPrice.expense}}</view>
|
||||
</view>
|
||||
<view class="price-detail">
|
||||
明细
|
||||
<view class="arrow"></view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="left-bottom">
|
||||
<view class="active"></view>
|
||||
<view class="content">阅读并同意《电子运单契约条款》</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="right">
|
||||
<view class="btn" :class="isCanSubmit?'active':''" @click="order">下单</view>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
<!-- 运费明细弹窗 -->
|
||||
<uni-popup ref="priceDetail" type="bottom" class="priceDetail">
|
||||
<view class="header">
|
||||
<view class="header-title">运费预估</view>
|
||||
<view class="close" @click="handleCancel"></view>
|
||||
</view>
|
||||
<view class="title">
|
||||
实际费用请以快递员揽收为准,
|
||||
<view class="title-red" @click="openAccountRulesDialog">了解计费规则</view>
|
||||
</view>
|
||||
<view class="base-price">
|
||||
<view class="left">基础运费</view>
|
||||
<view class="right">¥{{feightPrice.expense}}</view>
|
||||
</view>
|
||||
<view class="price-rule">首重(1.0kg){{feightPrice.firstWeight}}元,续重{{feightPrice.continuousWeight}}元/kg</view>
|
||||
<view class="billing-weight">
|
||||
<view class="left">计费重量</view>
|
||||
<view class="right">(含包装){{feightPrice.weight}}kg</view>
|
||||
</view>
|
||||
<view class="line"></view>
|
||||
<view class="add-service">
|
||||
<view class="left">增值服务</view>
|
||||
<view class="right">¥0</view>
|
||||
</view>
|
||||
<view class="setTimeout-send">
|
||||
<view class="left">礼物定时派送</view>
|
||||
<view class="right">¥0</view>
|
||||
</view>
|
||||
</uni-popup>
|
||||
</view>
|
||||
<!-- 断网显示的页面 -->
|
||||
<net-fail v-else :handleToRefresh="handleToRefresh"></net-fail>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
ref,
|
||||
reactive,
|
||||
onMounted,
|
||||
computed,
|
||||
nextTick
|
||||
} from 'vue';
|
||||
import {
|
||||
onLoad,
|
||||
} from '@dcloudio/uni-app';
|
||||
import {
|
||||
getAddressInfoDetail,
|
||||
defaultAddress
|
||||
} from '@/pages/api/address.js'
|
||||
import {
|
||||
doOrder,
|
||||
getEstimatePrice
|
||||
} from '@/pages/api/order.js'
|
||||
import GetTimePicker from './components/getTimePicker.vue';
|
||||
import PayTypeDialog from './components/payType.vue';
|
||||
import {
|
||||
handleSecondQi,
|
||||
} from '@/utils/index.js'
|
||||
import {
|
||||
useStore
|
||||
} from 'vuex';
|
||||
const twoLine = ref()
|
||||
const store = useStore(); //vuex获取、储存数据
|
||||
const users = store.state.user
|
||||
const isCanSubmit = computed(() => {
|
||||
|
||||
return (geterInfo.name && senderInfo.name && goods.goodsName && payMethod.value && toDoorTimeLabel.value)
|
||||
})
|
||||
|
||||
const timePicker = ref() //期望上门时间组件的引用
|
||||
const payType = ref() //付款方式弹窗组件的引用
|
||||
const priceDetail = ref()//运费弹窗明细组件的引用
|
||||
const isSeachPriceDetail = ref(false)
|
||||
const toDoorTime = ref('') //预计上门时间
|
||||
const toDoorTimeLabel = ref('今天 一小时内')
|
||||
const payMethod = ref(1) //付款方式
|
||||
const type = ref('') //判断是从寄件地址返回的还是收件地址
|
||||
const feightPrice = reactive({
|
||||
expense: '', //运费
|
||||
weight: '', //计算重量
|
||||
firstWeight: '', //首重价格
|
||||
continuousWeight: '' //续重价格
|
||||
})
|
||||
const isFromGoods = ref(false)
|
||||
const stopClick = ref(false)
|
||||
const goods = reactive({
|
||||
weight: 1,
|
||||
volume: 1,
|
||||
goodsName: '',
|
||||
goodsType: ''
|
||||
})
|
||||
const sendAddress = ref('')
|
||||
const senderInfo = reactive({
|
||||
name: '',
|
||||
phone: '',
|
||||
address: '',
|
||||
areaLabel: '',
|
||||
}) //寄件人信息
|
||||
const geterInfo = reactive({
|
||||
name: '',
|
||||
phone: '',
|
||||
address: '',
|
||||
areaLabel: '',
|
||||
}) //收件人信息
|
||||
let netStatus = ref(true)
|
||||
//tab常量
|
||||
const tabList = reactive(['上门取件',
|
||||
'网点自寄'
|
||||
])
|
||||
//当前
|
||||
let activeIndex = ref(0)
|
||||
//打开计费规则弹窗
|
||||
const openAccountRulesDialog = () => {
|
||||
uni.navigateTo({
|
||||
url: '/subPages/account-rules/index'
|
||||
});
|
||||
}
|
||||
onMounted(() => {
|
||||
feightPrice.expense = users.expense
|
||||
feightPrice.weight = users.computeWeight
|
||||
feightPrice.firstWeight = users.firstWeight
|
||||
feightPrice.continuousWeight = users.continuousWeight
|
||||
})
|
||||
onLoad((options) => {
|
||||
console.log(options,'options')
|
||||
if (options.type === 'send') {
|
||||
sendAddress.value = options.id
|
||||
uni.setStorageSync('sendId', options.id)
|
||||
} else if (options.type === 'get') {
|
||||
uni.setStorageSync('getId', options.id)
|
||||
}
|
||||
//用于解决点击地址薄选择了非默认地址回来之后被默认地址覆盖的问题
|
||||
if(!options.id){
|
||||
getDefaultAddress()
|
||||
}
|
||||
|
||||
//用于解决页面跳转回来数据缺失问题
|
||||
if (uni.getStorageSync('sendId')) {
|
||||
searchAddressDetail(uni.getStorageSync('sendId'), 'send')
|
||||
}
|
||||
if (uni.getStorageSync('getId')) {
|
||||
searchAddressDetail(uni.getStorageSync('getId'), 'get')
|
||||
}
|
||||
type.value = options.type
|
||||
goods.volume = users.volume
|
||||
goods.weight = users.weight
|
||||
goods.goodsName = users.goodsInfo.name
|
||||
goods.goodsType = users.goodsInfo.goodsType ? users.goodsInfo.goodsType.id : ''
|
||||
toDoorTimeLabel.value = users.toDoorTimeLabel || '今天 一小时内'
|
||||
toDoorTime.value = users.toDoorTime
|
||||
payMethod.value = users.payMethod
|
||||
isFromGoods.value = options.isFromGoods
|
||||
//必须寄件收件人地址和物品信息都选择了才能计算运费
|
||||
//这里不能将逻辑提前,应该置于赋值后面
|
||||
if (uni.getStorageSync('getId') && (uni.getStorageSync('sendId') || sendAddress.value) && users.goodsInfo
|
||||
.name) {
|
||||
console.log(666)
|
||||
calcFreight()
|
||||
}
|
||||
})
|
||||
const handleToRefresh = ()=>{
|
||||
uni.redirectTo({
|
||||
url:'/pages/express-delivery/index'
|
||||
})
|
||||
}
|
||||
//处理体积如果是超过小数点后四位则保留四位小数,其他情况直接展示
|
||||
const dealWithVolume = (value) => {
|
||||
let dot = String(value).indexOf(".");
|
||||
if (dot != -1) {
|
||||
let dotCnt = String(value).substring(dot + 1, value.length);
|
||||
if (dotCnt.length > 4) {
|
||||
value = value.toFixed(4);
|
||||
return value
|
||||
} else {
|
||||
return value
|
||||
}
|
||||
} else {
|
||||
return value
|
||||
}
|
||||
}
|
||||
const getDefaultAddress = () => {
|
||||
if (!type.value && !isFromGoods.value) {
|
||||
defaultAddress().then((res) => {
|
||||
if (res.data) {
|
||||
sendAddress.value = res.data.id
|
||||
senderInfo.name = res.data.name
|
||||
senderInfo.phone = res.data.phoneNumber
|
||||
senderInfo.address = res.data.address
|
||||
senderInfo.areaLabel = res.data.province.name + ' ' + res.data.city.name + ' ' + res.data
|
||||
.county.name
|
||||
uni.setStorageSync('sendId', res.data.id)
|
||||
netStatus.value = true
|
||||
nextTick(()=>{
|
||||
//用来获取详细地址有几行,从而适配寄和收之间竖线的高度
|
||||
uni.createSelectorQuery().select('.send-desc').boundingClientRect(res => {
|
||||
let height = res.height;
|
||||
let line = height / 15
|
||||
twoLine.value = line
|
||||
}).exec();
|
||||
})
|
||||
}
|
||||
}).catch((err) => {
|
||||
uni.showToast({
|
||||
title: '网络异常',
|
||||
duration: 2000,
|
||||
icon: 'none'
|
||||
});
|
||||
netStatus.value = false
|
||||
})
|
||||
}
|
||||
|
||||
}
|
||||
//查询地址簿详情,并赋值
|
||||
const searchAddressDetail = (id, type) => {
|
||||
getAddressInfoDetail(id).then((res) => {
|
||||
const {
|
||||
name,
|
||||
phoneNumber,
|
||||
address,
|
||||
city,
|
||||
county,
|
||||
province,
|
||||
} = res.data
|
||||
if (type === 'send') {
|
||||
senderInfo.name = name
|
||||
senderInfo.phone = phoneNumber
|
||||
senderInfo.address = address
|
||||
senderInfo.areaLabel = province.name + ' ' + city.name + ' ' + county.name
|
||||
} else {
|
||||
geterInfo.name = name
|
||||
geterInfo.phone = phoneNumber
|
||||
geterInfo.address = address
|
||||
geterInfo.areaLabel = province.name + ' ' + city.name + ' ' + county.name
|
||||
}
|
||||
nextTick(()=>{
|
||||
//用来获取详细地址有几行,从而适配寄和收之间竖线的高度
|
||||
uni.createSelectorQuery().select('.send-desc').boundingClientRect(res => {
|
||||
let height = res.height;
|
||||
let line = height / 15
|
||||
twoLine.value = line
|
||||
}).exec();
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
// 切换tab
|
||||
const changeTab = (index) => {
|
||||
if (index === 1) {
|
||||
return handleSecondQi()
|
||||
}
|
||||
activeIndex.value = index
|
||||
}
|
||||
|
||||
//打开选择期望上门时间弹窗
|
||||
const handleGetTime = () => {
|
||||
timePicker.value.handleOpen()
|
||||
}
|
||||
//打开付款方式弹窗
|
||||
const handleToPayType = () => {
|
||||
payType.value.handleOpen()
|
||||
}
|
||||
const clearCurrentPageData = () => {
|
||||
store.commit('user/setGoodsInfo', {})
|
||||
store.commit('user/setVolume', '')
|
||||
store.commit('user/setExpense', 0)
|
||||
store.commit('user/setComputeWeight', 0)
|
||||
store.commit('user/setFirstWeight', 0)
|
||||
store.commit('user/setContinuousWeight', 0)
|
||||
store.commit('user/setToDoorTimeLabel', '')
|
||||
store.commit('user/setToDoorTime', String(new Date().getFullYear()) + '-' + String(new Date().getMonth() + 1) +
|
||||
'-' +
|
||||
new Date().getDate() + ' ' + String(new Date().getHours() + 1) + ':' + String(Number(new Date()
|
||||
.getMinutes()) < 10 ? '0' + Number(new Date().getMinutes()) : Number(new Date()
|
||||
.getMinutes())) + ':00')
|
||||
store.commit('user/setWeight', 1)
|
||||
store.commit('user/setPayMethod', 1)
|
||||
}
|
||||
|
||||
const handleToLink = () => {
|
||||
clearCurrentPageData()
|
||||
uni.removeStorageSync('getId');
|
||||
uni.removeStorageSync('sendId');
|
||||
uni.switchTab({
|
||||
url: '/pages/index/index'
|
||||
});
|
||||
}
|
||||
|
||||
//跳转到物品信息页面
|
||||
const handleToGoodsInfo = () => {
|
||||
uni.navigateTo({
|
||||
url: '/pages/goodsInfo/index'
|
||||
});
|
||||
}
|
||||
|
||||
//跳转地址簿
|
||||
const handleToAddress = (type) => {
|
||||
uni.navigateTo({
|
||||
url: '/pages/address/index?type=' + type + '&isFromAddress=false'
|
||||
});
|
||||
}
|
||||
|
||||
//查看运费明细
|
||||
const searchPriceDetail = () => {
|
||||
priceDetail.value.open('bottom')
|
||||
isSeachPriceDetail.value = true
|
||||
}
|
||||
|
||||
//关闭运费明细弹窗
|
||||
const handleCancel = () => {
|
||||
priceDetail.value.close()
|
||||
isSeachPriceDetail.value = false
|
||||
}
|
||||
|
||||
//重置期望上门时间为最新时间
|
||||
const resetPickUpTime = ()=>{
|
||||
if(toDoorTimeLabel.value === '今天 一小时内'){
|
||||
store.commit('user/setToDoorTime', toDoorTime.value)
|
||||
}
|
||||
}
|
||||
|
||||
//下单
|
||||
const order = () => {
|
||||
if (!isCanSubmit.value) {
|
||||
return
|
||||
}
|
||||
if (stopClick.value) {
|
||||
return
|
||||
}
|
||||
stopClick.value = true
|
||||
console.log(goods,'下单')
|
||||
doOrder({
|
||||
goodNum: 1,
|
||||
goodsName: goods.goodsName,
|
||||
goodsType: goods.goodsType,
|
||||
payMethod: payMethod.value,
|
||||
pickUpTime:toDoorTimeLabel.value==='今天 一小时内'?String(new Date().getFullYear()) + '-' + String(new Date().getMonth() + 1) + '-' +
|
||||
new Date().getDate() + ' ' + String(new Date().getHours() + 1) + ':' + String(Number(new Date()
|
||||
.getMinutes()) < 10 ? '0' + Number(new Date().getMinutes()) : Number(new Date()
|
||||
.getMinutes())) + ':00': users.toDoorTime,
|
||||
totalVolume: goods.volume ,
|
||||
totalWeight: goods.weight,
|
||||
receiptAddress: uni.getStorageSync('getId'),
|
||||
sendAddress: sendAddress.value || uni.getStorageSync('sendId'),
|
||||
pickupType: 0 //0上门取件,1网点自寄
|
||||
}).then((res) => {
|
||||
console.log(res,'resss')
|
||||
if (res.code !== 200) {
|
||||
uni.showToast({
|
||||
title: res.data.msg,
|
||||
icon: 'none',
|
||||
duration: 1000
|
||||
})
|
||||
} else {
|
||||
|
||||
uni.redirectTo({
|
||||
url: '/subPages/order-success/index?orderId=' + res.data.id
|
||||
});
|
||||
uni.removeStorageSync('getId');
|
||||
uni.removeStorageSync('sendId');
|
||||
clearCurrentPageData()
|
||||
}
|
||||
stopClick.value = false
|
||||
}).catch((err)=>{
|
||||
stopClick.value = false
|
||||
console.log(err,'err')
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
//跳转到寄件人地址信息填写页面
|
||||
const toSendAddressInfo = () => {
|
||||
if (sendAddress.value || uni.getStorageSync('sendId')) {
|
||||
uni.navigateTo({
|
||||
url: '/subPages/address-info/index?type=send&editOrAdd=edit' + '&id=' +
|
||||
uni.getStorageSync(
|
||||
'sendId')
|
||||
});
|
||||
} else {
|
||||
uni.navigateTo({
|
||||
url: '/subPages/address-info/index?type=send&editOrAdd=add'
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//跳转到收件人地址信息填写页面
|
||||
const toGetAddressInfo = () => {
|
||||
if (uni.getStorageSync('getId')) {
|
||||
uni.navigateTo({
|
||||
url: '/subPages/address-info/index?type=get&editOrAdd=edit' + '&id=' + uni.getStorageSync(
|
||||
'getId')
|
||||
});
|
||||
} else {
|
||||
uni.navigateTo({
|
||||
url: '/subPages/address-info/index?type=get&editOrAdd=add'
|
||||
});
|
||||
}
|
||||
}
|
||||
//获取期望上门时间数据
|
||||
const getTime = (value) => {
|
||||
|
||||
toDoorTimeLabel.value = value.selectedDayLabel + ' ' + value.selectedTimeLabel
|
||||
toDoorTime.value = String(new Date().getFullYear()) + '-' + String(new Date().getMonth() + 1) + '-' + (
|
||||
new Date().getDate() + value.selectedDay + ' ' + String((value.selectedTime === 1 ? new Date()
|
||||
.getHours() + 1 : value.selectedTime) + ':00:00'))
|
||||
store.commit('user/setToDoorTimeLabel', toDoorTimeLabel.value)
|
||||
store.commit('user/setToDoorTime', toDoorTime.value)
|
||||
}
|
||||
//获取付款方式数据
|
||||
const getPayType = (value) => {
|
||||
payMethod.value = value
|
||||
store.commit('user/setPayMethod', value)
|
||||
}
|
||||
//计算运费
|
||||
const calcFreight = () => {
|
||||
console.log(goods,'计算运费')
|
||||
getEstimatePrice({
|
||||
goodNum: 1,
|
||||
goodsName: goods.goodsName,
|
||||
goodsType: goods.goodsType,
|
||||
payMethod: payMethod.value,
|
||||
pickUpTime: toDoorTime.value,
|
||||
totalVolume: goods.volume ,
|
||||
totalWeight: goods.weight,
|
||||
receiptAddress: uni.getStorageSync('getId'),
|
||||
sendAddress: uni.getStorageSync('sendId'),
|
||||
pickupType: 0 //0上门取件,1网点自寄
|
||||
}).then((res) => {
|
||||
if (res.code == 200) {
|
||||
store.commit('user/setExpense', res.data.expense)
|
||||
store.commit('user/setComputeWeight', res.data.computeWeight)
|
||||
store.commit('user/setFirstWeight', res.data.firstWeight)
|
||||
store.commit('user/setContinuousWeight', res.data.continuousWeight)
|
||||
feightPrice.expense = res.data.expense
|
||||
feightPrice.weight = res.data.computeWeight
|
||||
feightPrice.firstWeight = res.data.firstWeight
|
||||
feightPrice.continuousWeight = res.data.continuousWeight
|
||||
} else {
|
||||
uni.showToast({
|
||||
title: res.msg,
|
||||
duration: 1000,
|
||||
icon: 'none'
|
||||
});
|
||||
}
|
||||
})
|
||||
}
|
||||
</script>
|
||||
<style src='./components/getTimePicker.scss' lang="scss"></style>
|
||||
<style src='./components/payType.scss' lang="scss"></style>
|
||||
<style src="./index.scss" lang="scss"></style>
|
Reference in New Issue
Block a user