feat/task1-c-wallet
devil_gong 2018-11-26 16:52:25 +08:00
parent f053ee55dd
commit e158c2c928
4 changed files with 40 additions and 9 deletions

View File

@ -185,6 +185,21 @@ textarea {
}
/* 业务公共 */
.copyright {
color: #a5a5a5;
text-align: center;
padding: 20rpx 0;
}
.copyright .title {
font-size: 30rpx;
font-weight: 500;
margin-bottom: 5rpx;
}
.copyright .text {
font-size: 26rpx;
font-weight: 400;
}
.sales-price {
color: #f40;
font-weight: bold;

View File

@ -0,0 +1,6 @@
<template name="copyright">
<view class="copyright">
<view class="title">ShopXO企业级B2C开源电商系统</view>
<view class="text">技术支持 shopxo.net</view>
</view>
</template>

View File

@ -60,3 +60,7 @@
<!-- 结尾 -->
<import src="/pages/common/bottom_line.axml" />
<template is="bottom_line" data="{{status: data_bottom_line_status}}"></template>
<!-- 版权 -->
<import src="/pages/common/copyright.axml" />
<template is="copyright"></template>

View File

@ -49,18 +49,24 @@
</view>
</block>
<view class="nav-item br-b" onTap="clear_storage">
<image src="/images/user-nav-cache-icon.png" class="item-icon" mode="widthFix" />
<text class="item-name">清除缓存</text>
</view>
<view class="nav-item br-b" onTap="clear_storage">
<image src="/images/user-nav-cache-icon.png" class="item-icon" mode="widthFix" />
<text class="item-name">清除缓存</text>
</view>
<view a:if="{{customer_service_tel != null}}" class="nav-item" onTap="call_event">
<image src="/images/user-nav-customer-service-icon.png" class="item-icon" mode="widthFix" />
<text class="item-name">联系客服 </text>
<text class="item-name cr-blue">{{customer_service_tel}}</text>
</view>
<view a:if="{{customer_service_tel != null}}" class="nav-item" onTap="call_event">
<image src="/images/user-nav-customer-service-icon.png" class="item-icon" mode="widthFix" />
<text class="item-name">联系客服 </text>
<text class="item-name cr-blue">{{customer_service_tel}}</text>
</view>
</view>
<!-- 用户中心公告 -->
<view a:if="{{common_user_center_notice != null}}" class="user-notice">
<view class="tips">{{common_user_center_notice}}</view>
</view>
<!-- 版权 -->
<import src="/pages/common/copyright.axml" />
<template is="copyright">
</template>