index.wxml 1.2 KB

1234567891011121314151617181920212223242526
  1. <nav type="back" background-color="#46a9a4" title="商品管理" />
  2. <view class="page-section">
  3. <view class="add-customer" bind:tap="addRoom">
  4. <van-icon class="add-icon" name="https://file-cloud.fmode.cn/sHNeVwSaAg/20220418/qn1d5i021341.png?imageView2/1/w/200/h/200" color="#3d88ff" />
  5. <text class="text" style="color:#3d88ff;" data-url="/nova-tourism/pages/my/merchant/good/good-edit/index" bindtap="tourl">添加商品</text>
  6. </view>
  7. </view>
  8. <block wx:for="{{goodList}}" wx:key="index">
  9. <view class="good">
  10. <image class="image" src="{{item.image||'https://file-cloud.fmode.cn/EbxZUK5lBI/20250321/vdq1j1110711455.jpg'}}" mode="widthFix" />
  11. <view class="info">
  12. <view class="up">
  13. <view class="name">{{item.name||''}}</view>
  14. <view class="tag">
  15. <text wx:for="{{item.specMap.specList}}" wx:for-item="spec" wx:key="spec">{{spec}}</text>
  16. </view>
  17. </view>
  18. <view class="down">
  19. <view class="price">¥<text>{{item.price||0}}</text></view>
  20. <view class="btn"><button data-url="/nova-tourism/pages/my/merchant/good/good-edit/index?gid={{item.objectId}}" bindtap="tourl">编 辑 详 情</button></view>
  21. </view>
  22. </view>
  23. </view>
  24. </block>
  25. <view style="height: 50rpx;"></view>