* [task#131604] add initial thinkstepquote component.

This commit is contained in:
Zhangyu
2024-11-01 14:30:59 +08:00
committed by 谢杞钰
parent 5c8af202ad
commit d5fcd12f5e
+19
View File
@@ -0,0 +1,19 @@
<?php
declare(strict_types=1);
namespace zin;
class thinkStepQuote extends wg
{
private array $modules = array();
protected static array $defineProps = array
(
'step?: object', // 整个步骤的对象
'questionType?: string', // 问题类型
'quoteQuestions?: array', // 引用问题
'setOption?: bool=false', // 选项配置方式
'quoteTitle?: string', // 列标题
'citation?: int=1', // 引用方式
'selectColumn?: string', // 选择列
);
}