Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
2d01ae69
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看板
提交
2d01ae69
编写于
10月 15, 2024
作者:
F
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore(mp-weixin): 调整部分条件编译
上级
e12723de
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
40 addition
and
20 deletion
+40
-20
App.uvue
App.uvue
+10
-2
main.uts
main.uts
+5
-1
pages.json
pages.json
+6
-2
pages/component/global-properties/global-properties.uvue
pages/component/global-properties/global-properties.uvue
+1
-1
pages/component/input/input.uvue
pages/component/input/input.uvue
+10
-9
pages/component/text/text-props.uvue
pages/component/text/text-props.uvue
+4
-2
pages/component/textarea/textarea.uvue
pages/component/textarea/textarea.uvue
+4
-3
未找到文件。
App.uvue
浏览文件 @
2d01ae69
...
...
@@ -48,6 +48,7 @@
// } as PerformanceObserverOptions)
// 统计上报 - 应用启动
// #ifdef APP-ANDROID || APP-IOS || WEB
uni.report({
name: 'uni-app-launch',
options: res,
...
...
@@ -57,6 +58,7 @@
console.log(err);
}
})
// #endif
// #ifdef APP
if (process.env.NODE_ENV !== 'development') { //真机运行可以注释此条件
uni.getPrivacySetting({
...
...
@@ -86,6 +88,7 @@
setLifeCycleNum(state.lifeCycleNum + 100)
console.log('App Show')
// #ifdef APP-ANDROID || APP-IOS || WEB
// 统计上报 - 应用显示
uni.report({
name: 'uni-app-show',
...
...
@@ -94,13 +97,15 @@
}, fail(err) {
console.log(err);
}
})
})
// #endif
},
onHide: function () {
// 自动化测试
setLifeCycleNum(state.lifeCycleNum - 100)
console.log('App Hide')
// #ifdef APP-ANDROID || APP-IOS || WEB
// 统计上报 - 应用进入后台
uni.report({
name: 'uni-app-hide',
...
...
@@ -109,7 +114,8 @@
}, fail(err) {
console.log(err);
}
})
})
// #endif
},
// #ifdef APP-ANDROID
onLastPageBackPress: function () {
...
...
@@ -134,6 +140,7 @@
console.log('App Exit')
},
onError(err : any) {
// #ifdef APP-ANDROID || APP-IOS || WEB
// 统计上报 - 应用发生错误
uni.report({
name: 'uni-app-error',
...
...
@@ -144,6 +151,7 @@
console.log(err);
}
})
// #endif
},
// #endif
methods: {
...
...
main.uts
浏览文件 @
2d01ae69
// 仅测试 console.log 时机问题
import './test-main-console.uts'
// #ifdef APP-ANDROID || APP-IOS || WEB
import { uniStat } from '@/uni_modules/uni-stat/plugin.uts'
// #endif
import App from './App.uvue'
import { createSSRApp } from 'vue'
...
...
@@ -17,7 +19,9 @@ const statOptions = {
export function createApp() {
const app = createSSRApp(App)
app.use(uniStat, statOptions)
// #ifdef APP-ANDROID || APP-IOS || WEB
app.use(uniStat, statOptions)
// #endif
// app.mixin({
// onReady() {
// setTimeout(() => {
...
...
pages.json
浏览文件 @
2d01ae69
...
...
@@ -489,7 +489,7 @@
"navigationBarTitleText"
:
"涂鸦"
}
},
//
#if
ndef
WEB
//
#if
def
APP-ANDROID
||
APP-IOS
{
"path"
:
"pages/component/native-view/native-view"
,
"group"
:
"0,2,4"
,
...
...
@@ -1151,7 +1151,7 @@
"navigationBarTitleText"
:
"createSelectorQuery | 创建 SelectorQuery 实例"
}
},
//
#if
ndef
WEB
//
#if
def
APP-ANDROID
||
APP-IOS
{
"path"
:
"pages/API/get-native-view/element-getnativeview"
,
"group"
:
"1,30"
,
...
...
@@ -1799,12 +1799,14 @@
}
},
//
#endif
//
#ifdef
APP-ANDROID
||
APP-IOS
||
WEB
{
"path"
:
"pages/template/schema/schema"
,
"style"
:
{
"navigationBarTitleText"
:
"打开schema示例"
}
},
//
#endif
//
#ifdef
APP-ANDROID
{
"path"
:
"pages/template/share/share"
,
...
...
@@ -1839,6 +1841,7 @@
}
},
//
#endif
//
#ifdef
APP-ANDROID
||
APP-IOS
||
WEB
{
"path"
:
"pages/template/custom-long-list/custom-long-list"
,
"style"
:
{
...
...
@@ -1846,6 +1849,7 @@
"enablePullDownRefresh"
:
false
}
},
//
#endif
{
"path"
:
"pages/template/test-background-color-content/test-background-color-content"
,
"style"
:
{
...
...
pages/component/global-properties/global-properties.uvue
浏览文件 @
2d01ae69
...
...
@@ -64,7 +64,7 @@
// #ifdef APP
if (!generalTarget.classList.includes('general-class')) {
// #endif
// #if
def WEB
// #if
ndef APP
if (!Array.from(generalTarget.classList).includes('general-class')) {
// #endif
this.validateGeneralAttrText = '基础属性 class 验证失败'
...
...
pages/component/input/input.uvue
浏览文件 @
2d01ae69
...
...
@@ -255,15 +255,16 @@
" @click="changePassword"></image>
</view>
</view>
<view>
<view class="uni-title">
<text class="uni-title-text">同时存在 v-model 和 value</text>
</view>
<view class="input-wrapper">
<input id="both-model-value" class="uni-input" v-model="demoValue" value="456" />
</view>
</view>
<!-- #ifndef MP -->
<view>
<view class="uni-title">
<text class="uni-title-text">同时存在 v-model 和 value</text>
</view>
<view class="input-wrapper">
<input id="both-model-value" class="uni-input" v-model="demoValue"/>
</view>
</view>
<!-- #endif -->
<view>
<view class="uni-title" style="flex-direction: row; align-items: center">
...
...
pages/component/text/text-props.uvue
浏览文件 @
2d01ae69
...
...
@@ -63,8 +63,10 @@
<text class="uni-subtitle-text">decode</text>
<text class="uni-subtitle-text">依次为lt gt amp apos nbsp ensp emsp效果</text>
</view>
<view class="text-box">
<text :decode="true">< > & '</text>
<view class="text-box">
<!-- #ifndef MP-WEIXIN -->
<text :decode="true">< > & '</text>
<!-- #endif -->
<text :decode="true">uni-app x,终极跨平台方案</text>
<text :decode="true">uni-app x,终极跨平台方案</text>
<text :decode="true">uni-app x,终极跨平台方案</text>
...
...
pages/component/textarea/textarea.uvue
浏览文件 @
2d01ae69
...
...
@@ -138,13 +138,14 @@
<view class="textarea-wrap">
<textarea class="textarea-instance" :hold-keyboard="hold_keyboard" />
</view>
<!-- #ifndef MP -->
<view class="title-wrap">
<view>同时存在 v-model 和 value</view>
</view>
<view class="textarea-wrap">
<textarea id="both-model-value" class="textarea-instance" v-model='defaultModel' value='456'></textarea>
</view>
<textarea id="both-model-value" class="textarea-instance" v-model='defaultModel'></textarea>
</view>
<!-- #endif -->
<view class="title-wrap">
<view>设置adjust-position</view>
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录