123456789101112131415161718192021222324252627282930313233343536 |
- export default {
- // data(){
- // return {
- // userList:{
- //
- // }
- // }
- // },
- //
- // inject:['getRoomInfo'],
- //
- // methods:{
- //
- // fetchUserList(){
- // return this.$request({
- // url:'room/get_room_user_list',
- // data:{
- // rid: this.roomInfo.rid
- // },
- // page:obj,
- // token:true
- // }).then((data)=>{
- //
- // console.log(data);
- // }).catch(obj.fail);
- // }
- //
- // },
- //
- // created(){
- // this.roomInfo = this.getRoomInfo();
- // this.fetchUserList();
- // }
- }
|