You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!--
|
|
|
|
* @Author: aBin
|
|
|
|
* @email: binbin0314@126.com
|
|
|
|
* @Date: 2021-07-19 10:52:05
|
|
|
|
* @LastEditors: aBin
|
|
|
|
* @LastEditTime: 2021-07-19 18:02:10
|
|
|
|
-->
|
|
|
|
<template>
|
|
|
|
<view class="wrap">
|
|
|
|
<view class="rolebar">
|
|
|
|
<view>
|
|
|
|
<view class="container">
|
|
|
|
<role-list />
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import RoleList from './components/RoleList.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Roles',
|
|
|
|
components: { RoleList },
|
|
|
|
data() {
|
|
|
|
return {};
|
|
|
|
},
|
|
|
|
methods: {},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.container {
|
|
|
|
padding: 0 20rpx;
|
|
|
|
}
|
|
|
|
</style>
|