邓洁: 用户管理修改细节
This commit is contained in:
@@ -41,7 +41,9 @@
|
||||
<el-table-column prop="identity" label="身份" align="center"/>
|
||||
<el-table-column label="操作" align="center">
|
||||
<template #default>
|
||||
<el-button link type="primary" size="large" style="font-size: 40px;color: #17E1E2;" @click="editUser">修改</el-button>
|
||||
<el-button link type="primary" size="large" style="font-size: 40px;color: #17E1E2;" @click="editUser">
|
||||
修改
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@@ -164,20 +166,20 @@ const formRules = ref({
|
||||
account: [{required: true, message: '请输入站点名称', trigger: 'blur'}],
|
||||
password: [{required: true, message: '请输入密码', trigger: 'blur'}]
|
||||
})
|
||||
const checkList=ref([
|
||||
{ label: "系统管理员", value: 111 },
|
||||
{ label: "站点管理员", value: 222 },
|
||||
{ label: "隧道管理员", value: 333 },
|
||||
{ label: "巡查员", value: 444 }
|
||||
const checkList = ref([
|
||||
{label: "系统管理员", value: 111},
|
||||
{label: "站点管理员", value: 222},
|
||||
{label: "隧道管理员", value: 333},
|
||||
{label: "巡查员", value: 444}
|
||||
])
|
||||
const multipleTable=ref()
|
||||
const multipleTable = ref()
|
||||
const addUser = () => {
|
||||
isVisited.value = true
|
||||
}
|
||||
const editUser = () => {
|
||||
isVisited.value = true
|
||||
}
|
||||
const handleAll=()=>{
|
||||
const handleAll = () => {
|
||||
multipleTable.value.toggleAllSelection()
|
||||
}
|
||||
</script>
|
||||
@@ -390,18 +392,21 @@ const handleAll=()=>{
|
||||
}
|
||||
}
|
||||
}
|
||||
:deep(.el-checkbox-group){
|
||||
|
||||
:deep(.el-checkbox-group) {
|
||||
margin-top: 10px;
|
||||
}
|
||||
:deep(.el-checkbox__label){
|
||||
color: #FFFFFF;
|
||||
font-size: 38px;
|
||||
}
|
||||
|
||||
:deep(.el-checkbox__label) {
|
||||
color: #FFFFFF;
|
||||
font-size: 38px;
|
||||
}
|
||||
|
||||
.pagination {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
bottom: 290px;
|
||||
bottom: 90px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
color: #60DDDE;
|
||||
|
||||
Reference in New Issue
Block a user