Commit c8aac694 authored by liudong1993's avatar liudong1993

1

parent 83c056ab
...@@ -109,6 +109,18 @@ ...@@ -109,6 +109,18 @@
<span v-else>{{ scope.row.WaitMoney }}</span> <span v-else>{{ scope.row.WaitMoney }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="Lately7Day" label="近7天可能回款" sortable>
<template slot-scope="scope">
<span v-if="scope.row.Alias=='平台在途总额'" style="color: #00C6FF;">{{ scope.row.Lately7Day }}</span>
<span v-else>{{ scope.row.Lately7Day }}</span>
</template>
</el-table-column>
<el-table-column prop="Lately15Day" label="近15天可能回款" sortable>
<template slot-scope="scope">
<span v-if="scope.row.Alias=='平台在途总额'" style="color: #00C6FF;">{{ scope.row.Lately15Day }}</span>
<span v-else>{{ scope.row.Lately15Day }}</span>
</template>
</el-table-column>
<el-table-column prop="Wait15Money" label="超15天未申请" sortable> <el-table-column prop="Wait15Money" label="超15天未申请" sortable>
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.Alias=='平台在途总额'" style="color: #00C6FF;">{{ scope.row.Wait15Money }}</span> <span v-if="scope.row.Alias=='平台在途总额'" style="color: #00C6FF;">{{ scope.row.Wait15Money }}</span>
...@@ -351,6 +363,17 @@ ...@@ -351,6 +363,17 @@
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="" prop=""
label="近期情况"
show-overflow-tooltip width="160">
<template slot-scope="scope">
<p v-if="scope.row.LatelyType>0">{{(scope.row.LatelyType==1?"近7天可能回款":"进15天可能回款")}}</p>
<p>出团:{{scope.row.OutStartDate}}</p>
<p>可申:{{scope.row.CanApply}}</p>
<p v-if="scope.row.ApplyDate !=''">开票:{{scope.row.ApplyDate}}</p>
</template>
</el-table-column>
<el-table-column
prop=""
label="特殊标记" label="特殊标记"
show-overflow-tooltip width="120"> show-overflow-tooltip width="120">
<template slot-scope="scope"> <template slot-scope="scope">
......
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