|
@@ -43,6 +43,8 @@ $is_idcard = array
|
|
|
|
|
|
$col = Dever::input('col');
|
|
|
|
|
|
+$type = Dever::input('option_search_type');
|
|
|
+
|
|
|
return array
|
|
|
(
|
|
|
|
|
@@ -158,7 +160,7 @@ return array
|
|
|
'match' => 'is_numeric',
|
|
|
'option' => $is_idcard,
|
|
|
|
|
|
- 'list' => true,
|
|
|
+ 'list' => $type ? false : true,
|
|
|
'list_order' => 3,
|
|
|
),
|
|
|
|
|
@@ -171,6 +173,9 @@ return array
|
|
|
'match' => Dever::rule('idcard'),
|
|
|
'match' => 'is_string',
|
|
|
'update' => 'text',
|
|
|
+ 'list' => $type ? 'Dever::load("option/lib/account.getCash#daijiaofu", {id})' : false,
|
|
|
+ 'list_name' => '待交付',
|
|
|
+ 'list_order' => 4,
|
|
|
),
|
|
|
|
|
|
'idcard_front' => array
|
|
@@ -183,6 +188,9 @@ return array
|
|
|
|
|
|
'key' => '8',
|
|
|
|
|
|
+ 'list' => $type ? 'Dever::load("option/lib/account.getCash#qiquan", {id})' : false,
|
|
|
+ 'list_name' => '期权',
|
|
|
+ 'list_order' => 5,
|
|
|
),
|
|
|
|
|
|
'idcard_back' => array
|
|
@@ -195,6 +203,9 @@ return array
|
|
|
|
|
|
'key' => '8',
|
|
|
|
|
|
+ 'list' => $type ? 'Dever::load("option/lib/account.getCash#yuanshiqiquan", {id})' : false,
|
|
|
+ 'list_name' => '原始期权',
|
|
|
+ 'list_order' => 6,
|
|
|
),
|
|
|
|
|
|
'sign' => array
|
|
@@ -211,7 +222,7 @@ return array
|
|
|
'audit' => array
|
|
|
(
|
|
|
'type' => 'tinyint-1',
|
|
|
- 'name' => '审核状况',
|
|
|
+ 'name' => $type ? '账户认证' : '审核状况',
|
|
|
'default' => $col ? '3' : '1',
|
|
|
'desc' => '审核状况',
|
|
|
'match' => 'is_numeric',
|
|
@@ -219,7 +230,7 @@ return array
|
|
|
'search' => 'select',
|
|
|
'update' => $col ? 'radio' : false,
|
|
|
'list' => 'Dever::load("option/lib/account.getAudit", {id})',
|
|
|
- 'list_order' => 5,
|
|
|
+ 'list_order' => $type ? 3 : 5,
|
|
|
'value' => $col ? '3' : '1',
|
|
|
'control' => 'audit',
|
|
|
),
|
|
@@ -252,7 +263,8 @@ return array
|
|
|
'match' => 'is_numeric',
|
|
|
'option' => $status,
|
|
|
|
|
|
-
|
|
|
+ 'list' => $type ? true : false,
|
|
|
+ 'list_order' => 100,
|
|
|
),
|
|
|
|
|
|
'state' => array
|