From 5bebf53d62c3519cf7be3e2217c5249e540173ec Mon Sep 17 00:00:00 2001
From: qingyiay <2386314947@qq.com>
Date: 星期四, 07 九月 2023 17:09:08 +0800
Subject: [PATCH] 操作指引修改

---
 pages/customer-page/customer-index/customer-index.vue |  102 +++++++++++++++++++++++++++++++++++++++++++++++----
 1 files changed, 94 insertions(+), 8 deletions(-)

diff --git a/pages/customer-page/customer-index/customer-index.vue b/pages/customer-page/customer-index/customer-index.vue
index 49837bf..a67baf1 100644
--- a/pages/customer-page/customer-index/customer-index.vue
+++ b/pages/customer-page/customer-index/customer-index.vue
@@ -6,6 +6,26 @@
 				<view class="wait-collection"
 					:style="{ backgroundImage: `url(${onlineurl}/appimg/image/banner/customerbanner.png)`, backgroundSize: 'contain', backgroundRepeat: 'no-repeat' }">
 				</view>
+				<view style="height: 382rpx;width: 100%;"></view>
+				<!-- 寮曞椤� -->
+				<view class="noob-tour"
+					v-if="roleType===4&&isFirstLogin">
+					<combined-title title="鎿嶄綔鎸囧紩"></combined-title>
+					<u-cell-group>
+						<u-cell title="鏂版墜鎸囧紩"
+							name='1'
+							:clickable="true"
+							@click="noobTour">
+							<u-badge type="primary"
+								value="01"
+								slot='icon'></u-badge>
+							<u-icon slot="value"
+								name="arrow-right"
+								size="30"
+								color="#b8b8b8"></u-icon>
+						</u-cell>
+					</u-cell-group>
+				</view>
 				<view style="position: relative;top: -120px;">
 					<u-empty mode="data"
 						icon="http://cdn.uviewui.com/uview/empty/data.png"
@@ -37,12 +57,12 @@
 							</view>
 						</view>
 						<view class="third-line">
-							<view class="time-icon">
+							<!-- <view class="time-icon">
 								<view
 									:style="{backgroundImage: `url(${onlineurl}/appimg/image/banner/carNO.png)`,backgroundSize: 'cover',backgroundRepeat: 'no-repeat',width:'24rpx',height:'24rpx',lineHeight:'24rpx'}">
 								</view>
-							</view>
-							<view class="car-num">{{ item.carNos||item.carNo||''}}</view>
+							</view> -->
+							<view class="car-num">{{ item.code||''}}</view>
 						</view>
 						<view class="third-line">
 							<view class="time-icon">
@@ -138,6 +158,14 @@
 					</scroll-view>
 				</view>
 			</view>
+			<!-- 鍥剧墖棰勮寮瑰嚭妗� -->
+			<view class="previewImage-container">
+				<view class="previewImage-container">
+					<previewImage ref="previewImage"
+						:imgs="TourImgList"
+						:saveBtn='false'></previewImage>
+				</view>
+			</view>
 			<!-- 棰嗗彇寮瑰嚭妗� -->
 			<u-popup :show="show"
 				@close="close"
@@ -165,6 +193,8 @@
 	import { onlineurl } from '@/api/request.js'
 	import combinedTitle from '@/components/combined-title/combined-title.vue';
 	import { customerId } from '@/utils/status';
+	import previewImage from '@/components/kxj-previewImage/kxj-previewImage.vue';
+	import { BaseUrl } from '@/api/publicInterface.js'
 	export default {
 		props: {
 			orderPlanDataStore: {
@@ -173,7 +203,8 @@
 			}
 		},
 		components: {
-			combinedTitle
+			combinedTitle,
+			previewImage
 		},
 		watch: {
 			orderPlanDataStore: {
@@ -215,7 +246,17 @@
 				// 鍓╀綑鐨勯�氱煡鍗曟暟閲�
 				carNumSurplus: '',
 				canClick: false,
-				onlineurl: ''
+				onlineurl,
+				previewImageShow: false,
+				previewImageSrc: '',
+				TourImgList: ['https://mx.jzeg.cn:9095/appimg/image/tour/quality/quality01.jpg',
+					'https://mx.jzeg.cn:9095/appimg/image/tour/quality/quality02.jpg',
+					'https://mx.jzeg.cn:9095/appimg/image/tour/quality/quality03.jpg',
+					'https://mx.jzeg.cn:9095/appimg/image/tour/quality/quality04.jpg',
+					'https://mx.jzeg.cn:9095/appimg/image/tour/quality/quality05.jpg'
+				],
+				phone: "",
+				isFirstLogin: true
 			};
 		},
 		onLoad() {},
@@ -227,6 +268,7 @@
 				this.GetOrderPlan();
 				this.getJhOrderPlanDataPage();
 				this.onlineurl = onlineurl;
+				this.getLogOn()
 			},
 			// 鑾峰彇鍙戣繍璁″垝鍒楄〃
 			GetOrderPlan() {
@@ -349,6 +391,28 @@
 				uni
 					.navigateTo({ url: `/pages/driver-page/driver-index/bill-of-lading-details/selectOrderPlan/selectOrderPlan?index=${index}` });
 			},
+			noobTour(v) {
+				this.$refs.previewImage.open('https://mx.jzeg.cn:9095/appimg/image/tour/quality/quality01.jpg')
+			},
+			getLogOn() {
+				this.$reqGet('getUserEntity').then(res => {
+					this.phone = res.data.phone
+				}).then(() => {
+					uni.request({
+						url: `${BaseUrl}/admin/log/getLogOnType?phone=${this.phone}`,
+						success: res => {
+							// res.data.data 涓�1 浠h〃绗竴娆$櫥褰�  涓�0鍙栨秷瀛︿範鎸囧紩  涓�2浠h〃瀛樺湪
+							if (res.data.data === 1) {
+								this.noobTour()
+							} else if (res.data.data === 2) {
+								this.isFirstLogin = true
+							} else {
+								this.isFirstLogin = false
+							}
+						}
+					});
+				})
+			},
 		}
 	};
 </script>
@@ -364,7 +428,7 @@
 	.wait-collection {
 		width: 100%;
 		height: 600rpx;
-		position: relative;
+		position: fixed;
 		top: vww(-10);
 		z-index: 0;
 	}
@@ -388,7 +452,7 @@
 	.history-numbers {
 		width: 100%;
 		position: relative;
-		top: vww(-110);
+		// top: vww(-110);
 
 		.history-information {
 			width: 690rpx;
@@ -481,6 +545,28 @@
 		}
 	}
 
+	.noob-tour {
+		margin-bottom: vww(30);
+		position: relative;
+	}
+
+	.u-popup {
+		.u-transition {
+			.u-popup__content {
+				.editDriverPopup-container-box {}
+
+				//closeIcon
+				.u-popup__content__close--top-right {
+					.u-icon {
+						.u-icon__icon {
+							font-size: vww(20) !important;
+						}
+					}
+				}
+			}
+		}
+	}
+
 	::v-deep.customer-index {
 		width: 100%;
 		margin: 0 auto;
@@ -491,7 +577,7 @@
 				width: vww(345);
 				margin: 0 vww(15);
 				position: relative;
-				top: vww(-144);
+				// top: vww(-144);
 
 				.collection-form-item {
 					width: 690rpx;

--
Gitblit v1.9.1