<el-table-column
prop="turnoverType"
label="流水方式"
align="center"
>
<template slot-scope="scope">
<!-- <span v-if="scope.row.turnoverType == 1">全佣</span>
<span v-if="scope.row.turnoverType == 2">流水</span> -->
<span v-if="scope.row.turnoverType">{{scope.row.turnoverType == 1 ? '全佣' : '流水'}}</span>
<span v-if="scope.row.turnoverType == null">—</span>
</template>
</el-table-column>