Commit 2263ccf7c18f88807b70a5d947a70999491d7a7f

Authored by zhangdaiscott
1 parent 1fb870ec

JeecgBoot 3.3.0 版本发布(发布日期:20220725)

ant-design-vue-jeecg/src/views/system/UserList.vue
... ... @@ -65,8 +65,8 @@
65 65  
66 66 <!-- 操作按钮区域 -->
67 67 <div class="table-operator" style="border-top: 5px">
68   - <a-button @click="handleAdd" type="primary" icon="plus" v-has="'system:user:add'">添加用户</a-button>
69   - <a-button type="primary" icon="download" v-has="'system:user:export'" @click="handleExportXls('用户信息')">导出</a-button>
  68 + <a-button @click="handleAdd" type="primary" icon="plus" >添加用户</a-button>
  69 + <a-button type="primary" icon="download" @click="handleExportXls('用户信息')">导出</a-button>
70 70 <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
71 71 <a-button type="primary" icon="import">导入</a-button>
72 72 </a-upload>
... ... @@ -121,9 +121,9 @@
121 121 </template>
122 122  
123 123 <span slot="action" slot-scope="text, record">
124   - <a @click="handleEdit(record)" v-has="'system:user:edit'">编辑</a>
  124 + <a @click="handleEdit(record)" >编辑</a>
125 125  
126   - <a-divider type="vertical" v-has="'system:user:edit'"/>
  126 + <a-divider type="vertical" />
127 127  
128 128 <a-dropdown>
129 129 <a class="ant-dropdown-link">
... ...