@@ -823,7 +823,7 @@ class StoreOrderController
$uid = $request->uid();
$data = UtilService::postMore([
['order_id', ''],
- ['price', 0]
+ ['refund_price', 0]
]);
if (!$data['order_id']) return app('json')->fail('数据不存在');
$orderInfo = StoreOrder::where('order_id', $data['order_id'])->where('store_id', SystemStoreStaff::where('uid', $uid)->value('store_id'))->where('paid', 1)->where('refund_status', 0)->find();