Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
1696e664
U
uni-app
项目概览
DCloud
/
uni-app
4 个月 前同步成功
通知
726
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,发现更多精彩内容 >>
提交
1696e664
编写于
3月 09, 2020
作者:
fxy060608
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(qa): easycom
上级
2fa7cd5d
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
48 addition
and
23 deletion
+48
-23
packages/uni-cli-shared/lib/pages.js
packages/uni-cli-shared/lib/pages.js
+27
-7
packages/uni-quickapp/package.json
packages/uni-quickapp/package.json
+2
-1
packages/uni-template-compiler/lib/auto-components.js
packages/uni-template-compiler/lib/auto-components.js
+5
-2
packages/vue-cli-plugin-uni/packages/postcss/index.js
packages/vue-cli-plugin-uni/packages/postcss/index.js
+14
-13
未找到文件。
packages/uni-cli-shared/lib/pages.js
浏览文件 @
1696e664
...
...
@@ -334,21 +334,41 @@ let uniAutoImportComponents = []
let
uniAutoImportScanComponents
=
[]
function
initAutoImportScanComponents
()
{
const
componentsPath
=
path
.
resolve
(
process
.
env
.
UNI_INPUT_DIR
,
'
components
'
)
let
uniQuickAppAutoImportScanComponents
=
false
function
getAutoComponentsByDir
(
componentsPath
,
absolute
=
false
)
{
const
components
=
{}
try
{
fs
.
readdirSync
(
componentsPath
).
forEach
(
name
=>
{
if
(
fs
.
existsSync
(
path
.
resolve
(
componentsPath
,
name
,
name
+
'
.vue
'
)))
{
components
[
`^
${
name
}
$`
]
=
`@/components/
${
name
}
/
${
name
}
.vue`
}
else
if
(
fs
.
existsSync
(
path
.
resolve
(
componentsPath
,
name
,
name
+
'
.nvue
'
)))
{
components
[
`^
${
name
}
$`
]
=
`@/components/
${
name
}
/
${
name
}
.nvue`
const
folder
=
path
.
resolve
(
componentsPath
,
name
)
const
importDir
=
absolute
?
normalizePath
(
folder
)
:
`@/components/
${
name
}
`
if
(
fs
.
existsSync
(
path
.
resolve
(
folder
,
name
+
'
.vue
'
)))
{
components
[
`^
${
name
}
$`
]
=
`
${
importDir
}
/
${
name
}
.vue`
}
else
if
(
fs
.
existsSync
(
path
.
resolve
(
folder
,
name
+
'
.nvue
'
)))
{
components
[
`^
${
name
}
$`
]
=
`
${
importDir
}
/
${
name
}
.nvue`
}
})
}
catch
(
e
)
{}
return
components
}
uniAutoImportScanComponents
=
parseUsingAutoImportComponents
(
components
)
function
initAutoImportScanComponents
()
{
const
componentsPath
=
path
.
resolve
(
process
.
env
.
UNI_INPUT_DIR
,
'
components
'
)
const
components
=
getAutoComponentsByDir
(
componentsPath
)
if
(
process
.
env
.
UNI_PLATFORM
===
'
quickapp
'
)
{
if
(
!
uniQuickAppAutoImportScanComponents
)
{
uniQuickAppAutoImportScanComponents
=
getAutoComponentsByDir
(
path
.
resolve
(
require
.
resolve
(
'
@dcloudio/uni-quickapp
'
),
'
../../components
'
),
true
)
}
// 平台内置组件优先级高
Object
.
assign
(
components
,
uniQuickAppAutoImportScanComponents
)
}
uniAutoImportScanComponents
=
parseUsingAutoImportComponents
(
components
)
refreshAutoComponentMap
()
}
...
...
packages/uni-quickapp/package.json
浏览文件 @
1696e664
...
...
@@ -2,6 +2,7 @@
"name"
:
"@dcloudio/uni-quickapp"
,
"version"
:
"2.0.0-alpha-24720191216006"
,
"description"
:
"uni-app quickapp"
,
"main"
:
"dist/vue.prod.js"
,
"repository"
:
{
"type"
:
"git"
,
"url"
:
"git+https://github.com/dcloudio/uni-app.git"
,
...
...
packages/uni-template-compiler/lib/auto-components.js
浏览文件 @
1696e664
...
...
@@ -86,7 +86,10 @@ function compileTemplate (source, options, compile) {
const
compilerModule
=
{
preTransformNode
(
el
,
options
)
{
if
(
isComponent
(
el
.
tag
)
&&
el
.
tag
!==
'
App
'
)
{
// App.vue
if
(
process
.
env
.
UNI_PLATFORM
===
'
quickapp
'
)
{
// 排查所有标签
(
options
.
isUnaryTag
.
autoComponents
||
(
options
.
isUnaryTag
.
autoComponents
=
new
Set
())).
add
(
el
.
tag
)
}
else
if
(
isComponent
(
el
.
tag
)
&&
el
.
tag
!==
'
App
'
)
{
// App.vue
// 挂在 isUnaryTag 上边,可以保证外部访问到
(
options
.
isUnaryTag
.
autoComponents
||
(
options
.
isUnaryTag
.
autoComponents
=
new
Set
())).
add
(
el
.
tag
)
}
...
...
packages/vue-cli-plugin-uni/packages/postcss/index.js
浏览文件 @
1696e664
...
...
@@ -235,7 +235,7 @@ if (process.env.UNI_USING_V3) {
// Transform each property declaration here
decl
.
value
=
tranformValue
(
decl
,
opts
)
})
if
(
process
.
env
.
UNI_PLATFORM
!==
'
quickapp
'
)
{
rule
.
selectors
=
rule
.
selectors
.
map
(
complexSelector
=>
{
return
transformSelector
(
complexSelector
,
simpleSelectors
=>
{
return
simpleSelectors
.
walkTags
(
tag
=>
{
...
...
@@ -248,6 +248,7 @@ if (process.env.UNI_USING_V3) {
})
})
})
}
})
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录