Files
ziqim/Yangcai365_design/manage/zview/order/retentionFinishOrderDetails.zml
T
2025-02-20 14:58:55 +08:00

59 行
3.8 KiB
Plaintext

<!--标题部分-->
<div id="title_content" class="z-hide">
<div class="z-bold">
<div class="z-float-left z-pd10 z-mg-t3">订&nbsp;单&nbsp;号:${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">反馈人&nbsp;:&nbsp;${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>>&nbsp;&nbsp;寄存</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>>&nbsp;&nbsp;退款</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>>&nbsp;&nbsp;较好</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>>&nbsp;&nbsp;一般</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>>&nbsp;&nbsp;差</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>