Commit 4fe8f57e21d263cab0dde081fd359d9724b839a3

Authored by yvan.ni
1 parent bd687a64

等级卡的排版的优化

pages/user/plus/plus.wxml
... ... @@ -144,7 +144,7 @@
144 144 <view class="flex ai_and enter_SalesClerk" wx:if="{{is_salesman}}">
145 145 <image class="SalesClerk_image" src="{{url}}/miniapp/images/plus/Sales_Clerk.png"></image>
146 146 <view class="SalesClerk">
147   - <input bindinput="b_input" bindconfirm="buy_card" class="fs30" focus="{{focus}}" data-name="inp_serviceman" value="{{inp_serviceman}}" placeholder="请输入营业员" maxlength="30" />
  147 + <input bindinput="b_input" bindconfirm="buy_card" class="fs30" data-name="inp_serviceman" value="{{inp_serviceman}}" placeholder="请输入营业员" maxlength="30" />
148 148 </view>
149 149 </view>
150 150 <!-- 确认购买 -->
... ...
pages/user/plus/plus.wxss
... ... @@ -430,4 +430,18 @@ swiper-item{
430 430 border-radius: 50%;
431 431 width: 23rpx !important;
432 432 height: 23rpx !important;
  433 +}
  434 +
  435 +.m_checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  436 + background: #c4192e;
  437 +}
  438 +.m_checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  439 + width: 20rpx; height: 22rpx;
  440 + line-height: 23rpx;
  441 + text-align: center;
  442 + font-size: 20rpx;
  443 + color: #fff;
  444 + background: transparent;
  445 + transform: translate(-50%, -50%) scale(1);
  446 + -webkit-transform: translate(-50%, -50%) scale(1);
433 447 }
434 448 \ No newline at end of file
... ...