Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
9cf1a96e
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
6045
Star
91
Fork
165
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
9cf1a96e
编写于
12月 05, 2024
作者:
Dcloud_UNI_yuhe
提交者:
fxy060608
12月 07, 2024
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: 修复 getSystemInfo 警告 替换为具体的 API
上级
88ded457
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
9 addition
and
57 deletion
+9
-57
pages/API/get-system-info/get-system-info.uvue
pages/API/get-system-info/get-system-info.uvue
+3
-9
pages/API/websocket/socketTask.uvue
pages/API/websocket/socketTask.uvue
+1
-6
pages/API/websocket/websocket.uvue
pages/API/websocket/websocket.uvue
+1
-6
pages/tabBar/API.uvue
pages/tabBar/API.uvue
+2
-9
pages/template/drop-card/card/card.uvue
pages/template/drop-card/card/card.uvue
+0
-10
pages/template/scroll-fold-nav/scroll-fold-nav.uvue
pages/template/scroll-fold-nav/scroll-fold-nav.uvue
+2
-5
pages/template/swiper-vertical-video/swiper-vertical-video.uvue
...template/swiper-vertical-video/swiper-vertical-video.uvue
+0
-7
uni_modules/uni-pay-x/components/uni-pay/uni-pay.uvue
uni_modules/uni-pay-x/components/uni-pay/uni-pay.uvue
+0
-5
未找到文件。
pages/API/get-system-info/get-system-info.uvue
浏览文件 @
9cf1a96e
...
@@ -40,14 +40,8 @@
...
@@ -40,14 +40,8 @@
}
}
let globalScreenHeight = 0
let globalScreenHeight = 0
try {
try {
// #ifdef MP-WEIXIN
globalScreenHeight = uni.getWindowInfo().screenHeight
globalScreenHeight = uni.getWindowInfo().screenHeight
// #endif
// #ifndef MP-WEIXIN
globalScreenHeight = uni.getSystemInfoSync().screenHeight
// #endif
} catch (e) {
} catch (e) {
// 兼容本地测试
// 兼容本地测试
console.error(e)
console.error(e)
...
@@ -129,4 +123,4 @@
...
@@ -129,4 +123,4 @@
.uni-pd {
.uni-pd {
padding-left: 15px;
padding-left: 15px;
}
}
</style>
</style>
pages/API/websocket/socketTask.uvue
浏览文件 @
9cf1a96e
...
@@ -44,12 +44,7 @@
...
@@ -44,12 +44,7 @@
},
},
},
},
onLoad() {
onLoad() {
// #ifdef MP-WEIXIN
this.platform = uni.getDeviceInfo().platform as string
this.platform = uni.getDeviceInfo().platform
// #endif
// #ifndef MP-WEIXIN
this.platform = uni.getSystemInfoSync().platform
// #endif
},
},
onUnload() {
onUnload() {
uni.hideLoading()
uni.hideLoading()
...
...
pages/API/websocket/websocket.uvue
浏览文件 @
9cf1a96e
...
@@ -45,12 +45,7 @@
...
@@ -45,12 +45,7 @@
},
},
},
},
onLoad() {
onLoad() {
// #ifdef MP-WEIXIN
this.platform = uni.getDeviceInfo().platform as string
this.platform = uni.getDeviceInfo().platform
// #endif
// #ifndef MP-WEIXIN
this.platform = uni.getSystemInfoSync().platform
// #endif
},
},
onUnload() {
onUnload() {
uni.closeSocket({
uni.closeSocket({
...
...
pages/tabBar/API.uvue
浏览文件 @
9cf1a96e
...
@@ -71,15 +71,8 @@
...
@@ -71,15 +71,8 @@
leftWinActive() : string {
leftWinActive() : string {
return state.leftWinActive.slice(1)
return state.leftWinActive.slice(1)
},
},
windowWidth() : number {
windowWidth() : number {
let windowWidth = 0
return uni.getWindowInfo().windowWidth
// #ifdef MP-WEIXIN
windowWidth = uni.getWindowInfo().windowWidth
// #endif
// #ifndef MP-WEIXIN
windowWidth = uni.getSystemInfoSync().windowWidth
// #endif
return windowWidth
}
}
},
},
methods: {
methods: {
...
...
pages/template/drop-card/card/card.uvue
浏览文件 @
9cf1a96e
...
@@ -53,18 +53,8 @@
...
@@ -53,18 +53,8 @@
}
}
},
},
mounted() {
mounted() {
// #ifdef MP-WEIXIN
screenWidth = uni.getWindowInfo().screenWidth
screenWidth = uni.getWindowInfo().screenWidth
screenHeight = uni.getWindowInfo().screenHeight;
screenHeight = uni.getWindowInfo().screenHeight;
// #endif
// #ifndef MP-WEIXIN
uni.getSystemInfo({
success: (e) => {
screenWidth = e.screenWidth;
screenHeight = e.screenHeight;
}
})
// #endif
// TODO 需要延迟设置才能生效
// TODO 需要延迟设置才能生效
setTimeout(() => {
setTimeout(() => {
...
...
pages/template/scroll-fold-nav/scroll-fold-nav.uvue
浏览文件 @
9cf1a96e
...
@@ -49,11 +49,8 @@
...
@@ -49,11 +49,8 @@
}
}
},
},
onLoad() {
onLoad() {
// #ifdef MP-WEIXIN
// #ifdef APP || MP
this.statusBarHeight = uni.getWindowInfo().statusBarHeight;
this.statusBarHeight = uni.getWindowInfo().statusBarHeight;
// #endif
// #ifndef MP-WEIXIN || WEB
this.statusBarHeight = uni.getSystemInfoSync().statusBarHeight;
// #endif
// #endif
this.nviBarHeight = NAVIBARHEIGHT + this.statusBarHeight;
this.nviBarHeight = NAVIBARHEIGHT + this.statusBarHeight;
...
...
pages/template/swiper-vertical-video/swiper-vertical-video.uvue
浏览文件 @
9cf1a96e
...
@@ -92,15 +92,8 @@
...
@@ -92,15 +92,8 @@
this.doPlay(0);
this.doPlay(0);
//App端适配不同状态栏高度
//App端适配不同状态栏高度
let backElement = this.$refs['back'] as UniElement;
let backElement = this.$refs['back'] as UniElement;
// #endif
// #ifdef MP-WEIXIN
backElement.style.setProperty('top', uni.getWindowInfo().statusBarHeight+'px');
backElement.style.setProperty('top', uni.getWindowInfo().statusBarHeight+'px');
// #endif
// #endif
// #ifndef MP-WEIXIN || WEB
backElement.style.setProperty('top', uni.getSystemInfoSync().statusBarHeight+'px');
// #endif
},
},
onShow() {
onShow() {
currentPageIsShow = true
currentPageIsShow = true
...
...
uni_modules/uni-pay-x/components/uni-pay/uni-pay.uvue
浏览文件 @
9cf1a96e
...
@@ -832,12 +832,7 @@
...
@@ -832,12 +832,7 @@
modeCom() : string {
modeCom() : string {
let mode = this.mode as string;
let mode = this.mode as string;
if (mode != "") return mode;
if (mode != "") return mode;
// #ifdef MP-WEIXIN
let systemInfo = uni.getDeviceInfo();
let systemInfo = uni.getDeviceInfo();
// #endif
// #ifndef MP-WEIXIN
let systemInfo = uni.getSystemInfoSync();
// #endif
return systemInfo.deviceType == "pc" ? "pc" : "mobile";
return systemInfo.deviceType == "pc" ? "pc" : "mobile";
},
},
totalFeeCom() : number {
totalFeeCom() : number {
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录