Commit 389cd6df authored by huangyuanyuan's avatar huangyuanyuan

修改散客订单状态

parent b0952d27
...@@ -53,8 +53,15 @@ ...@@ -53,8 +53,15 @@
<td>{{item.Refund}}</td> <td>{{item.Refund}}</td>
<td>{{item.PlatformTax}}</td> <td>{{item.PlatformTax}}</td>
<td> <td>
<span v-if="item.Status==1" type="success">正常</span> <p v-if="item.RefundStatus!=1">
<span v-if="item.Status==2">取消</span> <span v-if="item.RefundStatus==2">退款中</span>
<span v-if="item.RefundStatus==3">已退款</span>
</p>
<p v-else>
<span v-if="item.Status==1">正常</span>
<span v-if="item.Status==2">取消</span>
<span v-if="item.Status==3">待付款</span>
</p>
</td> </td>
</tr> </tr>
<tr style="height:20px"> <tr style="height:20px">
...@@ -306,7 +313,7 @@ export default { ...@@ -306,7 +313,7 @@ export default {
"ticket_get_GetScatteringOrderForAirTicketList", "ticket_get_GetScatteringOrderForAirTicketList",
this.msg, this.msg,
res => { res => {
// console.log(res); console.log(res);
this.loading = false; this.loading = false;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.total = res.data.data.count; this.total = res.data.data.count;
......
...@@ -389,7 +389,6 @@ import moment from "moment" ...@@ -389,7 +389,6 @@ import moment from "moment"
query: { query: {
customId: item.customId, customId: item.customId,
allotId: item.allotId, allotId: item.allotId,
blank: "y",
tab: "行程定制方案" tab: "行程定制方案"
} }
}); });
......
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