Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
0ae312ea
U
uni-app
项目概览
DCloud
/
uni-app
3 个月 前同步成功
通知
725
Star
38705
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
0ae312ea
编写于
6月 21, 2021
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
wip(app): add vueFactory
上级
91d7c6f3
变更
5
展开全部
隐藏空白更改
内联
并排
Showing
5 changed file
with
10928 addition
and
9049 deletion
+10928
-9049
packages/uni-app-plus/dist/uni-app-service.es.js
packages/uni-app-plus/dist/uni-app-service.es.js
+9
-7
packages/uni-app-plus/src/service/framework/app/initTabBar.ts
...ages/uni-app-plus/src/service/framework/app/initTabBar.ts
+11
-9
packages/uni-app-vue/build.json
packages/uni-app-vue/build.json
+6
-1
packages/uni-app-vue/dist/vue.runtime.esm.js
packages/uni-app-vue/dist/vue.runtime.esm.js
+10899
-9031
packages/uni-app-vue/src/index.ts
packages/uni-app-vue/src/index.ts
+3
-1
未找到文件。
packages/uni-app-plus/dist/uni-app-service.es.js
浏览文件 @
0ae312ea
...
...
@@ -281,7 +281,7 @@ var serviceContext = (function () {
});
}
const
maskClickCallback
=
[];
var
tabBar
$1
=
{
var
tabBar
Instance
=
{
id
:
'
0
'
,
init
(
options
,
clickCallback
)
{
if
(
options
&&
options
.
list
.
length
)
{
...
...
@@ -374,13 +374,15 @@ var serviceContext = (function () {
};
function
initTabBar
()
{
const
len
=
__uniConfig
.
tabBar
?.
list
?.
length
;
const
{
tabBar
}
=
__uniConfig
;
const
len
=
tabBar
&&
tabBar
.
list
&&
tabBar
.
list
.
length
;
if
(
!
len
)
{
return
;
}
__uniConfig
.
tabBar
.
selectedIndex
=
0
;
const
selected
=
__uniConfig
.
tabBar
.
list
.
findIndex
((
page
)
=>
page
.
pagePath
===
__uniConfig
.
entryPagePath
);
tabBar$1
.
init
(
__uniConfig
.
tabBar
,
(
item
,
index
)
=>
{
const
{
entryPagePath
}
=
__uniConfig
;
tabBar
.
selectedIndex
=
0
;
const
selected
=
tabBar
.
list
.
findIndex
((
page
)
=>
page
.
pagePath
===
entryPagePath
);
tabBarInstance
.
init
(
tabBar
,
(
item
,
index
)
=>
{
uni
.
switchTab
({
url
:
'
/
'
+
item
.
pagePath
,
openType
:
'
switchTab
'
,
...
...
@@ -396,8 +398,8 @@ var serviceContext = (function () {
});
if
(
selected
!==
-
1
)
{
// 取当前 tab 索引值
__uniConfig
.
tabBar
.
selectedIndex
=
selected
;
selected
!==
0
&&
tabBar
$1
.
switchTab
(
__uniConfig
.
entryPagePath
);
tabBar
.
selectedIndex
=
selected
;
selected
!==
0
&&
tabBar
Instance
.
switchTab
(
entryPagePath
);
}
}
...
...
packages/uni-app-plus/src/service/framework/app/initTabBar.ts
浏览文件 @
0ae312ea
import
{
invokeHook
}
from
'
@dcloudio/uni-core
'
import
tabBar
from
'
./tabBar
'
import
tabBar
Instance
from
'
./tabBar
'
export
function
initTabBar
()
{
const
len
=
__uniConfig
.
tabBar
?.
list
?.
length
const
{
tabBar
}
=
__uniConfig
const
len
=
tabBar
&&
tabBar
.
list
&&
tabBar
.
list
.
length
if
(
!
len
)
{
return
}
__uniConfig
.
tabBar
!
.
selectedIndex
=
0
const
{
entryPagePath
}
=
__uniConfig
tabBar
!
.
selectedIndex
=
0
const
selected
=
__uniConfig
.
tabBar
!
.
list
.
findIndex
(
(
page
)
=>
page
.
pagePath
===
__uniConfig
.
entryPagePath
const
selected
=
tabBar
!
.
list
.
findIndex
(
(
page
)
=>
page
.
pagePath
===
entryPagePath
)
tabBar
.
init
(
__uniConfig
.
tabBar
!
,
tabBar
Instance
.
init
(
tabBar
!
,
(
item
:
UniApp
.
TabBarItemOptions
,
index
:
number
)
=>
{
uni
.
switchTab
({
url
:
'
/
'
+
item
.
pagePath
,
...
...
@@ -33,7 +35,7 @@ export function initTabBar() {
if
(
selected
!==
-
1
)
{
// 取当前 tab 索引值
__uniConfig
.
tabBar
!
.
selectedIndex
=
selected
selected
!==
0
&&
tabBar
.
switchTab
(
__uniConfig
.
entryPagePath
!
)
tabBar
!
.
selectedIndex
=
selected
selected
!==
0
&&
tabBar
Instance
.
switchTab
(
entryPagePath
!
)
}
}
packages/uni-app-vue/build.json
浏览文件 @
0ae312ea
{
"input"
:
{
"src/index.ts"
:
[
"dist/vue.runtime.esm.js"
]
}
},
"output"
:
{
"banner"
:
"export default function vueFactory (exports) {
\n
"
,
"footer"
:
"}"
},
"external"
:
false
}
packages/uni-app-vue/dist/vue.runtime.esm.js
浏览文件 @
0ae312ea
此差异已折叠。
点击以展开。
packages/uni-app-vue/src/index.ts
浏览文件 @
0ae312ea
export
*
from
'
../lib/vue.runtime.esm
'
import
*
as
Vue
from
'
../lib/vue.runtime.esm
'
exports
.
Vue
=
Vue
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录