123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <template>
- <view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- userList:{
-
- },
- userid:'',
- list:[],
- }
- },
- onLoad() {
- this.getUserList();
- },
- methods: {
- async getUserList() {
- let _this = this;
-
- this.socketTask_getUserList = uni.connectSocket({
-
- url: 'ws://117.78.18.24:9988/websocket/pageNumber_4/functionNumber_3/all',
- success(data) {
- console.log(data);
- }
- });
-
-
- this.socketTask_getUserList.onOpen(res => {
- console.log('WebSocket连接正常打开中...!');
- this.is_open_socket = true;
-
-
- this.socketTask_getUserList.onMessage(res => {
-
- _this.userList = JSON.parse(res.data);
- _this.userid = uni.getStorageSync('userid');
- let list = [{}];
- for(let i =0;i<_this.userList.length;i++){
- list[i] = {};
- list[i].id =_this.userList[i].id+'-'+_this.userid;
- }
- _this.list = list;
- console.log(list);
- });
- });
- },
-
- }
- }
- </script>
- <style>
- </style>
|