error.wxml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
  2. <view slot="info" class="main" style="height:{{infoHeight}}px;">
  3. <view class="one">
  4. <form bindsubmit="onSubmit" catchreset="onReset">
  5. <view class="content" style="display: none;">
  6. <view class="left">
  7. <text class="icon iconfont icon-shanghuguanli"></text>
  8. </view>
  9. <view class="right">
  10. <input name="merchant_id" value="{{form.merchant_id}}" disabled></input>
  11. </view>
  12. </view>
  13. <view class="content">
  14. <view class="left">
  15. <text class="icon iconfont icon-shanghuguanli"></text>
  16. </view>
  17. <view class="right">
  18. <input name="merchant_name" value="{{form.merchant_name}}" disabled></input>
  19. </view>
  20. </view>
  21. <view class="content" style="display: none;">
  22. <view class="left">
  23. <text class="icon iconfont icon-xingming"></text>
  24. </view>
  25. <view class="right">
  26. <input name="user_id" value="{{form.user_id}}" disabled></input>
  27. </view>
  28. </view>
  29. <view class="content">
  30. <view class="left">
  31. <text class="icon iconfont icon-xingming"></text>
  32. </view>
  33. <view class="right">
  34. <picker class="picker" bindchange="userChange" name="user_name" value="{{form.user_name}}" range="{{userList}}" range-key="name">
  35. <view>{{form.user_name||'选择办案人员'}}</view>
  36. </picker>
  37. </view>
  38. </view>
  39. <view class="content">
  40. <view class="left">
  41. <text class="icon iconfont icon-neirong2"></text>
  42. </view>
  43. <view class="right">
  44. <input name="content" value="{{form.content}}" placeholder='请输入纠错内容' placeholder-class="placeholder"></input>
  45. </view>
  46. </view>
  47. <view class="save">
  48. <button type="warn" size="mini" formType="reset">取消保存</button>
  49. <button type="primary" size="mini" formType="submit">提交保存</button>
  50. </view>
  51. </form>
  52. </view>
  53. </view>
  54. </mobile-main>