Commit 81daf4d6 authored by youjie's avatar youjie

提成详情新增参数回显

parent 70fd254e
......@@ -91,8 +91,56 @@
<el-table-column
prop="OrderId"
label="订单号"
show-overflow-tooltip></el-table-column>
<el-table-column
prop="OrderTypeName"
label="订单类型"
show-overflow-tooltip></el-table-column>
<el-table-column
prop="TCNUM"
label="团号"
show-overflow-tooltip>
</el-table-column>
<template slot-scope="scope">
{{scope.row.TCNUM?scope.row.TCNUM:'-'}}
</template></el-table-column>
<el-table-column
prop="OutBranchName"
label="出团公司"
show-overflow-tooltip>
<template slot-scope="scope">
{{scope.row.OutBranchName?scope.row.OutBranchName:'-'}}
</template>
</el-table-column>
<el-table-column
prop="LineName"
label="线路"
show-overflow-tooltip>
<template slot-scope="scope">
{{scope.row.LineName?scope.row.LineName:'-'}}
</template></el-table-column>
<el-table-column
prop="PeopleNum"
label="人数"
show-overflow-tooltip>
<template slot-scope="scope">
{{scope.row.PeopleNum?scope.row.PeopleNum:'-'}}
<template v-if="scope.row.TCID>0">/{{scope.row.TCGuestNum}}</template>
</template></el-table-column>
<el-table-column
prop="TCProfit"
label="团利润"
show-overflow-tooltip>
<template slot-scope="scope">
<template v-if="scope.row.TCID>0">{{scope.row.TCProfit?scope.row.TCProfit:'-'}}</template>
<template v-else>-</template>
</template></el-table-column>
<el-table-column
prop="Way"
label="提成方式"
show-overflow-tooltip>
<template slot-scope="scope">
{{scope.row.Way==1?'销售额':'利润比'}}
</template></el-table-column>
<el-table-column
prop="OrderProfit"
label="订单利润"
......
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