shish 4 лет назад
Родитель
Сommit
3ad9a05625

+ 1 - 1
ghsApp/src/admin/changePrice/list.vue

@@ -93,7 +93,7 @@ export default {
 		downloadTable(){
 
 			let level = 0
-			let levelList = ['散客', '普通会员', '黄金会员','钻石会员']
+			let levelList = ['大众价', '标准价', '黄金价','钻石价']
 			uni.showActionSheet({
 				itemList: levelList,
 				success: function (respond) {

+ 1 - 1
ghsApp/src/admin/custom/levelSet.vue

@@ -7,7 +7,7 @@
 
             <view>
                 <view class="item">
-                    <view>普通会员:
+                    <view>标准会员:
 <input v-model="levelInfo.num" @click="levelInfo.num=''" placeholder-class="phcolor" class="tui-input" type="number"  /> 扎
 <input v-model="levelInfo.amount" @click="levelInfo.amount=''" placeholder-class="phcolor" class="tui-input" type="digit"  /> 元
                     </view>

+ 2 - 1
ghsApp/src/admin/home/member.vue

@@ -27,7 +27,8 @@
               <div class="tui-msg-content">
                 <span>{{ item.visitTime.substr(5,11) }}</span>
                 <span style="margin-left:50rpx;width:70rpx;color:red;font-weight:500">
-                  <text v-if="item.level == 0"></text>
+                  <text v-if="item.level == 1"></text>
+                  <text v-else-if="item.level == 0" style="color:#999;">{{ item.levelName }}</text>
                   <text v-else>{{ item.levelName }}</text>
                 </span>
                 <span v-if="tabIndex == 1" class="debt-amount">总消费:<span class="amount_num">{{item.buyAmount}}</span></span>

+ 1 - 1
ghsApp/src/admin/item/list.vue

@@ -101,7 +101,7 @@ export default {
 		downloadTable(){
 
 			let level = 0
-			let levelList = ['散客', '普通会员', '黄金会员','钻石会员']
+			let levelList = ['大众价', '标准价', '黄金价','钻石价']
 			uni.showActionSheet({
 				itemList: levelList,
 				success: function (respond) {

+ 1 - 1
ghsApp/src/pagesClient/member/detail.vue

@@ -169,7 +169,7 @@ export default {
     changeLevel(){
 
       let that = this
-      let levelList = ['散客', '普通会员', '黄金会员', '钻石会员']
+      let levelList = ['大众会员', '标准会员', '黄金会员', '钻石会员']
       uni.showActionSheet({
         itemList: levelList,
         success: function (respond) {

+ 2 - 2
hdApp/src/admin/ghsProduct/detail.vue

@@ -27,8 +27,8 @@
     </div>
     <div class="shop-express app-color-3">
 
-      <text>普通客户 {{parseFloat(productInfo.originalInfo.skPrice)||0}}</text>
-      <text>会员 {{parseFloat(productInfo.originalInfo.price)||0}}</text>
+      <text>大众会员 {{parseFloat(productInfo.originalInfo.skPrice)||0}}</text>
+      <text>标准会员{{parseFloat(productInfo.originalInfo.price)||0}}</text>
       <text>黄金会员 {{parseFloat(productInfo.originalInfo.hjPrice)||0}}</text>
       <text>钻石会员 {{parseFloat(productInfo.originalInfo.zsPrice)||0}}</text>
 

+ 3 - 3
hdApp/src/components/app-customer-sel.vue

@@ -128,13 +128,13 @@ export default {
 			let levelName = "";
 			switch (Number(level)) {
 				case 0:
-					levelName = "普通客户";
+					levelName = "大众会员";
 					break;
 				case 1:
-					levelName = "一级会员";
+					levelName = "标准会员";
 					break;
 				case 2:
-					levelName = "二级会员";
+					levelName = "黄金会员";
 					break;
 
 				default:

+ 9 - 6
hdApp/src/pagesPurchase/ghsProduct.vue

@@ -5,7 +5,10 @@
       <view class="header_inside">
         <image :src="ghsInfo.avatar"></image>
         <view class="shop_info">
-          <view class="shop_title" @click="pageTo({url:'/pagesPurchase/level?id='+ghsInfo.id})">{{ghsInfo.name||''}}<text :class="[ghsInfo.giveLevel==0?'level-common':'level']" >{{ghsInfo.giveLevelName||'普通'}}会员</text></view>
+			<view class="shop_title" @click="pageTo({url:'/pagesPurchase/level?id='+ghsInfo.id})">
+				{{ghsInfo.name}}
+				<text class="level">{{ghsInfo.giveLevelName}}</text>
+			</view>
 
 			<view v-if="ghsInfo.hasRechargeHb && ghsInfo.hasRechargeHb ==1" class="shop_intro" @tap="recharge(ghsInfo)">
 				<text>充值送红包<text style="color:red;font-weight:700;">{{parseFloat(ghsInfo.hasRechargeHbAmount)}}</text>元
@@ -13,9 +16,9 @@
 				</text>
 			</view>
 
-          	<view v-else class="shop_intro">
-			  <text style="margin-right: 20upx;">已采购:{{ghsInfo.expendAmount || '0.00'}}</text>
-			  <text>欠款:{{ghsInfo.debtAmount || '0.00'}}</text>
+			<view v-else class="shop_intro">
+				<text style="margin-right: 20upx;">已采购:{{ghsInfo.expendAmount || '0.00'}}</text>
+				<text>欠款:{{ghsInfo.debtAmount || '0.00'}}</text>
 			</view>
 
         </view>
@@ -565,8 +568,8 @@ export default {
 		  .level-common{
             margin-left:30rpx;
             color:white;
-            background:#CCCCCC;
-            border:1px solid #CCCCCC;
+            background:#76a9f5;
+            border:1px solid #76a9f5;
             border-radius:50rpx;
             font-size:20rpx;
             padding:5rpx 10rpx;