Commit 635debaf authored by anxixi's avatar anxixi

积分竞猜相关功能

parent feb399e8
......@@ -15,7 +15,11 @@
<el-table-column prop="typeName" label="分类名称" align="center"></el-table-column>
<el-table-column prop="guessCount" label="包含竞猜数" align="center"></el-table-column>
<el-table-column prop="empCount" label="参与人数" align="center"></el-table-column>
<el-table-column prop="integralCount" label="参与积分数" align="center"></el-table-column>
<el-table-column prop="integralCount" label="参与积分数" align="center">
<template slot-scope="scope">
{{scope.row.integralCount?scope.row.integralCount:0}}
</template>
</el-table-column>
<el-table-column :label="$t('listjson.action')" width="150" align='center'>
<template slot-scope="scope">
<el-button type="text" @click="editguesslist(scope.row)">编辑</el-button>
......
......@@ -30,8 +30,8 @@
<el-progress :text-inside="true" :stroke-width="30" :percentage="item.percent"></el-progress>
</div>
<p style="line-height: 30px;margin-left: 10px;width: 80px;">赔率:<span>{{item.odds}}</span></p>
<p style="line-height: 30px;margin-left: 10px;width: 90px;">总人数:<span>{{item.guessTotalEmp}}</span></p>
<p style="line-height: 30px;margin-left: 10px;">总积分:<span>{{item.guessTotalIntegral}}</span></p>
<p style="line-height: 30px;margin-left: 10px;width: 90px;">总人数:<span>{{item.guessTotalEmp?item.guessTotalEmp:0}}</span></p>
<p style="line-height: 30px;margin-left: 10px;">总积分:<span>{{item.guessTotalIntegral?item.guessTotalIntegral:0}}</span></p>
</div>
</div>
</el-form-item>
......
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