Browse Source

H5座位预定-座位列表:价格

panyong 3 years ago
parent
commit
48fb138df8
1 changed files with 3 additions and 3 deletions
  1. 3 3
      htmldev/dashboard/src/views/place/list/index.vue

+ 3 - 3
htmldev/dashboard/src/views/place/list/index.vue

@@ -57,7 +57,7 @@
             <img src="./image/sell_out@2x.png" alt="">
             <div>
               <p class="price disabled">
-                <span>¥ {{ place.place_price }}</span>
+                <span>¥ {{ place.place_price | fen2Yuan }}</span>
                 <span>{{ place.place_pre_type === 1 ? '起' : ''}}</span>
               </p>
               <p class="sell-des">已订满</p>
@@ -176,8 +176,8 @@
         <div class="af-popup-footer">
           <p class="count">
             <span>预付:</span>
-            <span v-if="objCurrentPlaceInfo.place_pre_type === 1">¥{{
-                objCurrentPlaceInfo.place_price * order_user_num | fen2Yuan
+            <span
+              v-if="objCurrentPlaceInfo.place_pre_type === 1">¥{{ objCurrentPlaceInfo.place_price * order_user_num | fen2Yuan
               }}</span>
             <span v-else>¥{{ objCurrentPlaceInfo.place_price | fen2Yuan }}</span>
           </p>