|
|
|
|
128
|
<div :style="moneyColor(scope.row.totalChips)">{{scope.row.totalChips}}</div>
|
128
|
<div :style="moneyColor(scope.row.totalChips)">{{scope.row.totalChips}}</div>
|
129
|
</template>
|
129
|
</template>
|
130
|
</el-table-column>
|
130
|
</el-table-column>
|
131
|
- <el-table-column prop="MemberRecord.GambleMember.chips" label="最終積分">
|
|
|
|
|
131
|
+ <el-table-column prop="MemberRecord.currentChips" label="最終積分">
|
132
|
</el-table-column>
|
132
|
</el-table-column>
|
133
|
</el-table-column>
|
133
|
</el-table-column>
|
134
|
</el-table>
|
134
|
</el-table>
|
|
|
|
|
292
|
this.detail = this.group.reduce((arr, element) => {
|
292
|
this.detail = this.group.reduce((arr, element) => {
|
293
|
return arr.concat(element)
|
293
|
return arr.concat(element)
|
294
|
}, [])
|
294
|
}, [])
|
295
|
-
|
|
|
296
|
this.group.map((item, itemIndex) => {
|
295
|
this.group.map((item, itemIndex) => {
|
297
|
let totalChips = 0
|
296
|
let totalChips = 0
|
298
|
item.map((person, personIndex) => {
|
297
|
item.map((person, personIndex) => {
|