From 07b5244ba8572922728f2663883915861554e7e0 Mon Sep 17 00:00:00 2001
From: qingyiay <2386314947@qq.com>
Date: 星期日, 02 七月 2023 17:30:54 +0800
Subject: [PATCH] 验质逻辑修改

---
 pages/customer-page/customer-index/fayunPlanDetails/fayunPlanMore/fayunPlanMore.vue |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanMore/fayunPlanMore.vue b/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanMore/fayunPlanMore.vue
index 7d4800c..cb10d83 100644
--- a/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanMore/fayunPlanMore.vue
+++ b/pages/customer-page/customer-index/fayunPlanDetails/fayunPlanMore/fayunPlanMore.vue
@@ -70,19 +70,19 @@
 						<view class="item-block">
 							<view class="item">
 								<view class="concrete"
-									style="background: url('https://mx.jzeg.cn:9095/appimg/image/banner/skin.png') no-repeat;background-size: cover;">
+									:style="{ backgroundImage: `url(${onlineurl}/appimg/image/banner/skin.png)`, backgroundSize: 'cover', backgroundRepeat: 'no-repeat' }">
 									鐨�</view>
 								<view class="num">{{ item.skin }}</view>
 							</view>
 							<view class="item">
 								<view class="concrete"
-									style="background: url('https://mx.jzeg.cn:9095/appimg/image/banner/hair.png') no-repeat;background-size: cover;">
+									:style="{ backgroundImage: `url(${onlineurl}/appimg/image/banner/hair.png)`, backgroundSize: 'cover', backgroundRepeat: 'no-repeat' }">
 									姣�</view>
 								<view class="num">{{ item.hair }}</view>
 							</view>
 							<view class="item">
 								<view class="concrete"
-									style="background: url('https://mx.jzeg.cn:9095/appimg/image/banner/clean.png') no-repeat;background-size: cover;">
+									:style="{ backgroundImage: `url(${onlineurl}/appimg/image/banner/clean.png)`, backgroundSize: 'cover', backgroundRepeat: 'no-repeat' }">
 									鍑�</view>
 								<view class="num">{{ item.clean }}</view>
 							</view>
@@ -96,7 +96,7 @@
 
 <script>
 	import combinedTitle from '@/components/combined-title/combined-title.vue';
-
+	import { onlineurl } from '@/api/request.js'
 	export default {
 		components: {
 			combinedTitle
@@ -112,8 +112,9 @@
 				id: '',
 				yyDailyList: {},
 				orderPlanDetail: {},
-				coalStatus: ['鏈О閲�', '绉伴噸涓�', '楠岃川涓�', '绉伴噸瀹屾垚'],
-				index: ''
+				coalStatus: ['鏈О閲�', '绉伴噸涓�', '楠岃川涓�', '绉伴噸瀹屾垚', '楠岃川瀹屾垚'],
+				index: '',
+				onlineurl,
 			};
 		},
 		computed: {

--
Gitblit v1.9.1