rabin 9 months ago
parent
commit
61a4f26634
1 changed files with 4 additions and 4 deletions
  1. 4 4
      database/yspay_merchant_log.php

+ 4 - 4
database/yspay_merchant_log.php

@@ -8,8 +8,8 @@ $type = array
 
 $tixian_status = array
 (
-    1 => '提现成功',
-    2 => '提现失败',
+    1 => array('name' => '操作成功', 'style' => 'font-weight:bold;color:#003366'),
+    2 => array('name' => '操作失败', 'style' => 'font-weight:bold;color:#993333'),
 );
 $link = Dever::decode(Dever::input('refer'));
 $button = array
@@ -119,9 +119,9 @@ return array
         'tixian_status'      => array
         (
             'type'      => 'tinyint-1',
-            'name'      => '提现状态',
+            'name'      => '状态',
             'default'   => '1',
-            'desc'      => '提现状态',
+            'desc'      => '状态',
             'match'     => 'is_numeric',
             'update'    => 'text',
             'option'    => $tixian_status,