|
@@ -5,6 +5,33 @@
|
|
|
<leftTree @selected="getTreeData" />
|
|
<leftTree @selected="getTreeData" />
|
|
|
</a-col>
|
|
</a-col>
|
|
|
<a-col :span="20">
|
|
<a-col :span="20">
|
|
|
|
|
+ <!-- 操作按钮区域 -->
|
|
|
|
|
+ <div class="table-operator" style="margin: 5px 0;float: right">
|
|
|
|
|
+ <a-button v-permission="['pc:system:user:add']" type="primary" icon="plus" @click="handleAdd">新增</a-button>
|
|
|
|
|
+ <!-- <a-button ghost type="danger" icon="download" @click="handleExportXls('角色信息')">导出</a-button>-->
|
|
|
|
|
+ <!-- <a-upload-->
|
|
|
|
|
+ <!-- name="file"-->
|
|
|
|
|
+ <!-- :show-upload-list="false"-->
|
|
|
|
|
+ <!-- :multiple="false"-->
|
|
|
|
|
+ <!-- :headers="tokenHeader"-->
|
|
|
|
|
+ <!-- :action="url.importExcelUrl"-->
|
|
|
|
|
+ <!-- @change="handleImportExcel"-->
|
|
|
|
|
+ <!-- >-->
|
|
|
|
|
+ <!-- <a-button ghost type="danger" icon="import">导入</a-button>-->
|
|
|
|
|
+ <!-- </a-upload>-->
|
|
|
|
|
+ <a-dropdown v-if="selectedRowKeys.length > 0">
|
|
|
|
|
+ <a-menu slot="overlay">
|
|
|
|
|
+ <a-menu-item key="1" v-permission="['pc:system:user:remove']" @click="batchDel">
|
|
|
|
|
+ <a-icon type="delete" />
|
|
|
|
|
+ 批量删除
|
|
|
|
|
+ </a-menu-item>
|
|
|
|
|
+ </a-menu>
|
|
|
|
|
+ <a-button style="margin-left: 8px">
|
|
|
|
|
+ 批量操作
|
|
|
|
|
+ <a-icon type="down" />
|
|
|
|
|
+ </a-button>
|
|
|
|
|
+ </a-dropdown>
|
|
|
|
|
+ </div>
|
|
|
<!-- 查询区域 -->
|
|
<!-- 查询区域 -->
|
|
|
<div class="table-page-search-wrapper">
|
|
<div class="table-page-search-wrapper">
|
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
|
@@ -37,38 +64,9 @@
|
|
|
</a-form-item>
|
|
</a-form-item>
|
|
|
</a-form>
|
|
</a-form>
|
|
|
</div>
|
|
</div>
|
|
|
- <!-- 操作按钮区域 -->
|
|
|
|
|
- <div class="table-operator" style="margin: 15px 0">
|
|
|
|
|
- <a-button v-permission="['pc:system:user:add']" type="primary" icon="plus" @click="handleAdd">新增</a-button>
|
|
|
|
|
- <!-- <a-button ghost type="danger" icon="download" @click="handleExportXls('角色信息')">导出</a-button>-->
|
|
|
|
|
- <!-- <a-upload-->
|
|
|
|
|
- <!-- name="file"-->
|
|
|
|
|
- <!-- :show-upload-list="false"-->
|
|
|
|
|
- <!-- :multiple="false"-->
|
|
|
|
|
- <!-- :headers="tokenHeader"-->
|
|
|
|
|
- <!-- :action="url.importExcelUrl"-->
|
|
|
|
|
- <!-- @change="handleImportExcel"-->
|
|
|
|
|
- <!-- >-->
|
|
|
|
|
- <!-- <a-button ghost type="danger" icon="import">导入</a-button>-->
|
|
|
|
|
- <!-- </a-upload>-->
|
|
|
|
|
-
|
|
|
|
|
- <a-dropdown v-if="selectedRowKeys.length > 0">
|
|
|
|
|
- <a-menu slot="overlay">
|
|
|
|
|
- <a-menu-item key="1" v-permission="['pc:system:user:remove']" @click="batchDel">
|
|
|
|
|
- <a-icon type="delete" />
|
|
|
|
|
- 批量删除
|
|
|
|
|
- </a-menu-item>
|
|
|
|
|
- </a-menu>
|
|
|
|
|
- <a-button style="margin-left: 8px">
|
|
|
|
|
- 批量操作
|
|
|
|
|
- <a-icon type="down" />
|
|
|
|
|
- </a-button>
|
|
|
|
|
- </a-dropdown>
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
<!-- table区域-begin -->
|
|
<!-- table区域-begin -->
|
|
|
<div>
|
|
<div>
|
|
|
- <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
|
|
|
|
|
|
|
+ <div class="ant-alert ant-alert-info" style="margin: 16px 0;">
|
|
|
<i class="anticon anticon-info-circle ant-alert-icon" /> 已选择 <a style="font-weight: 600">{{
|
|
<i class="anticon anticon-info-circle ant-alert-icon" /> 已选择 <a style="font-weight: 600">{{
|
|
|
selectedRowKeys.length }}</a>项
|
|
selectedRowKeys.length }}</a>项
|
|
|
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
|
|
<a style="margin-left: 24px" @click="onClearSelected">清空</a>
|