Commit e1c793696fde0c6a2fafe1b46bc6bcfba45b31ab

Authored by season
1 parent 89aee6d3

删除没有的界面

app.json
... ... @@ -16,7 +16,6 @@
16 16 "pages/user/visit_log/visit_log",
17 17 "pages/user/address_list/address_list",
18 18 "pages/user/userinfo/userinfo",
19   - "pages/user/account/account",
20 19 "pages/user/return_goods_list/return_goods_list",
21 20 "pages/user/userinfo_edit/userinfo_edit",
22 21 "pages/user/collect_list/collect_list",
... ...
pages/user/account/account.js deleted
1   -var e = getApp();
2   -
3   -Page({
4   - data: {
5   - url: e.globalData.setting.url,
6   - resourceUrl: e.globalData.setting.resourceUrl,
7   - iurl: e.globalData.setting.imghost,
8   - userMoney: 0
9   - },
10   - onShow: function() {
11   - var t = this;
12   - e.getUserInfo(function(e) {
13   - t.setData({
14   - userMoney: e.user_money
15   - });
16   - });
17   - }
18   -});
19 0 \ No newline at end of file
pages/user/account/account.json deleted
1   -{
2   - "navigationBarTitleText": "我的账号",
3   - "navigationBarBackgroundColor": "#E73741",
4   - "navigationBarTextStyle": "white",
5   - "enablePullDownRefresh": false
6   -}
7 0 \ No newline at end of file
pages/user/account/account.wxml deleted
1   -<view class="container">
2   - <view class="cover" style="background:url('{{resourceUrl}}/static/images/zjgl.jpg') no-repeat 0 0;background-size:cover">
3   - <view class="detail">
4   - <view class="price-text">可用余额</view>
5   - <view>{{userMoney}}</view>
6   - </view>
7   - <view class="operate">
8   - <navigator url="/pages/user/recharge/recharge?money={{userMoney}}">
9   - <view class="op-item">账户充值</view>
10   - </navigator>
11   - <navigator url="/pages/user/withdrawals/withdrawals?money={{userMoney}}">
12   - <view class="op-item">申请提现</view>
13   - </navigator>
14   - </view>
15   - </view>
16   - <view class="list">
17   - <navigator url="/pages/user/account_list/account_list">
18   - <view class="item">余额明细
19   - <image class="wh100 arrow" src="{{iurl}}/miniapp/images/icon-arrowdown.png"></image>
20   - </view>
21   - </navigator>
22   - <navigator url="/pages/user/points_list/points_list">
23   - <view class="item">积分明细
24   - <image class="wh100 arrow" src="{{iurl}}/miniapp/images/icon-arrowdown.png"></image>
25   - </view>
26   - </navigator>
27   - <navigator url="/pages/user/recharge_list/recharge_list">
28   - <view class="item">充值记录
29   - <image class="wh100 arrow" src="{{iurl}}/miniapp/images/icon-arrowdown.png"></image>
30   - </view>
31   - </navigator>
32   - <navigator url="/pages/user/withdrawals_list/withdrawals_list">
33   - <view class="item">提现记录
34   - <image class="wh100 arrow" src="{{iurl}}/miniapp/images/icon-arrowdown.png"></image>
35   - </view>
36   - </navigator>
37   - </view>
38   -</view>
pages/user/account/account.wxss deleted
1   -.cover {
2   - background-color: red;
3   - color: white;
4   - height: 540rpx;
5   - text-align: center;
6   - position: relative;
7   -}
8   -
9   -.detail {
10   - font-size: 36rpx;
11   - margin-top: 150rpx;
12   - line-height: 60rpx;
13   -}
14   -
15   -.price-text {
16   - font-size: 30rpx;
17   -}
18   -
19   -.operate {
20   - position: absolute;
21   - bottom: 0;
22   - width: 100%;
23   -}
24   -
25   -.op-item {
26   - width: 50%;
27   - float: left;
28   - padding-bottom: 25rpx;
29   - font-size: 28rpx;
30   -}
31   -
32   -.list {
33   - margin-top: 20rpx;
34   -}
35   -
36   -.item {
37   - font-size: 32rpx;
38   - background-color: white;
39   - padding: 25rpx 35rpx;
40   - border-bottom: 1rpx;
41   -}
42   -
43   -.arrow {
44   - margin-top: 5rpx;
45   - width: 25rpx;
46   - height: 28rpx;
47   - float: right;
48   -}
49 0 \ No newline at end of file