|
@@ -22,7 +22,7 @@ $project = function()
|
|
|
};
|
|
|
|
|
|
$user = '用户ID';
|
|
|
-$search = 'fulltext';
|
|
|
+$search = 'hidden';
|
|
|
|
|
|
$config_id = Dever::input('search_option_config_id');
|
|
|
if ($config_id) {
|
|
@@ -33,6 +33,12 @@ if ($config_id) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+$account_log = 'info_log&project=account&search_option_uid={uid}&oper_parent=info&oper_project=account';
|
|
|
+
|
|
|
+$oper_table = Dever::input('oper_table');
|
|
|
+if ($oper_table) {
|
|
|
+ $account_log .= '&top_table=' . $oper_table . '&top_project=' . Dever::input('oper_project');
|
|
|
+}
|
|
|
return array
|
|
|
(
|
|
|
# 表名
|
|
@@ -61,6 +67,7 @@ return array
|
|
|
'desc' => '用户名称',
|
|
|
'match' => 'is_numeric',
|
|
|
'search' => $search,
|
|
|
+ 'value' => Dever::input('search_option_uid'),
|
|
|
'list_name' => '用户名称',
|
|
|
'list' => 'Dever::load("account/lib/info.getName", {uid}, {config_id})',
|
|
|
),
|
|
@@ -164,7 +171,8 @@ return array
|
|
|
# 列表
|
|
|
'list_button' => array
|
|
|
(
|
|
|
- 'list' => array('账户流水', '"info_log&&project=account&search_option_uid={uid}&oper_parent=info&oper_project=account"'),
|
|
|
+ 'fast_add' => array('账户操作', 'push&project=account&uid={id}'),
|
|
|
+ 'list' => array('账户流水', $account_log),
|
|
|
),
|
|
|
),
|
|
|
|