记得上下班打卡 | git大法好,push需谨慎

Commit ba00fd7c authored by jiangxiulong's avatar jiangxiulong

type 0

parent 5d0794fd
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
<label>申请退款类型:</label> <label>申请退款类型:</label>
<select name="type"> <select name="type">
<option value="">全部</option> <option value="">全部</option>
<option value="0">客服申请</option> <option value="4">客服申请</option>
<option value="1">超时退款</option> <option value="1">超时退款</option>
<option value="2">用户申请普通退款</option> <option value="2">用户申请普通退款</option>
<option value="3">用户申请快递退款</option> <option value="3">用户申请快递退款</option>
......
...@@ -88,9 +88,12 @@ ...@@ -88,9 +88,12 @@
<if test="orderTicketsId!=''"> <if test="orderTicketsId!=''">
AND a.order_tickets_id = #{orderTicketsId} AND a.order_tickets_id = #{orderTicketsId}
</if> </if>
<if test="type!=''"> <if test="type!='' and type != 4">
AND a.type = #{type} AND a.type = #{type}
</if> </if>
<if test="type!='' and type == 4">
AND a.type = 0
</if>
<choose> <choose>
<when test="roleType!=''"> <when test="roleType!=''">
<if test="roleType == 1"> <if test="roleType == 1">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment