123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- <?php
- $ios_pay = array
- (
- 1 => '关闭小程序支付',
- 2 => '开启公众号支付',
- 3 => '开启小程序支付',
- );
- $video = array
- (
- 1 => '显示',
- 2 => '不显示',
- );
- return array
- (
- # 表名
- 'name' => 'config',
- # 显示给用户看的名称
- 'lang' => '基本配置',
- 'order' => 1,
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => '系统ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- ),
-
- 'hr1' => array
- (
- 'name' => '通用设置',
- 'class' => '',//本项必须填写
- 'attr' => '',
- ),
-
-
- 'name' => array
- (
- 'type' => 'varchar-32',
- 'name' => '站点名称',
- 'default' => '',
- 'desc' => '请输入站点名称',
- 'match' => 'is_string',
- 'update' => 'text',
- ),
-
- 'info' => array
- (
- 'type' => 'text-255',
- 'name' => '站点介绍',
- 'default' => '',
- 'desc' => '站点介绍',
- 'match' => 'option',
- 'update' => 'textarea',
- ),
- 'keywords' => array
- (
- 'type' => 'varchar-800',
- 'name' => '站点关键字-多个用逗号隔开',
- 'default' => '',
- 'desc' => '站点关键字',
- 'match' => 'option',
- 'update' => 'textarea',
- ),
- 'logo' => array
- (
- 'type' => 'varchar-150',
- 'name' => 'logo图片',
- 'default' => '',
- 'desc' => 'logo图片',
- 'match' => 'option',
- 'update' => 'image',
- 'key' => '1',
- 'place' => '200*40',
- ),
- 'hr2' => array
- (
- 'name' => '通用设置',
- 'class' => '',//本项必须填写
- 'attr' => '',
- ),
- 'curtime' => array
- (
- 'type' => 'varchar-300',
- 'name' => '营业时间',
- 'default' => '9:00-18:00',
- 'desc' => '营业时间',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'mobile' => array
- (
- 'type' => 'varchar-300',
- 'name' => '联系电话',
- 'default' => '',
- 'desc' => '联系电话',
- 'match' => 'option',
- 'update' => 'textarea',
- ),
- 'email' => array
- (
- 'type' => 'varchar-300',
- 'name' => '联系邮箱',
- 'default' => '',
- 'desc' => '联系邮箱',
- 'match' => 'option',
- 'update' => 'textarea',
- ),
- 'address' => array
- (
- 'type' => 'varchar-1000',
- 'name' => '联系地址',
- 'default' => '',
- 'desc' => '联系地址',
- 'match' => 'option',
- 'update' => 'textarea',
- ),
- 'wechat' => array
- (
- 'type' => 'varchar-150',
- 'name' => '联系微信二维码-图片尺寸450*450px或等比尺寸,上传大小不能超过2M,支持JPG、PNG、GIF格式,建议上传JPG格式',
- 'default' => '',
- 'desc' => '联系微信微信二维码',
- 'match' => 'option',
- 'update' => 'image',
- 'key' => '1',
- 'place' => '150',
- //直接上传到云端
- //'upload' => 'qiniu',
- //上传大数据
- //'large' => true,
- ),
- 'contact' => array
- (
- 'type' => 'varchar-800',
- 'name' => '联系简介',
- 'default' => '',
- 'desc' => '联系简介',
- 'match' => 'option',
- 'update' => 'textarea',
- ),
- 'map_name' => array
- (
- 'type' => 'varchar-800',
- 'name' => '高德地图标注名称-为空则自动显示站点名称',
- 'default' => '',
- 'desc' => '高德地图标注名称',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'map' => array
- (
- 'type' => 'varchar-800',
- 'name' => '高德地图坐标-<a href="https://lbs.amap.com/console/show/picker" target="_blank">点此访问坐标拾取工具</a>',
- 'default' => '116.470098,39.992838',
- 'desc' => '高德地图坐标',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'foot' => array
- (
- 'type' => 'text-255',
- 'name' => '底部联系信息',
- 'default' => '',
- 'desc' => '底部联系信息',
- 'match' => 'option',
- 'update' => 'editor',
- ),
- 'cdate' => array
- (
- 'type' => 'int-11',
- 'name' => '录入时间',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
- # 只有insert时才生效
- 'insert' => true,
- ),
- ),
- 'default' => array
- (
- 'col' => 'name,info,cdate',
- 'value' => array
- (
- '"小码侠","小码侠",' . time(),
- ),
- ),
- 'manage' => array
- (
- # 后台管理不要列表页
- 'list' => 'update',
- ),
- );
|