123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- <!-- 物流详情 -->
- <template>
- <view class="product-logistics-container">
- <JHeader title="产品物流信息" width="50" height="50" style="padding: 24upx 0 0;"></JHeader>
- <view class="product-logistics_info">
- <view class="texts">快递商家:{{ orderDetail.info.name }}</view>
- <view class="texts">快递单号:{{ orderDetail.info.no }}</view>
- <view class="texts">快递备注:{{ orderDetail.info.remark }}</view>
- </view>
- <view class="product_logistics_List">
- <view class="timeline__item" v-for="(item, index) in orderDetail.list" :key="index">
- <view class="timeline__item-header">
- <view class="icon_body_content" :class="{ isOpen:item.isOpenDetail }" @click="openDetails($event, index)">
- <image class="timeline__arrow-icon" :aria-expanded="item.isOpenDetail" src="@/static/images/center/rightArrow.png"></image>
- </view>
- <!-- <button class="timeline__arrow" type="button" id="item1" aria-labelledby="item1-name" aria-controls="item1-ctrld" aria-haspopup="true" data-item="1">
- <svg class="timeline__arrow-icon">
- <use href="#arrow" />
- </svg>
- </button> -->
- <span class="timeline__dot"></span>
- <span id="item1-name" class="timeline__meta">
- <time class="timeline__date" datetime="1970-01-01">{{ new Date(Number(item.time)).toLocaleString() }}</time><br>
- <strong class="timeline__title">{{ item.source }}</strong>
- </span>
- </view>
- <view class="timeline__item-body" :class="{'timeline__item-body--expanded': item.isOpenDetail}" :id="`item${index + 1}-ctrld`" role="region" aria-labelledby="item1" aria-hidden="true">
- <view class="timeline__item-body-content">
- <p class="timeline__item-p">{{ item.message }}</p>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import { getBanziDileveryOrderApi } from '../../../api/anotherTFInterface'
- import orderDetail from './index.json'
- export default {
- name: 'ProductLogistics',
- data() {
- return {
- // temps: {
- // '--hue': 223,
- // '--bg': rgb(227, 228, 232),
- // '--fg': rgb(23, 24, 28),
- // '--primary': rgb(13, 78, 242),
- // '--trans-dur': '0.3s',
- // '--trans-timing': 'cubic-bezier(0.65,0,0.35,1)',
- // },
- orderId: '',
- skuId: '',
- orderDetail: []
- }
- },
- onLoad(options) {
- this.orderId = options.orderId
- this.skuId = options.skuId
- getBanziDileveryOrderApi({
- orderId: this.orderId,
- skuId: this.skuId
- }).then(res => {
- this.orderDetail = res.data
- this.orderDetail.list = orderDetail.list.map((item, index) => {
- return {
- ...item,
- isOpenDetail: true
- }
- })
- }).catch(err => {
- this.orderDetail = orderDetail
- this.orderDetail.list = orderDetail.list.map((item, index) => {
- return {
- ...item,
- isOpenDetail: true
- }
- })
- uni.showToast({
- title: err,
- cion: 'none'
- });
- })
- },
- methods: {
- // 获取产品物流信息
- getProductLogisticsMsg() {
- getBanziDileveryOrderApi({
- orderId: this.orderId,
- skuId: this.skuId
- }).then((res) => {
- console.log(res)
- })
- },
- openDetails(ev, index) {
- const animOptions = {
- duration: 300,
- easing: "cubic-bezier(0.65,0,0.35,1)"
- };
- this.orderDetail.list[index].isOpenDetail = !this.orderDetail.list[index].isOpenDetail
- const ctrld = document.querySelector(`#item${index + 1}-ctrld`);
- const contentHeight = ctrld.firstElementChild?.offsetHeight;
- if (this.orderDetail.list[index].isOpenDetail) {
- this.animation = ctrld.animate([
- { height: "0px" },
- { height: `${contentHeight}px` }
- ],animOptions);
- }else {
- this.animation = ctrld.animate([
- { height: `${contentHeight}px` },
- { height: `${contentHeight}px` },
- { height: "0px" }
- ],animOptions);
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- /* :root {
- --hue: 223;
- --bg: rgb(227, 228, 232);
- --fg: rgb(23, 24, 28);
- --primary: rgb(13, 78, 242);
- --trans-dur: 0.3s;
- --trans-timing: cubic-bezier(0.65,0,0.35,1);
- font-size: calc(16px + (24 - 16) * (100vw - 320px) / (2560 - 320));
- } */
- // 32倍
- .product-logistics-container {
- min-height: 100vh;
- box-sizing: border-box;
- }
- .product-logistics_info {
- box-sizing: border-box;
- padding: 30rpx;
- line-height: 48rpx;
- }
- .timeline {
- margin: auto;
- padding: 0 3rpx;
- width: 100%;
- max-width: 36rpx;
- }
- /* .timeline__arrow {
- margin-top: 10rpx;
- background-color: transparent;
- border-radius: 8rpx;
- cursor: pointer;
- flex-shrink: 0;
- margin-inline-end: 8rpx;
- outline: transparent;
- width: 40rpx;
- height: 40rpx;
- transition:
- background-color calc(var(--trans-dur) / 2) linear,
- color var(--trans-dur);
- -webkit-appearance: none;
- appearance: none;
- -webkit-tap-highlight-color: transparent;
- } */
- /* .timeline__arrow:focus-visible, */
- /* .timeline__arrow:hover {
- background-color: rgba(118, 125, 143, 0.4);
- } */
- .isOpen {
- background-color: rgb(115, 118, 140)
- }
- .icon_body_content {
- margin-right: 10rpx;
- transition:
- background-color calc(0.3s / 2) linear,
- color 0.3s;
- border-radius: 8rpx;
- box-sizing: border-box;
- /* padding: 10rpx; */
- display: flex;
- justify-content: center;
- align-items: center;
- width: 60rpx;
- height: 60rpx;
- }
- .timeline__arrow-icon {
- /* margin-top: 10rpx; */
- display: block;
- /* margin-left: 5rpx; */
- pointer-events: none;
- /* transform: rotate(-90deg); */
- transition: transform 0.3s cubic-bezier(0.65,0,0.35,1);
- width: 50rpx;
- height: 40rpx;
- // width: 100%;
- // height: 100%;
- }
- .timeline__date {
- font-size: 26rpx;
- line-height: 2.4;
- }
- .timeline__dot {
- background-color: currentColor;
- border-radius: 50%;
- display: inline-block;
- flex-shrink: 0;
- margin: 20rpx 0;
- margin-inline-end: 32rpx;
- position: relative;
- width: 24rpx;
- height: 24rpx;
- }
- .timeline__item {
- position: relative;
- padding-bottom: 42rpx;
- }
- .timeline__item:not(:last-child):before {
- background-color: currentColor;
- content: "";
- display: block;
- position: absolute;
- top: 32rpx;
- left: 82rpx;
- width: 4rpx;
- height: 100%;
- transform: translateX(-50%);
- transition: 1.3s;
- }
- [dir="rtl"] .timeline__arrow-icon {
- transform: rotate(90deg);
- }
- [dir="rtl"] .timeline__item:not(:last-child):before {
- right: 72rpx;
- left: auto;
- transform: translateX(50%);
- }
- .timeline__item-header {
- display: flex;
- }
- .timeline__item-body {
- border-radius: 12rpx;
- overflow: hidden;
- margin-top: 16rpx;
- margin-inline-start: 128rpx;
- height: 0;
- }
- .timeline__item-body-content {
- word-break: break-all;
- white-space: Pre-line;
- background-color: rgba(115, 122, 140, 0.2);
- opacity: 0;
- padding: 12rpx 24rpx;
- visibility: hidden;
- transition:
- opacity 0.3s cubic-bezier(0.65,0,0.35,1),
- visibility 0.3s steps(1,end);
- transition:
- opacity 0.3s vcubic-bezier(0.65,0,0.35,1),
- visibility 0.3s steps(1,end);
- }
- .timeline__meta {
- flex: 1;
- /* width: 100%; */
- }
- .timeline__title {
- font-size: 48rpx;
- line-height: 1.333;
- }
- /* Expanded state */
- .timeline__item-body--expanded {
- height: auto;
- }
- .timeline__item-body--expanded .timeline__item-body-content {
- opacity: 1;
- visibility: visible;
- transition-delay: 0.3s, 0s;
- }
- .timeline__arrow-icon[aria-expanded="true"] {
- transform: rotate(90deg);
- }
- /* Dark theme */
- /* @media (prefers-color-scheme: dark) {
- :root {
- --bg: rgb(23, 24, 28);
- --fg: rgb(227, 228, 232);
- --primary: rgb(110, 149, 247);
- }
- } */
- .product_logistics_List{
- box-sizing: border-box;
- padding: 0rpx 30rpx;
- width: 100vw;
- height: auto;
- }
- </style>
|