fix(系统设置): 去掉无用选择框#1003823

This commit is contained in:
shiziyuan9527 2021-07-13 14:40:54 +08:00 committed by 刘瑞斌
parent 7fe6ca8dc6
commit 62c140a7de
2 changed files with 1 additions and 34 deletions

View File

@ -6,24 +6,8 @@
:create-tip="$t('member.create')" :title="$t('commons.member')"/>
</template>
<el-table border class="adjust-table" :data="tableData" style="width: 100%"
@select-all="handleSelectAll"
@select="handleSelect"
:height="screenHeight"
ref="userTable">
<el-table-column type="selection" width="50"/>
<!-- <ms-table-header-select-popover v-show="total>0"-->
<!-- :page-size="pageSize>total?total:pageSize"-->
<!-- :total="total"-->
<!-- :select-data-counts="selectDataCounts"-->
<!-- :table-data-count-in-page="tableData.length"-->
<!-- @selectPageAll="isSelectDataAll(false)"-->
<!-- @selectAll="isSelectDataAll(true)"/>-->
<!-- <el-table-column v-if="!referenced" width="30" min-width="30" :resizable="false" align="center">-->
<!-- <template v-slot:default="scope">-->
<!-- <show-more-btn :is-show="scope.row.showMore" :buttons="buttons" :size="selectDataCounts"/>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column prop="id" label="ID"/>
<el-table-column prop="name" :label="$t('commons.username')"/>
<el-table-column prop="email" :label="$t('commons.email')"/>

View File

@ -6,30 +6,13 @@
:create-tip="$t('member.create')" :title="$t('commons.member')"/>
</template>
<el-table border class="adjust-table" :data="tableData" style="width: 100%"
@select-all="handleSelectAll"
@select="handleSelect"
:height="screenHeight"
ref="userTable">
<el-table-column type="selection" width="50"/>
<!-- <ms-table-header-select-popover v-show="total>0"-->
<!-- :page-size="pageSize>total?total:pageSize"-->
<!-- :total="total"-->
<!-- :select-data-counts="selectDataCounts"-->
<!-- :table-data-count-in-page="tableData.length"-->
<!-- @selectPageAll="isSelectDataAll(false)"-->
<!-- @selectAll="isSelectDataAll(true)"/>-->
<!-- <el-table-column v-if="!referenced" width="30" min-width="30" :resizable="false" align="center">-->
<!-- <template v-slot:default="scope">-->
<!-- <show-more-btn :is-show="scope.row.showMore" :buttons="buttons" :size="selectDataCounts"/>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column prop="id" label="ID"/>
<el-table-column prop="name" :label="$t('commons.username')"/>
<el-table-column prop="email" :label="$t('commons.email')"/>
<el-table-column prop="phone" :label="$t('commons.phone')"/>
<el-table-column prop="groups" :label="$t('commons.group')" width="150">
<el-table-column prop="groups" :label="$t('commons.group')" width="160">
<template v-slot:default="scope">
<ms-roles-tag :roles="scope.row.groups" type="success"/>
</template>