DaMowang vor 2 Jahren
Ursprung
Commit
d058c168d8

+ 8 - 1
src/pages/index/index.vue

@@ -46,7 +46,10 @@
                     <view class="content-view">
                         <view :class="['product-title', 'ellipsis']">{{ i.goods_name }}</view>
                         <view class="product-price">
-                            <text class="product-price-original" v-if="i.type == 1">{{ i.total_amount }}</text>
+                            <template v-if="i.type == 1">
+                                <text class="product-price-original">{{ i.total_amount }}</text>
+                                <text class="product-price-msg">(含服务费{{$h.Mul(i.service,2)}}元)</text>
+                            </template>
                             <text class="product-price-original" v-else>{{ i.price }}</text>
                             <text class="product-text" v-if="[3,4].includes(i.type)">赠<text class="corFE2C15">{{ i.give_cha_bao }}</text>茶宝</text>
                         </view>
@@ -403,6 +406,10 @@ export default {
             margin-right: 6rpx;
         }
     }
+    .product-price-msg{
+        font-size: 20rpx;
+        color: #ff6d44;
+    }
 
     .product-text {
         margin-left: 16rpx;

+ 2 - 2
src/pages/my/index.vue

@@ -97,10 +97,10 @@
                     </navigator>
                 </view>
                 <view class="fun_con mar_t50 flex_r flex_ac">
-                    <navigator class="fun_list flex_c flex_ac" url="/pages/account/conversion" hover-class="none">
+                    <!-- <navigator class="fun_list flex_c flex_ac" url="/pages/account/conversion" hover-class="none">
                         <image class="fun_img" src="/static/my/10.png"></image>
                         <view class="fun_text">转化</view>
-                    </navigator>
+                    </navigator> -->
                     <navigator class="fun_list flex_c flex_ac" @tap="getToCash" hover-class="none">
                         <image class="fun_img" src="/static/my/13.png"></image>
                         <view class="fun_text">提现</view>

+ 1 - 1
src/pages/orderingfood/merchantlist.vue

@@ -2,7 +2,7 @@
     <div class="merchantlist">
         <div class="head">
             <div class="bg" v-if="IsMobile"></div>
-            <div class="card" :style="{marginTop:IsMobile?'-110rpx':'-270rpx'}">
+            <div class="card" :style="{marginTop:IsMobile?'-110rpx':'30rpx'}">
                 <div class="live_name">{{ typeto(localInfo.level_id) }}</div>
                 <view class="regional">
                     <template v-if="localInfo.regional">

+ 1 - 1
src/pages/product/p_details.vue

@@ -20,7 +20,7 @@
 					<text class="p_favour">¥{{ detail.cost_price }}</text>
 					<text class="un_p_favour">¥{{ detail.original_price }}</text>
 				</template>
-				<!-- <text class="p_trade" v-if="type == 1">送 {{detail.trade_give_num}} 批发券</text> -->
+				<text class="p_trade" v-if="type == 1">(含服务费{{$h.Mul(detail.service,2)}}元)</text>
 				<text class="p_trade" v-if="(type == 3 || type == 4)">送 {{detail.give_cha_bao}} 茶宝</text>
                 <view v-if="type == 4">
 					<text class="un_p_favour un_p">{{ detail.cost_price }}</text>

+ 3 - 2
src/pagesB/specialregion/index.vue

@@ -73,6 +73,7 @@
                     <view :class="['product-title', 'ellipsis2']">{{ i.goods_name }}</view>
                     <view class="product-price">
                         <text class="product-price-original">{{ i.total_amount }}</text>
+                        <text class="product-txt">(含服务费{{$h.Mul(i.service,2)}}元)</text>
                     </view>
                     <!-- <view class="product-txt">赠送{{ i.give_integral + "批发券" }}</view> -->
                 </view>
@@ -386,8 +387,8 @@ export default {
 
     .product-txt,
     .product-text {
-        font-size: 22rpx;
-        color: #787878;
+        font-size: 20rpx;
+        color: #ff6d44;
 
         .iconfont {
             margin-right: 6rpx;