|
|
@@ -80,7 +80,7 @@ export default {
|
|
|
{ prop: 'remaining', label: '剩余次数' },
|
|
|
{ prop: 'allocatedAmount', label: '已分配' },
|
|
|
{ label: '可分配', render ({ initialAmount, allocatedAmount }) {
|
|
|
- return initialAmount - allocatedAmount
|
|
|
+ return (initialAmount - allocatedAmount).toString()
|
|
|
} },
|
|
|
{ type: 'invoke', render: [
|
|
|
{ label: '删除', on: this.onDel }
|