Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
93f3b210
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3172
Star
105
Fork
804
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
93
列表
看板
标记
里程碑
合并请求
67
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
93
Issue
93
列表
看板
标记
里程碑
合并请求
67
合并请求
67
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
93f3b210
编写于
3月 23, 2022
作者:
D
DCloud_LXH
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix: build javascript out of memory
上级
7f8d0e5f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
21 addition
and
10 deletion
+21
-10
docs/.vuepress/theme/components/DcloudSearchPage/index.vue
docs/.vuepress/theme/components/DcloudSearchPage/index.vue
+20
-9
package.json
package.json
+1
-1
未找到文件。
docs/.vuepress/theme/components/DcloudSearchPage/index.vue
浏览文件 @
93f3b210
...
...
@@ -126,8 +126,8 @@
:pageSize=
"pageSize"
/>
<a
v-if=
"showMoreAsk"
class=
"search-more"
@
click=
"moreAskResult"
>
<span
v-if=
"show
Ask
Loading"
class=
"uni-loading"
></span>
<span
v-else
>
更多...
</span>
<span
v-if=
"show
Server
Loading"
class=
"uni-loading"
></span>
<span
v-else
>
{{ hasNoMoreServerResult ? '没有更多了' : '更多...' }}
</span>
</a>
</div>
</div>
...
...
@@ -204,7 +204,8 @@
noResult
:
false
,
serverHtml
:
''
,
showLoading
:
false
,
showAskLoading
:
false
,
showServerLoading
:
false
,
hasNoMoreServerResult
:
false
,
searchPage
:
0
,
// 跳转页数
curHits
:
0
,
// 当前搜索结果总条数
...
...
@@ -371,24 +372,34 @@
this
.
noResult
=
!
hits
;
});
case
'
ask
'
:
append
&&
(
this
.
show
Ask
Loading
=
true
);
append
&&
(
this
.
show
Server
Loading
=
true
);
this
.
searchPage
===
0
&&
(
this
.
searchPage
=
1
);
return
postAsk
(
query
,
this
.
searchPage
)
.
then
(
res
=>
{
if
(
res
)
{
const
{
html
,
hits
}
=
res
;
!
append
?
(
this
.
serverHtml
=
html
)
:
(
this
.
serverHtml
+=
html
);
const
{
html
=
''
,
hits
}
=
res
;
if
(
append
)
{
this
.
serverHtml
+=
html
;
}
else
{
this
.
hasNoMoreServerResult
=
false
;
this
.
serverHtml
=
html
;
}
this
.
noResult
=
!
this
.
serverHtml
.
length
;
}
else
{
this
.
serverHtml
=
''
this
.
noResult
=
true
;
if
(
append
)
{
this
.
hasNoMoreServerResult
=
true
;
}
else
{
this
.
serverHtml
=
''
;
this
.
noResult
=
true
;
}
}
})
.
finally
(()
=>
(
this
.
show
Ask
Loading
=
false
));
.
finally
(()
=>
(
this
.
show
Server
Loading
=
false
));
}
},
moreAskResult
()
{
if
(
this
.
hasNoMoreServerResult
)
return
;
this
.
searchPage
===
0
?
(
this
.
searchPage
=
2
)
:
this
.
searchPage
++
;
this
.
searchByServer
(
true
);
},
...
...
package.json
浏览文件 @
93f3b210
...
...
@@ -8,7 +8,7 @@
},
"scripts"
:
{
"dev"
:
"vuepress dev docs"
,
"build"
:
"
vuepres
s build docs --no-cache"
"build"
:
"
node --max_old_space_size=3072 ./node_modules/vuepress/cli.j
s build docs --no-cache"
},
"repository"
:
{
"type"
:
"git"
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录