From cfeeba575b1a9934bec9e57141a21f17ad96a6ac Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期三, 15 四月 2026 20:12:16 +0800
Subject: [PATCH] 页面

---
 small-program/pages/itinerary/itinerary.vue |  571 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 565 insertions(+), 6 deletions(-)

diff --git a/small-program/pages/itinerary/itinerary.vue b/small-program/pages/itinerary/itinerary.vue
index 94d9b9c..9bb1f8b 100644
--- a/small-program/pages/itinerary/itinerary.vue
+++ b/small-program/pages/itinerary/itinerary.vue
@@ -1,19 +1,578 @@
 <template>
-	<view>
-		
+	<view class="itinerary-page">
+		<view class="top-fixed">
+			<view class="top-gradient"></view>
+			<view class="top-inner">
+				<view :style="{ height: statusbarHeight + 'px' }"></view>
+				<view class="header-bar" :style="{ height: navHeight + 'px' }">
+					<text class="header-title">鎴戠殑琛岀▼</text>
+				</view>
+				<scroll-view scroll-x class="tabs-row page-padding" style="padding: 0 0 0 30rpx !important;" show-scrollbar="false">
+					<view class="tabs-inner">
+						<view
+							v-for="item in filterTabs"
+							:key="item.value"
+							class="filter-tab"
+							:class="{ active: activeTab === item.value }"
+							@tap="activeTab = item.value"
+						>
+							{{ item.label }}
+						</view>
+					</view>
+				</scroll-view>
+			</view>
+		</view>
+
+		<view class="content-wrap">
+			<view class="page-padding card-list">
+				<view v-for="(item, index) in visibleOrders" :key="item.id" class="order-card">
+					<view class="order-head" :class="item.mode === 'city' ? 'city-head-bg' : 'local-head-bg'">
+						<view v-if="item.mode === 'local'" class="head-local">
+							<view class="mode-tag local-tag">灏卞湴瀵勫瓨</view>
+							<view class="head-copy single-copy">
+								<text class="head-name text-ellipsis">{{ item.fromName }}</text>
+								<text class="head-user">{{ item.userName }}</text>
+							</view>
+						</view>
+						<view v-else class="head-city">
+							<view class="head-copy city-left">
+								<view class="mode-tag city-tag">鍚屽煄瀵勯��</view>
+								<text class="head-name text-ellipsis">{{ item.fromName }}</text>
+								<text class="head-user">{{ item.userName }}</text>
+							</view>
+							<view class="city-arrow">
+								<view class="arrow-line"></view>
+								<view class="arrow-head"></view>
+							</view>
+							<view class="head-copy city-right align-right">
+								<text class="status-text" v-if="index === 1">{{ item.status }}</text>
+								<text class="head-name text-ellipsis">{{ item.toName }}</text>
+								<text class="head-user">{{ item.userName }}</text>
+							</view>
+						</view>
+						<text class="status-text" v-if="index === 0">{{ item.status }}</text>
+					</view>
+
+					<view class="goods-area">
+						<view v-for="goods in item.goods" :key="goods.name" class="goods-row">
+							<view class="goods-left">
+								<text class="goods-name">{{ goods.name }}</text>
+								<text class="goods-size">{{ goods.size }}</text>
+							</view>
+							<view class="goods-right">
+								<text class="goods-price">{{ goods.price }}</text>
+								<text class="goods-count">x1</text>
+							</view>
+						</view>
+					</view>
+
+					<view class="amount-area">
+						<view class="pay-row">
+							<text class="pay-label">瀹炰粯娆撅細</text>
+							<text class="pay-value">{{ item.payAmount }}</text>
+						</view>
+						<view class="insurance-row">
+							<text class="insurance-label">鍚鏉庝繚璐癸細</text>
+							<text class="insurance-value">{{ item.insurance }}</text>
+						</view>
+					</view>
+
+					<view class="card-footer">
+						<view class="pickup-wrap" v-if="item.pickupTime">
+							<text class="pickup-label">棰勮鍙栦欢鏃堕棿锛�</text>
+							<text class="pickup-value">{{ item.pickupTime }}</text>
+						</view>
+						<view class="pickup-wrap" v-else></view>
+						<view class="footer-actions">
+							<view class="footer-btn contact-btn">鑱旂郴闂ㄥ簵</view>
+							<view class="footer-btn primary-btn">{{ item.actionText }}</view>
+						</view>
+					</view>
+				</view>
+
+				<view v-if="isLoadingMore" class="loading-text">鍔犺浇涓�...</view>
+				<view v-else-if="!hasMore && visibleOrders.length" class="loading-text">娌℃湁鏇村浜�</view>
+			</view>
+		</view>
 	</view>
 </template>
 
 <script>
+	import { mapState } from 'vuex'
+
+	const baseOrders = [
+		{
+			id: 1,
+			mode: 'local',
+			status: '寰呮牳楠�',
+			statusKey: 'verify',
+			fromName: '涓搧蹇繍鍗楃珯鏃楄埌搴�',
+			userName: '钄″瓙鐟�',
+			goods: [
+				{ name: '澶т欢琛屾潕绠�', size: '24-28瀵�', price: '锟�35' },
+				{ name: '涓欢琛屾潕绠�', size: '24-28瀵�', price: '锟�35' },
+				{ name: '灏忎欢琛屾潕绠�', size: '24-28瀵�', price: '锟�35' }
+			],
+			payAmount: '楼125.00',
+			insurance: '楼20',
+			pickupTime: '2026-04-12 10:10',
+			actionText: '鐢宠閫�娆�'
+		},
+		{
+			id: 2,
+			mode: 'city',
+			status: '寰呮牳楠�',
+			statusKey: 'verify',
+			fromName: '涓搧蹇繍鍗楃珯鏃楄埌搴�',
+			toName: '涓芥灚閰掑簵34...',
+			userName: '钄″瓙鐟�',
+			goods: [
+				{ name: '澶т欢琛屾潕绠�', size: '24-28瀵�', price: '锟�35' },
+				{ name: '涓欢琛屾潕绠�', size: '24-28瀵�', price: '锟�35' }
+			],
+			payAmount: '楼90.00',
+			insurance: '楼20',
+			pickupTime: '',
+			actionText: '鐢宠閫�娆�'
+		}
+	]
+
 	export default {
+		onReachBottom() {
+			this.loadMore()
+		},
+		computed: {
+			...mapState(['navHeight', 'statusbarHeight']),
+			filteredOrders() {
+				if (this.activeTab === 'all') {
+					return this.orders
+				}
+				return this.orders.filter(item => item.statusKey === this.activeTab)
+			},
+			visibleOrders() {
+				return this.filteredOrders.slice(0, this.pageSize)
+			},
+			hasMore() {
+				return this.pageSize < this.filteredOrders.length
+			}
+		},
 		data() {
 			return {
-				
-			};
+				activeTab: 'all',
+				pageSize: 4,
+				isLoadingMore: false,
+				filterTabs: [
+					{ label: '鍏ㄩ儴', value: 'all' },
+					{ label: '寰呮敮浠�', value: 'pending' },
+					{ label: '寰呮牳楠�', value: 'verify' },
+					{ label: '寰呴厤閫�', value: 'delivery' },
+					{ label: '寰呮敹璐�', value: 'receive' },
+					{ label: '寰呮牳楠�', value: 'verify' },
+					{ label: '寰呴厤閫�', value: 'delivery' },
+					{ label: '寰呮敹璐�', value: 'receive' }
+				],
+				orders: [
+					...baseOrders,
+					...baseOrders.map((item, index) => ({ ...item, id: item.id + (index + 1) * 10 })),
+					...baseOrders.map((item, index) => ({ ...item, id: item.id + (index + 1) * 20 }))
+				]
+			}
+		},
+		watch: {
+			activeTab() {
+				this.pageSize = 4
+			}
+		},
+		methods: {
+			loadMore() {
+				if (!this.hasMore || this.isLoadingMore) {
+					return
+				}
+				this.isLoadingMore = true
+				setTimeout(() => {
+					this.pageSize += 2
+					this.isLoadingMore = false
+				}, 300)
+			}
 		}
 	}
 </script>
 
-<style lang="scss">
+<style lang="scss" scoped>
+	.itinerary-page {
+		min-height: 100vh;
+		background: #f7f7f7;
+	}
 
-</style>
\ No newline at end of file
+	.top-fixed {
+		position: sticky;
+		left: 0;
+		top: 0;
+		width: 100%;
+		z-index: 20;
+	}
+
+	.top-gradient {
+		position: absolute;
+		left: 0;
+		top: 0;
+		width: 100%;
+		height: 100%;
+		background: linear-gradient(90deg, #1ba8fa 0%, #73e5cf 100%);
+	}
+
+	.top-inner {
+		position: relative;
+		z-index: 1;
+		padding-bottom: 18rpx;
+	}
+	
+	.page-padding {
+		padding: 0 30rpx;
+		box-sizing: border-box;
+	}
+
+	.header-bar {
+		padding: 0 30rpx;
+		display: flex;
+		align-items: center;
+		justify-content: space-between;
+		box-sizing: border-box;
+	}
+
+	.header-title {
+		font-size: 44rpx;
+		font-weight: 600;
+		color: #ffffff;
+	}
+
+	.tabs-row {
+		margin-top: 16rpx;
+		white-space: nowrap;
+	}
+
+	.tabs-inner {
+		display: inline-flex;
+		align-items: center;
+		gap: 12rpx;
+		white-space: nowrap;
+	}
+
+	.filter-tab {
+		flex-shrink: 0;
+		height: 50rpx;
+		padding: 0 20rpx;
+		border-radius: 25rpx;
+		background: #ffffff;
+		display: flex;
+		align-items: center;
+		justify-content: center;
+		font-size: 24rpx;
+		font-weight: 500;
+		color: #81858d;
+	}
+
+	.filter-tab.active {
+		color: #19adf8;
+	}
+
+	.content-wrap {
+		position: relative;
+		z-index: 1;
+		padding: 30rpx 0;
+		box-sizing: border-box;
+	}
+
+	.order-card {
+		margin-bottom: 20rpx;
+		background: #ffffff;
+		border-radius: 14rpx;
+		overflow: hidden;
+	}
+
+	.order-head {
+		padding: 24rpx 30rpx;
+		display: flex;
+		align-items: center;
+		justify-content: space-between;
+		box-sizing: border-box;
+	}
+
+	.local-head-bg {
+		background: #eff9ff;
+	}
+
+	.city-head-bg {
+		background: #fff4e8;
+	}
+
+	.head-local,
+	.head-city {
+		flex: 1;
+		min-width: 0;
+		display: flex;
+		align-items: center;
+	}
+
+	.head-copy {
+		min-width: 0;
+		display: flex;
+		flex-direction: column;
+		justify-content: center;
+	}
+
+	.single-copy,
+	.city-left,
+	.city-right {
+		flex: 1;
+	}
+
+	.align-right {
+		align-items: flex-end;
+		text-align: right;
+	}
+
+	.mode-tag {
+		width: 112rpx;
+		height: 38rpx;
+		border-radius: 8rpx;
+		display: flex;
+		align-items: center;
+		justify-content: center;
+		font-weight: 400;
+		font-size: 24rpx;
+		color: #FFFFFF;
+		margin-right: 14rpx;
+		flex-shrink: 0;
+	}
+
+	.local-tag {
+		background: linear-gradient(90deg, #18abf8 0%, #39c5ff 100%);
+	}
+
+	.city-tag {
+		background: linear-gradient(90deg, #ff8b28 0%, #ffb14f 100%);
+		margin-right: 0;
+		margin-bottom: 8rpx;
+	}
+
+	.head-name {
+		display: flex;
+		align-items: center;
+		justify-content: center;
+		font-weight: 600;
+		font-size: 30rpx;
+		color: #222222;
+		margin-top: 20rpx;
+	}
+
+	.head-user {
+		display: flex;
+		align-items: center;
+		justify-content: center;
+		margin-top: 10rpx;
+		font-weight: 400;
+		font-size: 24rpx;
+		color: #666666;
+	}
+
+	.text-ellipsis {
+		white-space: nowrap;
+		overflow: hidden;
+		text-overflow: ellipsis;
+	}
+
+	.city-arrow {
+		width: 82rpx;
+		margin: 0 54rpx;
+		position: relative;
+		height: 24rpx;
+		flex-shrink: 0;
+	}
+
+	.arrow-line {
+		position: absolute;
+		left: 8rpx;
+		top: 8rpx;
+		width: 42rpx;
+		height: 0;
+		border-top: 3rpx solid #ff8c1f;
+	}
+
+	.arrow-head {
+		position: absolute;
+		right: 8rpx;
+		top: 3rpx;
+		width: 12rpx;
+		height: 12rpx;
+		border-top: 3rpx solid #ff8c1f;
+		border-right: 3rpx solid #ff8c1f;
+		transform: rotate(45deg);
+	}
+
+	.status-text {
+		font-weight: 400;
+		font-size: 26rpx;
+		color: #10B2FA;
+		flex-shrink: 0;
+	}
+
+	.goods-area {
+		padding: 22rpx 30rpx;
+		box-sizing: border-box;
+	}
+
+	.goods-row {
+		display: flex;
+		align-items: flex-start;
+		justify-content: space-between;
+		margin-bottom: 26rpx;
+		&:last-child {
+			margin: 0 !important;
+		}
+	}
+
+	.goods-left {
+		flex: 1;
+		min-width: 0;
+	}
+
+	.goods-name {
+		display: block;
+		font-weight: 600;
+		font-size: 28rpx;
+		color: #333333;
+	}
+
+	.goods-size {
+		display: block;
+		margin-top: 12rpx;
+		font-weight: 400;
+		font-size: 24rpx;
+		color: #8C939F;
+	}
+
+	.goods-right {
+		width: 92rpx;
+		display: flex;
+		flex-direction: column;
+		align-items: flex-end;
+	}
+
+	.goods-price {
+		font-weight: 400;
+		font-size: 30rpx;
+		color: #333333;
+	}
+
+	.goods-count {
+		margin-top: 12rpx;
+		font-weight: 400;
+		font-size: 24rpx;
+		color: #8C939F;
+	}
+
+	.amount-area {
+		padding: 0 30rpx;
+		box-sizing: border-box;
+		display: flex;
+		flex-direction: column;
+		align-items: flex-end;
+	}
+
+	.pay-row,
+	.insurance-row {
+		display: flex;
+		align-items: baseline;
+	}
+
+	.pay-label,
+	.insurance-label {
+		font-weight: 400;
+		font-size: 26rpx;
+		color: #333333;
+	}
+
+	.pay-value {
+		font-weight: 600;
+		font-size: 26rpx;
+		color: #222222;
+	}
+
+	.insurance-row {
+		margin-top: 12rpx;
+	}
+
+	.insurance-value {
+		font-size: 20rpx;
+		color: #999999;
+	}
+
+	.card-footer {
+		padding: 0 30rpx 30rpx 30rpx;
+		box-sizing: border-box;
+		display: flex;
+		align-items: center;
+		justify-content: space-between;
+		margin-top: 30rpx;
+	}
+
+	.pickup-wrap {
+		display: flex;
+		align-items: flex-start;
+		flex-direction: column;
+	}
+
+	.pickup-label {
+		font-weight: 400;
+		font-size: 26rpx;
+		color: #333333;
+	}
+
+	.pickup-value {
+		font-weight: 400;
+		font-size: 26rpx;
+		color: #10B2FA;
+	}
+
+	.footer-actions {
+		margin-left: auto;
+		display: flex;
+		align-items: center;
+		gap: 10rpx;
+		margin: 0 !important;
+	}
+
+	.footer-btn {
+		height: 64rpx;
+		border-radius: 34rpx;
+		padding: 0 18rpx;
+		display: flex;
+		align-items: center;
+		justify-content: center;
+		font-size: 28rpx;
+		box-sizing: border-box;
+		margin-right: 20rpx;
+		&:last-child {
+			margin: 0 !important;
+		}
+	}
+
+	.contact-btn {
+		border: 1rpx solid #B2B2B2;
+		background: #ffffff;
+		color: #666666;
+	}
+
+	.primary-btn {
+		background: #10B2FA;
+		color: #ffffff;
+	}
+
+	.loading-text {
+		padding: 18rpx 0 8rpx;
+		text-align: center;
+		font-size: 22rpx;
+		color: #a5aab3;
+	}
+</style>

--
Gitblit v1.9.3