2 Star 0 Fork 0

火焰山网络/叠聚聊天APP

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 2.56 KB
一键复制 编辑 原始数据 按行查看 历史
You V 提交于 2024-01-12 19:57 . 修改视频集内滑动逻辑
<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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/huoyanshanwangluo/stacked-chat-app.git
[email protected]:huoyanshanwangluo/stacked-chat-app.git
huoyanshanwangluo
stacked-chat-app
叠聚聊天APP
master

搜索帮助