|
@@ -19,6 +19,11 @@
|
19
|
19
|
{{(scope.row.GambleMember.name).slice(19)}}
|
20
|
20
|
</template>
|
21
|
21
|
</el-table-column>
|
|
22
|
+ <el-table-column label="上繳工作室金額70%" align="center">
|
|
23
|
+ <template slot-scope="scope">
|
|
24
|
+ <span :style="moneyColor(scope.row.all70)">{{scope.row.all70}}</span>
|
|
25
|
+ </template>
|
|
26
|
+ </el-table-column>
|
22
|
27
|
<el-table-column label="抽水%" align="center">
|
23
|
28
|
<template slot-scope="scope">
|
24
|
29
|
{{scope.row.feeRatio}}
|
|
@@ -133,7 +138,8 @@ export default {
|
133
|
138
|
name: agent.GambleMember.name
|
134
|
139
|
},
|
135
|
140
|
feeRatio: response.data.feeRatio,
|
136
|
|
- all: response.data.all
|
|
141
|
+ all: response.data.all,
|
|
142
|
+ all70: response.data.all70
|
137
|
143
|
})
|
138
|
144
|
}) : false
|
139
|
145
|
// fetchMemberList(agent, this.listQuery).then(response => {
|