2019-09-06 23:53:10 +08:00

21 lines
768 B
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<table class='wst-form' style='margin-top:10px;width:90%'>
<tr>
<td colspan='2' style='padding-left:70px;'>请选择您拒收订单的原因,以便我们能更好的为您服务。</td>
</tr>
<tr>
<th width='120'>取消原因:</th>
<td>
<select id='reason' onchange='javascript:changeRejectType(this.value)'>
{volist name=":WSTDatas('ORDER_REJECT')" id="vo"}
<option value='{$vo["dataVal"]}'>{$vo["dataName"]}</option>
{/volist}
</select>
</td>
</tr>
<tr id='rejectTr' style='display:none'>
<th width='120'>原因<font color='red'>*</font></th>
<td>
<textarea id='content' style='width:99%;height:80px;' maxLength='200'></textarea>
</td>
</tr>
</table>