Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
08e9e5e2
U
uni-app
项目概览
DCloud
/
uni-app
2 个月 前同步成功
通知
768
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看板
提交
08e9e5e2
编写于
4月 23, 2024
作者:
I
im-robot
浏览文件
操作
浏览文件
下载
差异文件
chore: sync css.json
上级
653e6d95
cf8e4669
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
70 addition
and
36 deletion
+70
-36
packages/uni-app-vue/dist/uvue.runtime.esm.dev.js
packages/uni-app-vue/dist/uvue.runtime.esm.dev.js
+20
-11
packages/uni-app-vue/dist/uvue.runtime.esm.prod.js
packages/uni-app-vue/dist/uvue.runtime.esm.prod.js
+20
-11
packages/uni-app-vue/lib/uvue.runtime.esm.js
packages/uni-app-vue/lib/uvue.runtime.esm.js
+18
-11
packages/uni-h5/src/service/api/network/request.ts
packages/uni-h5/src/service/api/network/request.ts
+2
-1
packages/uni-shared/dist/uni-shared.cjs.js
packages/uni-shared/dist/uni-shared.cjs.js
+3
-0
packages/uni-shared/dist/uni-shared.es.js
packages/uni-shared/dist/uni-shared.es.js
+4
-1
packages/uni-shared/src/vue.ts
packages/uni-shared/src/vue.ts
+2
-0
packages/uni-uts-v1/lib/javascript/dist/index.js
packages/uni-uts-v1/lib/javascript/dist/index.js
+1
-1
未找到文件。
packages/uni-app-vue/dist/uvue.runtime.esm.dev.js
浏览文件 @
08e9e5e2
...
...
@@ -1383,6 +1383,8 @@ function normalizeStyle(value) {
styleObject
[
key
]
=
value
;
});
return
normalizeStyle$1
(
styleObject
);
}
else
if
(
isString
(
value
))
{
return
parseStringStyle
(
value
);
}
else
if
(
isArray
(
value
))
{
var
res
=
{};
for
(
var
i
=
0
;
i
<
value
.
length
;
i
++
)
{
...
...
@@ -1699,23 +1701,30 @@ var flushIndex = 0;
var
pendingPostFlushCbs
=
[];
var
activePostFlushCbs
=
null
;
var
postFlushIndex
=
0
;
var
resolvedPromise
=
/* @__PURE__ */
Promise
.
resolve
();
var
iOSPromise
=
{
then
(
callback
)
{
setTimeout
(()
=>
callback
(),
0
);
}
};
var
resolvedPromise
=
iOSPromise
;
var
currentFlushPromise
=
null
;
var
RECURSION_LIMIT
=
100
;
function
nextTick
(
fn
)
{
var
instance
=
arguments
.
length
>
1
&&
arguments
[
1
]
!==
undefined
?
arguments
[
1
]
:
getCurrentInstance
();
var
promise
=
currentFlushPromise
||
resolvedPromise
;
var
current
=
currentFlushPromise
===
null
||
instance
===
null
?
promise
:
promise
.
then
(()
=>
{
return
new
Promise
(
resolve
=>
{
if
(
instance
===
null
)
{
resolve
();
}
else
{
instance
.
$waitNativeRender
(()
=>
{
var
current
=
currentFlushPromise
===
null
||
instance
===
null
?
promise
:
{
then
(
resolve
)
{
promise
.
then
(()
=>
{
if
(
instance
===
null
)
{
resolve
();
});
}
});
});
}
else
{
instance
.
$waitNativeRender
(()
=>
{
resolve
();
});
}
});
}
};
return
fn
?
current
.
then
(
this
?
fn
.
bind
(
this
)
:
fn
)
:
current
;
}
function
findInsertionIndex
(
id
)
{
...
...
packages/uni-app-vue/dist/uvue.runtime.esm.prod.js
浏览文件 @
08e9e5e2
...
...
@@ -1274,6 +1274,8 @@ function normalizeStyle(value) {
styleObject
[
key
]
=
value
;
});
return
normalizeStyle$1
(
styleObject
);
}
else
if
(
isString
(
value
))
{
return
parseStringStyle
(
value
);
}
else
if
(
isArray
(
value
))
{
var
res
=
{};
for
(
var
i
=
0
;
i
<
value
.
length
;
i
++
)
{
...
...
@@ -1566,22 +1568,29 @@ var flushIndex = 0;
var
pendingPostFlushCbs
=
[];
var
activePostFlushCbs
=
null
;
var
postFlushIndex
=
0
;
var
resolvedPromise
=
/* @__PURE__ */
Promise
.
resolve
();
var
iOSPromise
=
{
then
(
callback
)
{
setTimeout
(()
=>
callback
(),
0
);
}
};
var
resolvedPromise
=
iOSPromise
;
var
currentFlushPromise
=
null
;
function
nextTick
(
fn
)
{
var
instance
=
arguments
.
length
>
1
&&
arguments
[
1
]
!==
undefined
?
arguments
[
1
]
:
getCurrentInstance
();
var
promise
=
currentFlushPromise
||
resolvedPromise
;
var
current
=
currentFlushPromise
===
null
||
instance
===
null
?
promise
:
promise
.
then
(()
=>
{
return
new
Promise
(
resolve
=>
{
if
(
instance
===
null
)
{
resolve
();
}
else
{
instance
.
$waitNativeRender
(()
=>
{
var
current
=
currentFlushPromise
===
null
||
instance
===
null
?
promise
:
{
then
(
resolve
)
{
promise
.
then
(()
=>
{
if
(
instance
===
null
)
{
resolve
();
});
}
});
});
}
else
{
instance
.
$waitNativeRender
(()
=>
{
resolve
();
});
}
});
}
};
return
fn
?
current
.
then
(
this
?
fn
.
bind
(
this
)
:
fn
)
:
current
;
}
function
findInsertionIndex
(
id
)
{
...
...
packages/uni-app-vue/lib/uvue.runtime.esm.js
浏览文件 @
08e9e5e2
...
...
@@ -277,22 +277,29 @@ let flushIndex = 0;
const
pendingPostFlushCbs
=
[];
let
activePostFlushCbs
=
null
;
let
postFlushIndex
=
0
;
const
resolvedPromise
=
/* @__PURE__ */
Promise
.
resolve
();
const
iOSPromise
=
{
then
(
callback
)
{
setTimeout
(()
=>
callback
(),
0
);
}
};
const
resolvedPromise
=
iOSPromise
;
let
currentFlushPromise
=
null
;
const
RECURSION_LIMIT
=
100
;
function
nextTick
(
fn
,
instance
=
getCurrentInstance
())
{
const
promise
=
currentFlushPromise
||
resolvedPromise
;
const
current
=
currentFlushPromise
===
null
||
instance
===
null
?
promise
:
promise
.
then
(()
=>
{
return
new
Promise
((
resolve
)
=>
{
if
(
instance
===
null
)
{
resolve
();
}
else
{
instance
.
$waitNativeRender
(()
=>
{
const
current
=
currentFlushPromise
===
null
||
instance
===
null
?
promise
:
{
then
(
resolve
)
{
promise
.
then
(()
=>
{
if
(
instance
===
null
)
{
resolve
();
});
}
});
});
}
else
{
instance
.
$waitNativeRender
(()
=>
{
resolve
();
});
}
});
}
};
return
fn
?
current
.
then
(
this
?
fn
.
bind
(
this
)
:
fn
)
:
current
;
}
function
findInsertionIndex
(
id
)
{
...
...
packages/uni-h5/src/service/api/network/request.ts
浏览文件 @
08e9e5e2
...
...
@@ -77,7 +77,8 @@ export const request = defineTaskApi<API_TYPE_REQUEST>(
if
(
responseType
===
'
text
'
&&
dataType
===
'
json
'
)
{
try
{
//#if _X_
res
=
new
UTSJSONObject
(
JSON
.
parse
(
res
))
// @ts-expect-error
res
=
UTS
.
JSON
.
parse
(
res
)
//#else
res
=
JSON
.
parse
(
res
)
//#endif
...
...
packages/uni-shared/dist/uni-shared.cjs.js
浏览文件 @
08e9e5e2
...
...
@@ -396,6 +396,9 @@ function normalizeStyle(value) {
});
return
shared
.
normalizeStyle
(
styleObject
);
}
else
if
(
shared
.
isString
(
value
))
{
return
shared
.
parseStringStyle
(
value
);
}
else
if
(
shared
.
isArray
(
value
))
{
const
res
=
{};
for
(
let
i
=
0
;
i
<
value
.
length
;
i
++
)
{
...
...
packages/uni-shared/dist/uni-shared.es.js
浏览文件 @
08e9e5e2
import
{
isHTMLTag
,
isSVGTag
,
hyphenate
,
camelize
,
normalizeStyle
as
normalizeStyle$1
,
is
Array
,
isString
,
parseStringStyle
,
normalizeClass
as
normalizeClass$1
,
isFunction
,
isPlainObject
,
extend
,
capitalize
}
from
'
@vue/shared
'
;
import
{
isHTMLTag
,
isSVGTag
,
hyphenate
,
camelize
,
normalizeStyle
as
normalizeStyle$1
,
is
String
,
parseStringStyle
,
isArray
,
normalizeClass
as
normalizeClass$1
,
isFunction
,
isPlainObject
,
extend
,
capitalize
}
from
'
@vue/shared
'
;
const
BUILT_IN_TAG_NAMES
=
[
'
ad
'
,
...
...
@@ -394,6 +394,9 @@ function normalizeStyle(value) {
});
return
normalizeStyle$1
(
styleObject
);
}
else
if
(
isString
(
value
))
{
return
parseStringStyle
(
value
);
}
else
if
(
isArray
(
value
))
{
const
res
=
{};
for
(
let
i
=
0
;
i
<
value
.
length
;
i
++
)
{
...
...
packages/uni-shared/src/vue.ts
浏览文件 @
08e9e5e2
...
...
@@ -99,6 +99,8 @@ export function normalizeStyle(
styleObject
[
key
]
=
value
})
return
vueNormalizeStyle
(
styleObject
)
}
else
if
(
isString
(
value
))
{
return
parseStringStyle
(
value
as
string
)
}
else
if
(
isArray
(
value
))
{
const
res
:
NormalizedStyle
=
{}
for
(
let
i
=
0
;
i
<
value
.
length
;
i
++
)
{
...
...
packages/uni-uts-v1/lib/javascript/dist/index.js
浏览文件 @
08e9e5e2
因为 它太大了无法显示 source diff 。你可以改为
查看blob
。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录