retentionFinishOrderDetails.zml 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!--标题部分-->
  2. <div id="title_content" class="z-hide">
  3. <div class="z-bold">
  4. <div class="z-float-left z-pd10 z-mg-t3">订&nbsp;单&nbsp;号:${order.getDesignId()}</div>
  5. <div class="z-float-left z-pd10 z-mg-t3">滞留时长:${retentDealTime}</div>
  6. </div>
  7. </div>
  8. <!-- 内容 -->
  9. <div style="margin-top: 20px;height:120px;">
  10. <div class="z-h40 z-mg-t-20" style="border-bottom:rgb(211, 211, 211) 1px solid;align-items: center;display: flex;height:50%;">
  11. <div class="z-float-left zi-mg-t18 zi-mg-l20" style="width:260px">
  12. <span class="z-bold">旺旺号:</span>
  13. ${order.getBuyerNick()}
  14. </div>
  15. <div class="z-float-left zi-mg-t18" style="width:600px;">
  16. <span class="z-bold">产品类型:</span>
  17. ${order.getOrderText()}
  18. </div>
  19. <div class="z-float-left zi-mg-t18 zi-mg-l50" style="width:160px;">
  20. <span class="z-bold">设计师:</span>
  21. ${order.getDesigner()}
  22. </div>
  23. </div>
  24. <div class="z-h40 z-mg-t-20" style="border-bottom:rgb(211, 211, 211) 1px solid;align-items: center;display: flex;height:50%;margin-top:1px;">
  25. <div class="z-float-left zi-mg-t18 zi-mg-l20" style="width:360px">
  26. <span class="z-bold">组织名称:</span>
  27. ${ZmrOrgDao.getOrgName(request, order.getOrgId())}
  28. </div>
  29. <div class="z-float-left zi-mg-t18 zi-mg-l20" style="width:400px;">
  30. <span class="z-bold">订单金额:</span>
  31. ${Amounts.toYuan(order.getAmount())}
  32. </div>
  33. <div class="z-float-left zi-mg-t18 zi-mg-l50" style="width:280px">
  34. <span class="z-bold">店铺名称:</span>
  35. ${order.getShopNick()}
  36. </div>
  37. </div>
  38. </div>
  39. <div style="height:35px;border-bottom:rgb(211, 211, 211) 1px solid;padding-left:20px;display:flex;align-items: center;background-color: rgb(245, 245, 245);">滞留单处理结果反馈<label style="margin-left:130px">反馈人&nbsp;:&nbsp;${order.getRetentDealName()}</label></div>
  40. <div style="height:60px;border-bottom:rgb(211, 211, 211) 1px solid;" class="z-pd-l15">
  41. <div style="width:40%;border-right:rgb(211, 211, 211) 1px solid;display:inline-block;height:100%;padding-top: 30px;">处理方式:
  42. <label class="z-pd-l20"><input name="retentDealWay" type="radio" data-role="z-radio" data-class="${zmr_color_class}" value="0" <#if order.getRetentDealWay()==0>checked</#if>>&nbsp;&nbsp;寄存</label>
  43. <label class="z-pd-l20"><input name="retentDealWay" type="radio" data-role="z-radio" data-class="${zmr_color_class}" value="1" <#if order.getRetentDealWay()==1>checked</#if>>&nbsp;&nbsp;退款</label>
  44. </div>
  45. <div style="width:60%;display:inline;" class="z-pd-l15">设计师跟进情况:
  46. <label class="z-pd-l20"><input name="retentFollowFlag" type="radio" data-role="z-radio" data-class="${zmr_color_class}" value="0" <#if order.getRetentFollowFlag()==0>checked</#if>>&nbsp;&nbsp;较好</label>
  47. <label class="z-pd-l20"><input name="retentFollowFlag" type="radio" data-role="z-radio" data-class="${zmr_color_class}" value="1" <#if order.getRetentFollowFlag()==1>checked</#if>>&nbsp;&nbsp;一般</label>
  48. <label class="z-pd-l20"><input name="retentFollowFlag" type="radio" data-role="z-radio" data-class="${zmr_color_class}" value="2" <#if order.getRetentFollowFlag()==2>checked</#if>>&nbsp;&nbsp;差</label>
  49. </div>
  50. </div>
  51. <div class="z-px18 z-pd-l20 z-pd-t20">备注</div>
  52. <div class="z-pd-l20 z-pd-r20 z-pd-t10">
  53. <textarea class="z-w100p z-h100" id="retentRemark" name="retentRemark" placeholder="">${order.getRetentRemark()}</textarea>
  54. </div>
  55. <div style="width: 100%;display: flex;height: 80px;align-items: center;justify-content: center;">
  56. <button class="z-button z-w100 z-h40" onclick="Z.Dialog.close()">关闭</button>
  57. </div>