123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- <?php
- $type = Dever::db('option/cash')->config['config_type'];
- $status = array
- (
- 1 => '已确认',
- 2 => '未确认',
- );
- $audit = array
- (
- 1 => '正常',
- 2 => '作废',
- );
- $audit_manage = array
- (
- //1 => '正常',
- 2 => '作废',
- );
- $aid = Dever::input('search_option_aid');
- $button = array();
- if ($aid) {
- $button = array
- (
- '返回上一页' => array('location', 'l=project/database/list&project=option&table=cash&page_type=1&aid=' . $aid),
- );
- }
- return array
- (
- # 表名
- 'name' => 'bill_jiaofu',
- # 显示给用户看的名称
- 'lang' => '期权交付记录',
- 'order' => 90,
- 'end' => array
- (
- 'update' => 'option/lib/manage.setJiaofu',
- ),
- 'config_audit' => $audit,
- # 数据结构
- 'struct' => array
- (
-
- 'id' => array
- (
- 'type' => 'int-11',
- 'name' => 'ID',
- 'default' => '',
- 'desc' => '',
- 'match' => 'is_numeric',
- 'search' => 'order',
- //'list' => true,
- ),
- 'order_num' => array
- (
- 'type' => 'varchar-100',
- 'name' => '流水号',
- 'default' => '',
- 'desc' => '流水号',
- 'match' => 'is_string',
- 'update' => 'text',
- 'search' => 'fulltext',
- 'list' => true,
- 'list_order' => 1,
- ),
- 'type' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '交易类型',
- 'default' => '1',
- 'desc' => '交易类型',
- 'match' => 'is_numeric',
- 'option' => $type,
- 'update' => 'radio',
- 'list' => true,
- 'list_order' => 6,
- ),
- 'aid' => array
- (
- 'type' => 'int-11',
- 'name' => '手机号',
- 'default' => '-1',
- 'desc' => '代理商',
- 'match' => 'is_string',
- 'update' => 'text',
- 'search' => array
- (
- 'api' => 'option/account-find',
- 'col' => 'mobile',
- 'result' => 'id',
- ),
- 'list_name' => '期权账户',
- 'list' => 'Dever::load("option/lib/account.getInfo", {aid})',
- 'list_order' => 3,
- ),
- 'cash' => array
- (
- 'type' => 'float-11,2',
- 'name' => '期权价值',
- 'default' => '0',
- 'desc' => '期权价值',
- 'match' => 'is_numeric',
- //'update' => 'text',
- 'list' => true,
- 'list_order' => 5,
- ),
- 'status' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '交付确认',
- 'default' => '2',
- 'desc' => '交付确认',
- 'match' => 'is_numeric',
- 'option' => $status,
- 'update' => 'radio',
- 'list' => true,
- 'list_order' => 4,
- ),
- 'audit' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '审核',
- 'default' => '1',
- 'desc' => '审核',
- 'match' => 'is_numeric',
- 'option' => $audit_manage,
- 'update' => 'radio',
- 'control' => 'audit',
- ),
- 'audit_desc' => array
- (
- 'type' => 'varchar-500',
- 'name' => '备注',
- 'default' => '',
- 'desc' => '备注',
- 'match' => 'option',
- 'update' => 'textarea',
- 'list' => '"{audit_desc}" ? "{audit_desc}" : "-"',
- 'list_order' => 8,
- ),
- 'audit_date' => array
- (
- 'type' => 'int-11',
- 'name' => '审核时间',
- 'match' => 'is_numeric',
- 'desc' => '审核时间',
- 'default' => '',
- ),
- 'audit_admin' => array
- (
- 'type' => 'int-11',
- 'name' => '操作人',
- 'default' => '',
- 'match' => 'is_numeric',
- 'desc' => '操作人',
- 'list' => '"{audit_admin}" > 0 ? Dever::load("manage/admin-find#name", {audit_admin}) : "-"',
- 'list_order' => 7,
- ),
- 'state' => array
- (
- 'type' => 'tinyint-1',
- 'name' => '状态',
- 'default' => '1',
- 'desc' => '请选择状态',
- 'match' => 'is_numeric',
- ),
-
- 'cdate' => array
- (
- 'type' => 'int-11',
- 'name' => '处理时间',
- 'match' => array('is_numeric', time()),
- 'desc' => '',
- 'default' => '',
- # 只有insert时才生效
- 'insert' => true,
- 'list' => 'date("Y-m-d H:i:s", {cdate})',
- 'list_order' => 2,
- ),
- ),
- 'manage' => array
- (
- 'insert' => false,
- 'delete' => false,
- 'edit' => false,
- 'button' => $button,
- 'list_button' => array
- (
- //'list' => array('查看详情', '"member_area&mid={id}&page_type=1"'),
- 'edit' => array('作废', 'audit,audit_desc', '{audit} == 1'),
- //'delete' => array('删除', '', '{status} == 1'),
- ),
- ),
- 'request' => array
- (
- 'getData' => array
- (
- # 匹配的正则或函数 选填项
- 'option' => array
- (
- 'aid' => 'yes',
- 'type' => 'yes',
- 'status' => 'yes',
- 'state' => 1,
- ),
- 'order' => array('id' => 'desc'),
- 'page' => array(10, 'list'),
- 'type' => 'all',
- 'col' => '*',
- ),
- ),
- );
|