refactor(用户组和权限): 用户组根据名称搜索
This commit is contained in:
parent
55b9a4c3c6
commit
6f704459c6
|
@ -33,6 +33,9 @@
|
|||
</if>
|
||||
</where>
|
||||
) temp
|
||||
<if test="request.name != null and request.name!=''">
|
||||
where temp.name like CONCAT('%', #{request.name},'%')
|
||||
</if>
|
||||
<if test="request.orders != null and request.orders.size() > 0">
|
||||
order by
|
||||
<foreach collection="request.orders" separator="," item="order">
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<el-card>
|
||||
<template v-slot:header>
|
||||
<ms-table-header :create-permission="['SYSTEM_GROUP:READ+CREATE','ORGANIZATION_GROUP:READ+CREATE']" :condition.sync="condition" @search="initData" @create="create"
|
||||
:create-tip="$t('group.create')" :title="$t('group.group_permission')" :have-search="false"/>
|
||||
:create-tip="$t('group.create')" :title="$t('group.group_permission')"/>
|
||||
</template>
|
||||
|
||||
<el-table :data="groups" border class="adjust-table" style="width: 100%"
|
||||
|
|
Loading…
Reference in New Issue