123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <?php
- $acct_type = array
- (
- -1 => '个人账户',
- 1 => '公司账户',
- );
- $mer_type = array
- (
- 2 => '个人工商户',
- 1 => '企业商户',
- //3 => '小微商户',
- );
- $id = Dever::input('search_option_shop_id');
- $shop = array();
- if ($id) {
- $shop = Dever::db('shop/info')->one($id);
- }
- $step = Dever::db('shop/sign')->config['step'];
- $step[100] = '绑定门店';
- return array
- (
- # 表名
- 'name' => 'sign_log',
- # 显示给用户看的名称
- 'lang' => '自主签约日志',
- # 后台菜单排序
- 'order' => 99,
- 'step' => $step,
- 'menu' => false,
- # 数据结构
- 'struct' => array
- (
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'search' => 'order',
- //'list' => true,
- 'order' => 'desc',
- ),
- 'sign_id' => array
- (
- 'type' => 'int-11',
- 'name' => '签约id',
- 'default' => '0',
- 'desc' => '签约id',
- 'match' => 'is_numeric',
- 'update' => 'hidden',
- ),
- 'step' => array
- (
- 'type' => 'int-11',
- 'name' => '当前进度',
- 'default' => '',
- 'desc' => '当前进度',
- 'match' => 'option',
- 'update' => 'text',
- 'option' => $step,
- 'list' => true,
- ),
- 'desc' => array
- (
- 'type' => 'varchar-800',
- 'name' => '日志描述',
- 'default' => '',
- 'desc' => '日志描述',
- 'match' => 'option',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'list' => true,
- ),
- 'request_seq' => array
- (
- 'type' => 'varchar-800',
- 'name' => '请求流水号',
- 'default' => '',
- 'desc' => '请求流水号',
- 'match' => 'option',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'list' => true,
- ),
- 'request' => array
- (
- 'type' => 'text-255',
- 'name' => '请求数据',
- 'default' => '',
- 'desc' => '请求数据',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'response' => array
- (
- 'type' => 'text-255',
- 'name' => '响应数据',
- 'default' => '',
- 'desc' => '响应数据',
- 'match' => 'option',
- 'update' => 'text',
- ),
- 'admin_id' => array
- (
- 'type' => 'int-11',
- 'name' => '管理员id',
- 'default' => '0',
- 'desc' => '管理员id',
- 'match' => 'is_numeric',
- 'update' => 'hidden',
- ),
- '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,
- 'list' => 'date("Y-m-d H:i:s", {cdate})',
- ),
- ),
- 'manage' => array
- (
- 'insert' => false,
- 'edit' => false,
- 'delete' => false,
- ),
- );
|