|
@@ -38,8 +38,28 @@
|
|
|
<div class="text-c">
|
|
|
<form action="${path}/admin/postage/postage_list" method="post">
|
|
|
<input type="text" class="my-input" style="width:90px;margin-right: 0px;" value="${postage.salesOrderId!}" placeholder="百胜订单号" id="salesOrderId" name="salesOrderId">
|
|
|
- <input type="text" class="my-input" style="width:90px;margin-right: 0px;" value="${postage.postageClientName!}" placeholder="请输入姓名" id="postageClientName" name="postageClientName">
|
|
|
+ <input type="text" class="my-input" style="width:90px;margin-right: 0px;" value="${postage.postageClientName!}" placeholder="请输入客户姓名" id="postageClientName" name="postageClientName">
|
|
|
<input type="text" class="my-input" style="width:90px;margin-right: 0px;" value="${postage.postageClientTel!}" placeholder="请输入电话号码" id="postageClientTel" name="postageClientTel">
|
|
|
+
|
|
|
+ <select class="my-select" name="postageCustomerStatus" id="postageCustomerStatus" style="height: 36px;width: 100px;margin: 0px;padding: 6px 10px 6px 15px;">
|
|
|
+ <option value="">客服确认</option>
|
|
|
+ <option value="1" <#if postage.postageCustomerStatus??><#if postage.postageCustomerStatus == 1 >selected="selected"</#if></#if>>待确认</option>
|
|
|
+ <option value="2" <#if postage.postageCustomerStatus??><#if postage.postageCustomerStatus == 2 >selected="selected"</#if></#if>>申请中</option>
|
|
|
+ </select>
|
|
|
+ <select class="my-select" name="postageManagerStatus" id="postageManagerStatus" style="height: 36px;width: 100px;margin: 0px;padding: 6px 10px 6px 15px;">
|
|
|
+ <option value="">客服审核</option>
|
|
|
+ <option value="1" <#if postage.postageManagerStatus??><#if postage.postageManagerStatus == 1 >selected="selected"</#if></#if>>待审核</option>
|
|
|
+ <option value="2" <#if postage.postageManagerStatus??><#if postage.postageManagerStatus == 2 >selected="selected"</#if></#if>>通过</option>
|
|
|
+ <option value="3" <#if postage.postageManagerStatus??><#if postage.postageManagerStatus == 3 >selected="selected"</#if></#if>>驳回</option>
|
|
|
+ </select>
|
|
|
+ <select class="my-select" name="postageFinanceStatus" id="postageFinanceStatus" style="height: 36px;width: 100px;margin: 0px;padding: 6px 10px 6px 15px;">
|
|
|
+ <option value="">财务审核</option>
|
|
|
+ <option value="1" <#if postage.postageFinanceStatus??><#if postage.postageFinanceStatus == 1 >selected="selected"</#if></#if>>待审核</option>
|
|
|
+ <option value="2" <#if postage.postageFinanceStatus??><#if postage.postageFinanceStatus == 2 >selected="selected"</#if></#if>>通过(待转账)</option>
|
|
|
+ <option value="3" <#if postage.postageFinanceStatus??><#if postage.postageFinanceStatus == 3 >selected="selected"</#if></#if>>驳回</option>
|
|
|
+ <option value="4" <#if postage.postageFinanceStatus??><#if postage.postageFinanceStatus == 4 >selected="selected"</#if></#if>>已转账</option>
|
|
|
+ </select>
|
|
|
+
|
|
|
<button type="submit" class="btn" style="background: #32a3d8;color: #fff;height: 35px; id="" name=""><i class="Hui-iconfont"></i> 搜索</button>
|
|
|
</form>
|
|
|
</div>
|
|
@@ -122,11 +142,13 @@
|
|
|
</#if></td>
|
|
|
<td>${postage.salesOrderId!''}</td>
|
|
|
<td>${postage.postageClientName!''}</td>
|
|
|
- <td><#if (postage.postageClientTel)?? && postage.postageClientTel?length gt 7>
|
|
|
- ${postage.postageClientTel?substring(0,3)}***${postage.postageClientTel?substring(postage.postageClientTel?length-4,postage.postageClientTel?length)}
|
|
|
- <#else>
|
|
|
- ${postage.postageClientTel!''}
|
|
|
- </#if>
|
|
|
+ <td>
|
|
|
+ <#--<#if (postage.postageClientTel)?? && postage.postageClientTel?length gt 7>-->
|
|
|
+ <#--${postage.postageClientTel?substring(0,3)}***${postage.postageClientTel?substring(postage.postageClientTel?length-4,postage.postageClientTel?length)}-->
|
|
|
+ <#--<#else>-->
|
|
|
+ <#--${postage.postageClientTel!''}-->
|
|
|
+ <#--</#if>-->
|
|
|
+ ${postage.postageClientTel!''}
|
|
|
</td>
|
|
|
<td>${postage.postageClientAddress!''}</td>
|
|
|
<td>
|