3 Star 0 Fork 0

chenPeng/计步

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
chenPeng 提交于 2024-10-26 13:39 . no message
import App from './App'
import store from './store';
const logic = {
systemInfo: null,
/**
* 显示消息提示
*
* @param {Object} text
* @param {Object} icon
*/
showToast(text, icon) {
return uni.showToast({
title: text || '加载中',
icon: icon || 'none',
mask: true,
duration: 2000
});
},
/**
* 全局方法 - px2rpx
*
* @param {Object} px
*/
px2rpx(px) {
if (this.systemInfo === null) {
this.systemInfo = uni.getSystemInfoSync()
}
// 官方规定屏幕宽为750rpx
return px / this.systemInfo.windowWidth * 750;
},
/**
* 全局方法 - rpx2px
*
* @param {Object} rpx
*/
rpx2px(rpx) {
if (this.systemInfo === null) {
this.systemInfo = uni.getSystemInfoSync()
}
// 官方规定屏幕宽为750rpx
return rpx / 750 * this.systemInfo.windowWidth;
},
}
import {
createSSRApp
} from 'vue'
export function createApp() {
const app = createSSRApp(App)
app.use(store)
app.config.globalProperties.$logic = logic
return {
app
}
}
function isPromise(obj) {
return (!!obj &&
(typeof obj === "object" || typeof obj === "function") &&
typeof obj.then === "function"
);
}
// uni方法转then数组
uni.addInterceptor({
returnValue(res) {
if (!isPromise(res)) {
return res;
}
const returnValue = [undefined, undefined];
return res
.then((res) => {
returnValue[1] = res;
})
.catch((err) => {
returnValue[0] = err;
})
.then(() => returnValue);
},
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/chenPengzs/walking.git
git@gitee.com:chenPengzs/walking.git
chenPengzs
walking
计步
master

搜索帮助