Files
陈誉午 994b267f5c feat: 电子药箱小程序 - 4Tab药品管理
- 电子药箱: 药品库存管理 + 手动录入 + 今日用药打卡
- 药品百科: 搜索 + 分类筛选 + 20种药品静态数据
- 惠教中心: 4条药品使用指南课程
- 我的: 家庭成员信息管理
- 自定义TabBar + navigation-bar组件
- SVG药品分类插图
2026-07-29 11:20:52 +08:00

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>