提交 59e2877f 编写于 作者: DCloud-WZF's avatar DCloud-WZF 💬

wip(uts): automator

上级 cacfc492
......@@ -426,8 +426,8 @@ export const callUniMethod = (
export type CaptureScreenshotParams = {
id?: string | null
fullPage: boolean
path: string
fullPage?: boolean | null
path?: string | null
}
export const captureScreenshot = (
params: CaptureScreenshotParams,
......@@ -436,8 +436,8 @@ export const captureScreenshot = (
const currentPage = _getCurrentPage()
if (currentPage != null) {
currentPage.$viewToTempFilePath({
id: params.fullPage ? null : params.id,
wholeContent: params.fullPage,
id: params.fullPage === true ? null : params.id,
wholeContent: params.fullPage === true,
path: params.path,
success: (res) => {
// @ts-ignore
......
......@@ -5,7 +5,7 @@ import { pageGetData, pageSetData, getPageVm, getValidComponentsOrNodes } from '
export type GetDataParams = {
pageId: string
path: string
path?: string | null
}
export const getData = (params: GetDataParams, callback: Callback): void => {
const page = getPageVm(params.pageId)
......
......@@ -184,7 +184,7 @@ export function getValidComponentsOrNodes(
list: UTSJSONObject[],
getAll = false
): void {
if (vnode == null) {
if (vnode == null || (!getAll && list.length > 0)) {
return
}
if (isValidComponentOrNode(vnode, selector)) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册