dever 3 years ago
parent
commit
205bea635f
1 changed files with 10 additions and 2 deletions
  1. 10 2
      app/cash/database/order.php

+ 10 - 2
app/cash/database/order.php

@@ -14,11 +14,19 @@ $status = array
 
 $audit = array
 (
-	//1 => '待审核',
+	1 => '待审核',
 	2 => '审核通过',
 	3 => '审核未通过',
 );
 
+
+$audit_1 = array
+(
+    //1 => '待审核',
+    2 => '审核通过',
+    3 => '审核未通过',
+);
+
 $audit_type = array
 (
 	1 => '系统',
@@ -258,7 +266,7 @@ return array
             'default'   => '1',
             'desc'      => '审核状态',
             'match'     => 'is_numeric',
-            'option'    => $audit,
+            'option'    => $audit_1,
             'search'    => 'select',
             'update'    => 'radio',
             'list'      => 'Dever::load("cash/lib/set.info", "{audit_type}", "{audit}")',