businessGoodsEdit.wxml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <view class="wrapper">
  2. <view class="width-690">
  3. <form bind:submit="onSubmit">
  4. <view class="photo">
  5. <label>
  6. <text>商品主图</text>
  7. <text>(0/1)</text>
  8. </label>
  9. <view class="value">
  10. <image src=""></image>
  11. </view>
  12. </view>
  13. <view class="swiper-photo">
  14. <label>
  15. <text>商品轮播图</text>
  16. <text>(1/5)</text>
  17. </label>
  18. <view class="value">
  19. <view>
  20. </view>
  21. <image class="btn-upload" src=""></image>
  22. </view>
  23. <view class="tip">请上传尺寸为375*375像素图片</view>
  24. </view>
  25. <view class="name">
  26. <label>
  27. <text>标题</text>
  28. </label>
  29. <view class="value">
  30. <input
  31. value=""
  32. placeholder="输入视频标题"
  33. placeholder-class="placeholder"></input>
  34. </view>
  35. </view>
  36. <view class="describe">
  37. <view class="value">
  38. <textarea
  39. value=""
  40. placeholder="请输入视频简介"
  41. placeholder-class="placeholder"
  42. maxlength="{{200}}"
  43. auto-height="{{true}}"></textarea>
  44. </view>
  45. <view class="words-limit">0/200</view>
  46. </view>
  47. <view class="type">
  48. <label>
  49. <text>视频类型</text>
  50. </label>
  51. <view class="value placeholder">请选择视频类型</view>
  52. <image class="arrow" src=""></image>
  53. </view>
  54. <!-- 编 辑: edit 发 布: send-->
  55. <button
  56. class="btn-submit edit"
  57. type="primary"
  58. form-type="submit">编 辑</button>
  59. </form>
  60. </view>
  61. </view>