Browse Source

茶宝改成贡献值

xiaomei 11 months ago
parent
commit
0f63351090
38 changed files with 84 additions and 84 deletions
  1. 3 3
      src/pages.json
  2. 2 2
      src/pages/account/conversion.vue
  3. 2 2
      src/pages/account/giveAsPresent.vue
  4. 1 1
      src/pages/account/wealth.vue
  5. 14 14
      src/pages/accountDetails/teaBaby.vue
  6. 1 1
      src/pages/consumerGold/enjoyGoods.vue
  7. 1 1
      src/pages/consumerGold/index.vue
  8. 1 1
      src/pages/consumerGold/specialCategory.vue
  9. 7 7
      src/pages/product/p_details.vue
  10. 1 1
      src/pages/product/productRetail.vue
  11. 2 2
      src/pages/product/productTeaBaby.vue
  12. 1 1
      src/pages/product/productWholesale.vue
  13. 5 5
      src/pages/shoppingMall/index.vue
  14. 1 1
      src/pages/sign/index.vue
  15. 3 3
      src/pages/szw-order-details/index.vue
  16. 1 1
      src/pages/szw-order-list/index.vue
  17. 8 8
      src/pages/to-pay-list/index.vue
  18. 1 1
      src/pagesB/cinema/confirmOrder.vue
  19. 1 1
      src/pagesB/directCharge/coupon.vue
  20. 1 1
      src/pagesB/directCharge/payment.vue
  21. 1 1
      src/pagesB/hotel/hotelDetail.vue
  22. 1 1
      src/pagesB/hotel/orderDetail.vue
  23. 1 1
      src/pagesB/my/assistant.vue
  24. 1 1
      src/pagesB/my/myWallet.vue
  25. 1 1
      src/pagesB/orderingfood/payTheBill.vue
  26. 1 1
      src/pagesB/prepaidRefill/index.vue
  27. 1 1
      src/pagesB/prepaidRefill/orderDetail.vue
  28. 1 1
      src/pagesB/scenicSpotTicket/scenicDetail.vue
  29. 1 1
      src/pagesB/specialregion/index.vue
  30. 1 1
      src/pagesC/consumerGold/exchange.vue
  31. 4 4
      src/pagesC/my-credites/index.vue
  32. 1 1
      src/pagesC/product/productOE.vue
  33. 1 1
      src/pagesC/settledMerchant/pay.vue
  34. 5 5
      src/pagesC/shoppingMallType/index.vue
  35. 2 2
      src/pagesC/shoppingMallType/order/list.vue
  36. 2 2
      src/pagesC/shoppingMallType/p_details.vue
  37. 1 1
      src/pagesC/sign/result.vue
  38. 1 1
      src/utils/myfun.js

+ 3 - 3
src/pages.json

@@ -39,7 +39,7 @@
 		{
 			"path": "pages/product/productTeaBaby",
 			"style": {
-				"navigationBarTitleText": "茶宝兑换"
+				"navigationBarTitleText": "贡献值兑换"
 			}
 		},
 		{
@@ -124,7 +124,7 @@
 		{
 			"path": "pages/accountDetails/teaBaby",
 			"style": {
-				"navigationBarTitleText": "茶宝明细"
+				"navigationBarTitleText": "贡献值明细"
 			}
 		},
 		{
@@ -178,7 +178,7 @@
 		// {
 		// 	"path": "pages/my-credites/index",
 		// 	"style": {
-		// 		"navigationBarTitleText": "茶宝兑换",
+		// 		"navigationBarTitleText": "贡献值兑换",
 		// 		"enablePullDownRefresh": false
 		// 	}
 		// },

+ 2 - 2
src/pages/account/conversion.vue

@@ -17,7 +17,7 @@
     </view>
 
     <view class="list flex_r flex_ac flex_jb mar_t16">
-      <view class="list_name">你将得到的茶宝:</view>
+      <view class="list_name">你将得到的贡献值:</view>
       <view class="list_text">{{ give_num * (1 - fee) || 0 }}</view>
     </view>
     <view class="tips">{{ tips }}</view>
@@ -60,7 +60,7 @@ export default {
       } else {
         let content = `您将转化${this.give_num}云宝为${
           this.give_num * (1 - this.fee)
-        }茶宝`;
+        }贡献值`;
         let that = this;
         uni.showModal({
           title: "提示",

+ 2 - 2
src/pages/account/giveAsPresent.vue

@@ -15,7 +15,7 @@
       <view class="list_text"><text>{{ localInfo.original_equity || 0 }}</text></view>
     </view>
     <view class="list flex_r flex_ac flex_jb mar_t16" v-else-if="value == 1">
-      <view class="list_name">当前茶宝:</view>
+      <view class="list_name">当前贡献值:</view>
       <view class="list_text"><text>{{ userinfo.cha_bao }}</text></view>
     </view>
     <view class="list flex_r flex_ac flex_jb mar_t16" v-else>
@@ -83,7 +83,7 @@ export default {
         this.give_num > Number(this.userinfo.cha_bao) &&
         this.value == 1
       ) {
-        this.$toast("赠送数量不得超过茶宝余额");
+        this.$toast("赠送数量不得超过贡献值余额");
         return;
       } else if (
         this.give_num > Number(this.localInfo.original_equity) &&

+ 1 - 1
src/pages/account/wealth.vue

@@ -13,7 +13,7 @@
     </view>
     <view class="con flex_r flex_ac mar_t16">
       <view class="list flex_c flex_ac" @click="goto('/pages/accountDetails/teaBaby')">
-        <view class="list_name">茶宝</view>
+        <view class="list_name">贡献值</view>
         <view class="list_text dinB">{{ userinfo.cha_bao }}</view>
       </view>
       <view class="list flex_c flex_ac" @click="goto('/pagesB/accountDetails/TeaC')">

+ 14 - 14
src/pages/accountDetails/teaBaby.vue

@@ -20,7 +20,7 @@
         </view>
         <view class="list_con flex_r flex_ac flex_jb">
           <view class="list_time">{{ item.create_time }}</view>
-          <view class="list_balance">茶宝余额{{ item.after }}</view>
+          <view class="list_balance">贡献值余额{{ item.after }}</view>
         </view>
       </view>
       <not-goods v-if="haveGoods" textStr="暂无积分信息"></not-goods>
@@ -102,19 +102,19 @@ export default {
       return (va) => {
         let is = uni.getStorageSync("isAuthentication");
         switch (va) {
-          case 0: return "购物送茶宝";
-          case 1: return "签到送茶宝";
-          case 2: return "批发使用茶宝";
-          case 3: return "退款加茶宝";
-          case 4: return "提现转茶宝";
-          case 5: return "支出赠送茶宝";
-          case 6: return "兑换产品使用茶宝";
-          case 7: return "手动调整茶宝";
-          case 8: return "核销后送茶宝";
-          case 9: return "云宝转化茶宝";
-          case 10: return "收到赠送茶宝";
-          case 11: return is ? "实名送茶宝" : "注册送茶宝";
-          case 12: return "分享用户送茶宝";
+          case 0: return "购物送贡献值";
+          case 1: return "签到送贡献值";
+          case 2: return "批发使用贡献值";
+          case 3: return "退款加贡献值";
+          case 4: return "提现转贡献值";
+          case 5: return "支出赠送贡献值";
+          case 6: return "兑换产品使用贡献值";
+          case 7: return "手动调整贡献值";
+          case 8: return "核销后送贡献值";
+          case 9: return "云宝转化贡献值";
+          case 10: return "收到赠送贡献值";
+          case 11: return is ? "实名送贡献值" : "注册送贡献值";
+          case 12: return "分享用户送贡献值";
           case 13: return "联合发起人赠送";
           case 14: return "权限激活赠送";
           case 15: return "订单退款扣除";

+ 1 - 1
src/pages/consumerGold/enjoyGoods.vue

@@ -18,7 +18,7 @@
             <text class="product-price-original">{{ i.cost_price }}</text>
             <text class="product-text" v-if="['3', '4'].includes(type)"
               >赠<text class="corFE2C15">{{ i.give_cha_bao }}</text
-              >茶宝</text
+              >贡献值</text
             >
           </view>
           <view class="product-txt" v-if="type == 4">

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

@@ -96,7 +96,7 @@
                 <text class="product-price-original">{{ i.cost_price }}</text>
                 <text class="product-text"
                   >赠<text class="corFE2C15">{{ i.give_cha_bao }}</text
-                  >茶宝</text
+                  >贡献值</text
                 >
               </view>
               <view class="product-txt">

+ 1 - 1
src/pages/consumerGold/specialCategory.vue

@@ -18,7 +18,7 @@
             <text class="product-price-original">{{ i.cost_price }}</text>
             <text class="product-text" v-if="['3', '4'].includes(type)"
               >赠<text class="corFE2C15">{{ i.give_cha_bao }}</text
-              >茶宝</text
+              >贡献值</text
             >
           </view>
           <view class="product-txt" v-if="type == 4">

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

@@ -8,7 +8,7 @@
             <view v-if="type == 5" class="price">
                 <span v-if="Number(detail.cost_price) != 0">{{ detail.cost_price }}元</span>
                 <span v-if="Number(detail.cha_bao) != 0 && Number(detail.cost_price) != 0">+</span>
-                <span v-if="Number(detail.cha_bao) != 0">{{ detail.cha_bao }}茶宝</span>
+                <span v-if="Number(detail.cha_bao) != 0">{{ detail.cha_bao }}贡献值</span>
             </view>
             <view v-else-if="type == 7" class="price">
                 <span v-if="Number(detail.cost_price) != 0">{{ detail.cost_price }}元</span>
@@ -21,22 +21,22 @@
                 <span v-if="Number(detail.oe_price) != 0">{{ detail.oe_price }}OE</span>
             </view>
             <view v-else-if="type == 1" class="price flex_c">
-                <text class="p_favour_teac" v-if="type == 1">¥: {{ $h.Add(detail.teac,$h.Mul(detail.trade_teac, 2))||0 }} TeaC +{{ detail.treasure_price||0 }} 茶宝</text>
+                <text class="p_favour_teac" v-if="type == 1">¥: {{ $h.Add(detail.teac,$h.Mul(detail.trade_teac, 2))||0 }} TeaC +{{ detail.treasure_price||0 }} 贡献值</text>
                 <text class="p_trade_teac" v-if="type == 1">寄卖服务费:{{$h.Mul(detail.service,2)}} 元</text>
             </view>
             <view v-else class="price" :class="type == 2 ? 'samll' : ''">
                 <!-- <text class="p_favour" v-if="type == 1">¥{{ detail.total_amount }}</text> -->
-                <text class="p_favour" v-if="type == 2">¥{{ detail.trade_price }} + {{detail.trade_num}}批发券 + {{detail.treasure_price}}茶宝</text>
+                <text class="p_favour" v-if="type == 2">¥{{ detail.trade_price }} + {{detail.trade_num}}批发券 + {{detail.treasure_price}}贡献值</text>
                 <text class="p_favour" v-if="type == 3">¥{{ detail.cost_price }}</text>
                 <text class="p_favour" v-if="type == 4">¥{{ $h.Sub(detail.cost_price,detail.consume) }}</text>
-                <text class="p_favour" v-if="type == 5">¥{{ detail.cost_price }} + {{ detail.treasure_price }}茶宝</text>
+                <text class="p_favour" v-if="type == 5">¥{{ detail.cost_price }} + {{ detail.treasure_price }}贡献值</text>
                 <text class="p_favour" v-if="type == 8">¥{{ detail.cost_price }} + {{ detail.treasure_price }}OE</text>
                 <template v-if="type == 6">
                     <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">(含服务费{{$h.Mul(detail.service,2)}}元)</text> -->
-                <text class="p_trade" v-if="(type == 3 || type == 4)">送 {{detail.give_cha_bao}} 茶宝</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>
                     <text class="p_trade">消费券抵扣 {{detail.consume}}</text>
@@ -99,9 +99,9 @@
                     <image class="goods_img" :src="detail.original_img" mode=""></image>
                     <view class="goods_con flex_c flex_jb">
                         <view class="shop_names">{{ detail.goods_name }}</view>
-                        <view class="goods_msg" v-if="type == 1">¥: {{ $h.Add(detail.teac,$h.Mul(detail.trade_teac, 2))||0 }}TeaC + {{ detail.treasure_price }}茶宝</view>
+                        <view class="goods_msg" v-if="type == 1">¥: {{ $h.Add(detail.teac,$h.Mul(detail.trade_teac, 2))||0 }}TeaC + {{ detail.treasure_price }}贡献值</view>
                         <view class="goods_smsg" v-if="type == 1">寄卖服务费:{{$h.Mul(detail.service,2)}} 元</view>
-                        <view class="goods_msg" v-else-if="type == 2">{{ detail.trade_price }}元+{{ detail.trade_num }}批发券+{{ detail.treasure_price }}茶宝</view>
+                        <view class="goods_msg" v-else-if="type == 2">{{ detail.trade_price }}元+{{ detail.trade_num }}批发券+{{ detail.treasure_price }}贡献值</view>
                         <view class="goods_msg" v-else-if="type == 7">{{ detail.cost_price }}元+{{ detail.consume }}消费券</view>
                         <view class="goods_msg" v-else>¥{{ afterSpecPrice }}</view>
                         <view class="num_con flex_r flex_je" v-if="type != 6">

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

@@ -11,7 +11,7 @@
                         <text class="product-price-favour" v-if="type==6">{{i.cost_price}}</text>
                         <text class="product-price-original" v-if="type==4">{{ i.price }}</text>
                         <text class="product-price-original" v-else>{{ i.price }}</text>
-                        <text class="product-text" v-if="['3','4'].includes(type)">赠<text class="corFE2C15">{{ i.give_cha_bao }}</text>茶宝</text>
+                        <text class="product-text" v-if="['3','4'].includes(type)">赠<text class="corFE2C15">{{ i.give_cha_bao }}</text>贡献值</text>
                     </view>
                     <view class="product-txt" v-if="type == 4">
                         <text class="product-price-favour">{{i.market_price}}</text>

+ 2 - 2
src/pages/product/productTeaBaby.vue

@@ -9,7 +9,7 @@
                     <view></view>
                     <span v-if="Number(item.price) != 0">{{ item.price }}元</span>
                     <span v-if="Number(item.cha_bao_price) != 0 && Number(item.price) != 0">+</span>
-                    <span v-if="Number(item.cha_bao_price) != 0">{{ item.cha_bao_price }}茶宝</span>
+                    <span v-if="Number(item.cha_bao_price) != 0">{{ item.cha_bao_price }}贡献值</span>
                 </view>
                 <view class="info_btn_con flex_r flex_je">
                     <view class="info_btn flex_r flex_ac flex_jc">兑换</view>
@@ -24,7 +24,7 @@ import { post } from "@/request/api.js";
 export default {
     data() {
         return {
-            who_list: [], // 茶宝兑换商品列表
+            who_list: [], // 贡献值兑换商品列表
             type: "",
         };
     },

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

@@ -5,7 +5,7 @@
             <image class="list_img" :src="item.original_img"></image>
             <view class="list_info flex_c flex_jb">
                 <view class="info_name">{{item.goods_name}}</view>
-                <view class="info_msg">{{item.price}}元+{{item.trade_num}}批发券+{{item.cha_bao}}茶宝</view>
+                <view class="info_msg">{{item.price}}元+{{item.trade_num}}批发券+{{item.cha_bao}}贡献值</view>
                 <view class="info_btn_con flex_r flex_je">
                     <view class="info_btn flex_r flex_ac flex_jc">购买</view>
                 </view>

+ 5 - 5
src/pages/shoppingMall/index.vue

@@ -125,7 +125,7 @@
                 </span>
               </view>
               <view class="quan">
-                <span>赠茶宝:</span>
+                <span>赠贡献值:</span>
                 <span>
                   {{
                     Math.floor(
@@ -172,7 +172,7 @@
                 </span>
               </view>
               <view class="quan">
-                <span>赠茶宝:</span>
+                <span>赠贡献值:</span>
                 <span>
                   {{
                     Math.floor(
@@ -218,7 +218,7 @@
                 </span>
               </view>
               <view class="quan">
-                <span>赠茶宝:</span>
+                <span>赠贡献值:</span>
                 <span>
                   {{
                     Math.floor(
@@ -262,7 +262,7 @@
                 </span>
               </view>
               <view class="quan">
-                <span>赠茶宝:</span>
+                <span>赠贡献值:</span>
                 <span>
                   {{
                     Math.floor(
@@ -338,7 +338,7 @@
                   </span>
                 </view>
                 <view class="quan">
-                  <span>赠茶宝:</span>
+                  <span>赠贡献值:</span>
                   <span>
                     {{
                       Math.floor(

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

@@ -79,7 +79,7 @@
                 <text class="product-price-original">{{ i.cost_price }}</text>
                 <text class="product-text" v-if="['3', '4'].includes(type)"
                   >赠<text class="corFE2C15">{{ i.give_cha_bao }}</text
-                  >茶宝</text
+                  >贡献值</text
                 >
               </view>
               <view class="product-txt" v-if="type == 4">

+ 3 - 3
src/pages/szw-order-details/index.vue

@@ -44,7 +44,7 @@
                                 <text v-if="orderInfo.goodsAttribute">{{ orderInfo.goodsAttribute.attr_name }}</text>
                             </view>
                             <view v-if="orderInfo.type == 1">
-                                <view class="goods_price r_color" style="bottom:26rpx">{{ orderInfo.teac+"TeaC + "+ orderInfo.cha_bao+"茶宝" }}</view>
+                                <view class="goods_price r_color" style="bottom:26rpx">{{ orderInfo.teac+"TeaC + "+ orderInfo.cha_bao+"贡献值" }}</view>
                                 <view class="good_server">寄卖服务费:¥{{ orderInfo.shipping_price || 0 }}</view>
                             </view>
                             <view class="goods_price r_color" v-else>¥{{ orderInfo.total_amount  }}</view>
@@ -67,13 +67,13 @@
                     <view class="info_data">{{ orderInfo.pay_name }}</view>
                 </view>
                 <view class="li_box" v-if="orderInfo.total_amount">商品合计:
-                    <view class="info_data" v-if="orderInfo.type == 1">{{ orderInfo.teac+"TeaC + "+ orderInfo.cha_bao+"茶宝 +"+'¥'+(orderInfo.shipping_price || 0)  }}</view>
+                    <view class="info_data" v-if="orderInfo.type == 1">{{ orderInfo.teac+"TeaC + "+ orderInfo.cha_bao+"贡献值 +"+'¥'+(orderInfo.shipping_price || 0)  }}</view>
                     <view class="info_data" v-else>{{ orderInfo.total_amount }}</view>
                 </view>
                 <!-- <view class="li_box" v-if="orderInfo.orderTypes == 2">批发券:
                     <view class="info_data">{{ orderInfo.totalPfInt }}</view>
                 </view> -->
-                <!-- <view class="li_box" v-if="orderInfo.orderTypes == 2">茶宝
+                <!-- <view class="li_box" v-if="orderInfo.orderTypes == 2">贡献值
                     <view class="info_data">{{ orderInfo.totalTeaInt }}</view>
                 </view> -->
             </view>

+ 1 - 1
src/pages/szw-order-list/index.vue

@@ -24,7 +24,7 @@
                                 </view>
                                 <view class="good_text flex_r flex_ac flex_jb" :style="{bottom:li.type == 1?'15rpx':0}">
                                     <view class="unimport dinB">x {{ li.goods_num }}</view>
-                                    <view class="goods_price r_color" v-if="li.type == 1"><text class="r_color">{{li.teac+'TeaC + '+ li.cha_bao+'茶宝' }}</text></view>
+                                    <view class="goods_price r_color" v-if="li.type == 1"><text class="r_color">{{li.teac+'TeaC + '+ li.cha_bao+'贡献值' }}</text></view>
                                     <view class="goods_price r_color" v-else>¥<text class="r_color">{{ li.total_amount }}</text></view>
                                 </view>
                                 <view class="good_server" v-if="li.type == 1">寄卖服务费:¥{{ li.shipping_price || 0 }}</view>

+ 8 - 8
src/pages/to-pay-list/index.vue

@@ -52,7 +52,7 @@
                 <image class="goods_img" :src="goodsInfo.original_img" mode=""></image>
                 <view class="goods_con flex_c flex_jc flex_jb">
                     <view class="goods_name ellipsis2">{{ goodsInfo.goods_name }}</view>
-                    <!-- <view class="goods_msg" v-if="Data.type == 2">{{ goodsInfo.trade_price }}元+{{ goodsInfo.trade_num }}批发券+{{ goodsInfo.treasure_price }}茶宝</view> -->
+                    <!-- <view class="goods_msg" v-if="Data.type == 2">{{ goodsInfo.trade_price }}元+{{ goodsInfo.trade_num }}批发券+{{ goodsInfo.treasure_price }}贡献值</view> -->
                     <view class="goods_spec">
                         <text class="goods_spec_text" v-if="specName">{{ specName }}</text>
                         <text v-if="attrName">{{ attrName }}</text>
@@ -91,11 +91,11 @@
             </template>
             <view class="order_list flex_r flex_ac flex_jb" v-if="Data.type == 2 || Data.type == 5">
                 <view class="flex_r flex_ac">
-                    <view class="list_name">茶宝</view>
+                    <view class="list_name">贡献值</view>
                     <view class="list_con p_color">(可用{{ userinfo.cha_bao }})</view>
                 </view>
-                <view class="list_con" v-if="Data.type != 5">{{ goodsInfo.treasure_price * Data.num }} 茶宝</view>
-                <view class="list_con" v-else>{{ $h.Mul(goodsInfo.cha_bao, Data.num) }} 茶宝</view>
+                <view class="list_con" v-if="Data.type != 5">{{ goodsInfo.treasure_price * Data.num }} 贡献值</view>
+                <view class="list_con" v-else>{{ $h.Mul(goodsInfo.cha_bao, Data.num) }} 贡献值</view>
             </view>
             <view class="order_list flex_r flex_ac flex_jb" v-if="Data.type == 8">
                 <view class="flex_r flex_ac">
@@ -136,8 +136,8 @@
                 <view class="list_con">{{ $h.Mul(goodsInfo.teac, Data.num) }} TeaC</view>
             </view>
             <view class="order_list flex_r flex_ac flex_jb" v-if="Data.type == 1">
-                <view class="list_name">茶宝</view>
-                <view class="list_con">{{ $h.Mul(goodsInfo.treasure_price, Data.num) }} 茶宝</view>
+                <view class="list_name">贡献值</view>
+                <view class="list_con">{{ $h.Mul(goodsInfo.treasure_price, Data.num) }} 贡献值</view>
             </view>
             <view class="order_list flex_r flex_ac flex_jb" v-else>
                 <view class="list_name">小计</view>
@@ -174,7 +174,7 @@
         <view class="order">
             <view class="order_list flex_r flex_ac flex_jb">
                 <view class="list_name">订单合计</view>
-                <view class="list_con" v-if="Data.type == 1">{{($h.Add($h.Mul(goodsInfo.teac, Data.num),$h.Mul(goodsInfo.trade_teac, Data.num * 2))||0) +'TeaC + '+(($h.Mul(goodsInfo.treasure_price, Data.num)) || 0) }}茶宝 + ¥{{ $h.Mul(goodsInfo.service, Data.num * 2) }}</view>
+                <view class="list_con" v-if="Data.type == 1">{{($h.Add($h.Mul(goodsInfo.teac, Data.num),$h.Mul(goodsInfo.trade_teac, Data.num * 2))||0) +'TeaC + '+(($h.Mul(goodsInfo.treasure_price, Data.num)) || 0) }}贡献值 + ¥{{ $h.Mul(goodsInfo.service, Data.num * 2) }}</view>
                 <view class="list_con" v-else>¥{{ amountTotal>0?amountTotal:0 || 0 }}</view>
             </view>
             <view class="order_list flex_r flex_ac flex_jb" v-if="['2','3'].includes(Data.type)">
@@ -190,7 +190,7 @@
                 <view class="list_con g_color">{{ userinfo.teac }}</view>
             </view>
             <view class="order_list flex_r flex_ac flex_jb" v-if="Data.type == 1">
-                <view class="list_name">可用茶宝</view>
+                <view class="list_name">可用贡献值</view>
                 <view class="list_con g_color">{{ userinfo.cha_bao }}</view>
             </view>
             <view class="order_list flex_r flex_ac flex_jb" v-if="Data.type == 1">

+ 1 - 1
src/pagesB/cinema/confirmOrder.vue

@@ -34,7 +34,7 @@
         </div>
         <div class="money card">
             <div class="li flex_r flex_jb">
-                <span>赠送茶宝</span>
+                <span>赠送贡献值</span>
                 <span>{{ chabao || 0 }}</span>
             </div>
         </div>

+ 1 - 1
src/pagesB/directCharge/coupon.vue

@@ -44,7 +44,7 @@
             </div>
             <div class="money card">
                 <div class="li flex_r flex_jb">
-                    <span>赠送茶宝</span>
+                    <span>赠送贡献值</span>
                     <span>{{ chabao || 0 }}</span>
                 </div>
             </div>

+ 1 - 1
src/pagesB/directCharge/payment.vue

@@ -35,7 +35,7 @@
             </div>
             <div class="money card">
                 <div class="li flex_r flex_jb">
-                    <span>赠送茶宝</span>
+                    <span>赠送贡献值</span>
                     <span>{{ chabao || 0 }}</span>
                 </div>
             </div>

+ 1 - 1
src/pagesB/hotel/hotelDetail.vue

@@ -73,7 +73,7 @@
         </div>
         <div class="money card">
             <div class="li flex_r flex_jb">
-                <span>赠送茶宝</span>
+                <span>赠送贡献值</span>
                 <span>{{ chabao || 0 }}</span>
             </div>
         </div>

+ 1 - 1
src/pagesB/hotel/orderDetail.vue

@@ -80,7 +80,7 @@
             </div>
             <div class="money card">
                 <div class="li flex_r flex_jb">
-                    <span>赠送茶宝</span>
+                    <span>赠送贡献值</span>
                     <span>{{ chabao || 0 }}</span>
                 </div>
             </div>

+ 1 - 1
src/pagesB/my/assistant.vue

@@ -33,7 +33,7 @@
                 <div class="num">数量 x{{ item.goods_num }}</div>
                 <div class="money flex_r flex_jb">
                   <span>金额{{ item.order_amount }}</span>
-                  <!-- <span>奖励茶宝36</span> -->
+                  <!-- <span>奖励贡献值36</span> -->
                 </div>
               </div>
             </div>

+ 1 - 1
src/pagesB/my/myWallet.vue

@@ -14,7 +14,7 @@
                 </div> -->
                 <div class="i_num" @click="goto('/pages/accountDetails/teaBaby')">
                     <p class="flex_r flex_ac flex_jc">
-                        <image src="https://teaclub.oss-cn-chengdu.aliyuncs.com/CloudShop/icon/13.png" class="ico" /><span>茶宝</span></p>
+                        <image src="https://teaclub.oss-cn-chengdu.aliyuncs.com/CloudShop/icon/13.png" class="ico" /><span>贡献值</span></p>
                     <p class="dinB">{{userinfo.cha_bao}}</p>
                 </div>
                 <!-- <div class="i_num" @click="goto('/pagesB/accountDetails/TeaC')">

+ 1 - 1
src/pagesB/orderingfood/payTheBill.vue

@@ -36,7 +36,7 @@
         </div>
         <div class="money card">
             <div class="li flex_r flex_jb">
-                <span>赠送茶宝</span>
+                <span>赠送贡献值</span>
                 <span>{{ chabao || 0 }}</span>
             </div>
         </div>

+ 1 - 1
src/pagesB/prepaidRefill/index.vue

@@ -29,7 +29,7 @@
         </div>
         <div class="money card mar_b60">
             <div class="li flex_r flex_jb">
-                <span>赠送茶宝</span>
+                <span>赠送贡献值</span>
                 <span>{{ selectItem.chabao || 0 }}</span>
             </div>
         </div>

+ 1 - 1
src/pagesB/prepaidRefill/orderDetail.vue

@@ -19,7 +19,7 @@
         </div>
         <div class="money card">
             <div class="li flex_r flex_jb">
-                <span>赠送茶宝</span>
+                <span>赠送贡献值</span>
                 <span>{{ order.attachment.chabao || 0 }}</span>
             </div>
         </div>

+ 1 - 1
src/pagesB/scenicSpotTicket/scenicDetail.vue

@@ -51,7 +51,7 @@
         </div>
         <div class="money card mar_b60">
             <div class="li flex_r flex_jb">
-                <span>赠送茶宝</span>
+                <span>赠送贡献值</span>
                 <span>{{ chabao || 0 }}</span>
             </div>
         </div>

+ 1 - 1
src/pagesB/specialregion/index.vue

@@ -74,7 +74,7 @@
                     <view class="product-price">
                         <!-- <text class="product-price-original">{{ i.total_amount }}</text> 
                         <text class="product-txt">(含服务费{{$h.Mul(i.service,2)}}元)</text> -->
-                        <text class="product-price-original">TeaC {{ i.teac }}+茶宝 {{ i.cha_bao }}</text>
+                        <text class="product-price-original">TeaC {{ i.teac }}+贡献值 {{ i.cha_bao }}</text>
                     </view>
                     <view class="product-txt">寄卖服务费:{{$h.Mul(i.service,2)}}元</view>
                     <!-- <view class="product-txt">赠送{{ i.give_integral + "批发券" }}</view> -->

+ 1 - 1
src/pagesC/consumerGold/exchange.vue

@@ -28,7 +28,7 @@ import { post } from "@/request/api.js";
 export default {
     data() {
         return {
-            who_list: [], // 茶宝兑换商品列表
+            who_list: [], // 贡献值兑换商品列表
             type: "",
         };
     },

+ 4 - 4
src/pagesC/my-credites/index.vue

@@ -2,13 +2,13 @@
   <!--pages/goods-list/index.wxml-->
   <view class="container">
     <view class="content">
-      <view class="title flex_r flex_ac"> 茶宝 </view>
+      <view class="title flex_r flex_ac"> 贡献值 </view>
       <view class="moeny flex_r flex_ac flex_jb">
         <input
           type="text"
           :maxlength="12"
           v-model="inputMoney"
-          placeholder="请输入兑换茶宝数量"
+          placeholder="请输入兑换贡献值数量"
         />
         <view class="title_select">
           <picker
@@ -29,7 +29,7 @@
         </view>
       </view>
       <view class="option flex_r flex_ac flex_jb">
-        <view class="balance flex_r flex_ac">当前可用茶宝:{{ qxMoney }}</view>
+        <view class="balance flex_r flex_ac">当前可用贡献值:{{ qxMoney }}</view>
       </view>
     </view>
     <view class="btn flex_r flex_ac flex_jc" @tap="onSubForm">确定兑换</view>
@@ -105,7 +105,7 @@ export default {
         return;
       }
       uni.showModal({
-        content: "是否进行茶宝兑换",
+        content: "是否进行贡献值兑换",
         showCancel: false,
         success: function (res) {
           if (res.confirm) {

+ 1 - 1
src/pagesC/product/productOE.vue

@@ -34,7 +34,7 @@ import { post } from "@/request/api.js";
 export default {
   data() {
     return {
-      who_list: [], // 茶宝兑换商品列表
+      who_list: [], // 贡献值兑换商品列表
       type: "",
     };
   },

+ 1 - 1
src/pagesC/settledMerchant/pay.vue

@@ -27,7 +27,7 @@
                 <span>{{ discounts.discount || 0 }}</span>
             </div>
             <div class="li flex_r flex_jb">
-                <span>赠送茶宝</span>
+                <span>赠送贡献值</span>
                 <span>{{ discounts.chabao || 0 }}</span>
             </div>
             <div class="li flex_r flex_jb">

+ 5 - 5
src/pagesC/shoppingMallType/index.vue

@@ -138,7 +138,7 @@
                 }}</span>
               </view>
               <view class="quan">
-                <span>赠茶宝:</span>
+                <span>赠贡献值:</span>
                 <span>
                   {{
                     Math.floor(
@@ -195,7 +195,7 @@
                 </span>
               </view>
               <view class="quan">
-                <span>赠茶宝:</span>
+                <span>赠贡献值:</span>
                 <span>
                   {{
                     Math.floor(
@@ -250,7 +250,7 @@
                 </span>
               </view>
               <view class="quan">
-                <span>赠茶宝:</span>
+                <span>赠贡献值:</span>
                 <span>
                   {{
                     Math.floor(
@@ -303,7 +303,7 @@
                 </span>
               </view>
               <view class="quan">
-                <span>赠茶宝:</span>
+                <span>赠贡献值:</span>
                 <span>
                   {{
                     Math.floor(
@@ -381,7 +381,7 @@ export default {
       keyword: "", // 搜索关键字
       banner: {}, // 顶部背景图
       ratio: 0, // 赠送佣金比例
-      chabao_ratio: 0, // 赠送茶宝比例
+      chabao_ratio: 0, // 赠送贡献值比例
       catObj: {
         cat_id: 0,
         cat_name: "",

+ 2 - 2
src/pagesC/shoppingMallType/order/list.vue

@@ -76,10 +76,10 @@
               </uni-tooltip>
             </view>
             <view class="item flex_c flex_ac">
-              <span class="k">预估茶宝收益</span>
+              <span class="k">预估贡献值收益</span>
               <uni-tooltip
                 class="tooltip"
-                :content="'买单收益:' + li.chabao +'茶宝'"
+                :content="'买单收益:' + li.chabao +'贡献值'"
                 placement="bottom"
               >
                 <span class="v">{{ li.chabao }}</span>

+ 2 - 2
src/pagesC/shoppingMallType/p_details.vue

@@ -78,7 +78,7 @@
       </view>
     </view>
     <view class="chabao">
-      预估下单获得茶宝:{{ Math.floor(goods_price * chabao_ratio * 100) / 100 }}
+      预估下单获得贡献值:{{ Math.floor(goods_price * chabao_ratio * 100) / 100 }}
     </view>
     <!-- 价格信息栏-end -->
     <!-- 标题信息栏 -->
@@ -279,7 +279,7 @@ export default {
       tabs: [],
       radio: 0, // 返利比例
       annual_vol: "", //淘宝京东销量
-      chabao_ratio: 0, // 茶宝比例
+      chabao_ratio: 0, // 贡献值比例
       coupon_discount: 0, //淘宝京东商品券
       promotion_start_time: 0, // 淘宝京东商品券开始时间
       promotion_end_time: 0, // 淘宝京东商品券到期时间

+ 1 - 1
src/pagesC/sign/result.vue

@@ -9,7 +9,7 @@
     <div class="box">
       <!-- <div class="title">此次签到奖励</div>
       <div class="flex_r flex_ac flex_jb">
-        <span class="key">茶宝</span>
+        <span class="key">贡献值</span>
         <span class="value">+190</span>
       </div> -->
     </div>

+ 1 - 1
src/utils/myfun.js

@@ -74,7 +74,7 @@ export function tidyTpye(va) {
         case 2: return "批发专区";
         case 3: return "云宝货易";
         case 4: return "享好物";//消费券电商
-        case 5: return "茶宝兑换";
+        case 5: return "贡献值兑换";
         case 6: return "天天捡漏";
         case 7: return "消费券兑换";
         case 8: return "OE兑换";