pointapply.wxml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <form bindsubmit='applySubmit'>
  2. <view class='commonHview' wx:if='{{isDetails}}'>
  3. <view class='left_sty'>状态</view>
  4. <view class='right_sty'>
  5. <input class='input_sty' type='text' name='applyStatus' value='{{applyStatus}}' disabled='{{isDetails}}'></input>
  6. </view>
  7. </view>
  8. <view class='commonhline' style='height:3rpx;'></view>
  9. <view class='commonHview'>
  10. <view class='left_sty'>申请时间</view>
  11. <view class='right_sty'>
  12. <input class='input_sty' type='text' name='applyTime' value='{{applyTime}}' disabled='true'></input>
  13. </view>
  14. </view>
  15. <view class='commonhline' style='height:3rpx;'></view>
  16. <view class='commonHview'>
  17. <view class='left_sty'>申请人</view>
  18. <view class='right_sty'>
  19. <input class='input_sty' placeholder='请输入姓名' type='text' maxlength='10' name='applyName' disabled='{{isDetails}}' value='{{applyName}}'></input>
  20. </view>
  21. </view>
  22. <view class='commonhline' style='height:3rpx;'></view>
  23. <view class='commonHview'>
  24. <view class='left_sty'>申请人岗位</view>
  25. <view class='right_sty'>
  26. <input class='input_sty' placeholder='请输入岗位' type='text' maxlength='10' name='applyJob' disabled='{{isDetails}}' value='{{applyJob}}'></input>
  27. </view>
  28. </view>
  29. <view class='commonhline' style='height:3rpx;'></view>
  30. <view class='commonHview'>
  31. <view class='left_sty' style='width: 30%;'>申请标准</view>
  32. <view class='right_sty1' >
  33. <picker disabled='{{isDetails}}' bindchange="bindPickerChange" value="{{CotegoryArray[index].name}}" range="{{CotegoryArray}}" >
  34. <view style='overflow:hidden; text-overflow:ellipsis;white-space:nowrap;'>{{applyNorm}}</view>
  35. </picker>
  36. </view>
  37. <view><image class='nextImg'src='../../img/next.png'> </image></view>
  38. </view>
  39. <view class='commonhline' style='height:3rpx;'></view>
  40. <view class='commonHview'>
  41. <view class='left_sty' style='width: 10%;'>事由</view>
  42. <scroll-view scroll-y='true'>
  43. <view class='righttextarea' >
  44. <textarea placeholder='请输入...' name='applyReason' maxlength='200' disabled='{{isDetails}}' value='{{applyReason}}'> </textarea>
  45. </view>
  46. </scroll-view>
  47. </view>
  48. <view class='commonhline' style='height:20rpx;' ></view>
  49. <button wx:if='{{!isDetails}}' class='comBtn' formType="submit" hover-class="commonclick-btn">提交申请</button>
  50. <button wx:if='{{isDetails && invoicesStatus == 1}}'class='comBtn' hover-class="commonclick-btn" bindtap='cancelApply'>撤回</button>
  51. </form>