| | |
| | | <span class="title">{{ item.name }}</span>
|
| | | </div>
|
| | | </div>
|
| | | <div class="AuthorizationRight"></div>
|
| | | <div class="AuthorizationRight">
|
| | | <AuthorizationSetting v-if="activePage == 0"></AuthorizationSetting>
|
| | | <AuthorizationManagement
|
| | | v-if="activePage == 1"
|
| | | ></AuthorizationManagement>
|
| | | </div>
|
| | | </div>
|
| | | </div>
|
| | | </template>
|
| | |
|
| | | <script>
|
| | | import AuthorizationManagement from "@/pages/settings/components/AuthorizationManagement";
|
| | | import AuthorizationSetting from "@/pages/settings/components/AuthorizationSetting";
|
| | | export default {
|
| | | components: {
|
| | | AuthorizationSetting,
|
| | | AuthorizationManagement,
|
| | | },
|
| | | data() {
|
| | | return {
|
| | | activePage: 0,
|
| | |
| | | background-color: #f2f2f7;
|
| | | }
|
| | | }
|
| | |
|
| | | .AuthorizationRight {
|
| | | flex: 1;
|
| | | overflow: auto;
|
| | | box-sizing: border-box;
|
| | | padding: 10px;
|
| | | padding-top: 6px;
|
| | | border-top: 4px solid #f2f2f7;
|
| | | background-color: #fbfaff;
|
| | | }
|
| | | }
|
| | | </style> |