panyong 3 anni fa
parent
commit
044f2fe7d4

+ 2 - 2
htmldev/dashboard/src/views/sell/food/food.vue

@@ -21,7 +21,7 @@
         <div class="content">
           <div class="title-wrap">
             <h1 class="title">{{ food.product_name }}</h1>
-            <p>{{ food.product_sale_num }}人推荐</p>
+            <p v-if="false">{{ food.product_sale_num }}人推荐</p>
           </div>
           <div class="detail">
             <p class="options">
@@ -110,7 +110,7 @@ export default {
       objCurrentBarInfo: 'common/objCurrentBarInfo'
     }),
     payClass () {
-      if (this.food.product_num < 1 || this.is_sell_out === 1) {
+      if (this.food.product_num < 1 || this.food.is_sell_out === 1) {
         return 'not-enough'
       } else {
         return 'enough'

+ 9 - 5
htmldev/dashboard/src/views/sell/goods/index.vue

@@ -49,7 +49,7 @@
                 <div class="content">
                   <div>
                     <h2 class="name">{{ food.product_name }}</h2>
-                    <p class="desc">{{ food.product_sale_num }}人推荐</p>
+                    <p v-if="false" class="desc">{{ food.product_sale_num }}人推荐</p>
                   </div>
                   <div class="price">
                     <span class="now">¥{{ food.product_price | fen2Yuan }}</span>
@@ -328,8 +328,11 @@ export default {
   .icon {
     flex: 0 0 88px;
     margin-right: 8px;
-    border-radius: 8px;
     overflow: hidden;
+
+    img {
+      border-radius: 8px;
+    }
   }
 
   .content {
@@ -369,7 +372,7 @@ export default {
     }
 
     .now {
-      font-size: 16px;
+      font-size: 14px;
       font-family: PingFangSC-Medium, PingFang SC;
       font-weight: 600;
       color: #D32323;
@@ -385,9 +388,10 @@ export default {
     .btn-show-sku {
       position: absolute;
       right: 0;
-      bottom: 9px;
-      width: 70px;
+      bottom: 7px;
+      width: 55px;
       height: 24px;
+      padding: 0;
       border: none;
       background: #D32323;
       border-radius: 12px;