|
|
@ -58,11 +58,7 @@ |
|
|
|
<el-table-column label="商户名称" align="center" prop="username" /> |
|
|
|
<el-table-column label="商户ID" align="center" prop="merchantNo" /> |
|
|
|
|
|
|
|
<el-table-column :label="'押金'" align="center" prop="securityDepositAmount"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
{{ parseFloat(NumberDiv(scope.row.securityDepositAmount, 100)).toFixed(2) }} |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
|
|
|
|
<el-table-column :label="'余额'" align="center" prop="balance"> |
|
|
|
<template slot-scope="scope"> |
|
|
@ -82,6 +78,12 @@ |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
<el-table-column :label="'押金'" align="center" prop="securityDepositAmount"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
{{ parseFloat(NumberDiv(scope.row.securityDepositAmount, 100)).toFixed(2) }} |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
<el-table-column label="状态" align="center" prop="status" width="140px"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-switch v-model="scope.row.status" active-text="开" inactive-text="关" :active-value="1" :inactive-value="0" |
|
|
|