代码拉取完成,页面将自动刷新
<script>
import WebSocketClient from "./utils/websocket.js";
export default {
onLaunch: function () {
// let ws = {};
// let netStatus = {};
// // 创建WebSocket实例
// ws.value = new WebSocketClient(
// `ws://${this.$u.ip}/websocket/777bf7991e644ad18352b5ad4046df6b/777bf7991e644ad18352b5ad4046548d`z
// );
// // 连接WebSocket
// ws.value.connect();
// // 接收消息时触发
// ws.value.onMessage = (value) => {
// // const obj = JSON.parse(value);
// // if (obj.type === "message") {
// // list.value.push({
// // time: new Date().toLocaleString(),
// // value: obj.value,
// // });
// // }
// };
// // 重连时触发
// ws.value.onReconnect = () => {
// netStatus.value = 2;
// };
// // 连接成功后触发
// ws.value.onConnected = () => {
// netStatus.value = 1;
// };
// // 关闭后触发(直接销毁了,不会继续重连)
// ws.value.onClosed = () => {
// netStatus.value = 0;
// };
// let that = this;
uni.onTabBarMidButtonTap(() => {
console.log("点击");
if (!this.vuex_user.id) {
uni.reLaunch({
url: "package/pages/login/login",
});
return;
}
uni.navigateTo({
url: "submitVideo",
});
});
uni.getSystemInfo({
success: (res) => {
this.$u.vuex("vuex_height", res.windowHeight);
this.$u.vuex("vuex_width", res.windowWidth);
},
});
// uni.request({
// url: this.$u.baseUrl + "/api/about/returnFalse",
// header: {
// "content-type": "application/x-www-form-urlencoded",
// },
// data: {},
// method: "POST",
// dataType: "JSON",
// success: (res) => {
// uni.setStorageSync("version", JSON.parse(res.data.data));
// // console.log(JSON.parse(res.data.data));
// },
// fail: (res) => {},
// });
},
onShow: function () {
console.log("App Show");
},
onHide: function () {
console.log("App Hide");
},
};
</script>
<style lang="scss">
/* #ifndef APP-PLUS-NVUE */
/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
@import "uview-ui/index.scss";
/*每个页面公共css */
.display {
display: flex;
}
.justify {
justify-content: center;
}
.align {
align-items: center;
}
.flex {
flex-direction: row;
}
.rowreverse {
flex-direction: row-reverse;
}
.center {
justify-content: space-between;
}
.around {
justify-content: space-around;
}
.colum {
flex-direction: column;
}
.warp {
flex-wrap: wrap;
}
page {
background: #161a23;
color: #ffffff;
}
.status-bar {
height: var(--status-bar-height);
width: 100%;
}
/* #endif */
</style>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。