This commit is contained in:
shijingjing
2022-08-17 19:02:52 +08:00
parent 78d6d9d52d
commit 91c4e94609
2 changed files with 10 additions and 1 deletions

View File

@@ -333,6 +333,7 @@ export default {
this.dialog = false; this.dialog = false;
this.getList(); this.getList();
this.closed(); this.closed();
this.girdInfoList = []
} }
}); });
} else { } else {

View File

@@ -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()