查看数据权限

master
czc 2 years ago
parent f7d502994c
commit f5c2b6bad7

@ -64,7 +64,12 @@
<div>0.00</div> <div>0.00</div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="注册时间" align="center" prop="createTime"> <el-table-column label="注册时间" align="center" prop="createTime" width="180">
<template v-slot="scope">
<div>{{ parseTime(scope.row.createTime) }}</div>
</template>
</el-table-column>
<el-table-column label="上次登录" align="center" prop="createTime">
<template v-slot="scope"> <template v-slot="scope">
<div>{{ parseTime(scope.row.createTime) }}</div> <div>{{ parseTime(scope.row.createTime) }}</div>
</template> </template>
@ -75,6 +80,7 @@
size="mini" size="mini"
type="text" type="text"
@click="showStatistics(scope.row.id)" @click="showStatistics(scope.row.id)"
v-hasPermi="['ums:member:statistics']"
>查看数据</el-button> >查看数据</el-button>
<el-button <el-button
size="mini" size="mini"

Loading…
Cancel
Save