Commit 6e5ea802 authored by 沈良进's avatar 沈良进

Merge branch 'master' of http://gitlab.oytour.com/viitto/mallapp

parents b204250c cb39f284
...@@ -46,6 +46,9 @@ ...@@ -46,6 +46,9 @@
<div v-if="u.TenantId!=27" class="price" :style="{ color: mainColor }"> <div v-if="u.TenantId!=27" class="price" :style="{ color: mainColor }">
{{ cx.price_content }} {{ cx.price_content }}
</div> </div>
<view v-if="u.TenantId!=27" class="origin">
{{ cx.original_price_content }}
</view>
<div v-if="u.TenantId!=27" class="sell">{{ cx.sales }}</div> <div v-if="u.TenantId!=27" class="sell">{{ cx.sales }}</div>
</div> </div>
...@@ -69,6 +72,9 @@ ...@@ -69,6 +72,9 @@
<view class="vip2" :style="{ color: mainColor }"> <view class="vip2" :style="{ color: mainColor }">
{{ cx.price_content }} {{ cx.price_content }}
</view> </view>
<view class="origin" :style="{ color: mainColor }">
{{ cx.original_price_content }}
</view>
<div @click.stop="showSkuHandler(cx)" class="right"> <div @click.stop="showSkuHandler(cx)" class="right">
<!-- todo 点击加入购物车--> <!-- todo 点击加入购物车-->
...@@ -248,6 +254,13 @@ ...@@ -248,6 +254,13 @@
</script> </script>
<style> <style>
.origin {
font-family: "oswald";
font-size: 28rpx;
color: #999;
text-decoration: line-through;
margin-left: 10rpx;
}
.vip2{ .vip2{
font-size: 16px; font-size: 16px;
margin-right: 10rpx; margin-right: 10rpx;
......
...@@ -173,6 +173,9 @@ ...@@ -173,6 +173,9 @@
<div v-if="u.TenantId!=27" class="price" :style="{ color: mainColor }"> <div v-if="u.TenantId!=27" class="price" :style="{ color: mainColor }">
{{ cx.price_content }} {{ cx.price_content }}
</div> </div>
<view v-if="u.TenantId!=27 && cx.price_content !== cx.original_price_content" class="origin">
{{ cx.original_price_content }}
</view>
<div v-if="u.TenantId!=27" class="sell">{{ cx.sales }}</div> <div v-if="u.TenantId!=27" class="sell">{{ cx.sales }}</div>
</div> </div>
<div v-if="u.TenantId!=27" @click.stop="showSkuHandler(cx)" class="right"> <div v-if="u.TenantId!=27" @click.stop="showSkuHandler(cx)" class="right">
...@@ -195,6 +198,9 @@ ...@@ -195,6 +198,9 @@
<view class="vip2" :style="{ color: mainColor }"> <view class="vip2" :style="{ color: mainColor }">
{{ cx.price_content }} {{ cx.price_content }}
</view> </view>
<view v-if="cx.price_content !== cx.original_price_content" class="origin">
{{ cx.original_price_content }}
</view>
<div @click.stop="showSkuHandler(cx)" class="right"> <div @click.stop="showSkuHandler(cx)" class="right">
<!-- todo 点击加入购物车--> <!-- todo 点击加入购物车-->
...@@ -553,6 +559,13 @@ ...@@ -553,6 +559,13 @@
</script> </script>
<style > <style >
.origin {
font-family: "oswald";
font-size: 24rpx;
color: #999;
text-decoration: line-through;
margin: 0 10rpx;
}
/* .The-tail >>> .u-divider{ /* .The-tail >>> .u-divider{
background-color: transparent !important; background-color: transparent !important;
} */ } */
......
...@@ -186,6 +186,9 @@ ...@@ -186,6 +186,9 @@
<text class="numfont22" v-if="g.form_id!=1&&g.edu_data.BookPrice"> <text class="numfont22" v-if="g.form_id!=1&&g.edu_data.BookPrice">
{{ g.price_min == g.price_max ? parseFloat(g.price_min)+parseFloat(g.edu_data.BookPrice) : g.price_min + '-' + g.price_max }} {{ g.price_min == g.price_max ? parseFloat(g.price_min)+parseFloat(g.edu_data.BookPrice) : g.price_min + '-' + g.price_max }}
</text> </text>
<text class="origin">
{{ g.original_price}}
</text>
<!-- <text class="numfont" v-if="g.form_id==1"> <!-- <text class="numfont" v-if="g.form_id==1">
{{ g.price_min }} {{ g.price_min }}
</text> --> </text> -->
...@@ -1249,6 +1252,13 @@ ...@@ -1249,6 +1252,13 @@
font-size: 44rpx; font-size: 44rpx;
font-weight: bold; font-weight: bold;
} }
.origin {
font-family: "oswald";
font-size: 28rpx;
color: #999;
text-decoration: line-through;
margin-left: 10rpx;
}
.sign-up { .sign-up {
font-size: 20rpx; font-size: 20rpx;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment