App-Android(使用App+htnl5框架,解决消息推送兼容SignalR问题)
loulijun2021
2022-10-20 8050665efc07f2666d803b14f01dfe07dc54da26
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
        <meta name="HandheldFriendly" content="true" />
        <meta name="MobileOptimized" content="320" />
        <title>新凯迪制造云平台</title>
 
        <!-- 引入样式文件 -->
        <link rel="stylesheet" href="../../css/vant.css" />
        <!-- 引入 Vue 和 Vant 的 JS 文件 -->
        <script src="../../js/vue.min.js"></script>
        <script src="../../js/vant.min.js"></script>
 
        <script type="text/javascript" src="../../js/jquery-1.6.4.min.js"></script>
        <script type="text/javascript" src="../../js/axios.min.js"></script>
        <script type="text/javascript" src="../../js/http.js"></script>
 
        <script type="text/javascript" src="../../js/global.js"></script>
        <link rel="stylesheet" href="../css/global.css" type="text/css" charset="utf-8" />
 
    </head>
    <body>
        <div id="app">
 
            <div class="body">
 
                <van-sticky>
                    <van-nav-bar title="消息列表" @click-right="onClickRight" left-arrow @click-left="onClickleft">
                        <template #right>
                            <van-popover style="" placement="bottom-end" :offset="[13,8]" v-model="showPopover"
                                trigger="click" :actions="actions" @select="onSelect">
                                <template #reference>
                                    <van-icon name="bars" size='20' color='#fff' />
                                </template>
                            </van-popover>
                        </template>
                    </van-nav-bar>
                </van-sticky>
 
 
 
                <div v-if="messageArr.length===0">
                    <div class="sacnBody">
                        <div class="box">
                            <div class="boxImg"></div>
                        </div>
                        <div class="scanText">暂无消息</div>
                    </div>
                </div>
                <div v-else class="head">
                    <div class="head_block">
                        <div class="head_left">
                            <div class="head_bar"></div>
                            <div class="head_title">
                                消息列表
                            </div>
                        </div>
                    </div>
 
                    <van-steps :active='messageArr.length' direction="vertical" center active-color='red'
                        style="margin-left: 5px;">
                        <van-step v-for='(item,index) in messageArr'>
                            <div slot="finish-icon">
                                <div class="messageIndex">{{index+1}}</div>
                            </div>
                            <div style="margin-left: 5px;">工位名称:{{item.eqp_name}}</div>
                            <div style="margin-left: 5px;">生产车间:{{item.wkshp_name}}</div>
                            <div style="margin-left: 5px;">呼叫类型:{{item.typename}}</div>
                            <div style="margin-left: 5px;">发起人员:{{item.start_user}}</div>
                            <div style="margin-left: 5px;">发起时间:{{item.start_date}}</div>
                        </van-step>
                    </van-steps>
                </div>
 
 
            </div>
 
 
            <van-overlay :show="overlayShow" @click="overlayShow=false" />
 
 
        </div>
    </body>
    <script>
        var app = new Vue({
            el: '#app',
            data: function() {
                return {
                    overlayShow: false,
                    showPopover: false,
                    actions: [
                        //     {
                        //     icon: 'description',
                        //     text: '操作指导'
                        // }, {
                        //     icon: 'award-o',
                        //     text: '成品追溯'
                        // },
                        {
                            icon: 'revoke',
                            text: '退出登录'
                        },
                    ],
                    messageArr: []
 
 
                }
            },
            created() {
 
            },
            mounted() {
                this.getLoginAppAnDonMessage()
            },
            methods: {
            async    getLoginAppAnDonMessage() {
                    const data = {
                        userid: localStorage.getItem('userid'),
                        usercode: localStorage.getItem('usercode'),
                        username: localStorage.getItem('username'),
                        usertype: localStorage.getItem('usertype'),
                    }
 
                    const res = await post('Login/LoginAppAnDonMessage' + formatParams(data))
                    this.messageArr = res.data
                },
                onClickleft() {
                    history.back()
                },
                onClickRight() {
                    this.overlayShow = true
                },
                onSelect(action) {
                    if (action.text === '操作指导') {
                        topPopoverClick('操作指导')
                    } else if (action.text === '成品追溯') {
                        topPopoverClick('成品追溯')
                    } else if (action.text === '退出登录') {
                        topPopoverClick('退出登录')
                    }
                    this.overlayShow = false
                },
            }
        })
    </script>
    <style type="text/css">
        @import url('../../css/global.css');
 
        .messageIndex {
            color: red;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid red;
        }
    </style>
</html>