1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-05 23:11:24 +08:00

Optimized the authority management form

This commit is contained in:
2023-05-16 20:29:08 +08:00
parent a25662c7b4
commit 3b6dd7bee8
3 changed files with 4 additions and 5 deletions

View File

@@ -8,6 +8,8 @@
body { body {
color: var(--font-main-color); color: var(--font-main-color);
user-select: none; user-select: none;
min-width: 1100px;
min-height: 400px;
} }
.fill { .fill {

View File

@@ -6,8 +6,7 @@
style="margin-top: 10px" style="margin-top: 10px"
> >
<el-table-column type="selection" /> <el-table-column type="selection" />
<el-table-column type="index" label="序号" /> <el-table-column prop="name" label="名称" min-width="20" />
<el-table-column prop="name" label="名称" />
<el-table-column v-if="customColumnLabel_1" :label="customColumnLabel_1"> <el-table-column v-if="customColumnLabel_1" :label="customColumnLabel_1">
<template #default="scope"> <template #default="scope">
<el-tag <el-tag
@@ -32,7 +31,7 @@
}}</el-tag> }}</el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作"> <el-table-column label="操作" width="150" align="center">
<template #default="scope"> <template #default="scope">
<el-button size="small" @click="$emit('onEdit', scope.$index, scope.row)" <el-button size="small" @click="$emit('onEdit', scope.$index, scope.row)"
>编辑 >编辑

View File

@@ -207,8 +207,6 @@ export default {
<style scoped> <style scoped>
.background { .background {
width: 100vw;
min-width: 900px;
height: 100vh; height: 100vh;
min-height: 500px; min-height: 500px;
background: var(--background-color); background: var(--background-color);