style: 表格样式修改
This commit is contained in:
parent
2b01c586b4
commit
a6139408c7
|
@ -21,7 +21,7 @@ export const addUserToUserGroupUrl = `/user/role/relation/global/add`;
|
|||
/** 删除用户组用户 */
|
||||
export const deleteUserFromUserGroupUrl = `/user/role/relation/global/delete/`;
|
||||
/** 获取需要关联的用户选项 */
|
||||
export const getSystemUserGroupOptionUrl = `/user/role/relation//global/user/option/`;
|
||||
export const getSystemUserGroupOptionUrl = `/user/role/relation/global/user/option/`;
|
||||
|
||||
/** 组织 */
|
||||
// 组织-修改用户组
|
||||
|
|
|
@ -570,16 +570,19 @@
|
|||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 5px 0;
|
||||
width: 32px;
|
||||
padding: 5px 10px;
|
||||
min-width: 32px;
|
||||
height: 32px;
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
&-previous {
|
||||
margin-left: 14px !important;
|
||||
}
|
||||
&-ellipsis {
|
||||
padding: 5px 0;
|
||||
}
|
||||
&-ellipsis:hover {
|
||||
width: 32px;
|
||||
min-width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
&:not(:last-child):not(:first-child):not(.arco-pagination-item-ellipsis) {
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
@change="handleChange"
|
||||
/>
|
||||
<span v-if="$slots['jumper-append']" :class="`${prefixCls}-append`"><slot name="jumper-append" /></span>
|
||||
<span :class="`${prefixCls}-total-page`" :style="{ width: totalPageWidth }">{{
|
||||
<span :class="`${prefixCls}-total-page`" :style="{ 'min-width': totalPageWidth }">{{
|
||||
t('msPagination.page', { page: pages })
|
||||
}}</span>
|
||||
</span>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<MsCard simple>
|
||||
<h1>BugManagement is waiting for development </h1>
|
||||
<ms-pagination size="small" :total="100" show-total show-jumper show-page-size />
|
||||
<ms-pagination size="small" :total="100000" show-total show-jumper show-page-size />
|
||||
</MsCard>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -137,6 +137,8 @@
|
|||
}
|
||||
.user-group-left {
|
||||
position: relative;
|
||||
width: 300px;
|
||||
height: calc(100vh - 125px);
|
||||
border-right: 1px solid var(--color-border);
|
||||
.usergroup-collapse {
|
||||
position: absolute;
|
||||
|
|
|
@ -122,6 +122,7 @@
|
|||
title: 'system.organization.subordinateOrg',
|
||||
dataIndex: 'organizationName',
|
||||
sortable: {
|
||||
sorter: true,
|
||||
sortDirections: ['ascend', 'descend'],
|
||||
},
|
||||
},
|
||||
|
|
|
@ -116,6 +116,5 @@
|
|||
);
|
||||
onBeforeMount(() => {
|
||||
tableSearch();
|
||||
initOrgAndProjectCount();
|
||||
});
|
||||
</script>
|
||||
|
|
Loading…
Reference in New Issue