Commit ceb76bb5 authored by youjie's avatar youjie

no message

parent 434f34bd
......@@ -18,29 +18,17 @@
</template>
</el-table-column>
<el-table-column
width="130"
width="200"
prop="CreateTimeStr"
label="下单日期"
show-overflow-tooltip>
</el-table-column>
<el-table-column
width="130"
prop="StartDate"
label="出发日期"
show-overflow-tooltip>
</el-table-column>
<el-table-column
prop="OrderId"
label="订单ID"
show-overflow-tooltip>
</el-table-column>
<el-table-column
label="团号/单号"
label="订单id"
show-overflow-tooltip>
<template slot-scope="scope">
<el-tooltip class="item" effect="dark" :content="scope.row.TCNUM" placement="top">
<p style="max-width: 100px;overflow: hidden;text-overflow: ellipsis">{{scope.row.TCNUM}}</p>
</el-tooltip>
<div style="max-width: 100px;overflow: hidden;text-overflow: ellipsis">
<p style="font-size: 18px;color: #2961fe;">{{scope.row.OrderId}}</p>
<p>团号:{{scope.row.TCNUM}}</p>
<p>下单日期:{{scope.row.CreateTimeStr}}</p>
<p>出发日期:{{scope.row.StartDate}}</p>
</div>
</template>
</el-table-column>
<el-table-column
......@@ -62,7 +50,6 @@
label="引流姓名"
show-overflow-tooltip>
</el-table-column>
<el-table-column
label="商品名称"
show-overflow-tooltip>
......@@ -78,20 +65,6 @@
label="总金额"
show-overflow-tooltip>
</el-table-column>
<el-table-column
sortable
prop="CostMoney"
label="成本"
show-overflow-tooltip>
</el-table-column>
<el-table-column
sortable
label="待收"
show-overflow-tooltip>
<template slot-scope="scope">
<span :class="{'red':scope.row.DueInMoney>0}">{{scope.row.DueInMoney}}</span>
</template>
</el-table-column>
<el-table-column
sortable
prop="Income"
......@@ -110,6 +83,20 @@
label="退款"
show-overflow-tooltip>
</el-table-column>
<el-table-column
sortable
prop="CostMoney"
label="成本"
show-overflow-tooltip>
</el-table-column>
<el-table-column
sortable
label="待收"
show-overflow-tooltip>
<template slot-scope="scope">
<span :class="{'red':scope.row.DueInMoney>0}">{{scope.row.DueInMoney}}</span>
</template>
</el-table-column>
<el-table-column
sortable
prop="DiscountsMoney"
......@@ -124,6 +111,15 @@
<span>{{scope.row.StateName}}</span>
</template>
</el-table-column>
<el-table-column
label="描述"
show-overflow-tooltip>
<template slot-scope="scope">
<el-tooltip class="item" effect="dark" :content="scope.row.Description" placement="top">
<p style="max-width: 100px;overflow: hidden;text-overflow: ellipsis">{{scope.row.Description}}</p>
</el-tooltip>
</template>
</el-table-column>
<el-table-column
label="操作"
show-overflow-tooltip>
......
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