Explorar el Código

奖品库界面,卡券及代金券更改为优惠券

DELL hace 3 años
padre
commit
effeb8f03d

+ 2 - 2
components/pay-popup/pay-popup.vue

@@ -14,10 +14,10 @@
 				<view class="flex coupon" @click="toCoupon">
 					<view class="flex coupon-left">
 						<u-icon name="coupon" size="26" color="#333"></u-icon>
-						<view class="txt">代金券</view>
+						<view class="txt">优惠券</view>
 					</view>
 					<view class="flex coupon-right">
-						<view class="txt">暂无可用代金券</view>
+						<view class="txt">暂无可用优惠券</view>
 						<u-icon name="arrow-right" size="16" color="#333"></u-icon>
 					</view>
 				</view>

+ 3 - 3
pages/coupon/index.vue

@@ -1,13 +1,13 @@
 <template>
 	<view>
-		<u-navbar :placeholder="true" bgColor="#fff" :autoBack="true" :border="true" title="选择代金券"></u-navbar>
-		<view class="coupon-title">可用代金券:0</view>
+		<u-navbar :placeholder="true" bgColor="#fff" :autoBack="true" :border="true" title="选择优惠券"></u-navbar>
+		<view class="coupon-title">可用优惠券:0</view>
 		<view class="coupon-list">
 			<!-- <view class="flex coupon-list-item">
 				<view class="flex coupon-list-item-info">
 					<image src="../../static/logo.png" mode=""></image>
 					<view class="flex content">
-						<view class="txt">xx盲票代金券</view>
+						<view class="txt">xx盲票优惠券</view>
 						<view class="txt">使用期限:2022.03.02-2022.04.01</view>
 						<view class="txt">适用范围:指定盲票</view>
 					</view>

+ 2 - 2
pages/prize/coupon.vue

@@ -1,7 +1,7 @@
 <template>
 	<view>
-		<u-navbar :placeholder="true" bgColor="#fff" :autoBack="true" :border="true" title="券使用记录"></u-navbar>
-		<!-- 券筛选 -->
+		<u-navbar :placeholder="true" bgColor="#fff" :autoBack="true" :border="true" title="优惠券使用记录"></u-navbar>
+		<!-- 优惠券筛选 -->
 		<view class="prize-state">
 			<u-tabs @change="changeTab" :scrollable="false" :list="stateArr" lineWidth="40" lineHeight="1"
 				lineColor="#D70909" :activeStyle="{

+ 1 - 1
pages/prize/detail.vue

@@ -1,6 +1,6 @@
 <template>
 	<view>
-		<u-navbar :placeholder="true" bgColor="#fff" :autoBack="true" :border="true" title="券详情"></u-navbar>
+		<u-navbar :placeholder="true" bgColor="#fff" :autoBack="true" :border="true" title="优惠券详情"></u-navbar>
 		<view class="detail">
 			<view class="flex detail-item">
 				<image src="../../static/icon/coupon.png" mode=""></image>

+ 5 - 5
pages/prize/index.vue

@@ -37,7 +37,7 @@
 				<u-empty text="数据为空" mode="order" />
 			</view>
 		</view>
-		<!-- 券 -->
+		<!-- 优惠券 -->
 		<view class="prize-coupon" v-else>
 			<view class="prize-coupon-list">
 				<!-- <navigator :url="`/pages/prize/detail?info=${ JSON.stringify(item) }`" class="flex prize-coupon-list-item" hover-class="navigator-hover" v-for="(item, index) in list" :key="index">
@@ -90,9 +90,9 @@
 				</view>
 				<view class="btn" @click="toSettlement">立即提货</view>
 			</view>
-			<!-- 券使用记录 -->
+			<!-- 优惠券使用记录 -->
 			<view class="flex prize-action-coupon" @click="toCoupon" v-else>
-				<view class="title">券使用记录</view>
+				<view class="title">优惠券使用记录</view>
 				<u-icon name="arrow-right" size="15" color="#333"></u-icon>
 			</view>
 		</view>
@@ -109,7 +109,7 @@
 				stateArr: [{
 					name: '实物商品'
 				}, {
-					name: '券',
+					name: '优惠券',
 				}],
 				state: 0,
 				checkedAll: false,
@@ -187,7 +187,7 @@
 			},
 
 
-			// 查看券使用记录
+			// 查看优惠券使用记录
 			toCoupon() {
 				uni.navigateTo({
 					url: '/pages/prize/coupon'