Skip to content

Commit

Permalink
瘦身代码包
Browse files Browse the repository at this point in the history
  • Loading branch information
gooking committed Feb 24, 2021
1 parent 34ab4e7 commit 056add3
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
version: '10.5.0',
note: '分类页面定位bug,分销团队页面优化,购物车红点位置bug', // 这个为版本描述,无需修改
version: '10.5.1',
note: '瘦身代码包', // 这个为版本描述,无需修改
subDomain: 'tz', // 此处改成你自己的专属域名。什么是专属域名?请看教程 https://www.it120.cc/help/qr6l4m.html
sdkAppID: 1400450467, // 腾讯实时音视频应用编号,请看教程 https://www.it120.cc/help/nxoqsl.html
}
Binary file removed images/add-addr.png
Binary file not shown.
Binary file removed images/arrow-right.png
Binary file not shown.
Binary file removed images/del.png
Binary file not shown.
Binary file modified images/face.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pages/order-details/index.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</block>
</view>
<view class="arrow-right">
<image class="arrow" src="/images/arrow-right.png"></image>
<van-icon name="arrow" />
</view>
</view>
<view wx:else class="wuliu-box">
Expand Down
2 changes: 1 addition & 1 deletion pages/order-details/scan-result.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</block>
</view>
<view class="arrow-right">
<image class="arrow" src="/images/arrow-right.png"></image>
<van-icon name="arrow" />
</view>
</view>
<view wx:else class="wuliu-box">
Expand Down
4 changes: 3 additions & 1 deletion pages/template-cart/template-cart.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@
<view class="delete-btn" data-key="{{item.key}}" catchtap="delItem">
删除
</view>
<image class="del-icon" src="/images/del.png" data-key="{{item.key}}" catchtap="delItem"></image>
<view class="del-icon">
<van-icon name="delete-o" size="32rpx" color="#e64340" data-key="{{item.key}}" catchtap="delItem" />
</view>
</view>
</view>
</view>
Expand Down
4 changes: 2 additions & 2 deletions pages/template-cart/template-cart.wxss
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@

.del-icon {
position: absolute;
right: 32rpx;
top: 32rpx;
right: 16rpx;
top: 48rpx;
width: 50rpx;
height: 50rpx;
}
Expand Down
6 changes: 2 additions & 4 deletions pages/to-pay-order/index.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,9 @@
</picker>
<van-cell wx:if="{{peisongType == 'zq' && shopIndex != -1}}" title="电话" value="{{shops[shopIndex].linkPhone}}" is-link bind:click="callMobile" />
<van-cell wx:if="{{peisongType == 'zq' && shopIndex != -1}}" title="地址" title-width="64rpx" value="{{shops[shopIndex].address}}" is-link bind:click="goMap" />

<view class="address-box" wx:if="{{peisongType == 'kd' && isNeedLogistics > 0}}">
<view class="add-address" hidden="{{curAddressData}}" bindtap="addAddress">
<image src="/images/add-addr.png"></image>
<view>新增收货地址</view>
</view>
<van-cell wx:if="{{!curAddressData}}" icon="add-o" title="新增收货地址" is-link bind:click="addAddress" />
<view class="show-address" hidden="{{!curAddressData}}" bindtap="selectAddress">
<view class="l">
<view class="name-tel">{{curAddressData.linkMan}} {{curAddressData.mobile}}</view>
Expand Down

0 comments on commit 056add3

Please sign in to comment.