dever 3 년 전
부모
커밋
205bea635f
1개의 변경된 파일10개의 추가작업 그리고 2개의 파일을 삭제
  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}")',