hmp 4 rokov pred
rodič
commit
dd1a5c8ff8

+ 1 - 1
assets/http/api.js

@@ -168,7 +168,7 @@ const fireDevice = {
 }
 //用户反馈
 const feedback = {
-	submit: p => http.post('/estate/feedback/submit', p),
+	submit: p => http.post('/park-app-service/estate/feedback/submit', p),
 }
 //园区公告
 const notice = {

+ 4 - 0
assets/http/setting.js

@@ -12,5 +12,9 @@ setting.indexBanner = [{
 }, ]
 
 setting.uploadImg=setting.imgBaseURL+'/miniofile/xlyq/upload.png'
+//车辆行驶证正面示例
+setting.vehicleLicenseFront=setting.imgBaseURL+"/miniofile/xlyq/zm.png"
+//车辆行驶证反面示例
+setting.vehicleLicenseContrary=setting.imgBaseURL+"/miniofile/xlyq/fm.png"
 
 export default setting

+ 5 - 3
pages/index/car/my-car/add.vue

@@ -34,7 +34,6 @@
 						   :width="width"
 						   :height="height"
 						  :currentImage="model.carImg"
-						  bgsrc="http://139.9.103.171:1888/miniofile/xlyq/upload.png"
 						  >
 						</upload-img>
 						<view class="text-center  padding-top-20 base-color" >
@@ -58,7 +57,7 @@
 						   :width="width"
 						   :height="height"
 						  :currentImage="model.vehicleDrivingLicense1"
-						  bgsrc="http://139.9.103.171:1888/miniofile/xlyq/zm.png"
+						  :bgsrc="setting.vehicleLicenseFront"
 						  >
 						</upload-img>
 						<view class="text-center  padding-top-20 base-color" >
@@ -82,7 +81,7 @@
 						   :width="width"
 						   :height="height"
 						  :currentImage="model.vehicleDrivingLicense2"
-						  bgsrc="http://139.9.103.171:1888/miniofile/xlyq/fm.png"
+						  :bgsrc="setting.vehicleLicenseContrary"
 						  >
 						</upload-img>
 						<view class="text-center  padding-top-20 base-color" >
@@ -114,6 +113,7 @@
 <script>
 	import keyboardPackage from "@/components/keyboard-package/keyboard-package.vue"
 	import uploadImg from '@/components/uploadimg/uploadImg.vue'
+	import setting from "@/assets/http/setting.js"
 	var that;
 	export default {
 		components:{
@@ -121,6 +121,8 @@
 		},
 		data() {
 			return {
+				setting:setting,
+				
 				labelWidth:'200',
 				width:480,
 				height:320,