Commit dbcb820f authored by liudong1993's avatar liudong1993

1

parent a2aba69b
...@@ -77,16 +77,48 @@ ...@@ -77,16 +77,48 @@
</template> </template>
</div> </div>
</div>--> </div>-->
<el-table :data="multipleSelection" stripe max-height="400px" highlight-current-row> <el-table :data="multipleSelection" stripe max-height="320px" highlight-current-row>
<el-table-column prop="Alias" label="平台名称" > <el-table-column prop="Alias" label="平台名称" >
<template slot-scope="scope">
<span v-if="scope.row.Alias=='平台在途总额'" style="color: #00C6FF;">{{ scope.row.Alias }}</span>
<span v-else>{{ scope.row.Alias }}</span>
</template>
</el-table-column> </el-table-column>
<el-table-column prop="TotalMoney" label="在途总额" sortable> <el-table-column prop="TotalMoney" label="在途总额" sortable>
<template slot-scope="scope">
<span v-if="scope.row.Alias=='平台在途总额'" style="color: #00C6FF;">{{ scope.row.TotalMoney }}</span>
<span v-else>{{ scope.row.TotalMoney }}</span>
</template>
</el-table-column> </el-table-column>
<el-table-column prop="RemitMoney" label="可提现" sortable> <el-table-column prop="RemitMoney" label="可提现" sortable>
<template slot-scope="scope">
<span v-if="scope.row.Alias=='平台在途总额'" style="color: #00C6FF;">{{ scope.row.RemitMoney }}</span>
<span v-else>{{ scope.row.RemitMoney }}</span>
</template>
</el-table-column> </el-table-column>
<el-table-column prop="InvoiceMoney" label="已申请" sortable> <el-table-column prop="InvoiceMoney" label="已申请" sortable>
<template slot-scope="scope">
<span v-if="scope.row.Alias=='平台在途总额'" style="color: #00C6FF;">{{ scope.row.InvoiceMoney }}</span>
<span v-else>{{ scope.row.InvoiceMoney }}</span>
</template>
</el-table-column> </el-table-column>
<el-table-column prop="WaitMoney" label="待申请" sortable> <el-table-column prop="WaitMoney" label="待申请" sortable>
<template slot-scope="scope">
<span v-if="scope.row.Alias=='平台在途总额'" style="color: #00C6FF;">{{ scope.row.WaitMoney }}</span>
<span v-else>{{ scope.row.WaitMoney }}</span>
</template>
</el-table-column>
<el-table-column prop="Wait15Money" label="超15天未申请" sortable>
<template slot-scope="scope">
<span v-if="scope.row.Alias=='平台在途总额'" style="color: #00C6FF;">{{ scope.row.Wait15Money }}</span>
<span v-else>{{ scope.row.Wait15Money }}</span>
</template>
</el-table-column>
<el-table-column prop="Wait20Invoice" label="超20天未回款" sortable>
<template slot-scope="scope">
<span v-if="scope.row.Alias=='平台在途总额'" style="color: #00C6FF;">{{ scope.row.Wait20Invoice }}</span>
<span v-else>{{ scope.row.Wait20Invoice }}</span>
</template>
</el-table-column> </el-table-column>
</el-table> </el-table>
......
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