businessVideoEdit.wxml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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="video">
  14. <label>
  15. <text>上传视频</text>
  16. </label>
  17. <view class="value">
  18. <image class="btn-upload" src=""></image>
  19. </view>
  20. <view class="tip">请上传尺寸为375*375像素图片</view>
  21. </view>
  22. <view class="name">
  23. <label>
  24. <text>标题</text>
  25. </label>
  26. <view class="value">
  27. <input
  28. value=""
  29. placeholder="输入视频标题"
  30. placeholder-class="placeholder"></input>
  31. </view>
  32. </view>
  33. <view class="describe">
  34. <view class="value">
  35. <textarea
  36. value=""
  37. placeholder="请输入视频简介"
  38. placeholder-class="placeholder"
  39. maxlength="{{200}}"
  40. auto-height="{{true}}"></textarea>
  41. </view>
  42. <view class="words-limit">0/200</view>
  43. </view>
  44. <view class="type">
  45. <label>
  46. <text>视频类型</text>
  47. </label>
  48. <view class="value placeholder">请选择视频类型</view>
  49. <image class="arrow" src=""></image>
  50. </view>
  51. <!-- 编 辑: edit 发 布: send-->
  52. <button
  53. class="btn-submit edit"
  54. type="primary"
  55. form-type="submit">编 辑</button>
  56. </form>
  57. </view>
  58. </view>