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-20 10:54:27
|
|
|
|
-->
|
|
|
|
<template>
|
|
|
|
<view class="wrap bg-white">
|
|
|
|
<view class="px-2">
|
|
|
|
<role-list />
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import RoleList from './components/RoleList.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Roles',
|
|
|
|
components: { RoleList },
|
|
|
|
data() {
|
|
|
|
return {};
|
|
|
|
},
|
|
|
|
methods: {},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss"></style>
|