baijunde пре 8 месеци
родитељ
комит
019b89616c
4 измењених фајлова са 7 додато и 5 уклоњено
  1. 2 2
      manifest.json
  2. 2 1
      pages/groupMeal/orders/order-alist.vue
  3. 2 2
      pages/product/index.vue
  4. 1 0
      pages/store/settings.vue

+ 2 - 2
manifest.json

@@ -2,8 +2,8 @@
     "name" : "掌柜生活商户版",
     "appid" : "__UNI__E0EA6E1",
     "description" : "",
-    "versionName" : "1.1.3.9",
-    "versionCode" : 1139,
+    "versionName" : "1.1.4.0",
+    "versionCode" : 1140,
     "transformPx" : false,
     "app-plus" : {
         /* 5+App特有相关 */

+ 2 - 1
pages/groupMeal/orders/order-alist.vue

@@ -78,7 +78,8 @@
 							<ListExpand :items="item.merchantPackageOrderDTOS">
 								<template v-slot:="{ items }">
 									<view class="order-card" v-for="(eItem, ei) in items" :key="ei">
-										<u-image width="84rpx" height="84rpx" border-radius="12rpx" :src="eItem.productImage && `${$config.apiUrl}/${eItem.productImage.split(',')[0]}`" mode="aspectFill"></u-image>
+										<!-- <u-image width="84rpx" height="84rpx" border-radius="12rpx" :src="eItem.productImage && `${$config.apiUrl}/${eItem.productImage.split(',')[0]}`" mode="aspectFill"></u-image> -->
+										<u-image width="84rpx" height="84rpx" border-radius="12rpx" :src="eItem.productImage" mode="aspectFill"></u-image>
 										<view class="order-info">
 											<view class="order-title">{{ eItem.packageName }}</view>
 											<view class="order-line">

+ 2 - 2
pages/product/index.vue

@@ -339,6 +339,7 @@ export default {
 
 			}))
 			this.isDelete = true
+			this.getProductList()
 		},
 		removeProduct() {
 			let ids = []
@@ -347,8 +348,6 @@ export default {
 			this.$http.get("/app/product/deleteBatch?ids=" + ids,)
 				.then(res => {
 					if (res.data.code == 200) {
-						console.log(res)
-
 						uni.showToast({
 							title: '删除成功',
 							duration: 2000,
@@ -359,6 +358,7 @@ export default {
 						this.$router.go(0)
 						this.isManage = false
 						this.isAll = false
+						this.getProductList()
 					} else {
 						this.isDelete = false
 						this.productHandleList = []

+ 1 - 0
pages/store/settings.vue

@@ -144,6 +144,7 @@
 				this.selectTags = res.data.result.content ? res.data.result.content.split(',').filter(id => id !== '') : []
 
 				this.indexOption = res.data.result
+				console.log(this.indexOption)
 				uni.setStorageSync('address', {lng:res.data.result.longitude,lat:res.data.result.latitude,address:res.data.result.address});
 				uni.setStorageSync('currentAddress', {name:res.data.result.address});