shish hace 2 años
padre
commit
e0c58d23ef

+ 3 - 2
hdApp/src/components/module/app-footer-cart.vue

@@ -6,8 +6,9 @@
 					<i class="iconfont icongouwuche"></i>
 				</view>
 				<view class="price" v-if="!offPrice">
-					<text v-if="count.bigLength>0">{{count.bigLength}}扎</text>
-					<text v-if="count.smallLength>0">{{count.smallLength}}支</text>
+					<text v-if="count.bigLength>0 || count.smallLength>0">数量</text>
+					<text v-if="count.bigLength>0" style="margin-left:12upx;">{{count.bigLength}}</text>
+					<text v-if="count.smallLength>0" style="margin-left:12upx;">{{count.smallLength}}</text>
 					<text style="margin-left:15upx;">¥{{ price }}</text>
 				</view>
 			</view>

+ 1 - 1
hdApp/src/pagesPurchase/purDetails.vue

@@ -185,7 +185,7 @@
           <view class="summary-bar">
             <view class="operate-view"></view>
             <view class="describe-view">
-              共{{ detailInfo.kindNum || 0 }}种 {{ detailInfo.bigNum }},合计 ¥<text class="price">{{ parseFloat(detailInfo.itemPrice)||0 }}</text>
+              共{{ detailInfo.kindNum || 0 }}种,数量 {{ detailInfo.bigNum }},合计 <text class="price">¥{{ parseFloat(detailInfo.itemPrice)||0 }}</text>
             </view>
           </view>
         </view>