|
@@ -21,23 +21,13 @@
|
|
|
@click="!isBtnDisabled && switchRoleHandle(item)"
|
|
|
>
|
|
|
{{ item.role_name }}
|
|
|
- <i
|
|
|
- v-if="isBtnDisabled && item.id == roleActive.id"
|
|
|
- class="el-icon-loading"
|
|
|
- />
|
|
|
+ <i v-if="isBtnDisabled && item.id == roleActive.id" class="el-icon-loading" />
|
|
|
</li>
|
|
|
</ul>
|
|
|
<div class="rule-view">
|
|
|
<div class="rule-list">
|
|
|
- <el-row
|
|
|
- v-for="(item, index) in actionList"
|
|
|
- :key="'menu' + item.id + index"
|
|
|
- >
|
|
|
- <el-col
|
|
|
- v-if="item.child && item.child.length > 0"
|
|
|
- class="ffff"
|
|
|
- :span="24"
|
|
|
- >
|
|
|
+ <el-row v-for="(item, index) in actionList" :key="'menu' + item.id + index">
|
|
|
+ <el-col v-if="item.child && item.child.length > 0" class="ffff" :span="24">
|
|
|
<div class="ftitle">
|
|
|
<span>{{ item.menu_name }}</span>
|
|
|
</div>
|
|
@@ -63,9 +53,7 @@
|
|
|
style="margin: 0 0 0 20px"
|
|
|
size="mini"
|
|
|
v-if="
|
|
|
- subItem &&
|
|
|
- subItem.private &&
|
|
|
- subItem.private.length === 2
|
|
|
+ subItem && subItem.private && subItem.private.length === 2
|
|
|
"
|
|
|
v-model="subItem.is_private_change"
|
|
|
>
|
|
@@ -86,14 +74,7 @@
|
|
|
v-model="subItem.checkAll"
|
|
|
:disabled="!powers.some((item) => item == '008')"
|
|
|
:indeterminate="indeterminateCheck(subItem)"
|
|
|
- @change="
|
|
|
- handleCheckAllChange(
|
|
|
- $event,
|
|
|
- index,
|
|
|
- item,
|
|
|
- subIndex
|
|
|
- )
|
|
|
- "
|
|
|
+ @change="handleCheckAllChange($event, index, item, subIndex)"
|
|
|
>功能全选</el-checkbox
|
|
|
>
|
|
|
</div>
|
|
@@ -102,19 +83,12 @@
|
|
|
v-model="subItem.checkList"
|
|
|
:disabled="!powers.some((item) => item == '008')"
|
|
|
@change="
|
|
|
- handleCheckedGroupChange(
|
|
|
- $event,
|
|
|
- index,
|
|
|
- item,
|
|
|
- subIndex
|
|
|
- )
|
|
|
+ handleCheckedGroupChange($event, index, item, subIndex)
|
|
|
"
|
|
|
>
|
|
|
<template v-for="children in subItem.action">
|
|
|
<el-checkbox
|
|
|
- :disabled="
|
|
|
- !powers.some((item) => item == '008')
|
|
|
- "
|
|
|
+ :disabled="!powers.some((item) => item == '008')"
|
|
|
:key="'checkItem' + children.id"
|
|
|
:label="children.id"
|
|
|
@change="
|
|
@@ -134,23 +108,14 @@
|
|
|
</div>
|
|
|
<div
|
|
|
class="sfield"
|
|
|
- v-if="
|
|
|
- subItem.action_data && subItem.action_data.length > 0
|
|
|
- "
|
|
|
+ v-if="subItem.action_data && subItem.action_data.length > 0"
|
|
|
>
|
|
|
<div class="checkAll">
|
|
|
<el-checkbox
|
|
|
v-model="subItem.fieldAll"
|
|
|
:disabled="!powers.some((item) => item == '008')"
|
|
|
:indeterminate="indeterminateField(subItem)"
|
|
|
- @change="
|
|
|
- handleFieldAllChange(
|
|
|
- $event,
|
|
|
- index,
|
|
|
- item,
|
|
|
- subIndex
|
|
|
- )
|
|
|
- "
|
|
|
+ @change="handleFieldAllChange($event, index, item, subIndex)"
|
|
|
>字段全选</el-checkbox
|
|
|
>
|
|
|
</div>
|
|
@@ -159,21 +124,14 @@
|
|
|
v-model="subItem.fieldList"
|
|
|
:disabled="!powers.some((item) => item == '008')"
|
|
|
@change="
|
|
|
- handleFieldGroupChange(
|
|
|
- $event,
|
|
|
- index,
|
|
|
- item,
|
|
|
- subIndex
|
|
|
- )
|
|
|
+ handleFieldGroupChange($event, index, item, subIndex)
|
|
|
"
|
|
|
>
|
|
|
<template v-for="children in subItem.action_data">
|
|
|
<el-checkbox
|
|
|
:key="'FieldItem' + children.id"
|
|
|
:label="children.id"
|
|
|
- :disabled="
|
|
|
- !powers.some((item) => item == '008')
|
|
|
- "
|
|
|
+ :disabled="!powers.some((item) => item == '008')"
|
|
|
@change="
|
|
|
handleFieldChange(
|
|
|
$event,
|
|
@@ -214,11 +172,11 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import asyncRequest from "@/apis/service/interest/action";
|
|
|
+import asyncRequest from "@/apis/caixiaoService/interest/action";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
export default {
|
|
|
name: "Action",
|
|
|
- mixins:[resToken],
|
|
|
+ mixins: [resToken],
|
|
|
data() {
|
|
|
return {
|
|
|
ruleForm: {},
|
|
@@ -240,9 +198,7 @@ export default {
|
|
|
computed: {
|
|
|
powers() {
|
|
|
let tran =
|
|
|
- this.$store.getters.btnList.find(
|
|
|
- (item) => item.menu_route == "action"
|
|
|
- ) || {};
|
|
|
+ this.$store.getters.btnList.find((item) => item.menu_route == "action") || {};
|
|
|
if (tran && tran.action && tran.action.length > 0) {
|
|
|
return tran.action;
|
|
|
} else {
|
|
@@ -259,8 +215,7 @@ export default {
|
|
|
// 未选中子节点的数量
|
|
|
const noSlectItemLength = item.action.filter(
|
|
|
(filitem) =>
|
|
|
- item.checkList.findIndex((finditem) => finditem === filitem.id) ==
|
|
|
- -1
|
|
|
+ item.checkList.findIndex((finditem) => finditem === filitem.id) == -1
|
|
|
).length;
|
|
|
// // 当前节点的index
|
|
|
// 存在选中子节点且存在未选中子节点为中间态
|
|
@@ -278,8 +233,7 @@ export default {
|
|
|
// 未选中子节点的数量
|
|
|
const noSlectItemLength = item.action_data.filter(
|
|
|
(filitem) =>
|
|
|
- item.fieldList.findIndex((finditem) => finditem === filitem.id) ==
|
|
|
- -1
|
|
|
+ item.fieldList.findIndex((finditem) => finditem === filitem.id) == -1
|
|
|
).length;
|
|
|
// // 当前节点的index
|
|
|
// 存在选中子节点且存在未选中子节点为中间态
|
|
@@ -297,9 +251,9 @@ export default {
|
|
|
this.actionList[index].child[subIndex].checkAll = checkAll;
|
|
|
this.$set(this.actionList, index, item);
|
|
|
this.actionList[index].child[subIndex].action.forEach((element) => {
|
|
|
- const findindex = this.actionList[index].child[
|
|
|
- subIndex
|
|
|
- ].checkList.findIndex((findItem) => findItem === element.id);
|
|
|
+ const findindex = this.actionList[index].child[subIndex].checkList.findIndex(
|
|
|
+ (findItem) => findItem === element.id
|
|
|
+ );
|
|
|
if (checkAll && findindex == -1) {
|
|
|
this.actionList[index].child[subIndex].checkList.push(element.id);
|
|
|
} else if (!checkAll && findindex > -1) {
|
|
@@ -312,9 +266,9 @@ export default {
|
|
|
this.actionList[index].child[subIndex].fieldAll = fieldAll;
|
|
|
this.$set(this.actionList, index, item);
|
|
|
this.actionList[index].child[subIndex].action_data.forEach((element) => {
|
|
|
- const findindex = this.actionList[index].child[
|
|
|
- subIndex
|
|
|
- ].fieldList.findIndex((findItem) => findItem === element.id);
|
|
|
+ const findindex = this.actionList[index].child[subIndex].fieldList.findIndex(
|
|
|
+ (findItem) => findItem === element.id
|
|
|
+ );
|
|
|
if (fieldAll && findindex == -1) {
|
|
|
this.actionList[index].child[subIndex].fieldList.push(element.id);
|
|
|
} else if (!fieldAll && findindex > -1) {
|
|
@@ -325,9 +279,9 @@ export default {
|
|
|
// 复选框组内的选中/不选中
|
|
|
handleCheckedGroupChange(event, index, item, subIndex) {
|
|
|
// console.log(event, index, subIndex);
|
|
|
- this.actionList[index].child[subIndex].checkAll = this.actionList[
|
|
|
- index
|
|
|
- ].child[subIndex].action.every(
|
|
|
+ this.actionList[index].child[subIndex].checkAll = this.actionList[index].child[
|
|
|
+ subIndex
|
|
|
+ ].action.every(
|
|
|
(evitem) =>
|
|
|
this.actionList[index].child[subIndex].checkList.findIndex(
|
|
|
(finditem) => finditem === evitem.id
|
|
@@ -337,9 +291,9 @@ export default {
|
|
|
},
|
|
|
// 复选框组内的选中/不选中
|
|
|
handleFieldGroupChange(event, index, item, subIndex) {
|
|
|
- this.actionList[index].child[subIndex].fieldAll = this.actionList[
|
|
|
- index
|
|
|
- ].child[subIndex].action_data.every(
|
|
|
+ this.actionList[index].child[subIndex].fieldAll = this.actionList[index].child[
|
|
|
+ subIndex
|
|
|
+ ].action_data.every(
|
|
|
(evitem) =>
|
|
|
this.actionList[index].child[subIndex].fieldList.findIndex(
|
|
|
(finditem) => finditem === evitem.id
|
|
@@ -431,7 +385,7 @@ export default {
|
|
|
});
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
await this.logout();
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
this.$message.warning(res.message);
|
|
|
}
|
|
|
loadding.close();
|
|
@@ -468,7 +422,7 @@ export default {
|
|
|
this.refreshRoleCheckAllStatus();
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
await this.logout();
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
this.$message.warning(res.message);
|
|
|
}
|
|
|
this.isBtnDisabled = false;
|
|
@@ -481,7 +435,7 @@ export default {
|
|
|
await this.initRoleList();
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
await this.logout();
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
this.$message.warning(res.message);
|
|
|
}
|
|
|
},
|
|
@@ -494,7 +448,7 @@ export default {
|
|
|
await this.switchRoleHandle(this.roleList[0]);
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
await this.logout();
|
|
|
- }else{
|
|
|
+ } else {
|
|
|
this.$message.warning(res.message);
|
|
|
}
|
|
|
}
|