add.wxml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <view class="top">
  2. <image src="/images/返回.png" mode="" class="return" bindtap="return" />
  3. <text class="top-title">商品管理</text>
  4. </view>
  5. <view class="main">
  6. <view class="store-pic">
  7. <text class="store-pic-con">商品图片</text>
  8. <view class="store-pic-right">
  9. <image src="/images/上传图片.svg" mode="" class="store-pic-right-img" />
  10. <!-- <image src="/images/上传图片.svg" mode="" class="store-pic-right-img" /> -->
  11. <text class="store-pic-right-go">上传照片</text>
  12. </view>
  13. </view>
  14. <view class="store-name">
  15. <text class="store-pic-con">商品名称</text>
  16. <view class="line"></view>
  17. <view class="search">
  18. <input type="text" placeholder="请输入商品名称(1-10字符)" class="search-text" />
  19. </view>
  20. <view class="store-price">
  21. <text class="store-pri-con">商品价格</text>
  22. <view class="search">
  23. <input type="number" placeholder="请输入商品名称(1-10字符)" class="search-pri-text" />
  24. </view>
  25. </view>
  26. </view>
  27. <view class="store-content">
  28. <text class="store-pri-content">商品内容</text>
  29. <input type="text" class="theme-content" />
  30. </view>
  31. <view class="btn">
  32. <van-button round size="normal" color="#A9A9A9">保存</van-button>
  33. <van-button round size="normal" color="#FF8C00">提交</van-button>
  34. </view>
  35. </view>