yangc 7 years ago
parent
commit
dc881980af

+ 1 - 1
components/mobile/MobileHeader.vue

@@ -216,7 +216,7 @@
           title = '财务对账'
           title = '财务对账'
         } else if (this.startWith(val, '/mobile/center/user/pay')) {
         } else if (this.startWith(val, '/mobile/center/user/pay')) {
           this.showSearchIcon = false
           this.showSearchIcon = false
-          title = '填写订单'
+          title = '确认订单'
         } else if (this.startWith(val, '/mobile/center/user/doPay')) {
         } else if (this.startWith(val, '/mobile/center/user/doPay')) {
           this.showSearchIcon = false
           this.showSearchIcon = false
           title = '待付款订单'
           title = '待付款订单'

+ 8 - 1
components/mobile/base/SelectAddress.vue

@@ -1,5 +1,5 @@
 <template>
 <template>
-  <div class="base-select-address mobile-modal" :class="{'fix-bs-address': inFix}" v-if="isShow">
+  <div class="base-select-address mobile-modal" :class="className" v-if="isShow">
     <div class="bs-wrap">
     <div class="bs-wrap">
       <p class="bs-wrap-title">选择地址<i class="iconfont icon-guanbi1" @click="$emit('closeAction')"></i></p>
       <p class="bs-wrap-title">选择地址<i class="iconfont icon-guanbi1" @click="$emit('closeAction')"></i></p>
       <ul class="bs-selected-list">
       <ul class="bs-selected-list">
@@ -23,6 +23,10 @@
       inFix: {
       inFix: {
         type: Boolean,
         type: Boolean,
         default: false
         default: false
+      },
+      className: {
+        type: String,
+        default: ''
       }
       }
     },
     },
     data () {
     data () {
@@ -205,4 +209,7 @@
       }
       }
     }
     }
   }
   }
+  .inWrap .bs-current-list {
+    padding-bottom: 2rem;
+  }
 </style>
 </style>

+ 1 - 1
components/mobile/store/StoreDetail.vue

@@ -157,7 +157,7 @@
                   <li v-for="price in item.prices">
                   <li v-for="price in item.prices">
                     <div>{{price.start}}+</div>
                     <div>{{price.start}}+</div>
                     <div v-if="item.currencyName == 'RMB'">¥{{price.rMBPrice}}</div>
                     <div v-if="item.currencyName == 'RMB'">¥{{price.rMBPrice}}</div>
-                    <div v-else>${{price.rMBPrice}}</div>
+                    <div v-else>${{price.uSDPrice}}</div>
                   </li>
                   </li>
                 </ul>
                 </ul>
               </div>
               </div>

+ 7 - 2
components/store/home/CommodityList.vue

@@ -95,10 +95,15 @@
               </div>
               </div>
               <div v-for="price in commodity.prices">{{price.uSDPrice | currency}}</div>-->
               <div v-for="price in commodity.prices">{{price.uSDPrice | currency}}</div>-->
               <div class="price">
               <div class="price">
-                <div v-show="commodity.currencyName.indexOf('RMB')==-1 || !commodity.prices">
+                <div v-show="!commodity.prices || !commodity.prices.length">
                   <span>—</span>
                   <span>—</span>
                 </div>
                 </div>
-                <div v-for="price in commodity.prices">¥{{price.rMBPrice | currency}}</div>
+                <template v-if="commodity.currencyName === 'RMB'">
+                  <div v-for="price in commodity.prices">¥{{price.rMBPrice | currency}}</div>
+                </template>
+                <template v-else>
+                  <div v-for="price in commodity.prices">${{price.uSDPrice | currency}}</div>
+                </template>
               </div>
               </div>
             </td>
             </td>
             <td>
             <td>

+ 2 - 2
pages/mobile/center/user/pay/_orderId.vue

@@ -94,7 +94,7 @@
             <span class="ol-price" v-else>0</span>
             <span class="ol-price" v-else>0</span>
           </div>
           </div>
           <div class="text-ellipse">
           <div class="text-ellipse">
-             <span class="pay-price-title inline-block">手续费:</span><span class="ol-price"><span>{{payData.currency | currencyFilter}}</span>0.00</span>
+             <span class="pay-price-title inline-block">手续费:</span><span class="ol-price"><span>{{payData.currency | currencyFilter}}</span>0</span>
             <!--(<span class="ol-price fare"><span>{{payData.currency | currencyFilter}}</span>{{getPoundage(item)}}</span>)-->
             <!--(<span class="ol-price fare"><span>{{payData.currency | currencyFilter}}</span>{{getPoundage(item)}}</span>)-->
             <span class="inline-block tag" @click="showRemindStr = true">减免</span>
             <span class="inline-block tag" @click="showRemindStr = true">减免</span>
             <i class="fa fa-exclamation-circle"></i>
             <i class="fa fa-exclamation-circle"></i>
@@ -320,7 +320,7 @@
               <button class="add-addr-btn" @click="addAddress()"><i class="iconfont icon-add"></i>添加新地址</button>
               <button class="add-addr-btn" @click="addAddress()"><i class="iconfont icon-add"></i>添加新地址</button>
             </div>
             </div>
           </template>
           </template>
-          <address-edit v-else="editAddr" :inFix="false" :data="currentAddress" :isPersonal="true" :isSend="false" @isEditEvent="editClick"></address-edit>
+          <address-edit v-else="editAddr" :className="'inWrap'" :data="currentAddress" :isPersonal="true" :isSend="false" @isEditEvent="editClick"></address-edit>
         </div>
         </div>
       </div>
       </div>
     </div>
     </div>

+ 1 - 1
pages/mobile/product/_batchCode.vue

@@ -73,7 +73,7 @@
               <li v-for="price in commodity.prices">
               <li v-for="price in commodity.prices">
                 <div>{{price.start}}+</div>
                 <div>{{price.start}}+</div>
                 <div v-if="commodity.currencyName == 'RMB'">¥{{price.rMBPrice}}</div>
                 <div v-if="commodity.currencyName == 'RMB'">¥{{price.rMBPrice}}</div>
-                <div v-else>${{price.rMBPrice}}</div>
+                <div v-else>${{price.uSDPrice}}</div>
               </li>
               </li>
             </ul>
             </ul>
           </div>
           </div>