|
|
@@ -154,6 +154,13 @@
|
|
|
<el-table-column label="最后一次登录ip" align="center" prop="lastIp" width="130px"/>
|
|
|
<el-table-column label="余额" align="center" prop="balance" />
|
|
|
<el-table-column label="注册时间" align="center" prop="createTime" width="150px" />
|
|
|
+ <el-table-column label="是否下载APP" align="center" width="100" fixed="right">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-tag :type="(scope.row.source || scope.row.loginDevice || scope.row.appCreateTime) ? 'success' : 'info'">
|
|
|
+ {{ (scope.row.source || scope.row.loginDevice || scope.row.appCreateTime) ? '已下载' : '未下载' }}
|
|
|
+ </el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right" width="150px">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|