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.
34 lines
613 B
34 lines
613 B
<template>
|
|
<view class="permission-edit">
|
|
<user-info></user-info>
|
|
<select-container></select-container>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import user_info from "../../components/user_info.vue";
|
|
import select_container from "./modules/edit/select_container.vue";
|
|
export default {
|
|
components: {
|
|
'user-info': user_info,
|
|
'select-container': select_container
|
|
},
|
|
data(){
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad(){
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.permission-edit{
|
|
padding: 24upx;
|
|
}
|
|
</style>
|