瀏覽代碼

no message

linwenxin 2 周之前
父節點
當前提交
c2769b8ac7
共有 3 個文件被更改,包括 254 次插入238 次删除
  1. 41 28
      src/common/utils/common.js
  2. 213 209
      src/packageGoods/pages/index.vue
  3. 0 1
      src/packageWorkorder/pages/infoCollect/list.vue

+ 41 - 28
src/common/utils/common.js

@@ -249,12 +249,13 @@ export const getLocation = async function () {
           resolve(res)
         },
         fail: err => {
-          reject('获取当前定位失败')
-          modal({
-            title: '提示',
-            content: '获取当前定位失败',
-            showCancel: false
-          }).then(() => {})
+          resolve({})
+          // reject('获取当前定位失败')
+          // modal({
+          //   title: '提示',
+          //   content: '获取当前定位失败',
+          //   showCancel: false
+          // }).then(() => {})
         }
       })
     })
@@ -268,28 +269,40 @@ export const getAddress = async function () {
     return tips('获取定位失败,请检查是否开启手机位置信息权限')
   }
   return new Promise((resolve, reject) => {
-    uni.request({
-      url: 'https://restapi.amap.com/v3/geocode/regeo',
-      method: 'GET',
-      data: {
-        location: location.longitude + ',' + location.latitude,
-        key: '428a7111e02ea8367a3b34804eaa025b'
-      },
-      success: res => {
-        resolve({
-          longitude: location.longitude,
-          latitude: location.latitude,
-          address: res.data.regeocode.formatted_address,
-          province: res.data.regeocode.addressComponent.province,
-          city: res.data.regeocode.addressComponent.city,
-          area: res.data.regeocode.addressComponent.district,
-          street: res.data.regeocode.addressComponent.township
-        })
-      },
-      fail: function (err) {
-        console.log('地址解析失败' + err)
-      }
-    })
+    if (location.longitude && location.latitude) {
+      uni.request({
+        url: 'https://restapi.amap.com/v3/geocode/regeo',
+        method: 'GET',
+        data: {
+          location: location.longitude + ',' + location.latitude,
+          key: '428a7111e02ea8367a3b34804eaa025b'
+        },
+        success: res => {
+          resolve({
+            longitude: location.longitude,
+            latitude: location.latitude,
+            address: res.data.regeocode.formatted_address,
+            province: res.data.regeocode.addressComponent.province,
+            city: res.data.regeocode.addressComponent.city,
+            area: res.data.regeocode.addressComponent.district,
+            street: res.data.regeocode.addressComponent.township
+          })
+        },
+        fail: function (err) {
+          console.log('地址解析失败' + err)
+        }
+      })
+    } else {
+      resolve({
+        longitude: '',
+        latitude: '',
+        address: '',
+        province: '',
+        city: '',
+        area: '',
+        street: ''
+      })
+    }
   })
 }
 

+ 213 - 209
src/packageGoods/pages/index.vue

@@ -9,7 +9,8 @@
           placeholder="搜索您需要的服务"
           v-model="keyword"
           @search="searchData"
-          @clear="searchData">
+          @clear="searchData"
+        >
         </u-search>
       </view>
       <!-- <view class="address-container">
@@ -19,245 +20,248 @@
 
     <view class="main-container">
       <view class="left">
-        <block v-for="(item, index) in classifyList" :key='index'>
-          <view class="item ellipsis" :class="curClassify == item.categoryId ? 'current':''" @tap="changeLeft(item.categoryId)">{{item.name}}</view>
+        <block v-for="(item, index) in classifyList" :key="index">
+          <view
+            class="item ellipsis"
+            :class="curClassify == item.categoryId ? 'current' : ''"
+            @tap="changeLeft(item.categoryId)"
+            >{{ item.name }}</view
+          >
         </block>
       </view>
       <view class="right">
-        <view class="goods-item" v-for="(item, index) in goodsList" :key='index' @tap="toGoodsDetail(item.goodsId)">
+        <view class="goods-item" v-for="(item, index) in goodsList" :key="index" @tap="toGoodsDetail(item.goodsId)">
           <image :src="item.imgUrl" mode="aspectFill"></image>
           <view class="main">
-            <view class="name">{{item.goodsName}}</view>
+            <view class="name">{{ item.goodsName }}</view>
             <view class="bottom">
-              <view class="price"><text>¥</text>{{item.goodsPrice | priceFilter}}</view>
+              <view class="price"><text>¥</text>{{ item.goodsPrice | priceFilter }}</view>
             </view>
           </view>
         </view>
 
-        <Loading
-          :type="2"
-          :loadStatus="loadStatus"
-          :dataList="goodsList"
-        />
+        <Loading :type="2" :loadStatus="loadStatus" :dataList="goodsList" />
       </view>
     </view>
   </zj-page-layout>
   <!-- #endif -->
-  
+
   <!-- #ifndef H5 -->
-  <web-view :src="webViewHref(`/packageGoods/pages/index`, pam, crossPagePam)" @message="crossPage.$listener"></web-view>
+  <web-view
+    :src="webViewHref(`/packageGoods/pages/index`, pam, crossPagePam)"
+    @message="crossPage.$listener"
+  ></web-view>
   <!-- #endif -->
 </template>
 
 <script>
-  // #ifdef H5
-	export default {
-		data() {
-			return {
-				StatusBar: this.StatusBar,
-				CustomBar: this.CustomBar,
-				keyword: '',
-				classifyList: [],
-				curClassify: 0,
-				goodsList: [],
-				loadStatus: 0,
-				location: '点击获取定位',
-			}
-		},
-    
-		onLoad({categoryId}) {
-			this.getAddress();
-			this.getClassifyList(categoryId);
-		},
+ // #ifdef H5
+export default {
+	data() {
+		return {
+			StatusBar: this.StatusBar,
+			CustomBar: this.CustomBar,
+			keyword: '',
+			classifyList: [],
+			curClassify: 0,
+			goodsList: [],
+			loadStatus: 0,
+			location: '点击获取定位',
+		}
+	},
 
-		methods: {
-			async getAddress() {
-				const lo = await this.$getAddress();
-				this.location = `${lo.province} ${lo.city} ${lo.area}`;
-			},
+	onLoad({categoryId}) {
+		this.getAddress();
+		this.getClassifyList(categoryId);
+	},
 
-			// 获取分类列表
-			getClassifyList(categoryId) {
-				this.$api.get('/goods/category/list', {
-          type: 1
-        }).then(res => {
-					res.data.unshift({
-						categoryId: '',
-						name: '全部'
-					})
-					this.classifyList = res.data;
-					if(categoryId) {
-						this.curClassify = categoryId;
-					} else {
-						this.curClassify = res.data.length > 0 ? res.data[0].categoryId : 0;
-					}
-					this.getGoodsList();
+	methods: {
+		async getAddress() {
+			const lo = await this.$getAddress();
+			this.location = `${lo.province} ${lo.city} ${lo.area}`;
+		},
+
+		// 获取分类列表
+		getClassifyList(categoryId) {
+			this.$api.get('/goods/category/list', {
+         type: 1
+       }).then(res => {
+				res.data.unshift({
+					categoryId: '',
+					name: '全部'
 				})
-			},
+				this.classifyList = res.data;
+				if(categoryId) {
+					this.curClassify = categoryId;
+				} else {
+					this.curClassify = res.data.length > 0 ? res.data[0].categoryId : 0;
+				}
+				this.getGoodsList();
+			})
+		},
 
-			// 获取商品列表
-			getGoodsList() {
-				this.loadStatus = 1;
-				this.$api.get('/goods/list/sort/page', {
-          pageNum: 1,
-          pageSize: -1,
-          categoryId: this.curClassify,
-          keyword: this.keyword
-				}).then(res => {
-					this.loadStatus = 0;
-					let list = res.data.records;
-					if(list.length < 1){
-						this.loadStatus = 2;
-					}
-					this.goodsList = list;
-				}).catch(() => {
+		// 获取商品列表
+		getGoodsList() {
+			this.loadStatus = 1;
+			this.$api.get('/goods/list/sort/page', {
+         pageNum: 1,
+         pageSize: -1,
+         categoryId: this.curClassify,
+         keyword: this.keyword
+			}).then(res => {
+				this.loadStatus = 0;
+				let list = res.data.records;
+				if(list.length < 1){
 					this.loadStatus = 2;
-				})
-			},
+				}
+				this.goodsList = list;
+			}).catch(() => {
+				this.loadStatus = 2;
+			})
+		},
 
-			searchData() {
-				this.getGoodsList();
-			},
+		searchData() {
+			this.getGoodsList();
+		},
 
-			// 切换分类
-			changeLeft(pid) {
-				this.curClassify = pid;
-				this.getGoodsList();
-			},
+		// 切换分类
+		changeLeft(pid) {
+			this.curClassify = pid;
+			this.getGoodsList();
+		},
 
-			// 进入商品详情
-			toGoodsDetail(id) {
-				this.$navToPage({
-					url: '/packageGoods/pages/detail?id=' + id
-				})
-			},
-		}
+		// 进入商品详情
+		toGoodsDetail(id) {
+			this.$navToPage({
+				url: '/packageGoods/pages/detail?id=' + id
+			})
+		},
 	}
-  
-  // #endif
-  // #ifndef H5
-  export default {
-    data() {
-      return {
-        pam: {},
-      }
-    },
-    onLoad(pam) {
-      this.pam = pam;
-    }
-  }
-  // #endif
+}
+
+ // #endif
+ // #ifndef H5
+ export default {
+   data() {
+     return {
+       pam: {},
+     }
+   },
+   onLoad(pam) {
+     this.pam = pam;
+   }
+ }
+ // #endif
 </script>
 
 <style lang="scss">
-	.search-container {
-		background: #ffffff;
-    padding: 0 20rpx 20rpx;
-		::v-deep .u-search {
-			height: 60rpx;
-      input {
-        background: #F7F8FF !important;
-      }
-			.u-search__content {
-        background: #F7F8FF !important;
-				height: 60rpx;
-			}
-		}
-	}
-	.address-container {
-		background: #ffffff;
-		padding-top: 10rpx;
-	}
-
-	.main-container {
-		display: flex;
-		height: 100%;
-		.left {
-			width: 220rpx;
-			height: 100%;
-			overflow-y: scroll;
-			box-sizing: border-box;
-			flex-shrink: 0;
-			.item {
-				font-size: 28rpx;
-				color: #333333;
-				height: 100rpx;
-				display: flex;
-				align-items: center;
-				justify-content: center;
-				position: relative;
-				&.current {
-					background: #FFFFFF;
-					font-weight: 500;
-					&::after {
-						content: '';
-						width: 8rpx;
-						height: 38rpx;
-						background: $theme-color;
-						position: absolute;
-						top: 50%;
-						left: 0;
-						margin-top: -19rpx;
-						border-radius: 0 8rpx 8rpx 0;
-					}
-				}
-			}
-		}
-		.right {
-			flex: 1;
-			background: #FFFFFF;
-			border-radius: 10rpx;
-			padding: 0 20rpx 20rpx 20rpx;
-			height: 100%;
-			overflow-y: scroll;
-			box-sizing: border-box;
-			.goods-item {
-				padding: 20rpx 0;
-				border-bottom: 1px solid #f5f5f5;
-				&:last-child {
-					border: none;
-				}
-			}
-		}
-	}
+.search-container {
+  background: #ffffff;
+  padding: 0 20rpx 20rpx;
+  ::v-deep .u-search {
+    height: 60rpx;
+    input {
+      background: #f7f8ff !important;
+    }
+    .u-search__content {
+      background: #f7f8ff !important;
+      height: 60rpx;
+    }
+  }
+}
+.address-container {
+  background: #ffffff;
+  padding-top: 10rpx;
+}
 
-	.bottom-container {
-		display: flex;
-		align-items: center;
-		justify-content: space-between;
-		padding: 20rpx 30rpx;
-		.left {
-			position: relative;
-			.iconfont {
-				font-size: 44rpx;
-				color: $sec-font;
-			}
-		}
-		.right {
-			display: flex;
-			align-items: center;
-			.total {
-				display: flex;
-				align-items: center;
-				flex-shrink: 0;
-				margin-right: 20rpx;
-				.text {
-					flex-shrink: 0;
-				}
-				.price {
-					color: $minor-color;
-					font-weight: 500;
-					font-size: 32rpx;
-					text {
-						font-size: 24rpx;
-					}
-				}
-			}
-			::v-deep .u-button {
-				width: 200rpx;
-				border-radius: 80rpx;
-			}
-		}
-	}
+.main-container {
+  display: flex;
+  height: 100%;
+  .left {
+    width: 220rpx;
+    height: 100%;
+    overflow-y: scroll;
+    box-sizing: border-box;
+    flex-shrink: 0;
+    .item {
+      font-size: 28rpx;
+      color: #333333;
+      height: 100rpx;
+      display: flex;
+      align-items: center;
+      justify-content: center;
+      position: relative;
+      &.current {
+        background: #ffffff;
+        font-weight: 500;
+        &::after {
+          content: '';
+          width: 8rpx;
+          height: 38rpx;
+          background: $theme-color;
+          position: absolute;
+          top: 50%;
+          left: 0;
+          margin-top: -19rpx;
+          border-radius: 0 8rpx 8rpx 0;
+        }
+      }
+    }
+  }
+  .right {
+    flex: 1;
+    background: #ffffff;
+    border-radius: 10rpx;
+    padding: 0 20rpx 20rpx 20rpx;
+    height: 100%;
+    overflow-y: scroll;
+    box-sizing: border-box;
+    .goods-item {
+      padding: 20rpx 0;
+      border-bottom: 1px solid #f5f5f5;
+      &:last-child {
+        border: none;
+      }
+    }
+  }
+}
 
+.bottom-container {
+  display: flex;
+  align-items: center;
+  justify-content: space-between;
+  padding: 20rpx 30rpx;
+  .left {
+    position: relative;
+    .iconfont {
+      font-size: 44rpx;
+      color: $sec-font;
+    }
+  }
+  .right {
+    display: flex;
+    align-items: center;
+    .total {
+      display: flex;
+      align-items: center;
+      flex-shrink: 0;
+      margin-right: 20rpx;
+      .text {
+        flex-shrink: 0;
+      }
+      .price {
+        color: $minor-color;
+        font-weight: 500;
+        font-size: 32rpx;
+        text {
+          font-size: 24rpx;
+        }
+      }
+    }
+    ::v-deep .u-button {
+      width: 200rpx;
+      border-radius: 80rpx;
+    }
+  }
+}
 </style>

+ 0 - 1
src/packageWorkorder/pages/infoCollect/list.vue

@@ -188,7 +188,6 @@ export default {
     // 提交全部采集
     async submitData() {
       const lo = await this.$getAddress()
-
       this.$api
         .post('/changeOrder/submitProductDetail', {
           orderBaseId: this.id,