Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
14d50ff3
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
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看板
提交
14d50ff3
编写于
9月 11, 2023
作者:
W
wanganxp
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
微调
上级
126a1cec
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
15 addition
and
11 deletion
+15
-11
hybrid/html/local.html
hybrid/html/local.html
+1
-0
manifest.json
manifest.json
+4
-5
pages/component/image/image-path.uvue
pages/component/image/image-path.uvue
+4
-4
pages/component/slider-100/slider-100.uvue
pages/component/slider-100/slider-100.uvue
+1
-1
pages/component/web-view-local/web-view-local.uvue
pages/component/web-view-local/web-view-local.uvue
+5
-1
未找到文件。
hybrid/html/local.html
浏览文件 @
14d50ff3
...
@@ -51,6 +51,7 @@
...
@@ -51,6 +51,7 @@
var
target
=
evt
.
target
;
var
target
=
evt
.
target
;
if
(
target
.
tagName
===
'
BUTTON
'
)
{
if
(
target
.
tagName
===
'
BUTTON
'
)
{
var
action
=
target
.
getAttribute
(
'
data-action
'
);
var
action
=
target
.
getAttribute
(
'
data-action
'
);
console
.
log
(
action
);
switch
(
action
)
{
switch
(
action
)
{
case
'
switchTab
'
:
case
'
switchTab
'
:
uni
.
switchTab
({
uni
.
switchTab
({
...
...
manifest.json
浏览文件 @
14d50ff3
{
{
"name"
:
"hello-uniapp x"
,
"name"
:
"hello-uniapp x"
,
"appid"
:
"__UNI__
4517034
"
,
"appid"
:
"__UNI__
3584C99
"
,
"description"
:
""
,
"description"
:
""
,
"versionName"
:
"1.0.0"
,
"versionName"
:
"1.0.5"
,
"versionCode"
:
"100"
,
"versionCode"
:
105
,
"uni-app-x"
:
{
"uni-app-x"
:
{},
},
/*
快应用特有相关
*/
/*
快应用特有相关
*/
"quickapp"
:
{},
"quickapp"
:
{},
/*
小程序特有相关
*/
/*
小程序特有相关
*/
...
...
pages/component/image/image-path.uvue
浏览文件 @
14d50ff3
...
@@ -36,13 +36,13 @@
...
@@ -36,13 +36,13 @@
},
},
{
{
src: logo,
src: logo,
description: '非static目录'
description: '非static目录
(需import才能访问)
'
},
},
{
{
// #ifdef APP-ANDROID
// #ifdef APP-ANDROID
src: 'file:///storage/emulated/0/Android/data/io.dcloud.uniappx/apps/__UNI__
4517034
/www/static/test-image/logo.png',
src: 'file:///storage/emulated/0/Android/data/io.dcloud.uniappx/apps/__UNI__
3584C99
/www/static/test-image/logo.png',
// #endif
// #endif
// TODO iOS还需再补路径
// TODO iOS
发版时
还需再补路径
description: '本地绝对路径file:///方式。需注意打包后包名appid匹配'
description: '本地绝对路径file:///方式。需注意打包后包名appid匹配'
},
},
{
{
...
@@ -100,4 +100,4 @@
...
@@ -100,4 +100,4 @@
margin: 40rpx auto;
margin: 40rpx auto;
width: 200rpx;
width: 200rpx;
}
}
</style>
</style>
\ No newline at end of file
pages/component/slider-100/slider-100.uvue
浏览文件 @
14d50ff3
...
@@ -44,7 +44,7 @@
...
@@ -44,7 +44,7 @@
updateSliderValue(value : Number) {
updateSliderValue(value : Number) {
// this.sliderValue = value
// this.sliderValue = value
//
TODO
跳过vue框架,直接修改原生组件
// 跳过vue框架,直接修改原生组件
(this.$refs["slider1"]! as ComponentPublicInstance[]).forEach((item) => {
(this.$refs["slider1"]! as ComponentPublicInstance[]).forEach((item) => {
item.$data["$sliderValue"] = value
item.$data["$sliderValue"] = value
item.$callMethod("_onRender")
item.$callMethod("_onRender")
...
...
pages/component/web-view-local/web-view-local.uvue
浏览文件 @
14d50ff3
...
@@ -15,6 +15,10 @@
...
@@ -15,6 +15,10 @@
methods: {
methods: {
message(event : WebViewMessageEvent) {
message(event : WebViewMessageEvent) {
console.log(JSON.stringify(event.detail));
console.log(JSON.stringify(event.detail));
uni.showModal({
content: JSON.stringify(event.detail),
showCancel: false
});
},
},
error(event : WebViewErrorEvent) {
error(event : WebViewErrorEvent) {
console.log(JSON.stringify(event.detail));
console.log(JSON.stringify(event.detail));
...
@@ -31,4 +35,4 @@
...
@@ -31,4 +35,4 @@
<style>
<style>
</style>
</style>
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录