Files
alab-amis-fix-exam/src/pages/schema/centre/att/face.schema.ts
2024-11-13 09:05:45 +08:00

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 };