bug
This commit is contained in:
@@ -333,6 +333,7 @@ export default {
|
|||||||
this.dialog = false;
|
this.dialog = false;
|
||||||
this.getList();
|
this.getList();
|
||||||
this.closed();
|
this.closed();
|
||||||
|
this.girdInfoList = []
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -86,7 +86,8 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column slot="changeIntegral" label="积分变动" align="center">
|
<el-table-column slot="changeIntegral" label="积分变动" align="center">
|
||||||
<template slot-scope="{ row }">
|
<template slot-scope="{ row }">
|
||||||
<span>{{ row.changeIntegral > 0 ? '+' : '-' }}{{ row.changeIntegral }}</span>
|
<!-- {{ row.changeIntegral > 0 ? '+' : '-' }}{{ row.changeIntegral }} -->
|
||||||
|
<span>{{ row.changeIntegral | format }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column slot="options" label="操作" align="center">
|
<el-table-column slot="options" label="操作" align="center">
|
||||||
@@ -487,6 +488,13 @@ export default {
|
|||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
filters: {
|
||||||
|
formatTime(num) {
|
||||||
|
let numType = Number(num)
|
||||||
|
console.log(numType);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getColEcherts1()
|
this.getColEcherts1()
|
||||||
this.getColEcherts2()
|
this.getColEcherts2()
|
||||||
|
|||||||
Reference in New Issue
Block a user