Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Litemall
Commits
13f36197
Commit
13f36197
authored
Aug 29, 2018
by
usgeek
Browse files
购物车样式修复
parent
2a847b27
Changes
3
Hide whitespace changes
Inline
Side-by-side
litemall-wx/config/api.js
View file @
13f36197
// 以下是业务服务器API地址
// 以下是业务服务器API地址
// 本机开发时使用
// 本机开发时使用
var
WxApiRoot
=
'
http://localhost:808
0
/wx/
'
;
var
WxApiRoot
=
'
http://localhost:808
2
/wx/
'
;
// 局域网测试使用
// 局域网测试使用
// var WxApiRoot = 'http://192.168.0.101:8080/wx/';
// var WxApiRoot = 'http://192.168.0.101:8080/wx/';
// 云平台部署时使用
// 云平台部署时使用
// var WxApiRoot = 'http://122.152.206.172:8080/wx/';
// var WxApiRoot = 'http://122.152.206.172:8080/wx/';
// 云平台上线时使用
// 云平台上线时使用
//
var WxApiRoot = 'https://www.menethil.com.cn/wx/';
//var WxApiRoot = 'https://www.menethil.com.cn/wx/';
module
.
exports
=
{
module
.
exports
=
{
IndexUrl
:
WxApiRoot
+
'
home/index
'
,
//首页数据接口
IndexUrl
:
WxApiRoot
+
'
home/index
'
,
//首页数据接口
...
...
litemall-wx/pages/cart/cart.wxml
View file @
13f36197
...
@@ -50,9 +50,12 @@
...
@@ -50,9 +50,12 @@
<view class="cart-bottom">
<view class="cart-bottom">
<view class="checkbox {{checkedAllStatus ? 'checked' : ''}}" bindtap="checkedAll">全选({{cartTotal.checkedGoodsCount}})</view>
<view class="checkbox {{checkedAllStatus ? 'checked' : ''}}" bindtap="checkedAll">全选({{cartTotal.checkedGoodsCount}})</view>
<view class="total">{{!isEditCart ? '¥'+cartTotal.checkedGoodsAmount : ''}}</view>
<view class="total">{{!isEditCart ? '¥'+cartTotal.checkedGoodsAmount : ''}}</view>
<view class="delete" bindtap="editCart">{{!isEditCart ? '编辑' : '完成'}}</view>
<view class='action_btn_area'>
<view class="checkout" bindtap="deleteCart" wx:if="{{isEditCart}}">删除所选</view>
<view class="{{!isEditCart ? 'edit' : 'sure'}}" bindtap="editCart">{{!isEditCart ? '编辑' : '完成'}}</view>
<view class="checkout" bindtap="checkoutOrder" wx:if="{{!isEditCart}}">下单</view>
<view class="delete" bindtap="deleteCart" wx:if="{{isEditCart}}">删除({{cartTotal.checkedGoodsCount}})</view>
<view class="checkout" bindtap="checkoutOrder" wx:if="{{!isEditCart}}">下单</view>
<!-- </view> -->
</view>
</view>
</view>
</view>
</view>
</view>
</view>
...
...
litemall-wx/pages/ucenter/index/index.wxss
View file @
13f36197
...
@@ -13,7 +13,7 @@ page {
...
@@ -13,7 +13,7 @@ page {
.profile-info {
.profile-info {
background-color: #ab956d;
background-color: #ab956d;
color: #f
ff
;
color: #f
4f4f4
;
display: flex;
display: flex;
align-items: center;
align-items: center;
padding: 30rpx;
padding: 30rpx;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment