文字修改

This commit is contained in:
liuye
2023-06-15 14:46:48 +08:00
parent 36e599f972
commit 4aa5f362a9
5 changed files with 6 additions and 6 deletions

View File

@@ -83,7 +83,7 @@ export default {
appName: '积分兑换', appName: '积分兑换',
data() { data() {
return { return {
tabList: [{name: '全部'}, {name: '免费兑'}, {name: '京东低价商品'}], tabList: [{name: '全部'}, {name: '积分兑换'}, {name: '京东低价商品'}],
currentTabs: 0, currentTabs: 0,
barStyle: { barStyle: {
'width': '20px', 'width': '20px',
@@ -136,7 +136,7 @@ export default {
getList() { getList() {
this.$instance.post(`/app/appintegralsupermarketshop/goodsListXCX`, null, { this.$instance.post(`/app/appintegralsupermarketshop/goodsListXCX`, null, {
params: { params: {
goodsType: this.currentTabs, //商品类型0全部、1免费兑、2京东低价商品默认0 goodsType: this.currentTabs, //商品类型0全部、1积分兑换、2京东低价商品默认0
orderType: this.currentType == 0 ? 1 : 0, //排序类型0积分升序、1上架时间倒序默认0 orderType: this.currentType == 0 ? 1 : 0, //排序类型0积分升序、1上架时间倒序默认0
filterIntegral: this.currentType == 2 ? true : false, //过滤我可兑换的默认false filterIntegral: this.currentType == 2 ? true : false, //过滤我可兑换的默认false
integralRange: this.currentType == 1 ? this.currentPoint : '', //积分区间类型0全部、150分以下、2:100分以下、3200分以下、45000分以下默认0 integralRange: this.currentType == 1 ? this.currentPoint : '', //积分区间类型0全部、150分以下、2:100分以下、3200分以下、45000分以下默认0

View File

@@ -22,7 +22,7 @@
</div> </div>
</div> </div>
<p class="tips" v-if="item.goodsType == 2"><span>兑换成功后点击去购买前往京东低价购买</span></p> <p class="tips" v-if="item.goodsType == 2"><span>兑换成功后点击去购买前往京东低价购买</span></p>
<p class="tips" v-else>免费兑换商品可到固定的兑换点进行核销兑换</p> <p class="tips" v-else>积分兑换商品可到固定的兑换点进行核销兑换</p>
<p class="remark" v-if="item.remarks">备注{{item.remarks}}</p> <p class="remark" v-if="item.remarks">备注{{item.remarks}}</p>
<div class="flex-btn" v-if="item.goodsType == 2 && item.status != 2"> <div class="flex-btn" v-if="item.goodsType == 2 && item.status != 2">
<p></p> <p></p>

View File

@@ -13,7 +13,7 @@
</div> </div>
</div> </div>
<p class="tips" v-if="goodsInfo.type == 2">兑换成功后点击去购买前往京东低价购买</p> <p class="tips" v-if="goodsInfo.type == 2">兑换成功后点击去购买前往京东低价购买</p>
<p class="tips" v-else>免费兑换商品可到固定的兑换点进行核销兑换</p> <p class="tips" v-else>积分兑换商品可到固定的兑换点进行核销兑换</p>
</div> </div>
<div class="content"> <div class="content">
<div class="item-flex" @click="show=true"> <div class="item-flex" @click="show=true">

View File

@@ -7,7 +7,7 @@
<h3>{{goodsInfo.integralPrice}}积分<span v-if="goodsInfo.type == 2">+¥{{goodsInfo.payMoney}}<span v-if="goodsInfo.type == 2">兑换后再付</span></span></h3> <h3>{{goodsInfo.integralPrice}}积分<span v-if="goodsInfo.type == 2">+¥{{goodsInfo.payMoney}}<span v-if="goodsInfo.type == 2">兑换后再付</span></span></h3>
<div>零售单价¥{{goodsInfo.retailPrice}}</div> <div>零售单价¥{{goodsInfo.retailPrice}}</div>
<span class="tips" v-if="goodsInfo.type == 2">兑换成功后点击去购买前往京东低价购买</span> <span class="tips" v-if="goodsInfo.type == 2">兑换成功后点击去购买前往京东低价购买</span>
<span class="tips" v-else>免费兑换商品可到固定的兑换点进行核销兑换</span> <span class="tips" v-else>积分兑换商品可到固定的兑换点进行核销兑换</span>
</div> </div>
<div class="product-content"> <div class="product-content">
<p>商品描述</p> <p>商品描述</p>

View File

@@ -5,7 +5,7 @@
<div v-if="goodsInfo.type == 0"> <div v-if="goodsInfo.type == 0">
<h3>提交成功</h3> <h3>提交成功</h3>
<p>提交免费兑订单成功扣减 <span>{{integralPrice}}积分</span></p> <p>提交积分兑换订单成功扣减 <span>{{integralPrice}}积分</span></p>
<div class="btn-flex"> <div class="btn-flex">
<div @click="back">返回</div> <div @click="back">返回</div>
<div @click="toOrderList">查看订单</div> <div @click="toOrderList">查看订单</div>