| 1234567891011121314151617181920212223242526272829 |
- <script></script>
- <#-- 列表 -->
- <table class="z-table z-bordered z-h40-tr z-pd5 z-bg-white z-text-center">
- <tr bgcolor="${zmr_thead_bgcolor}">
- <td width="140">订单号</td>
- <td width="130">旺旺号</td>
- <td width="80">订单金额</td>
- <td width="80">退回时间</td>
- <td width="250">产品描述</td>
- <td width="150">退回原因</td>
- </tr>
- ${zhiqim_manager_tr_no_record(pageResult, 8, "没有历史退回记录")}
- <#for item : models>
- <tr class="z-pointer ${zhiqim_manager_tr_onmouse()} ${zhiqim_manager_tr_click_radio()}>
- <td>${item.getDesignId()}</td>
- <td>${item.getBuyerNick()}</td>
- <td>${Amounts.toYuanMustRadix(item.getAmount())}</td>
- <td>${Sqls.toDateTimeString(item.getBackTime())}</td>
- <td align="left">${item.getOrderText()}</td>
- <td align="left">${item.getCheckBackReason()}</td>
- </tr>
- </#for>
- </table>
- <div class="z-h60">
- </div>
- <div class="z-fixed z-w100p z-bg-gray z-text-center z-pd-t10 z-h60" style="bottom:0;left:0">
- <button type="button" class="z-button z-large z-mg-l10 z-w100" onclick="parent.Z.Dialog.close();">关闭</button>
- </div>
|