shish преди 10 месеца
родител
ревизия
8c54ef3ade
променени са 1 файла, в които са добавени 22 реда и са изтрити 22 реда
  1. 22 22
      ghsApp/src/pagesClient/member/detail.vue

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

@@ -82,7 +82,7 @@
                     <text style="color: #333;">{{userInfo.mobile}}</text>
                   </view>
                 </view>
-                <i class="iconfont iconbianji" style="font-size: 42upx; color: #ccc; margin-top: 8upx;"></i>
+                <i class="iconfont iconbianji" style="font-size: 42upx; color: #7b7878; margin-top: 8upx;"></i>
               </view>
               
               <!-- 地址信息 -->
@@ -101,18 +101,18 @@
             <!-- 操作按钮区域 -->
             <view class="action-buttons" style="display: flex; gap: 32upx; padding-top: 24upx; border-top: 1upx solid #f0f0f0;">
               <view class="action-item" style="display: flex; flex-direction: column; align-items: center; flex: 1;" @click="callUp">
-                <view class="icon-wrapper" style="width: 88upx; height: 88upx; border-radius: 50%; background: linear-gradient(135deg, #28a745, #20c997); display: flex; align-items: center; justify-content: center; margin-bottom: 12upx; box-shadow: 0 4upx 12upx rgba(40, 167, 69, 0.3);">
-                  <i class="iconfont icondianhua1" style="font-size: 40upx; color: #fff;"></i>
+                <view class="icon-wrapper" style="width: 72upx; height: 72upx; border-radius: 50%; background: linear-gradient(135deg, #28a745, #20c997); display: flex; align-items: center; justify-content: center; margin-bottom: 10upx; box-shadow: 0 3upx 10upx rgba(40, 167, 69, 0.3);">
+                  <i class="iconfont icondianhua1" style="font-size: 36upx; color: #fff;"></i>
                 </view>
-                <text style="font-size: 24upx; color: #666;">拨打电话</text>
+                <text style="font-size: 22upx; color: #666;">拨打电话</text>
               </view>
               
               <view class="action-item" style="display: flex; flex-direction: column; align-items: center; flex: 1;" 
                     @click.stop="navigate(userInfo.lat,userInfo.long,userInfo.address)">
-                <view class="icon-wrapper" style="width: 88upx; height: 88upx; border-radius: 50%; background: linear-gradient(135deg, #3385ff, #0056b3); display: flex; align-items: center; justify-content: center; margin-bottom: 12upx; box-shadow: 0 4upx 12upx rgba(51, 133, 255, 0.3);">
-                  <i class="iconfont icondianhua" style="font-size: 40upx; color: #fff;"></i>
+                <view class="icon-wrapper" style="width: 72upx; height: 72upx; border-radius: 50%; background: linear-gradient(135deg, #3385ff, #0056b3); display: flex; align-items: center; justify-content: center; margin-bottom: 10upx; box-shadow: 0 3upx 10upx rgba(51, 133, 255, 0.3);">
+                  <i class="iconfont icondianhua" style="font-size: 36upx; color: #fff;"></i>
                 </view>
-                <text style="font-size: 24upx; color: #666;">导航到达</text>
+                <text style="font-size: 22upx; color: #666;">导航到达</text>
               </view>
             </view>
           </view>
@@ -138,6 +138,21 @@
               <div class="tui-title">结账记录</div>
             </tui-list-cell>
 
+            <tui-list-cell class="line-cell" :hover="false">
+              <div class="tui-title">线上自助挂账</div>
+              <div class="switch_bx">
+                <text v-if="form.debt == 0">禁止</text>
+                <text v-else>允许</text>
+                <switch :checked="form.debt == 0 ? false : true" @change="remindChangeFn" style="transform: scale(0.8,0.8)" />
+              </div>
+            </tui-list-cell>
+
+						<tui-list-cell class="line-cell" :hover="false">
+              <div class="tui-title">授信额度</div>
+              <input v-model="debtLimit" @click="debtLimit=''" placeholder-class="phcolor" class="tui-input" confirm-type="go" placeholder="请填写" type="digit" style="width:47%;border:1upx solid #ddd;margin-right:12upx;height:70upx;text-align:center;" />
+              <button class="admin-button-com blue middle" @tap="amendMoney">确定</button>
+						</tui-list-cell>
+
             <tui-list-cell class="line-cell" :hover="false" :arrow="true" @click="pageTo({url:'/admin/order/itemOrder?customId='+userInfo.id})">
               <div class="tui-title">下单记录</div>
               <view style="font-size:24upx;" v-if="userInfo.recentExpend!='0000-00-00 00:00:00'">最近下单 {{ userInfo.recentExpend ? userInfo.recentExpend.substr(5,11) : '' }}</view>
@@ -155,21 +170,6 @@
               <div class="tui-title">充值记录</div>
             </tui-list-cell>
 
-            <tui-list-cell class="line-cell" :hover="false">
-              <div class="tui-title">线上自助挂账</div>
-              <div class="switch_bx">
-                <text v-if="form.debt == 0">禁止</text>
-                <text v-else>允许</text>
-                <switch :checked="form.debt == 0 ? false : true" @change="remindChangeFn" style="transform: scale(0.8,0.8)" />
-              </div>
-            </tui-list-cell>
-
-						<tui-list-cell class="line-cell" :hover="false">
-              <div class="tui-title">授信额度</div>
-              <input v-model="debtLimit" @click="debtLimit=''" placeholder-class="phcolor" class="tui-input" confirm-type="go" placeholder="请填写" type="digit" style="width:47%;border:1upx solid #ddd;margin-right:12upx;height:70upx;text-align:center;" />
-              <button class="admin-button-com blue middle" @tap="amendMoney">确定</button>
-						</tui-list-cell>
-
             <tui-list-cell class="line-cell" :hover="false">
               <div class="tui-title">享受价格</div>
               <button class="admin-button-com middle" :class="[form.level == 0 ? 'blue' : 'default']" @click="changeLevelBtn(0)">零售价</button>