theo 2 lat temu
rodzic
commit
ed283f52cb

+ 1 - 1
backendApi/modules/v1/controllers/BaseController.php

@@ -446,4 +446,4 @@ class BaseController extends \yii\rest\ActiveController {
             'request' => $request,
         ];
     }
-}
+}

+ 2 - 2
backendEle/src/views/finance/withdraw.vue

@@ -59,7 +59,7 @@
                   Paid<!--付款-->
                 </el-dropdown-item>
                 <el-dropdown-item command="status"
-                                  @click.native="handleStatusShow(scope.row, 0, 'Are you sure to set the current withdrawal as approved?')"
+                                  @click.native="handleStatusShow(scope.row, 3, 'Are you sure to set the current withdrawal as approved?')"
                                   v-show="scope.row.AUDIT_STATUS === '0' && permission.hasPermission(`finance/withdraw-status`)"> <!-- 确定对当前提现进行设为已付款操作 -->
                   Approve<!--审核通过-->
                 </el-dropdown-item>
@@ -79,7 +79,7 @@
                   Return <!-- 该会员已提供发票,请确认是否处理提现退回 --> <!-- 设为提现退回 -->
                 </el-dropdown-item>
                 <el-dropdown-item command="status"
-                                  @click.native="handleStatusShow(scope.row, 7, 'Are you sure to set the current withdrawal as canceled?', 'Note on withdrawal return')"
+                                  @click.native="handleStatusShow(scope.row, 0, 'Are you sure to set the current withdrawal as canceled?', 'Note on withdrawal return')"
                                   v-show="scope.row.AUDIT_STATUS === '3' && permission.hasPermission(`finance/withdraw-status`)"> <!-- 确定对当前提现进行设为提现退回操作? --> <!-- 提现退回备注 -->
                   Cancel <!-- 取消审核 -->
                 </el-dropdown-item>