zhanghua
2025-07-16 7c20fd15b7fbc2bd5756b39d5ab655cc849ffcc3
src/views/systemSetting/platform/mySetting/index.vue
@@ -1,9 +1,9 @@
<template>
    <div class="mySetting">
        <!-- header 页面标题提示 -->
        <header>
        <!-- <header>
            <div class="header-title">系统设置 >> 门户管理 > 自定义菜单设置</div>
        </header>
        </header> -->
        <main>
            <div class="main-content">
                <!-- 数据展示 -->
@@ -75,7 +75,6 @@
        },
        // 修改状态
        handleChangeStatus(data) {
            console.log(data);
            let { isStart, relationId } = data;
            isStart ? isStart = 1 : isStart = 0;
            this.$axios({
@@ -92,7 +91,6 @@
                })
        },
        handleDelete(data) {
            console.log(data);
            this.$confirm('您确认要删除订单吗?')
                .then(_ => {
                    this.$axios({
@@ -110,7 +108,6 @@
                        })
                })
                .catch(err => {
                    console.log(err);
                })
        },
        // 获取菜单列表
@@ -119,15 +116,11 @@
                method: 'get',
                url: 'sccg/system/portal/menu/search_myself',
            }).then(res => {
                this.menuList = res.data;
                this.menuList = res.data.menu;
            })
        },
        // 拖拽
        handleDrop(before, after, inner, event) {
            console.log(before)
            console.log(after)
            console.log(inner)
            console.log(event);
        },
        // 获取是否可以放置
        allowDrop(before, inner, next) {
@@ -150,7 +143,7 @@
.mySetting {
    margin: 10px 20px;
    text-align: left;
    color: #4b9bb7;
    // color: #4b9bb7;
    header {
        line-height: 60px;
@@ -168,10 +161,9 @@
    }
    main {
        background-color: #09152f;
        // background-color: #09152f;
        margin-top: 20px;
        padding-bottom: 50px;
        border: 1pox solid #fff;
        .main-content {
            .my-container {
@@ -271,4 +263,8 @@
        padding: 0;
    }
}
.my-aside{
    border-right: 1px solid #d3d3d3  ;
}
</style>