支付宝小程序

feat/task1-c-wallet
devil_gong 2018-11-15 14:55:42 +08:00
parent 74ed1e8a81
commit 8a0fd76ad0
3 changed files with 8 additions and 8 deletions

View File

@ -27,8 +27,8 @@ App({
// 页面标题
common_pages_title: {
"goods_search": "网上选人",
"goods_detail": "人员详情",
"goods_search": "商品搜索",
"goods_detail": "商品详情",
"goods_attribute": "属性",
"user_address": "我的地址",
"user_address_save_add": "新增地址",

View File

@ -29,9 +29,9 @@
<view class="goods-price">
<text class="sales-price">¥{{goods.price}}</text>
<text a:if="{{goods.original_price > 0}}" class="original-price">¥{{goods.original_price}}</text>
<!-- <view class="fr cr-ccc">
<view class="fr cr-ccc">
<text>销量 {{goods.sales_count}}</text>
</view> -->
</view>
</view>
</view>
@ -46,7 +46,7 @@
<view a:if="{{goods_content_app.length > 0}}" class="goods-detail spacing">
<view class="spacing-nav-title">
<text class="line"></text>
<text class="text-wrapper">简历</text>
<text class="text-wrapper">详情</text>
</view>
<view a:for="{{goods_content_app}}" class="goods-detail-app bg-white">
<image a:if="{{(item.images || null) != null}}" onTap="goods_detail_images_view_event" data-value="{{item.images}}" class="wh-auto" src="{{item.images}}" mode="widthFix" />

View File

@ -16,12 +16,12 @@
<view a:if="{{category_list.length > 0}}">
<view class="spacing-nav-title">
<text class="line"></text>
<text class="text-wrapper">网上选人</text>
<text class="text-wrapper">商品分类</text>
</view>
<view class="category-list">
<view class="items bg-white" a:for="{{category_list}}">
<view class="items bg-white" a:for="{{category_list}}" a:if="{{item.is_home_recommended == 1}}">
<navigator url="/pages/goods-search/goods-search?category_id={{item.id}}" hover-class="none">
<image class="wh-auto" src="{{item.icon}}" mode="aspectFit" />
<image class="wh-auto" src="{{item.big_images}}" mode="aspectFit" />
<view class="title tc single-text">{{item.name}}</view>
</navigator>
</view>