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.
25 lines
427 B
25 lines
427 B
<template>
|
|
<view class="wrap bg-white px-2">
|
|
<role-list @getTasks="getTasks" />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import RoleList from './component/RoleList';
|
|
|
|
export default {
|
|
name: 'Roles',
|
|
components: { RoleList },
|
|
data() {
|
|
return {};
|
|
},
|
|
methods: {
|
|
getTasks(query) {
|
|
console.log('query: ', query);
|
|
this.$emit('getTasks', query);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="scss"></style>
|
|
|