- 电子药箱: 药品库存管理 + 手动录入 + 今日用药打卡 - 药品百科: 搜索 + 分类筛选 + 20种药品静态数据 - 惠教中心: 4条药品使用指南课程 - 我的: 家庭成员信息管理 - 自定义TabBar + navigation-bar组件 - SVG药品分类插图
12 lines
545 B
Plaintext
12 lines
545 B
Plaintext
<!--components/good-item/good-item.wxml-->
|
|
<view class="good-container" bindtap="handleClick" data-id="{{item.spuId}}">
|
|
<image class="image" src="{{item.picUrl}}" mode="aspectFill"></image>
|
|
<view class="content">
|
|
<view class="title">{{item.name}}</view>
|
|
<view class="desc">{{item.introduction}}</view>
|
|
<view class="count">
|
|
<view class="price"><span class="money">{{item.price?'¥'+item.price/100:'暂无报价'}}</span></view>
|
|
<view class="quantity">已售 {{item.salesCount}} +</view>
|
|
</view>
|
|
</view>
|
|
</view> |