集团详情

This commit is contained in:
BOOL\25024
2024-01-15 13:38:42 +08:00
6 changed files with 48 additions and 14 deletions

View File

@@ -183,4 +183,4 @@ export default {
};
</script>
<style lang="scss" scoped></style>
<style lang="scss" scoped></style>

View File

@@ -111,8 +111,6 @@
v-hasPermi="['member:memberGroup:edit']">修改</el-button>
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
v-hasPermi="['member:memberGroup:remove']">删除</el-button>
<!-- <el-button size="mini" type="text" icon="el-icon-plus" @click="handleAddMember(scope.row)"
v-hasPermi="['member:memberGroup:edit']">添加会员</el-button> -->
</template>
</el-table-column>
</el-table>
@@ -336,15 +334,6 @@ export default {
...this.queryParams
}, `memberGroup_${new Date().getTime()}.xlsx`)
},
/** 添加会员按钮 */
handleAddMember(row) {
this.reset();
const id = row.id || this.ids
getMemberGroup(id).then(response => {
this.form = response.data;
this.openAddMember = true;
});
},
}
};
</script>