add.wxml 1.2 KB

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