当前位置: 首页>移动开发>正文

uniapp

隐藏指定页面的物理返回按钮 写在App.vue里*

uni-page[data-page="pages/content/details"] .uni-page-head-hd {
    display: none;
}

按物理返回键退出应用

        this.backButtonPress++;
        if (this.backButtonPress > 1) {
            plus.runtime.quit();(安卓)
                        plus.runtime.restart();(安卓)
        } else {
        plus.nativeUI.toast('再按一次退出应用');
        }
        setTimeout(function() {
        this.backButtonPress = 0;
        }, 1000);
        return true;
        },

禁止页面左右滑动

overflow-x: hidden;

将时间戳转为时间格式

function timestampToTime(timestamp) {
    var date = new Date(timestamp * 1000); //时间戳为10位需*1000,时间戳为13位的话不需乘1000
    var Y = date.getFullYear() + '-';
    var M = (date.getMonth() + 1 < 10 '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
    var D = date.getDate() + ' ';
    var h = date.getHours() + ':';
    var m = date.getMinutes() + ':';
    var s = date.getSeconds();
    return Y + M + D + h + m + s;
}

引入 uView

https://www.jianshu.com/p/d2900005b32a

echarts

https://blog.csdn.net/weixin_42120669/article/details/106123645?spm=1001.2014.3001.5502

ucharts(uniapp推荐使用)

可运行到 Web、iOS、Android(基于 uni-app / taro )、以及各种小程序(微信/支付宝/百度/头条/飞书/QQ/快手/钉钉/淘宝/京东/360)。直接下载插件即可使用(如基础属性不满足,可改这个js)


uniapp,第1张

https://www.xamrdz.com/mobile/46y1994390.html

相关文章: