shish 1 год назад
Родитель
Сommit
d4fc653046

+ 1 - 1
hdApp/src/admin/ghsProduct/detail.vue

@@ -173,7 +173,7 @@ export default {
 
           let title = res.data.name+' ¥'+res.data.price
           if(res.data.discountPrice && Number(res.data.discountPrice) > 0){
-            title = '【特价】'+title
+            title = '【推荐】'+title
           }
 
           this.title = title

+ 6 - 10
mallApp/src/manifest.json

@@ -2,8 +2,8 @@
     "name" : "商城",
     "appid" : "",
     "description" : "应用描述",
-    "versionName" : "1.0.11",
-    "versionCode" : "1011",
+    "versionName" : "1.0.10",
+    "versionCode" : "1010",
     "transformPx" : true,
     /* 5+App特有相关 */
     "app-plus" : {
@@ -38,8 +38,8 @@
                     "NSPhotoLibraryUsageDescription" : "该应用需要读取您的相册,以便支持您修改头像、门店图片或花材图片",
                     "NSPhotoLibraryAddUsageDescription" : "该应用需要读取您的相册,以便支持您修改头像、门店图片或花材图片",
                     "NSCameraUsageDescription" : "该应用需要获取您的摄像头权限,以便支持您直接拍照上传头像、门店图片或花材图片"
-                },
-                "idfa" : false            
+				},
+				"idfa" : false
             },
             /* SDK配置 */
             "sdkConfigs" : {
@@ -54,17 +54,13 @@
     "quickapp" : {},
     /* 小程序特有相关 线上(花卉宝) wx99a1dfc4171efb42 开发(中花卉) wxe41bd5816affd0ba */
     "mp-weixin" : {
-        "appid" : "wxe41bd5816affd0ba",
+        "appid" : "wx99a1dfc4171efb42",
         "setting" : {
             "urlCheck" : false
         },
-        "optimization" : {
-            "subPackages" : true
-        },
         "usingComponents" : true,
         "permission" : {
-        },
-        "lazyCodeLoading":"requiredComponents"
+        }
     },
     "mp-alipay" : {
         "usingComponents" : true

+ 2 - 2
mallApp/src/pages/item/detail.vue

@@ -8,7 +8,7 @@
       <view class="tui-pro-titbox">
         <view class="tui-pro-title app-size-32">
           <text v-if="data.presell == 1">【预售】</text>
-          <text v-if="Number(data.discountPrice) > 0">【今日推荐】</text>
+          <text v-if="Number(data.discountPrice) > 0">【推荐】</text>
           {{ data.name }}
         </view>
         <button open-type="share" class="tui-share-btn tui-share-position" style="background-color:#EDEDED;">
@@ -164,7 +164,7 @@ export default {
           let skPrice = this.data.skPrice ? parseFloat(this.data.skPrice) : 0
           let title = this.data.name+' ¥'+skPrice
           if(this.data.discountPrice && Number(this.data.discountPrice) > 0){
-            title = '【今日推荐】'+title
+            title = '【推荐】'+title
           }
           let shareParams = {
             title: title,