123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719 |
- <script setup lang="ts">
- import {
- httpRoleAll,
- httpMenuAll,
- httpUpdate,
- httpDetail
- } from "/@/api/interest/action";
- import { reactive, ref, onMounted, computed, nextTick } from "vue";
- import { ElMessage } from "element-plus";
- import { useRenderIcon } from "/@/components/ReIcon/src/hooks";
- import { useNav } from "/@/layout/hooks/nav";
- const { logout } = useNav();
- defineOptions({
- name: "User"
- });
- const roleList = ref([]);
- const loading = ref(true);
- const backupMenuactionList = ref([]);
- const menuactionList = ref([]);
- const editType = ref("add");
- const action_list = ref([]);
- const action_data_list = ref([]);
- const private_data_list = ref([]);
- const ruleForm = reactive<menuType>({
- roleid: "",
- role_name: "",
- level: "1",
- action: [],
- private_data: []
- });
- // 全选/全不选
- const handleCheckAllChange = (checkAll, index, item, subIndex) => {
- menuactionList.value[index].child[subIndex].checkAll = checkAll;
- // this.$set(menuactionList.value, index, item);
- menuactionList.value[index].child[subIndex].action.forEach(element => {
- const findindex = menuactionList.value[index].child[
- subIndex
- ].checkList.findIndex(findItem => findItem === element.id);
- if (checkAll && findindex == -1) {
- menuactionList.value[index].child[subIndex].checkList.push(element.id);
- } else if (!checkAll && findindex > -1) {
- menuactionList.value[index].child[subIndex].checkList.splice(
- findindex,
- 1
- );
- }
- });
- };
- // 全选/全不选
- const handleFieldAllChange = (fieldAll, index, item, subIndex) => {
- menuactionList.value[index].child[subIndex].fieldAll = fieldAll;
- // this.$set(menuactionList.value, index, item);
- menuactionList.value[index].child[subIndex].action_data.forEach(element => {
- const findindex = menuactionList.value[index].child[
- subIndex
- ].fieldList.findIndex(findItem => findItem === element.id);
- if (fieldAll && findindex == -1) {
- menuactionList.value[index].child[subIndex].fieldList.push(element.id);
- } else if (!fieldAll && findindex > -1) {
- menuactionList.value[index].child[subIndex].fieldList.splice(
- findindex,
- 1
- );
- }
- });
- };
- // 复选框组内的选中/不选中
- const handleCheckedGroupChange = (event, index, item, subIndex) => {
- menuactionList.value[index].child[subIndex].checkAll = menuactionList.value[
- index
- ].child[subIndex].action.every(
- evitem =>
- menuactionList.value[index].child[subIndex].checkList.findIndex(
- finditem => finditem === evitem.id
- ) > -1
- );
- // this.$set(menuactionList.value, index, item);
- };
- // 复选框组内的选中/不选中
- const handleFieldGroupChange = (event, index, item, subIndex) => {
- menuactionList.value[index].child[subIndex].fieldAll = menuactionList.value[
- index
- ].child[subIndex].action_data.every(
- evitem =>
- menuactionList.value[index].child[subIndex].fieldList.findIndex(
- finditem => finditem === evitem.id
- ) > -1
- );
- // this.$set(menuactionList.value, index, item);
- };
- // 单项复选框选中/不选中
- const handleCheckedChange = (checked, id, index, subIndex, item) => {
- // console.log(checked, id, index, subIndex);
- if (checked) {
- // 选中时检查pid的选中状态
- menuactionList.value[index].child[subIndex].checkList.indexOf(id) == -1 &&
- menuactionList.value[index].child[subIndex].checkList.push(id);
- } else {
- const find = menuactionList.value[index].child[
- subIndex
- ].checkList.findIndex(e => e == id);
- if (find > -1) {
- menuactionList.value[index].child[subIndex].checkList.splice(find, 1);
- }
- menuactionList.value[index].child[subIndex].checkAll = false;
- }
- // this.$set(menuactionList.value, index, item);
- };
- // 单项复选框选中/不选中
- const handleFieldChange = (checked, id, index, subIndex, item) => {
- // console.log(checked, id, index, subIndex);
- if (checked) {
- // 选中时检查pid的选中状态
- menuactionList.value[index].child[subIndex].fieldList.indexOf(id) == -1 &&
- menuactionList.value[index].child[subIndex].fieldList.push(id);
- } else {
- const find = menuactionList.value[index].child[
- subIndex
- ].fieldList.findIndex(e => e == id);
- if (find > -1) {
- menuactionList.value[index].child[subIndex].fieldList.splice(find, 1);
- }
- menuactionList.value[index].child[subIndex].fieldAll = false;
- }
- // this.$set(menuactionList.value, index, item);
- // console.log(menuactionList.value[index].child[subIndex]);
- };
- //选择角色
- const switchRoleHandle = async item => {
- const { id } = item;
- ruleForm.roleid = id;
- await nextTick(async () => {
- await refreshRoleDetail(id);
- });
- };
- // 保存
- const submitForm = async () => {
- action_list.value = [];
- action_data_list.value = [];
- private_data_list.value = [];
- menuactionList.value.forEach(x => {
- x.child.forEach(y => {
- action_data_list.value.push(...y.fieldList);
- action_list.value.push(...y.checkList);
- if (y.is_private_change === "1") {
- private_data_list.value.push(y.id);
- }
- });
- });
- if (action_list.value.length === 0) {
- ElMessage.error("请选择功能!");
- return;
- }
- const model = {
- roleid: ruleForm.roleid,
- role_name: ruleForm.role_name,
- level: ruleForm.level,
- action: action_list.value,
- // action_data: this.action_data,
- private_data: private_data_list.value
- };
- loading.value = true;
- const { code, data, message } = await httpUpdate(model);
- loading.value = false;
- if (code === 0) {
- ElMessage.success(message);
- } else if (code >= 100 && code <= 104) {
- logout();
- } else {
- ElMessage.error(message);
- }
- };
- const getMenuAll = async () => {
- const { code, data, message } = await httpMenuAll({});
- if (code === 0) {
- let arr = JSON.parse(JSON.stringify(data ?? []));
- arr = arr.filter(item => item.child && item.child.length > 0);
- arr = arr.map(x => {
- x.child.map(y => {
- y.checkAll = false;
- y.checkList = [];
- y.fieldAll = false;
- y.fieldList = [];
- y.is_private_change = "0";
- if (y.is_private === "0") {
- y.private = [];
- } else {
- y.private = [
- {
- id: "0",
- label: "公有数据"
- },
- {
- id: "1",
- label: "私有数据"
- }
- ];
- }
- return y;
- });
- return x;
- });
- backupMenuactionList.value = arr;
- // menuactionList.value = arr;
- } else if (code > 100 && code < 140) {
- logout();
- } else {
- ElMessage.error(message);
- }
- };
- const getRoleAll = async () => {
- const { code, data, message } = await httpRoleAll({});
- if (code === 0) {
- roleList.value = data ?? [];
- } else if (code > 100 && code < 140) {
- logout();
- } else {
- ElMessage.error(message);
- }
- };
- // 刷新角色详情
- const refreshRoleDetail = async roleid => {
- loading.value = true;
- const { code, data, message } = await httpDetail({ roleid });
- if (code === 0) {
- const { action, action_data, private_data, id, role_name, level } =
- data ?? {};
- ruleForm.roleid = id;
- ruleForm.role_name = role_name ?? "";
- ruleForm.level = level ?? "1";
- action_list.value = action ?? [];
- action_data_list.value = action_data ?? [];
- private_data_list.value = private_data ?? [];
- await refreshRoleCheckAllStatus();
- loading.value = false;
- } else if (code >= 100 && code <= 104) {
- loading.value = false;
- logout();
- } else {
- loading.value = false;
- ElMessage.error(message);
- }
- };
- // 刷新选择状态
- const refreshRoleCheckAllStatus = async () => {
- menuactionList.value = JSON.parse(JSON.stringify(backupMenuactionList.value));
- console.log(private_data_list.value);
- menuactionList.value.forEach((x, xi) => {
- if (x.child && x.child.length > 0) {
- x.child.forEach((y, yi) => {
- // let id = y.id;
- if (y.action && y.action.length > 0) {
- y.action.forEach(z => {
- const Aindex = action_list.value.findIndex(a => a === z.id);
- if (Aindex !== -1) {
- y.checkList.push(action_list.value[Aindex]);
- }
- if (y.action.length === y.checkList.length) {
- y.checkAll = true;
- }
- });
- }
- if (y.action_data && y.action_data.length > 0) {
- y.action_data.map(z => {
- const Bindex = action_data_list.value.findIndex(a => a === z.id);
- if (Bindex !== -1) {
- y.fieldList.push(action_data_list.value[Bindex]);
- }
- });
- if (y.action_data.length === y.fieldList.length) {
- y.fieldAll = true;
- }
- }
- if (y.private && y.private.length === 2) {
- let Cindex =
- private_data_list.value.length > 0
- ? private_data_list.value.findIndex(a => a === y.id)
- : -1;
- if (Cindex !== -1) {
- y.is_private_change = "1";
- } else {
- y.is_private_change = "0";
- }
- } else {
- y.is_private_change = "0";
- }
- });
- }
- // this.$set(this.actionList, xi, x);
- });
- };
- async function onSearch() {
- loading.value = true;
- await getRoleAll();
- await getMenuAll();
- if (roleList.value.length > 0) {
- await refreshRoleDetail(roleList.value[0].id);
- }
- loading.value = false;
- }
- let indeterminateCheck = computed(() => {
- return item => {
- // 选中子节点的数量
- const selectItemLength = item.action.filter(
- filitem =>
- item.checkList.findIndex(finditem => finditem === filitem.id) > -1
- ).length;
- // 未选中子节点的数量
- const noSlectItemLength = item.action.filter(
- filitem =>
- item.checkList.findIndex(finditem => finditem === filitem.id) == -1
- ).length;
- // // 当前节点的index
- // 存在选中子节点且存在未选中子节点为中间态
- return selectItemLength > 0 && noSlectItemLength > 0;
- };
- });
- let indeterminateField = computed(() => {
- return item => {
- // console.log(item);
- // 选中子节点的数量
- const selectItemLength = item.action_data.filter(
- filitem =>
- item.fieldList.findIndex(finditem => finditem === filitem.id) > -1
- ).length;
- // 未选中子节点的数量
- const noSlectItemLength = item.action_data.filter(
- filitem =>
- item.fieldList.findIndex(finditem => finditem === filitem.id) == -1
- ).length;
- // // 当前节点的index
- // 存在选中子节点且存在未选中子节点为中间态
- return selectItemLength > 0 && noSlectItemLength > 0;
- };
- });
- onMounted(() => {
- onSearch();
- });
- </script>
- <template>
- <div class="action">
- <div class="action_show">
- <div class="action_show_box">
- <ul class="role-list">
- <p class="role-list__title">角色列表</p>
- <!-- -->
- <!-- -->
- <!-- v-if="isBtnDisabled && item.id == roleActive.id" -->
- <p
- v-if="roleList.length == 0"
- style="line-height: 60px; text-align: center; color: #858599"
- >
- 暂无数据
- </p>
- <li
- v-for="(item, index) in roleList"
- :key="'role' + index"
- class="role-list__item"
- :class="{ active: item.id == ruleForm.roleid }"
- @click="!loading && switchRoleHandle(item)"
- >
- {{ item.role_name }}
- <el-button
- v-if="loading && item.id == ruleForm.roleid"
- class="fr"
- link
- :size="'mini'"
- :icon="useRenderIcon('Loading')"
- />
- </li>
- </ul>
- <div class="rule-view">
- <div class="rule-list" style="padding: 0 0 100px 0">
- <el-row
- v-for="(item, index) in menuactionList"
- :key="'menu' + item.id + index"
- >
- <el-col
- v-if="item.child && item.child.length > 0"
- class="ffff"
- :span="24"
- >
- <div class="ftitle">
- <div
- v-for="(si, sii) in item.menu_name"
- :key="'title' + sii + si"
- >
- {{ si }}
- </div>
- </div>
- <div class="fbody">
- <div
- class="fbody-item"
- v-for="(subItem, subIndex) in item.child"
- :key="'yemian' + subItem.id + subIndex"
- >
- <template
- v-if="
- !(
- subItem.action &&
- subItem.action.length === 0 &&
- subItem.action_data &&
- subItem.action_data.length === 0
- )
- "
- ><div class="stitle">
- <span class="_h2">{{ subItem.menu_name }}</span>
- <el-radio-group
- style="margin: 0 0 0 20px"
- :size="'mini'"
- v-if="
- subItem &&
- subItem.private &&
- subItem.private.length === 2
- "
- v-model="subItem.is_private_change"
- >
- <el-radio-button
- v-for="(radioN, ri) in subItem.private"
- :key="radioN.label + ri"
- :label="radioN.id"
- >{{ radioN.label }}</el-radio-button
- >
- </el-radio-group>
- </div>
- <div
- class="scheck"
- v-if="subItem.action && subItem.action.length > 0"
- >
- <div class="checkAll">
- <el-checkbox
- v-model="subItem.checkAll"
- :disabled="editType === 'view'"
- :indeterminate="indeterminateCheck(subItem)"
- @change="
- handleCheckAllChange(
- $event,
- index,
- item,
- subIndex
- )
- "
- >功能全选</el-checkbox
- >
- </div>
- <div class="checkItem">
- <el-checkbox-group
- v-model="subItem.checkList"
- :disabled="editType === 'view'"
- @change="
- handleCheckedGroupChange(
- $event,
- index,
- item,
- subIndex
- )
- "
- >
- <el-checkbox
- :disabled="editType === 'view'"
- v-for="children in subItem.action"
- :key="'checkItem' + children.id"
- :label="children.id"
- @change="
- handleCheckedChange(
- $event,
- children.id,
- index,
- subIndex,
- item
- )
- "
- >{{ children.action_name }}</el-checkbox
- >
- </el-checkbox-group>
- </div>
- </div>
- <div
- class="sfield"
- v-if="
- subItem.action_data && subItem.action_data.length > 0
- "
- >
- <div class="checkAll">
- <el-checkbox
- v-model="subItem.fieldAll"
- :disabled="editType === 'view'"
- :indeterminate="indeterminateField(subItem)"
- @change="
- handleFieldAllChange(
- $event,
- index,
- item,
- subIndex
- )
- "
- >字段全选</el-checkbox
- >
- </div>
- <div class="checkItem">
- <el-checkbox-group
- v-model="subItem.fieldList"
- :disabled="editType === 'view'"
- @change="
- handleFieldGroupChange(
- $event,
- index,
- item,
- subIndex
- )
- "
- >
- <el-checkbox
- v-for="children in subItem.action_data"
- :key="'FieldItem' + children.id"
- :label="children.id"
- :disabled="editType === 'view'"
- @change="
- handleFieldChange(
- $event,
- children.id,
- index,
- subIndex,
- item
- )
- "
- >{{ children.field_name }}</el-checkbox
- >
- </el-checkbox-group>
- </div>
- </div>
- </template>
- </div>
- </div>
- </el-col>
- </el-row>
- </div>
- </div>
- </div>
- <div class="rule-bottom">
- <el-button size="small" type="primary" @click="submitForm"
- >提 交</el-button
- >
- </div>
- </div>
- </div>
- </template>
- <style scoped lang="scss">
- .action {
- height: calc(100vh - 85px);
- position: relative;
- background: #fff;
- width: 100%;
- text-align: center;
- overflow: hidden;
- .action_show {
- position: relative;
- width: 100%;
- height: calc(100vh - 85px);
- .rule-bottom {
- padding: 20px 30px 8px 0;
- // background: #fff;
- // width: 100px;
- text-align: right;
- position: fixed;
- right: 0px;
- bottom: 0px;
- &::before {
- content: "";
- top: 0;
- right: 0;
- height: 2px;
- width: 100%;
- background-color: #e4e7ed;
- z-index: 1;
- }
- }
- .action_show_box {
- position: relative;
- height: 100%;
- // calc(100% - 50px);
- min-height: 100%;
- //calc(100% - 50px);
- display: flex;
- text-align: left;
- .role-list {
- position: relative;
- height: 100%;
- overflow-y: auto;
- width: 250px;
- padding: 8px 16px;
- min-height: 100%;
- flex-shrink: 0;
- &::after {
- content: "";
- position: absolute;
- top: 0;
- right: 0;
- height: 100%;
- width: 2px;
- background-color: #e4e7ed;
- z-index: 1;
- }
- .role-list__title {
- color: #b4b6c0;
- line-height: 32px;
- }
- .role-list__item {
- position: relative;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- height: 32px;
- line-height: 32px;
- padding-left: 8px;
- color: rgb(48, 49, 51);
- cursor: pointer;
- i {
- position: absolute;
- right: 0;
- line-height: 32px;
- }
- }
- .role-list__item.active {
- color: #63cbe7;
- background: #f7f7f7;
- }
- }
- .rule-view {
- position: relative;
- height: 100%;
- width: calc(100% - 250px);
- overflow-y: scroll;
- // padding: 0 0 0 16px;
- .ffff {
- width: 100%;
- display: flex;
- align-items: stretch;
- .ftitle {
- width: 50px;
- text-align: center;
- border-right: 1px solid #dfe6ec;
- border-bottom: 1px solid #dfe6ec;
- padding: 12px 14px;
- display: flex;
- align-items: center;
- flex-direction: column;
- justify-content: center;
- div {
- font-size: 17px;
- height: 22px;
- line-height: 22px;
- text-align: center;
- color: #97a8be;
- }
- }
- .fbody {
- width: calc(100% - 50px);
- .fbody-item {
- border-right: 1px solid #dfe6ec;
- border-bottom: 1px solid #dfe6ec;
- .stitle {
- padding: 18px 18px 12px 18px;
- border-bottom: 1px dashed #dfe6ec;
- font-size: 14px;
- color: #97a8be;
- ._h2 {
- display: inline-block;
- width: 100px;
- }
- }
- .scheck {
- padding: 15px 0 10px 0;
- display: flex;
- width: 100%;
- .checkAll {
- width: 140px;
- text-align: right;
- padding: 0 35px 0 0;
- }
- .checkItem {
- width: calc(100% - 140px);
- }
- }
- .sfield {
- padding: 0 0 10px 0;
- display: flex;
- width: 100%;
- .checkAll {
- width: 140px;
- text-align: right;
- padding: 0 35px 0 0;
- }
- .checkItem {
- width: calc(100% - 140px);
- }
- }
- }
- }
- }
- }
- }
- }
- }
- </style>
|