|
@@ -139,6 +139,10 @@ return array
|
|
|
'pay_type' => $pay_type,
|
|
|
'order_type' => $order_type,
|
|
|
),
|
|
|
+ 'start' => array
|
|
|
+ (
|
|
|
+ 'update' => 'agent/lib/manage.orderUpdateParent',
|
|
|
+ ),
|
|
|
'order' => 99,
|
|
|
|
|
|
'struct' => array
|
|
@@ -207,6 +211,34 @@ return array
|
|
|
|
|
|
),
|
|
|
|
|
|
+ 'invite_type' => array
|
|
|
+ (
|
|
|
+ 'type' => 'tinyint-1',
|
|
|
+ 'name' => '邀请类型',
|
|
|
+ 'default' => '1',
|
|
|
+ 'desc' => '邀请类型',
|
|
|
+ 'match' => 'is_numeric',
|
|
|
+
|
|
|
+ 'update' => 'radio',
|
|
|
+ 'option' => $invite_type,
|
|
|
+
|
|
|
+
|
|
|
+ 'control' => 'invite_type',
|
|
|
+ ),
|
|
|
+
|
|
|
+ 'parent_code' => array
|
|
|
+ (
|
|
|
+ 'type' => 'varchar-100',
|
|
|
+ 'name' => '上级邀请码',
|
|
|
+ 'default' => '',
|
|
|
+ 'desc' => '上级邀请码',
|
|
|
+ 'match' => 'is_string',
|
|
|
+ 'update' => 'text',
|
|
|
+
|
|
|
+ 'bind' => array('onblur', 'loading', array('url' => Dever::url("lib/member.search", 'agent'))),
|
|
|
+ 'show' => 'invite_type=1',
|
|
|
+ ),
|
|
|
+
|
|
|
'parent_mid' => array
|
|
|
(
|
|
|
'type' => 'int-11',
|
|
@@ -214,7 +246,7 @@ return array
|
|
|
'default' => '-1',
|
|
|
'desc' => '邀请人',
|
|
|
'match' => 'is_string',
|
|
|
- 'update' => 'text',
|
|
|
+
|
|
|
'search' => $parent_mid ? 'hidden' : array
|
|
|
(
|
|
|
'api' => 'agent/member-find',
|
|
@@ -224,6 +256,7 @@ return array
|
|
|
'list_name' => '邀请人',
|
|
|
'list' => 'Dever::load("agent/lib/member.getOne", {parent_mid})',
|
|
|
'list_order' => 4,
|
|
|
+
|
|
|
),
|
|
|
|
|
|
'source_id' => array
|
|
@@ -234,10 +267,11 @@ return array
|
|
|
'desc' => '注册来源',
|
|
|
'match' => 'is_numeric',
|
|
|
'search' => 'select',
|
|
|
- 'update' => 'checkbox',
|
|
|
+ 'update' => 'radio',
|
|
|
'option' => $source_id,
|
|
|
'list' => true,
|
|
|
'list_order' => 5,
|
|
|
+ 'show' => 'invite_type=2',
|
|
|
),
|
|
|
|
|
|
'name' => array
|
|
@@ -321,8 +355,8 @@ return array
|
|
|
'default' => '1',
|
|
|
'desc' => '支付方式',
|
|
|
'match' => 'is_numeric',
|
|
|
- 'search' => 'select',
|
|
|
- 'update' => 'select',
|
|
|
+
|
|
|
+
|
|
|
'option' => $pay_type,
|
|
|
|
|
|
|