App-Android(使用App+htnl5框架,解决消息推送兼容SignalR问题)
loulijun2021
2022-10-19 d75b0b71c2feed580bf765c0d6007b3c1f17ca74
1.消息列表静态页面实现
已修改6个文件
已删除1个文件
已添加10个文件
1607 ■■■■■ 文件已修改
components/my_van_nav_bar.html 138 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
css/global.css 25 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/adgl/adhj.html 97 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/adgl/adxy.html 97 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/other/wdxx.html 206 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/sbgl/dqby.html 22 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/sbgl/rcdj.html 14 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/test/template.html 97 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/xtsy/index.html 130 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
unpackage/cache/wgt/H5EDA0853/components/my_van_nav_bar.html 138 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
unpackage/cache/wgt/H5EDA0853/css/global.css 16 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
unpackage/cache/wgt/H5EDA0853/pages/adgl/adhj.html 97 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
unpackage/cache/wgt/H5EDA0853/pages/adgl/adxy.html 97 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
unpackage/cache/wgt/H5EDA0853/pages/other/wdxx.html 206 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
unpackage/cache/wgt/H5EDA0853/pages/test/template.html 97 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
unpackage/cache/wgt/H5EDA0853/pages/xtsy/index.html 130 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
unpackage/release/apk/H5EDA0853__20221010164720.apk 补丁 | 查看 | 原始文档 | blame | 历史
components/my_van_nav_bar.html
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,138 @@
<!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>
    </head>
    <body>
        <div id="app">
            <div class="body">
                <van-sticky>
                    <van-nav-bar style="z-index: 1000;" :left-arrow='isLeftArrow' :title="title" @click-right="onClickRight">
                        <template #right>
                            <van-popover placement="bottom-end" :offset="[13,8]" v-model="showPopover" trigger="click"
                                :actions="actions" @select="onSelect">
                                <template #reference>
                                    <van-badge :content="10" max="99">
                                        <van-icon name="bars" size='20' color='#fff' />
                                    </van-badge>
                                </template>
                            </van-popover>
                        </template>
                    </van-nav-bar>
                </van-sticky>
            </div>
            <van-overlay :show="overlayShow" @click="overlayShow=false" />
        </div>
    </body>
    <script>
        var app = new Vue({
            el: '#app',
            props: {
                isLeftArrow: {
                    type: Boolean,
                    default: true,
                },
                title: {
                    type: String,
                    default: '标题',
                },
            },
            data: function() {
                return {
                    sheetShow: false,
                    overlayShow: false,
                    showPopover: false,
                    actions: [{
                            icon: 'comment-o',
                            text: '安灯响应'
                        },
                        {
                            icon: 'description',
                            text: '操作指导'
                        },
                        {
                            icon: 'award-o',
                            text: '成品追溯'
                        }, {
                            icon: 'revoke',
                            text: '退出登录'
                        },
                    ],
                }
            },
            created() {
            },
            mounted() {
            },
            methods: {
                // é¡¶éƒ¨å³å›¾æ ‡ç‚¹å‡»
                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">
        .van-nav-bar__arrow {
            color: #fff !important;
        }
        .van-nav-bar__content {
            background-color: #2651d8;
            height: 44px;
        }
        .van-nav-bar__title {
            color: #fff;
            letter-spacing: 2px;
        }
        .van-nav-bar__right {
            padding: 0;
            margin-right: 16px;
        }
    </style>
</html>
css/global.css
@@ -26,6 +26,21 @@
}
.topRight {
    width: 160px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.topRightItem {
    display: flex;
    align-items: center;
    line-height: 20px;
    border-bottom: 1px solid #eee;
}
.vanFieldInput {
    height: 36px;
    line-height: 36px;
@@ -90,10 +105,14 @@
}
.head_bar {
    width: 5px;
    height: 20px;
    background-color: red;
    /*     width: 5px;
    height: 20px; */
    /* background-color: red; */
    margin-left: 5px;
    border-radius: 3px;
    height: 20px;
    border: 2px solid red;
}
.head_title {
pages/adgl/adhj.html
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,97 @@
<!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>
        <link rel="stylesheet" href="../css/global.css" type="text/css" charset="utf-8" />
    </head>
    <body>
        <div id="app">
            <div class="body">
                <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>
            </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: '退出登录'
                    }],
                }
            },
            created() {
            },
            mounted() {
            },
            methods: {
                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');
    </style>
</html>
pages/adgl/adxy.html
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,97 @@
<!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>
        <link rel="stylesheet" href="../css/global.css" type="text/css" charset="utf-8" />
    </head>
    <body>
        <div id="app">
            <div class="body">
                <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>
            </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: '退出登录'
                    }],
                }
            },
            created() {
            },
            mounted() {
            },
            methods: {
                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');
    </style>
</html>
pages/other/wdxx.html
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,206 @@
<!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 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.gwmc}}</div>
                            <div style="margin-left: 5px;">生产车间:{{item.sccj}}</div>
                            <div style="margin-left: 5px;">呼叫类型:{{item.hjlx}}</div>
                            <div style="margin-left: 5px;">发起人员:{{item.fqry}}</div>
                            <div style="margin-left: 5px;">发起时间:{{item.fqsj}}</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: [{
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                    ]
                }
            },
            created() {
            },
            mounted() {
            },
            methods: {
                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>
pages/sbgl/dqby.html
@@ -25,15 +25,15 @@
        <script type="text/javascript">
            var topContent = [
                // {
                //     code: 'SB001',
                //     name: '电池组一线',
                //     wksp_code: "CJ002",
                //     wksp_name: '电池车间',
                //     eapmai_code: "bybz004",
                //     eapmai_name: "标准4",
                //     main_cycle: "M",
                // },
                {
                    code: 'SB001',
                    name: '电池组一线',
                    wksp_code: "CJ002",
                    wksp_name: '电池车间',
                    eapmai_code: "bybz004",
                    eapmai_name: "标准4",
                    main_cycle: "M",
                },
                // {
                //     code: 'SB003',
                //     name: '齿轮箱组一线',
@@ -247,9 +247,9 @@
                    </div>
                    <div class="head"
                        :style="{marginTop:topContent.length===0?'100px':'0',minHeight:topContent.length===0?'0':'220px'}"
                        style="margin-bottom: 130px;padding-bottom: 10px;overflow-y: ;"
                        :style="{marginTop:topContent.length===0?'78px':'0'}">
                         >
                        <div class="head_block" style="margin-bottom:10px;">
                            <div class="head_left">
                                <div class="head_bar"></div>
pages/sbgl/rcdj.html
@@ -25,13 +25,13 @@
        <script type="text/javascript">
            var topContent = [
                // {
                //     code: 'SB003',
                //     name: '齿轮箱组',
                //     wksp_code: "CJ002",
                //     wksp_name: '装配车间',
                //     eqpchkmain_code: "djbz002"
                // },
                {
                    code: 'SB003',
                    name: '齿轮箱组',
                    wksp_code: "CJ002",
                    wksp_name: '装配车间',
                    eqpchkmain_code: "djbz002"
                },
                // {
                //     code: 'SB001',
                //     name: '齿轮箱组',
pages/test/template.html
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,97 @@
<!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>
        <link rel="stylesheet" href="../css/global.css" type="text/css" charset="utf-8" />
    </head>
    <body>
        <div id="app">
            <div class="body">
                <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>
            </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: '退出登录'
                    }],
                }
            },
            created() {
            },
            mounted() {
            },
            methods: {
                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');
    </style>
</html>
pages/xtsy/index.html
@@ -21,22 +21,62 @@
        <script type="text/javascript" src="../../js/global.js"></script>
        <script type="text/javascript" src="../../js/global.css"></script>
    </head>
    <body>
        <div id="app">
            <div class="body">
                <van-nav-bar title="工作台" @click-right="onClickRight">
                <!-- <object data="../../components/my_van_nav_bar.html" title='我' width="100%" height="44"></object> -->
                <!--     <van-nav-bar title="工作台" @click-right="onClickRight">
                    <template #right>
                        <van-popover 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' />
                                <van-badge :content="10" max='99'>
                                    <van-icon name="bars" size='20' color='#fff' />
                                </van-badge>
                            </template>
                        </van-popover>
                    </template>
                </van-nav-bar> -->
                <van-nav-bar title="工作台" @click-right="onClickRight">
                    <template #right>
                        <van-popover placement="bottom-end" :offset="[13,8]" v-model="showPopover" trigger="click">
                            <div class="topRight">
                                <div class="topRightItem" @click="myMessageClick">
                                    <div>
                                        <van-icon name="comment-o"
                                            :badge="messageNumber!==0?(messageNumber>9?'9+':messageNumber):false"
                                            size="1.28rem" style="margin-right: 8px;margin-top: 18px;" />
                                    </div>
                                    <div style="font-size: 14px;border-bottom: 1px solid #eee;">我的消息</div>
                                </div>
                                <div class="topRightItem" @click="topPopoverClick('退出登录')">
                                    <div>
                                        <van-icon name="revoke" style="margin-right: 8px;" />
                                    </div>
                                    <div style="font-size: 14px;">退出登录</div>
                                </div>
                            </div>
                            <template #reference>
                                <van-badge :content="messageNumber" max='9' v-if='messageNumber!==0'>
                                    <van-icon name="bars" size='20' color='#fff' />
                                </van-badge>
                                <van-icon v-else name="bars" size='20' color='#fff' />
                            </template>
                        </van-popover>
                    </template>
                </van-nav-bar>
                <van-swipe :autoplay="3000">
                    <van-swipe-item v-for="(image, index) in images" :key="index">
@@ -84,19 +124,24 @@
                    overlayShow: false,
                    showPopover: false,
                    actions: [{
                        icon: 'description',
                        text: '操作指导'
                    }, {
                        icon: 'award-o',
                        text: '成品追溯'
                    }, {
                        icon: 'revoke',
                        text: '退出登录'
                    }],
                            icon: 'comment-o',
                            text: '安灯响应'
                        },
                        {
                            icon: 'description',
                            text: '操作指导'
                        }, {
                            icon: 'award-o',
                            text: '成品追溯'
                        }, {
                            icon: 'revoke',
                            text: '退出登录'
                        }
                    ],
                    firstMenu: [], //一级菜单
                    firstMenuName: '',
                    secondMenu: [], //二级菜单
                    messageNumber: 0, //我的消息数值
                }
            },
            created() {
@@ -104,8 +149,23 @@
            },
            mounted() {
                this.getfirstMenu()
                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.messageNumber=res.data.length
                    // this.messageNumber=9
                },
                // èŽ·å–ä¸€çº§èœå•
                async getfirstMenu() {
                    const data = {
@@ -143,6 +203,12 @@
                        case '2044':
                            url = '../sbgl/wxyz.html'
                            break;
                        case '2090':
                            url = '../adgl/adhj.html'
                            break;
                        case '2091':
                            url = '../adgl/adxy.html'
                            break;
                    }
                    window.location = url
                },
@@ -151,16 +217,19 @@
                    this.overlayShow = true
                },
                // é¡¶éƒ¨å³å›¾æ ‡ä¸‹æ‹‰é€‰æ‹©
                onSelect(action) {
                    if (action.text === '操作指导') {
                        topPopoverClick('操作指导')
                    } else if (action.text === '成品追溯') {
                        topPopoverClick('成品追溯')
                    } else if (action.text === '退出登录') {
                        topPopoverClick('退出登录')
                    }
                    this.overlayShow = false
                },
                // onSelect(action) {
                //     if (action.text === '操作指导') {
                //         topPopoverClick('操作指导')
                //     } else if (action.text === '成品追溯') {
                //         topPopoverClick('成品追溯')
                //     } else if (action.text === '退出登录') {
                //         topPopoverClick('退出登录')
                //     }
                //     this.overlayShow = false
                // },
                myMessageClick() {
                    window.location = '../other/wdxx.html'
                }
            }
        })
    </script>
@@ -191,5 +260,22 @@
            padding: 0;
            margin-right: 16px;
        }
        .topRight {
            width: 128px;
            min-height: 40px;
            display: flex;
            flex-direction: column;
            /* padding: 10px; */
        }
        .topRightItem {
            display: flex;
            height: 44px;
            align-items: center;
            line-height: 44px;
            /* border-bottom: 1px dotted #000; */
            padding: 0 16px;
        }
    </style>
</html>
unpackage/cache/wgt/H5EDA0853/components/my_van_nav_bar.html
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,138 @@
<!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>
    </head>
    <body>
        <div id="app">
            <div class="body">
                <van-sticky>
                    <van-nav-bar style="z-index: 1000;" :left-arrow='isLeftArrow' :title="title" @click-right="onClickRight">
                        <template #right>
                            <van-popover placement="bottom-end" :offset="[13,8]" v-model="showPopover" trigger="click"
                                :actions="actions" @select="onSelect">
                                <template #reference>
                                    <van-badge :content="10" max="99">
                                        <van-icon name="bars" size='20' color='#fff' />
                                    </van-badge>
                                </template>
                            </van-popover>
                        </template>
                    </van-nav-bar>
                </van-sticky>
            </div>
            <van-overlay :show="overlayShow" @click="overlayShow=false" />
        </div>
    </body>
    <script>
        var app = new Vue({
            el: '#app',
            props: {
                isLeftArrow: {
                    type: Boolean,
                    default: true,
                },
                title: {
                    type: String,
                    default: '标题',
                },
            },
            data: function() {
                return {
                    sheetShow: false,
                    overlayShow: false,
                    showPopover: false,
                    actions: [{
                            icon: 'comment-o',
                            text: '安灯响应'
                        },
                        {
                            icon: 'description',
                            text: '操作指导'
                        },
                        {
                            icon: 'award-o',
                            text: '成品追溯'
                        }, {
                            icon: 'revoke',
                            text: '退出登录'
                        },
                    ],
                }
            },
            created() {
            },
            mounted() {
            },
            methods: {
                // é¡¶éƒ¨å³å›¾æ ‡ç‚¹å‡»
                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">
        .van-nav-bar__arrow {
            color: #fff !important;
        }
        .van-nav-bar__content {
            background-color: #2651d8;
            height: 44px;
        }
        .van-nav-bar__title {
            color: #fff;
            letter-spacing: 2px;
        }
        .van-nav-bar__right {
            padding: 0;
            margin-right: 16px;
        }
    </style>
</html>
unpackage/cache/wgt/H5EDA0853/css/global.css
@@ -26,6 +26,13 @@
}
.topRight{
    width:160px;min-height:60px;display: flex;flex-direction: column;padding: 10px;
}
.topRightItem{
    display: flex;align-items: center;line-height: 20px;border-bottom: 1px solid #eee;
}
.vanFieldInput {
    height: 36px;
    line-height: 36px;
@@ -90,10 +97,13 @@
}
.head_bar {
    width: 5px;
    height: 20px;
    background-color: red;
/*     width: 5px;
    height: 20px; */
    /* background-color: red; */
    margin-left: 5px;
    border-radius: 3px;
    border:2px solid red;
}
.head_title {
unpackage/cache/wgt/H5EDA0853/pages/adgl/adhj.html
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,97 @@
<!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>
        <link rel="stylesheet" href="../css/global.css" type="text/css" charset="utf-8" />
    </head>
    <body>
        <div id="app">
            <div class="body">
                <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>
            </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: '退出登录'
                    }],
                }
            },
            created() {
            },
            mounted() {
            },
            methods: {
                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');
    </style>
</html>
unpackage/cache/wgt/H5EDA0853/pages/adgl/adxy.html
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,97 @@
<!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>
        <link rel="stylesheet" href="../css/global.css" type="text/css" charset="utf-8" />
    </head>
    <body>
        <div id="app">
            <div class="body">
                <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>
            </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: '退出登录'
                    }],
                }
            },
            created() {
            },
            mounted() {
            },
            methods: {
                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');
    </style>
</html>
unpackage/cache/wgt/H5EDA0853/pages/other/wdxx.html
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,206 @@
<!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 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.gwmc}}</div>
                            <div style="margin-left: 5px;">生产车间:{{item.sccj}}</div>
                            <div style="margin-left: 5px;">呼叫类型:{{item.hjlx}}</div>
                            <div style="margin-left: 5px;">发起人员:{{item.fqry}}</div>
                            <div style="margin-left: 5px;">发起时间:{{item.fqsj}}</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: [{
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                        {
                            gwmc: '机加01工位',
                            sccj: '机加车间',
                            hjlx: '呼叫设备',
                            fqry: '张三',
                            fqsj: '2022-10-10 11:12:12'
                        },
                    ]
                }
            },
            created() {
            },
            mounted() {
            },
            methods: {
                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>
unpackage/cache/wgt/H5EDA0853/pages/test/template.html
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,97 @@
<!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>
        <link rel="stylesheet" href="../css/global.css" type="text/css" charset="utf-8" />
    </head>
    <body>
        <div id="app">
            <div class="body">
                <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>
            </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: '退出登录'
                    }],
                }
            },
            created() {
            },
            mounted() {
            },
            methods: {
                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');
    </style>
</html>
unpackage/cache/wgt/H5EDA0853/pages/xtsy/index.html
@@ -21,22 +21,62 @@
        <script type="text/javascript" src="../../js/global.js"></script>
        <script type="text/javascript" src="../../js/global.css"></script>
    </head>
    <body>
        <div id="app">
            <div class="body">
                <van-nav-bar title="工作台" @click-right="onClickRight">
                <!-- <object data="../../components/my_van_nav_bar.html" title='我' width="100%" height="44"></object> -->
                <!--     <van-nav-bar title="工作台" @click-right="onClickRight">
                    <template #right>
                        <van-popover 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' />
                                <van-badge :content="10" max='99'>
                                    <van-icon name="bars" size='20' color='#fff' />
                                </van-badge>
                            </template>
                        </van-popover>
                    </template>
                </van-nav-bar> -->
                <van-nav-bar title="工作台" @click-right="onClickRight">
                    <template #right>
                        <van-popover placement="bottom-end" :offset="[13,8]" v-model="showPopover" trigger="click">
                            <div class="topRight">
                                <div class="topRightItem" @click="myMessageClick">
                                    <div>
                                        <van-icon name="comment-o"
                                            :badge="messageNumber!==0?(messageNumber>9?'9+':messageNumber):false"
                                            size="1.28rem" style="margin-right: 8px;margin-top: 18px;" />
                                    </div>
                                    <div style="font-size: 14px;border-bottom: 1px solid #eee;">我的消息</div>
                                </div>
                                <div class="topRightItem" @click="topPopoverClick('退出登录')">
                                    <div>
                                        <van-icon name="revoke" style="margin-right: 8px;" />
                                    </div>
                                    <div style="font-size: 14px;">退出登录</div>
                                </div>
                            </div>
                            <template #reference>
                                <van-badge :content="messageNumber" max='9' v-if='messageNumber!==0'>
                                    <van-icon name="bars" size='20' color='#fff' />
                                </van-badge>
                                <van-icon v-else name="bars" size='20' color='#fff' />
                            </template>
                        </van-popover>
                    </template>
                </van-nav-bar>
                <van-swipe :autoplay="3000">
                    <van-swipe-item v-for="(image, index) in images" :key="index">
@@ -84,19 +124,24 @@
                    overlayShow: false,
                    showPopover: false,
                    actions: [{
                        icon: 'description',
                        text: '操作指导'
                    }, {
                        icon: 'award-o',
                        text: '成品追溯'
                    }, {
                        icon: 'revoke',
                        text: '退出登录'
                    }],
                            icon: 'comment-o',
                            text: '安灯响应'
                        },
                        {
                            icon: 'description',
                            text: '操作指导'
                        }, {
                            icon: 'award-o',
                            text: '成品追溯'
                        }, {
                            icon: 'revoke',
                            text: '退出登录'
                        }
                    ],
                    firstMenu: [], //一级菜单
                    firstMenuName: '',
                    secondMenu: [], //二级菜单
                    messageNumber: 0, //我的消息数值
                }
            },
            created() {
@@ -104,8 +149,23 @@
            },
            mounted() {
                this.getfirstMenu()
                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.messageNumber=res.data.length
                    // this.messageNumber=9
                },
                // èŽ·å–ä¸€çº§èœå•
                async getfirstMenu() {
                    const data = {
@@ -143,6 +203,12 @@
                        case '2044':
                            url = '../sbgl/wxyz.html'
                            break;
                        case '2090':
                            url = '../adgl/adhj.html'
                            break;
                        case '2091':
                            url = '../adgl/adxy.html'
                            break;
                    }
                    window.location = url
                },
@@ -151,16 +217,19 @@
                    this.overlayShow = true
                },
                // é¡¶éƒ¨å³å›¾æ ‡ä¸‹æ‹‰é€‰æ‹©
                onSelect(action) {
                    if (action.text === '操作指导') {
                        topPopoverClick('操作指导')
                    } else if (action.text === '成品追溯') {
                        topPopoverClick('成品追溯')
                    } else if (action.text === '退出登录') {
                        topPopoverClick('退出登录')
                    }
                    this.overlayShow = false
                },
                // onSelect(action) {
                //     if (action.text === '操作指导') {
                //         topPopoverClick('操作指导')
                //     } else if (action.text === '成品追溯') {
                //         topPopoverClick('成品追溯')
                //     } else if (action.text === '退出登录') {
                //         topPopoverClick('退出登录')
                //     }
                //     this.overlayShow = false
                // },
                myMessageClick() {
                    window.location = '../other/wdxx.html'
                }
            }
        })
    </script>
@@ -191,5 +260,22 @@
            padding: 0;
            margin-right: 16px;
        }
        .topRight {
            width: 128px;
            min-height: 40px;
            display: flex;
            flex-direction: column;
            /* padding: 10px; */
        }
        .topRightItem {
            display: flex;
            height: 44px;
            align-items: center;
            line-height: 44px;
            /* border-bottom: 1px dotted #000; */
            padding: 0 16px;
        }
    </style>
</html>
unpackage/release/apk/H5EDA0853__20221010164720.apk
Binary files differ