thinkphp-wechat/config/zbuilder.php
Wenbin.Wang d49c9fde59 代码
2021-12-24 16:40:05 +08:00

36 lines
1017 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* ZBuilder相关设置
*/
return [
// +----------------------------------------------------------------------
// | 表格相关设置
// +----------------------------------------------------------------------
// 弹出层
'pop' => [
'type' => 2,
'area' => ['80%', '90%'],
'shadeClose' => true,
'isOutAnim' => false,
'anim' => -1
],
// 右侧按钮
'right_button' => [
// 是否显示按钮文字
'title' => false,
// 是否显示图标,只有显示文字时才起作用
'icon' => true,
// 按钮大小xs/sm/lg留空则为普通大小
'size' => 'xs',
// 按钮样式default/primary/success/info/warning/danger
'style' => 'default'
],
// 搜索框
'search_button' => false,
// 表单令牌名称如果不启用请设置为false也可以设置其他名称__hash__
'form_token_name' => '__token__'
];