Commit 6a5d853b authored by shiziyuan9527's avatar shiziyuan9527 Committed by 刘瑞斌
Browse files

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

parent 90746659
Showing with 1 addition and 34 deletions
+1 -34
...@@ -6,24 +6,8 @@ ...@@ -6,24 +6,8 @@
:create-tip="$t('member.create')" :title="$t('commons.member')"/> :create-tip="$t('member.create')" :title="$t('commons.member')"/>
</template> </template>
<el-table border class="adjust-table" :data="tableData" style="width: 100%" <el-table border class="adjust-table" :data="tableData" style="width: 100%"
@select-all="handleSelectAll"
@select="handleSelect"
:height="screenHeight" :height="screenHeight"
ref="userTable"> 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="id" label="ID"/>
<el-table-column prop="name" :label="$t('commons.username')"/> <el-table-column prop="name" :label="$t('commons.username')"/>
<el-table-column prop="email" :label="$t('commons.email')"/> <el-table-column prop="email" :label="$t('commons.email')"/>
......
...@@ -6,30 +6,13 @@ ...@@ -6,30 +6,13 @@
:create-tip="$t('member.create')" :title="$t('commons.member')"/> :create-tip="$t('member.create')" :title="$t('commons.member')"/>
</template> </template>
<el-table border class="adjust-table" :data="tableData" style="width: 100%" <el-table border class="adjust-table" :data="tableData" style="width: 100%"
@select-all="handleSelectAll"
@select="handleSelect"
:height="screenHeight" :height="screenHeight"
ref="userTable"> 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="id" label="ID"/>
<el-table-column prop="name" :label="$t('commons.username')"/> <el-table-column prop="name" :label="$t('commons.username')"/>
<el-table-column prop="email" :label="$t('commons.email')"/> <el-table-column prop="email" :label="$t('commons.email')"/>
<el-table-column prop="phone" :label="$t('commons.phone')"/> <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"> <template v-slot:default="scope">
<ms-roles-tag :roles="scope.row.groups" type="success"/> <ms-roles-tag :roles="scope.row.groups" type="success"/>
</template> </template>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment