|
|
@@ -422,6 +422,13 @@
|
|
|
<el-tag v-else type="info"> 未绑定</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="是否下载APP" width="100px" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-tag :type="scope.row.isDownloadApp === 1 ? 'success' : 'info'">
|
|
|
+ {{ scope.row.isDownloadApp === 1 ? '已下载' : '未下载' }}
|
|
|
+ </el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="修改" align="center" class-name="small-padding fixed-width" width="120px" fixed="right">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|