|
@@ -37,11 +37,21 @@
|
|
37
|
<span style="color: orange;"> -{{ scope.row.expenditure }} </span>
|
37
|
<span style="color: orange;"> -{{ scope.row.expenditure }} </span>
|
|
38
|
</template>
|
38
|
</template>
|
|
39
|
</el-table-column> -->
|
39
|
</el-table-column> -->
|
|
|
|
40
|
+ <el-table-column label="分润额" prop="fenrun" min-width="130">
|
|
|
|
41
|
+ <template slot-scope="scope">
|
|
|
|
42
|
+ <span style="color: green;"> {{ scope.row.fenrun }} </span>
|
|
|
|
43
|
+ </template>
|
|
|
|
44
|
+ </el-table-column>
|
|
40
|
<el-table-column label="入账金额(元)" prop="accounting" min-width="130">
|
45
|
<el-table-column label="入账金额(元)" prop="accounting" min-width="130">
|
|
41
|
<template slot-scope="scope">
|
46
|
<template slot-scope="scope">
|
|
42
|
<span style="color: green;"> {{ scope.row.accounting }} </span>
|
47
|
<span style="color: green;"> {{ scope.row.accounting }} </span>
|
|
43
|
</template>
|
48
|
</template>
|
|
44
|
</el-table-column>
|
49
|
</el-table-column>
|
|
|
|
50
|
+ <el-table-column label="京豆" prop="jingdou" min-width="130">
|
|
|
|
51
|
+ <template slot-scope="scope">
|
|
|
|
52
|
+ <span style="color: green;"> {{ scope.row.jingdou }} </span>
|
|
|
|
53
|
+ </template>
|
|
|
|
54
|
+ </el-table-column>
|
|
45
|
<el-table-column label="操作" min-width="130">
|
55
|
<el-table-column label="操作" min-width="130">
|
|
46
|
<template slot-scope="scope">
|
56
|
<template slot-scope="scope">
|
|
47
|
<el-button type="text" size="small" class="mr10" @click="checkAccountDetail(scope.row)">账单详情</el-button>
|
57
|
<el-button type="text" size="small" class="mr10" @click="checkAccountDetail(scope.row)">账单详情</el-button>
|