123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402 |
- <template>
- <view class="QueryExpressView">
- <view class="QueryExpContainer">
- <view class="QueryExpfrom">
- <view class="FromSelect">
- <view v-for="(item,index) in fromItem"
- class="selectItem"
- :class="{isSelect: index == currIndex }"
- @click="checkFrom(index)">
- {{ item }}
- </view>
- </view>
- <view class="informationFrom">
- <view class="fromItem">
- <view class="sender">
- 寄
- </view>
- <view class="senderInformation" @click="getAddres('Send')">
- <p><span>{{SenderData.area}} <span class="DetailedAddress">{{SenderData.detailedArea}}</span>
- </span></p>
- <p :class="{isNone:!SenderData.name}"><span>{{SenderData.name?SenderData.name:'完善寄件人信息'}}</span><span v-if="SenderData.name"
- style="margin-left: 10rpx;">{{SenderData.mobile}}</span></p>
- </view>
- </view>
- <view class="fromItem">
- <view class="sender consignee">
- 收
- </view>
- <view class="senderInformation" @click="getAddres('Collect')">
- <!-- <p><span>广州省广州市</span><span>地址簿</span></p> -->
- <p><span>{{collecterData.area}}<span class="DetailedAddress">{{collecterData.detailedArea}}</span></span></p>
- <p><span>{{collecterData.name?collecterData.name:'完善寄件人信息'}}</span><span v-if="collecterData.name"
- style="margin-left: 10rpx;">{{collecterData.mobile}}</span></p>
- </view>
- </view>
- <view class="CargoInformation">
- <span>物品:{{'日用品/1公斤'}} ></span>
- <span>上门:{{'今天09:00-13:00'}} ></span>
- </view>
- </view>
- </view>
- </view>
- <view style="box-sizing: border-box; padding: 0rpx 18rpx; margin-top: 290rpx;">
- <scroll-view class="ExpressSelection" scroll-x="true">
- <view class="SelectionItem" @click="selectExpress(index)" :class="{itemSelect:exServerIndex == index}" :key="index" v-for="(item,index) in ECList">
- <view class="icfonts">
- <image :src="item.imgUrl" mode=""></image> <span>{{item.name}}</span>
- </view>
- <view class="NewMoney">
- <span>5.5</span>元起
- </view>
- <view class="OldMoney">
- 市场价:<span>10</span> 元
- </view>
- <view class="radio" :class="{isselectRadio:exServerIndex == index}">
- √
- </view>
- </view>
- <!-- <view class="SelectionItem">
- <view class="icfonts">
- <image src="../image/yuantongyuanxing.png" mode=""></image> <span>圆通</span>
- </view>
- <view class="NewMoney">
- <span>5.5</span>元起
- </view>
- <view class="OldMoney">
- 市场价:<span>10</span> 元
- </view>
- <view class="radio">
- √
- </view>
- </view> -->
- </scroll-view>
- <view class="orderSubmit">
- <button @click="goExpressDelivery()">去寄件</button>
- <view>
- <span>丢件必赔</span> <span>比价下单</span> <span>上门取件</span>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- // 写死的快递公司数据
- import { ECList } from "../ExpressData.js"
- export default {
- components: {
-
- },
- props: {
- SenderData: {
- type: Object,
- default: {
-
- }
- },
- collecterData: {
- type: Object,
- default: {
-
- }
- }
- },
- watch: {
- // SenderData: {
- // immediate: true,
- // handler(Val,oldVal) {
- // console.log(Val)
- // }
- // }
- },
- data() {
- return {
- ECList,
- fromItem: ["寄快件", "批量寄件", "寄大件", "国际港澳台"],
- currIndex: 0,
- exServerIndex: 0,
- expressCpns: {},
- }
- },
- created() {
- this.expressCpns = ECList[0]
- },
- methods: {
- selectExpress(index) {
- this.exServerIndex = index
- this.expressCpns = ECList[index]
- // console.log(this.expressCpns)
- },
- checkFrom(index) {
- this.currIndex = index
- if(index > 0) {
- uni.showToast({
- title: "服务暂时未开通,敬请期待!!!",
- icon: "none"
- })
- let timer = setTimeout(() => {
- this.currIndex = 0
- clearTimeout(timer)
- },1500)
- }
- },
- handleClick() {
- console.log("提交按钮")
- },
- getAddres(standing) {
- uni.navigateTo({
- url: `/pages_user/serve/kuai-di/kuaiDiForm?standing=${standing}`
- })
- },
- goExpressDelivery() {
- uni.navigateTo({
- url: `/pages_user/serve/kuai-di/ExpressDelivery?excomp=${JSON.stringify(this.expressCpns)}`
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- // .submitView {
- // display: flex;
- // justify-content: space-around;
- // }
- .QueryExpContainer {
- width: 100vw;
- height: 205rpx;
- background-color: #327ee4;
- display: flex;
- justify-content: center;
- .QueryExpfrom {
- margin-top: 10rpx;
- width: 712rpx;
- height: 460rpx;
- border-radius: 15rpx;
- background-color: white;
- .FromSelect {
- width: 100%;
- height: 70rpx;
- border-radius: 15rpx;
- background-color: #e8f4fd;
- display: flex;
- align-items: flex-end;
- .isSelect {
- font-weight: 600;
- height: 80rpx !important;
- background-color: white;
- border-top-right-radius: 15rpx;
- border-top-left-radius: 15rpx;
- }
- .selectItem {
- font-size: 32rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- transition: height 0.3s ease;
- height: 70rpx;
- flex: 1;
- }
- }
- .informationFrom {
- margin-top: 10rpx;
- width: 100%;
- box-sizing: border-box;
- padding: 0rpx 18rpx 0rpx 18rpx;
- background-color: #fff;
- .fromItem {
- // width: 712rpx;
- // height: 145rpx;
- display: flex;
- align-items: center;
- .sender {
- margin-top: -30rpx;
- background-color: #afbbc2;
- color: #fff;
- width: 60rpx;
- height: 60rpx;
- border-radius: 50%;
- text-align: center;
- line-height: 60rpx;
- }
- .consignee {
- background-color: #0083ff;
- }
- .senderInformation {
- flex: 1;
- padding: 30rpx 0rpx;
- border-bottom: 1px dashed #afbbc2;
- margin-left: 20rpx;
- .DetailedAddress {
- margin-left: 10rpx;
- font-size: 26rpx;
- }
- >p:nth-of-type(1) {
- width: 100%;
- display: flex;
- justify-content: space-between;
- font-weight: 600;
- >span:nth-of-type(1) {
- max-width: 500rpx;
- max-height: 85rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- font-size: 34rpx;
- }
- >span:nth-of-type(2) {
- margin-top: 5rpx;
- font-weight: normal;
- font-size: 26rpx;
- }
- }
- >p:nth-of-type(2) {
- margin-top: 12rpx;
- font-size: 26rpx;
- color: #b3b5ba;
- }
- .isNone {
- color: #d75b62 !important;
- }
- }
- }
- .CargoInformation {
- display: flex;
- align-items: center;
- justify-content: space-around;
- height: 80rpx;
- font-size: 26rpx;
- color: #afbbc2;
- }
- }
- }
- }
- .ExpressSelection {
- display: flex;
- display: inline-block;
- white-space: nowrap;
- .itemSelect {
- border: 5rpx solid #0083ff !important;
- }
- .SelectionItem {
- display: inline-flex;
- flex-direction: column;
- align-items: center;
- width: 176rpx;
- height: 252rpx;
- margin-right: 20px;
- border-radius: 15rpx;
- background-color: white;
- padding-bottom: 5rpx;
- border: 5rpx solid #0084ff00;
- .icfonts {
- margin-top: 2rpx;
- display: flex;
- align-items: center;
- padding: 10rpx 10rpx;
- border-radius: 15rpx;
- background-color: #dadbdc5f;
- >image {
- width: 50rpx;
- height: 50rpx;
- }
- >span {
- margin-left: 10rpx;
- font-size: 24rpx;
- }
- }
- .NewMoney {
- margin-top: 16rpx;
- font-size: 24rpx;
- letter-spacing: 2rpx;
- >span {
- letter-spacing: 1rpx;
- margin-right: 5rpx;
- font-size: 50rpx;
- color: #ff651a;
- }
- }
- .OldMoney {
- margin-top: 12rpx;
- font-size: 20rpx;
- color: #868e92;
- >span {
- margin: 0 5rpx;
- text-decoration: line-through;
- }
- }
- .radio {
- margin-top: 15rpx;
- width: 40rpx;
- height: 40rpx;
- font-size: 35rpx;
- text-align: center;
- line-height: 40rpx;
- border-radius: 50%;
- color: #fff;
- border: 1px solid #868e92;
- }
- .isselectRadio {
- background-color: #0083ff;
- border: 1px solid #0083ff;
- }
- }
- }
- .orderSubmit {
- border-radius: 15rpx;
- margin-top: 20rpx;
- width: 712rpx;
- height: 200rpx;
- background-color: #fff;
- display: flex;
- flex-direction: column;
- align-items: center;
- >button {
- margin-top: 30rpx;
- width: 664rpx;
- font-size: 40rpx;
- height: 88rpx;
- line-height: 88rpx;
- color: #fff;
- border-radius: 50rpx;
- background-color: #0173f3;
- }
- >view {
- margin-top: 15rpx;
- width: 470rpx;
- font-size: 30rpx;
- display: flex;
- justify-content: space-around;
- color: #868e92;
- }
- }
- </style>
|