| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!--标题部分-->
- <div id="title_content" class="z-hide">
- <div class="z-bold">
- <div class="z-float-left z-pd10 z-mg-t3">订 单 号:${order.getDesignId()}</div>
- <div class="z-float-left z-pd10 z-mg-t3">滞留时长:${retentDealTime}</div>
- </div>
- </div>
- <!-- 内容 -->
- <div style="margin-top: 20px;height:120px;">
- <div class="z-h40 z-mg-t-20" style="border-bottom:rgb(211, 211, 211) 1px solid;align-items: center;display: flex;height:50%;">
- <div class="z-float-left zi-mg-t18 zi-mg-l20" style="width:260px">
- <span class="z-bold">旺旺号:</span>
- ${order.getBuyerNick()}
- </div>
- <div class="z-float-left zi-mg-t18" style="width:600px;">
- <span class="z-bold">产品类型:</span>
- ${order.getOrderText()}
- </div>
- <div class="z-float-left zi-mg-t18 zi-mg-l50" style="width:160px;">
- <span class="z-bold">设计师:</span>
- ${order.getDesigner()}
- </div>
- </div>
- <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;">
- <div class="z-float-left zi-mg-t18 zi-mg-l20" style="width:360px">
- <span class="z-bold">组织名称:</span>
- ${ZmrOrgDao.getOrgName(request, order.getOrgId())}
- </div>
- <div class="z-float-left zi-mg-t18 zi-mg-l20" style="width:400px;">
- <span class="z-bold">订单金额:</span>
- ${Amounts.toYuan(order.getAmount())}
- </div>
- <div class="z-float-left zi-mg-t18 zi-mg-l50" style="width:280px">
- <span class="z-bold">店铺名称:</span>
- ${order.getShopNick()}
- </div>
- </div>
- </div>
- <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">反馈人 : ${order.getRetentDealName()}</label></div>
- <div style="height:60px;border-bottom:rgb(211, 211, 211) 1px solid;" class="z-pd-l15">
- <div style="width:40%;border-right:rgb(211, 211, 211) 1px solid;display:inline-block;height:100%;padding-top: 30px;">处理方式:
- <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>> 寄存</label>
- <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>> 退款</label>
- </div>
- <div style="width:60%;display:inline;" class="z-pd-l15">设计师跟进情况:
- <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>> 较好</label>
- <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>> 一般</label>
- <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>> 差</label>
- </div>
- </div>
- <div class="z-px18 z-pd-l20 z-pd-t20">备注</div>
- <div class="z-pd-l20 z-pd-r20 z-pd-t10">
- <textarea class="z-w100p z-h100" id="retentRemark" name="retentRemark" placeholder="">${order.getRetentRemark()}</textarea>
- </div>
- <div style="width: 100%;display: flex;height: 80px;align-items: center;justify-content: center;">
- <button class="z-button z-w100 z-h40" onclick="Z.Dialog.close()">关闭</button>
- </div>
|