29 lines
548 B
TypeScript
29 lines
548 B
TypeScript
|
|
const schema = {
|
||
|
|
body: [{ type: 'html', html: '<h1>人脸考勤使用说明</h1>' }],
|
||
|
|
type: 'page',
|
||
|
|
title: '人脸考勤使用说明',
|
||
|
|
toolbar: [
|
||
|
|
{
|
||
|
|
type: 'button',
|
||
|
|
label: '下载客户端',
|
||
|
|
level: 'success',
|
||
|
|
blank: true,
|
||
|
|
onEvent: {
|
||
|
|
click: {
|
||
|
|
actions: [
|
||
|
|
{
|
||
|
|
args: {
|
||
|
|
url: '/download/faceApp.zip',
|
||
|
|
},
|
||
|
|
actionType: 'url',
|
||
|
|
},
|
||
|
|
],
|
||
|
|
weight: 0,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|
||
|
|
|
||
|
|
export { schema };
|