Commit 1d28a585 authored by youjie's avatar youjie

no message

parent 737f47a4
......@@ -41,11 +41,16 @@
</el-select>
</span>
</li>
<!-- <li>
<li>
<span><em>{{$t('OrderList.search.orderNum')}}</em>
<el-input type="Number" v-model="msg.OrderNo" :placeholder="$t('OrderList.search.orderNum')" class="w200"/>
</span>
</li> -->
</li>
<li>
<span><em>订单ID</em>
<el-input type="Number" v-model="msg.OrderId" placeholder="订单ID" class="w200"/>
</span>
</li>
<li>
<span>
<em>{{$t('hotel.hotel')}}</em>
......@@ -131,7 +136,8 @@
StartTime: '',//new Date().Format("yyyy-MM-dd")
EndTime: '',//this.setEdate()
OrderStatus: 0,
// OrderNo: '',
OrderNo: '',
OrderId: ''
// RoomType: 0,
// orderType: 0
},
......
......@@ -152,6 +152,36 @@
</template>
</template>
</el-table-column>
<el-table-column label="实收" min-width="100">
<template slot-scope="scope">
<span>{{scope.row.Income?scope.row.Income:'-'}}</span>
</template>
</el-table-column>
<el-table-column label="成本" min-width="100">
<template slot-scope="scope">
<span>{{scope.row.CostMoney?scope.row.CostMoney:'-'}}</span>
</template>
</el-table-column>
<el-table-column label="平台税金" min-width="100">
<template slot-scope="scope">
<span>{{scope.row.PlatformTax?scope.row.PlatformTax:'-'}}</span>
</template>
</el-table-column>
<el-table-column label="退款" min-width="100">
<template slot-scope="scope">
<span>{{scope.row.Refund?scope.row.Refund:'-'}}</span>
</template>
</el-table-column>
<el-table-column label="手配费实收" min-width="100">
<template slot-scope="scope">
<span>{{scope.row.HandFittingIncome?scope.row.HandFittingIncome:'-'}}</span>
</template>
</el-table-column>
<el-table-column label="手配费平台税金" min-width="100">
<template slot-scope="scope">
<span>{{scope.row.HandFittingTax?scope.row.HandFittingTax:'-'}}</span>
</template>
</el-table-column>
<el-table-column label="城市税" min-width="60">
<template slot-scope="scope">
{{scope.row.Tax>0?scope.row.Tax.toFixed(2):'-'}}
......
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