| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 | <?php$home_top_type = array(    1 => '显示',    2 => '不显示',);return array(    # 表名    'name' => 'factory_config',    # 显示给用户看的名称    'lang' => '供应链基础信息',    'order' => 1,    # 数据结构    'struct' => array    (        'id'        => array        (            'type'      => 'int-11',            'name'      => '平台ID',            'default'   => '',            'desc'      => '',            'match'     => 'is_numeric',        ),        'name'      => array        (            'type'      => 'varchar-32',            'name'      => '供应链名称',            'default'   => '',            'desc'      => '供应链名称',            'match'     => 'is_string',            'update'    => 'text',        ),                'info'      => array        (            'type'      => 'varchar-1000',            'name'      => '供应链业务描述',            'default'   => '',            'desc'      => '供应链业务描述',            'match'     => 'option',            'update'    => 'textarea',        ),        'kf_name'      => array        (            'type'      => 'varchar-100',            'name'      => '客服姓名',            'default'   => '',            'desc'      => '客服姓名',            'match'     => 'option',            'update'    => 'text',        ),        'phone'      => array        (            'type'      => 'varchar-100',            'name'      => '客服电话',            'default'   => '',            'desc'      => '请输入客服电话',            'match'     => 'option',            'update'    => 'text',        ),        'dz_phone'      => array        (            'type'      => 'varchar-100',            'name'      => '对账专员电话',            'default'   => '',            'desc'      => '请输入对账专员电话',            'match'     => 'option',            'update'    => 'text',        ),        'foot'      => array        (            'type'      => 'text-255',            'name'      => '底部信息',            'default'   => '',            'desc'      => '底部信息',            'match'     => 'option',            'update'    => 'editor',            'key'       => '1',        ),        'state'     => array        (            'type'      => 'tinyint-1',            'name'      => '状态',            'default'   => '1',            'desc'      => '请选择状态',            'match'     => 'is_numeric',        ),        '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',    ),);
 |