Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
32e8c722
U
uni-app
项目概览
DCloud
/
uni-app
6 个月 前同步成功
通知
751
Star
38709
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
8
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
8
Issue
8
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
32e8c722
编写于
9月 26, 2021
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: build
上级
19d20613
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
27 addition
and
17 deletion
+27
-17
packages/uni-app-plus/dist/tools.umd.js
packages/uni-app-plus/dist/tools.umd.js
+2
-2
packages/uni-app-plus/dist/uni-app-service.es.js
packages/uni-app-plus/dist/uni-app-service.es.js
+1
-1
packages/uni-automator/lib/uni.plugin.js
packages/uni-automator/lib/uni.plugin.js
+1
-1
packages/uni-cloud/lib/uni.plugin.js
packages/uni-cloud/lib/uni.plugin.js
+3
-3
packages/uni-h5/dist/uni-h5.cjs.js
packages/uni-h5/dist/uni-h5.cjs.js
+9
-3
packages/uni-h5/dist/uni-h5.es.js
packages/uni-h5/dist/uni-h5.es.js
+9
-3
packages/uni-shared/dist/uni-shared.d.ts
packages/uni-shared/dist/uni-shared.d.ts
+0
-2
packages/uni-stat/dist/uni-stat.cjs.js
packages/uni-stat/dist/uni-stat.cjs.js
+1
-1
packages/uni-stat/dist/uni-stat.es.js
packages/uni-stat/dist/uni-stat.es.js
+1
-1
未找到文件。
packages/uni-app-plus/dist/tools.umd.js
浏览文件 @
32e8c722
...
...
@@ -2,7 +2,7 @@
typeof
exports
===
'
object
'
&&
typeof
module
!==
'
undefined
'
?
factory
(
exports
)
:
typeof
define
===
'
function
'
&&
define
.
amd
?
define
([
'
exports
'
],
factory
)
:
(
global
=
typeof
globalThis
!==
'
undefined
'
?
globalThis
:
window
||
self
,
factory
(
window
.
Tools
=
{}));
}(
this
,
(
function
(
exports
)
{
'
use strict
'
;
}
)
(
this
,
(
function
(
exports
)
{
'
use strict
'
;
const
ACTION_TYPE_PAGE_CREATE
=
1
;
const
ACTION_TYPE_PAGE_CREATED
=
2
;
...
...
@@ -160,4 +160,4 @@
Object
.
defineProperty
(
exports
,
'
__esModule
'
,
{
value
:
true
});
}))
)
;
}));
packages/uni-app-plus/dist/uni-app-service.es.js
浏览文件 @
32e8c722
...
...
@@ -19496,7 +19496,7 @@ var serviceContext = (function (vue) {
return index;
}
(Vue)
);
}
)(Vue
);
const uni = serviceContext.uni;
const getApp = serviceContext.getApp;
const getCurrentPages = serviceContext.getCurrentPages;
...
...
packages/uni-automator/lib/uni.plugin.js
浏览文件 @
32e8c722
...
...
@@ -7,7 +7,7 @@ const fs_extra_1 = __importDefault(require("fs-extra"));
const
path_1
=
__importDefault
(
require
(
"
path
"
));
const
uni_cli_shared_1
=
require
(
"
@dcloudio/uni-cli-shared
"
);
exports
.
default
=
[
uni_cli_shared_1
.
defineUniMainJsPlugin
((
opts
)
=>
{
(
0
,
uni_cli_shared_1
.
defineUniMainJsPlugin
)
((
opts
)
=>
{
return
{
name
:
'
vite:uni-automator
'
,
enforce
:
'
pre
'
,
...
...
packages/uni-cloud/lib/uni.plugin.js
浏览文件 @
32e8c722
...
...
@@ -50,7 +50,7 @@ const UniCloudPlugin = {
}
},
};
const
initUniCloudWarningOnce
=
uni_shared_1
.
once
(()
=>
{
const
initUniCloudWarningOnce
=
(
0
,
uni_shared_1
.
once
)
(()
=>
{
uniCloudSpaces
.
length
&&
console
.
warn
(
'
当前项目使用了uniCloud,为避免云函数调用跨域问题,建议在HBuilderX内置浏览器里调试,如使用外部浏览器需处理跨域,详见:https://uniapp.dcloud.io/uniCloud/quickstart?id=useinh5
'
);
});
...
...
@@ -87,9 +87,9 @@ function initUniCloudEnv() {
}
exports
.
default
=
[
UniCloudPlugin
,
uni_cli_shared_1
.
uniViteInjectPlugin
({
(
0
,
uni_cli_shared_1
.
uniViteInjectPlugin
)
({
exclude
:
[...
uni_cli_shared_1
.
COMMON_EXCLUDE
],
uniCloud
:
[
'
@dcloudio/uni-cloud
'
,
'
default
'
],
}),
validateFunction_1
.
uniValidateFunctionPlugin
(),
(
0
,
validateFunction_1
.
uniValidateFunctionPlugin
)
(),
];
packages/uni-h5/dist/uni-h5.cjs.js
浏览文件 @
32e8c722
...
...
@@ -10644,7 +10644,13 @@ function usePageHeadSearchInput({
onKeyup
};
}
var
_sfc_main
=
{
var
_export_sfc
=
(
sfc
,
props2
)
=>
{
for
(
const
[
key
,
val
]
of
props2
)
{
sfc
[
key
]
=
val
;
}
return
sfc
;
};
const
_sfc_main
=
{
name
:
"
PageRefresh
"
,
setup
()
{
const
{
pullToRefresh
}
=
usePageMeta
();
...
...
@@ -10702,7 +10708,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
],
4
)
]);
}
_sfc_main
.
render
=
_sfc_render
;
var
PageRefresh
=
/* @__PURE__ */
_export_sfc
(
_sfc_main
,
[[
"
render
"
,
_sfc_render
]])
;
var
PageBody
=
defineSystemComponent
({
name
:
"
PageBody
"
,
setup
(
props2
,
ctx
)
{
...
...
@@ -10719,7 +10725,7 @@ function createPageRefreshTsx(refreshRef, pageMeta) {
if
(
!
__UNI_FEATURE_PULL_DOWN_REFRESH__
||
!
pageMeta
.
enablePullDownRefresh
)
{
return
null
;
}
return
vue
.
createVNode
(
_sfc_main
,
{
return
vue
.
createVNode
(
PageRefresh
,
{
"
ref
"
:
refreshRef
},
null
,
512
);
}
...
...
packages/uni-h5/dist/uni-h5.es.js
浏览文件 @
32e8c722
...
...
@@ -21205,7 +21205,13 @@ function usePageHeadSearchInput({
onKeyup
};
}
var _sfc_main = {
var _export_sfc = (sfc, props2) => {
for (const [key, val] of props2) {
sfc[key] = val;
}
return sfc;
};
const _sfc_main = {
name: "PageRefresh",
setup() {
const { pullToRefresh } = usePageMeta();
...
...
@@ -21263,7 +21269,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
], 4)
]);
}
_sfc_main.render = _sfc_render
;
var PageRefresh = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]])
;
function processDeltaY(ev, identifier, startY) {
const touch = Array.prototype.slice.call(ev.changedTouches).filter((touch2) => touch2.identifier === identifier)[0];
if (!touch) {
...
...
@@ -21478,7 +21484,7 @@ function createPageRefreshTsx(refreshRef, pageMeta) {
if (!__UNI_FEATURE_PULL_DOWN_REFRESH__ || !pageMeta.enablePullDownRefresh) {
return null;
}
return createVNode(
_sfc_main
, {
return createVNode(
PageRefresh
, {
"ref": refreshRef
}, null, 512);
}
...
...
packages/uni-shared/dist/uni-shared.d.ts
浏览文件 @
32e8c722
/// <reference types="css-font-loading-module" />
import
{
ComponentInternalInstance
}
from
'
vue
'
;
import
{
ComponentOptionsBase
}
from
'
vue
'
;
import
{
ComponentPublicInstance
}
from
'
vue
'
;
...
...
packages/uni-stat/dist/uni-stat.cjs.js
浏览文件 @
32e8c722
'
use strict
'
;
var
version
=
"
3.0.0-alpha-3020
820210923
001
"
;
var
version
=
"
3.0.0-alpha-3020
920210926
001
"
;
const
STAT_VERSION
=
version
;
const
STAT_URL
=
'
https://tongji.dcloud.io/uni/stat
'
;
...
...
packages/uni-stat/dist/uni-stat.es.js
浏览文件 @
32e8c722
var
version
=
"
3.0.0-alpha-3020
820210923
001
"
;
var
version
=
"
3.0.0-alpha-3020
920210926
001
"
;
const
STAT_VERSION
=
version
;
const
STAT_URL
=
'
https://tongji.dcloud.io/uni/stat
'
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录