Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
f420f999
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5992
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
f420f999
编写于
7月 30, 2023
作者:
W
wanganxp
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
措辞细节
上级
04c97724
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
15 addition
and
22 deletion
+15
-22
pages/API/get-app-base-info/get-app-base-info.uvue
pages/API/get-app-base-info/get-app-base-info.uvue
+3
-3
pages/API/get-system-info/get-system-info.uvue
pages/API/get-system-info/get-system-info.uvue
+2
-11
pages/API/get-system-setting/get-system-setting.uvue
pages/API/get-system-setting/get-system-setting.uvue
+1
-1
pages/tabBar/API.uvue
pages/tabBar/API.uvue
+2
-7
pages/tabBar/template.uvue
pages/tabBar/template.uvue
+7
-0
未找到文件。
pages/API/get-app-base-info/get-app-base-info.uvue
浏览文件 @
f420f999
...
...
@@ -21,7 +21,7 @@
</view>
<view class="uni-list-cell">
<view class="uni-pd">
<view class="uni-label" style="width:180px;">
应用
版本名</view>
<view class="uni-label" style="width:180px;">
App
版本名</view>
</view>
<view class="uni-list-cell-db">
<input class="uni-input" type="text" :disabled="true" placeholder="未获取" :value="appVersion"/>
...
...
@@ -29,7 +29,7 @@
</view>
<view class="uni-list-cell">
<view class="uni-pd">
<view class="uni-label" style="width:180px;">
应用版本号
</view>
<view class="uni-label" style="width:180px;">
App版本号VersionCode
</view>
</view>
<view class="uni-list-cell-db">
<input class="uni-input" type="text" :disabled="true" placeholder="未获取" :value="appVersionCode"/>
...
...
@@ -53,7 +53,7 @@
</view>
<view class="uni-list-cell">
<view class="uni-pd">
<view class="uni-label" style="width:180px;">是否
是UniAppX
</view>
<view class="uni-label" style="width:180px;">是否
uni-app x
</view>
</view>
<view class="uni-list-cell-db">
<input class="uni-input" type="text" :disabled="true" placeholder="未获取" :value="isUniAppX"/>
...
...
pages/API/get-system-info/get-system-info.uvue
浏览文件 @
f420f999
...
...
@@ -99,16 +99,6 @@
<input class="uni-input" type="text" :disabled="true" placeholder="未获取" :value="pixelRatio"/>
</view>
</view>
<!-- #ifdef MP -->
<view class="uni-list-cell">
<view class="uni-pd">
<view class="uni-label" style="width:180px;">基础库版本</view>
</view>
<view class="uni-list-cell-db">
<input class="uni-input" type="text" :disabled="true" placeholder="未获取" :value="SDKVersion"/>
</view>
</view>
<!-- #endif -->
</view>
<view class="uni-padding-wrap">
<view class="uni-btn-v">
...
...
@@ -143,7 +133,8 @@
methods: {
getSystemInfo: function () {
uni.getSystemInfo({
success: (res) => {
success: (res) => {
console.log('SystemInfo: ',res);
this.model = res.model;
this.platform = res.platform;
this.system = res.system;
...
...
pages/API/get-system-setting/get-system-setting.uvue
浏览文件 @
f420f999
...
...
@@ -38,7 +38,7 @@
</view>
<view class="uni-padding-wrap">
<view class="uni-btn-v">
<button type="primary" @tap="getSystemSetting">获取
设备
设置</button>
<button type="primary" @tap="getSystemSetting">获取
系统
设置</button>
</view>
</view>
</view>
...
...
pages/tabBar/API.uvue
浏览文件 @
f420f999
...
...
@@ -173,7 +173,7 @@
url: "get-app-base-info",
},
{
name: "获取
设备
设置",
name: "获取
系统
设置",
url: "get-system-setting",
},
{
...
...
@@ -278,7 +278,7 @@
open: false,
pages: [
{
name: "图片预览",
name: "图片
选择和
预览",
url: "preview-image",
},
/* {
...
...
@@ -310,11 +310,6 @@
name: "保存媒体到本地",
url: "save-media",
}, */
{
name: "动态加载字体",
url: "load-font-face",
enable:false
},
] as Page[],
},
{
...
...
pages/tabBar/template.uvue
浏览文件 @
f420f999
...
...
@@ -46,6 +46,13 @@
return {
list: [
{
id: "long-list",
url: "long-list",
name: "复杂长列表",
open: false,
enable: false,
pages: [] as Page[]
},{
id: "scroll-fold-nav",
url: "scroll-fold-nav",
name: "随滚动折叠的导航栏",
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录