123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <template name="home">
- <view>
- <!-- 其他页面内容 -->
- <view v-if="currentTab === 0">
- <Firstmodel></Firstmodel>
- </view>
- <scroll-view class="cu-tabbar-height margin-top">
- <button size="default" type="default" style="color:#ffffff;backgroundColor:#1AAD19;borderColor:#1AAD19" @click="SendGet">12345</button>
- </scroll-view>
- </view>
- </template>
- <script>
- import Firstmodel from './firstmodel.vue'
- import { us,os } from '@/common/util/work.js'
- import socket from '@/common/js-sdk/socket/socket.js'
- import { mapActions } from "vuex"
- export default {
- components: {
- Firstmodel,
- },
- name: 'home',
- watch: {
- },
- data() {
- return {
- usList:us.data,
- osList:os.data,
- msgCount:0,
- dot:{
- mailHome:false
- },
- currentTab: 0, // 当前选中的选项卡索引
- }
- },
- methods: {
- // 启动webSocket
- onSocketOpen() {
- socket.init('websocket');
- },
- onSocketReceive() {
- var _this=this
- socket.acceptMessage = function(res){
- // console.log("页面收到的消息", res);
- if(res.cmd == "topic"){
- //系统通知
- _this.loadCount('1')
- }else if(res.cmd == "user"){
- //用户消息
- _this.loadCount('2')
- } else if(res.cmd == 'email'){
- //邮件消息
- _this.loadEmailCount()
- }
- }
- },
- switchTab(index) {
- // 切换选项卡时触发的事件
- this.currentTab = index;
- },
- SendGet(){
- uni.request({
- url:'http://182.92.126.35:9999/ventanaly-device/safety/ventanalyDeviceInfo/DeviceKind/queryBySystem',
- method:'GET',
- success:function(data){
- console.log(data);
- }
- })
- }
- },
- onLoad() {
- }
- }
- </script>
- <style scoped>
- .cu-list.grid>.cu-item {
- padding: 0px 0px;
- }
- .line2-icon {
- width: 60px;
- height: 60px;
- }
- .tab-bar {
- display: flex;
- justify-content: space-around;
- padding: 10px;
- background-color: #eee;
- }
-
- .tab-bar view {
- flex: 1;
- text-align: center;
- padding: 10px;
- border-radius: 5px;
- cursor: pointer;
- }
-
- .tab-bar view.active {
- background-color: #007BFF;
- color: #fff;
- }
-
- </style>
|