郭宇琦 hace 1 semana
padre
commit
d15c006ff2

+ 2 - 3
component/uploaders/uploaders.vue

@@ -1,5 +1,5 @@
 <template>
-	<view class="container">
+	<view >
 		<view class="list-group">
 			<view class="list-item" @longpress="bindDelImage" :data-idx="index"
 				v-for="(item, index) in imgList" :key="item.unique">
@@ -12,7 +12,6 @@
 				<view class="empity-item">+</view>
 			</view>
 		</view>
-
 	</view>
 </template>
 
@@ -57,7 +56,7 @@ import upload from './upload.js';
 					const imgList = res[1].tempFilePaths
 					let data = await upload.uploadFile(imgList)
 					this.imgList = this.imgList.concat(data)
-					this.updateImages(data)
+					this.updateImages(this.imgList)
 				}
 			},	
 			

+ 5 - 0
pages/purchaseOrder/purchaseOrder.vue

@@ -198,7 +198,12 @@
 		,
 		onLoad: function(options) {
 			if (options && options.params) {
+				// #ifdef APP
 				const model_info = JSON.parse(options.params) || {}
+				// #endif
+				// #ifndef APP
+				const model_info = JSON.parse(decodeURIComponent(options.params)) || {}
+				// #endif
 				console.log(model_info, 'model_info');
 				model_info.model_images = model_info.model_images ? model_info.model_images[0] : ''
 				this.setData({

+ 14 - 8
pages/service/service.vue

@@ -56,7 +56,8 @@
 				</view>
 				<view class="config-view flex-row">
 					<view @click='openSelectType' class="flex-row selectFlex">
-						<text class="text">{{leaseUnitsResult}}{{isBuy ? "+购买" : ''}}</text>
+						<text v-if="selectType === 'store'" class="text">{{leaseUnitsResult}}{{isBuy ? "+购买" : ''}}</text>
+						<text v-if="selectType === 'cabinet'" class="text">{{cabinetType ? cabinetType : '全部'}}</text>
 						<u-icon v-if="showLeaseType" name="arrow-down" color="#9FA7B7" size="26"></u-icon>
 						<u-icon v-else name="arrow-up" color="#9FA7B7" size="26"></u-icon>
 					</view>
@@ -293,7 +294,7 @@
 					name
 				};
 				const me = this;
-				var nearCabinetList = [];
+				let nearCabinetList = [];
 				let {
 					data
 				} = await http_gyq.postApi(config_gyq.API_FLK_CABINET_NEAR_LIST, pData)
@@ -301,15 +302,19 @@
 					this.markers = {}
 					// nearCabinetList = data.data.cabinetList || [];
 					for (let i = 0; i < data.data.cabinetList.length; i++) {
-						let item = nearCabinetList[i];
-						if(this.cabinetType)
-						for (let i = 0; i < item.tag_code.length; i++) {
-							let items = item.tag_code[i];
-							if(items.main_tag_name == this.cabinetType || items.child_tag_name == this.cabinetType){
+						let item = data.data.cabinetList[i];
+						if(this.cabinetType){
+							for (let i = 0; i < item.tag_code.length; i++) {
+								let items = item.tag_code[i];
+								if(items.main_tag_name == this.cabinetType || items.child_tag_name == this.cabinetType){
+									nearCabinetList.push(item)
+								}
 								
 							}
-							
+						}else{
+							nearCabinetList.push(item)
 						}
+						
 					}
 					let markers = {}
 					markers.markers = nearCabinetList.map(item => {
@@ -401,6 +406,7 @@
 					this.loadCarRentalList()
 				}else{
 					this.cabinetType = e.leaseType
+					this.showLeaseType = false
 					this.loadNearCabinetList()
 				}
 				// console.log(e, "e");