fix: 角色权限
parent
d503f9ed0b
commit
b00967235f
@ -0,0 +1,57 @@
|
||||
<template>
|
||||
<div class="ruleSet">
|
||||
<div class="title">
|
||||
<div class="title_type">权限类别</div>
|
||||
<div class="titel_page">页面权限</div>
|
||||
<div class="title_details">权限详情</div>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="content-item" v-for="(item, index) in dataList" :key="index">
|
||||
1
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { ref } from "vue";
|
||||
|
||||
const dataList = ref([
|
||||
{
|
||||
page: "首页",
|
||||
list: [
|
||||
{
|
||||
page: "首页",
|
||||
list: []
|
||||
}
|
||||
]
|
||||
}
|
||||
]);
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.ruleSet {
|
||||
padding: 16px 32px;
|
||||
.title {
|
||||
display: flex;
|
||||
height: 50px;
|
||||
background: #f2f6fa;
|
||||
align-items: center;
|
||||
font-size: 16px;
|
||||
color: #333333;
|
||||
.title_type {
|
||||
width: 160px;
|
||||
text-align: center;
|
||||
border-right: 1px solid #dfe1e2;
|
||||
}
|
||||
.titel_page {
|
||||
width: 168px;
|
||||
text-align: center;
|
||||
border-right: 1px solid #dfe1e2;
|
||||
}
|
||||
.title_details {
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
border-right: 1px solid #dfe1e2;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue