截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AfterSaleLogic.php 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\logic\after_sale;
  20. use app\common\basics\Logic;
  21. use app\common\enum\AfterSaleEnum;
  22. use app\common\enum\NoticeEnum;
  23. use app\common\enum\OrderGoodsEnum;
  24. use app\common\enum\OrderRefundEnum;
  25. use app\common\enum\PayEnum;
  26. use app\common\model\after_sale\{AfterSale, AfterSaleLog};
  27. use app\common\logic\AfterSaleLogLogic;
  28. use app\common\logic\OrderRefundLogic;
  29. use app\common\model\order\Order as OrderModel;
  30. use app\common\model\order\Order;
  31. use app\common\model\order\OrderGoods;
  32. use app\common\model\shop\Shop;
  33. use app\common\server\AreaServer;
  34. use app\common\server\ExportExcelServer;
  35. use app\common\server\UrlServer;
  36. use think\facade\Db;
  37. /**
  38. * 售后管理-逻辑
  39. * Class GoodsLogic
  40. * @package app\shop\logic\goods
  41. */
  42. class AfterSaleLogic extends Logic
  43. {
  44. /**
  45. * @notes 售后列表
  46. * @param array $get
  47. * @param $shop_id
  48. * @return array
  49. * @throws \think\db\exception\DataNotFoundException
  50. * @throws \think\db\exception\DbException
  51. * @throws \think\db\exception\ModelNotFoundException
  52. * @throws \think\exception\DbException
  53. * @author suny
  54. * @date 2021/7/14 10:19 上午
  55. */
  56. public static function list($get = [], $shop_id = 0, $is_export = false)
  57. {
  58. $after_sale = new AfterSale();
  59. $where = [];
  60. $page = '1';
  61. $limit = '10';
  62. $where[] = ['o.delete', '=', 0];
  63. $where[] = ['a.del', '=', 0];
  64. $where[] = ['o.shop_id', '=', $shop_id];
  65. //订单类型
  66. if (isset($get['type']) && $get['type'] != '') {
  67. $where[] = ['a.status', '=', $get['type']];
  68. }
  69. //订单搜素
  70. if (!empty($get['search_key']) && !empty($get['keyword'])) {
  71. $keyword = $get['keyword'];
  72. switch ($get['search_key']) {
  73. case 'sn':
  74. $where[] = ['a.sn', 'like', '%' . $keyword . '%'];
  75. break;
  76. case 'order_sn':
  77. $where[] = ['o.order_sn', 'like', '%' . $keyword . '%'];
  78. break;
  79. case 'goods_name':
  80. $where[] = ['g.goods_name', 'like', '%' . $keyword . '%'];
  81. break;
  82. case 'user_sn':
  83. $where[] = ['u.sn', 'like', '%' . $keyword . '%'];
  84. break;
  85. case 'nickname':
  86. $where[] = ['u.nickname', 'like', '%' . $keyword . '%'];
  87. break;
  88. case 'user_mobile':
  89. $where[] = ['u.mobile', 'like', '%' . $keyword . '%'];
  90. break;
  91. }
  92. }
  93. if (isset($get['status']) && $get['status'] != '') {
  94. $where[] = ['a.status', '=', $get['status']];
  95. }
  96. //下单时间
  97. if (isset($get['start_time']) && $get['start_time'] != '') {
  98. $where[] = ['a.create_time', '>=', strtotime($get['start_time'])];
  99. }
  100. if (isset($get['end_time']) && $get['end_time'] != '') {
  101. $where[] = ['a.create_time', '<=', strtotime($get['end_time'])];
  102. }
  103. if (isset($get['page']) && $get['page'] != '') {
  104. $page = $get['page'];
  105. }
  106. if (isset($get['limit']) && $get['limit'] != '') {
  107. $limit = $get['limit'];
  108. }
  109. // 导出excel
  110. if (true === $is_export) {
  111. return self::export($where);
  112. }
  113. $field = 'a.id,a.sn,a.status,a.order_id,a.order_goods_id,
  114. a.user_id,a.refund_type,a.create_time,a.refund_price,
  115. o.order_status,o.shop_id,o.pay_way';
  116. $count = $after_sale
  117. ->alias('a')
  118. ->join('order o', 'o.id = a.order_id')
  119. ->join('user u', 'u.id = a.user_id')
  120. ->join('order_goods g', 'g.id = a.order_goods_id')
  121. ->with(['order_goods', 'user', 'order'])
  122. ->where($where)
  123. ->group('a.id')
  124. ->count();
  125. $lists = $after_sale
  126. ->alias('a')
  127. ->field($field)
  128. ->join('order o', 'o.id = a.order_id')
  129. ->join('user u', 'u.id = a.user_id')
  130. ->join('order_goods g', 'g.id = a.order_goods_id')
  131. ->with(['order_goods', 'user', 'order'])
  132. ->where($where)
  133. ->page($page, $limit)
  134. ->order('a.id desc')
  135. ->append(['user.base_avatar', 'order_goods.base_image'])
  136. ->group('a.id')
  137. ->select()->toArray();
  138. foreach ($lists as &$list) {
  139. $list['order']['pay_way'] = PayEnum::getPayWay($list['order']['pay_way']);
  140. $list['order']['order_status'] = OrderModel::getOrderStatus($list['order']['order_status']);
  141. $list['refund_type'] = AfterSale::getRefundTypeDesc($list['refund_type']);
  142. $list['status'] = AfterSale::getStatusDesc($list['status']);
  143. $list['user']['avatar'] = UrlServer::getFileUrl($list['user']['avatar']);
  144. foreach ($list['order_goods'] as &$good) {
  145. $good['image'] = empty($good['spec_image']) ?
  146. UrlServer::getFileUrl($good['image']) : UrlServer::getFileUrl($good['spec_image']);
  147. }
  148. }
  149. return ['count' => $count, 'lists' => $lists];
  150. }
  151. /**
  152. * @notes 售后详情
  153. * @param $id
  154. * @return array
  155. * @throws \think\db\exception\DataNotFoundException
  156. * @throws \think\db\exception\DbException
  157. * @throws \think\db\exception\ModelNotFoundException
  158. * @author suny
  159. * @date 2021/7/14 10:19 上午
  160. */
  161. public static function getDetail($id,$shop_id)
  162. {
  163. $after_sale = new AfterSale();
  164. $result = $after_sale
  165. ->with(['order_goods', 'user', 'order', 'logs'])
  166. ->where('id', $id)
  167. ->find()->toArray();
  168. $result['refund_type_text'] = AfterSale::getRefundTypeDesc($result['refund_type']);
  169. $result['status_text'] = AfterSale::getStatusDesc($result['status']);
  170. $result['order']['pay_way'] = PayEnum::getPayWay($result['order']['pay_way']);
  171. $result['order']['order_status'] = OrderModel::getOrderStatus($result['order']['order_status']);
  172. foreach ($result['order_goods'] as &$good) {
  173. $good['image'] = empty($good['spec_image']) ?
  174. UrlServer::getFileUrl($good['image']) : UrlServer::getFileUrl($good['spec_image']);
  175. }
  176. foreach ($result['logs'] as &$log) {
  177. $log['log_img'] = '';
  178. $log['log_remark'] = '';
  179. switch ($log['channel']) {
  180. //会员申请售后
  181. case AfterSaleLog::USER_APPLY_REFUND:
  182. $log['log_img'] = empty($result['refund_image']) ? '' : UrlServer::getFileUrl($result['refund_image']);
  183. $refund_reason = empty($result['refund_reason']) ? '未知' : $result['refund_reason'];
  184. $refund_remark = empty($result['refund_remark']) ? '暂无' : $result['refund_remark'];
  185. $log['log_remark'] = '退款原因(' . $refund_reason . ')' . '退款说明(' . $refund_remark . ')';
  186. break;
  187. //会员发快递
  188. case AfterSaleLog::USER_SEND_EXPRESS:
  189. $log['log_img'] = empty($result['express_image']) ? '' : UrlServer::getFileUrl($result['express_image']);
  190. $express_name = $result['express_name'];
  191. $invoice_no = $result['invoice_no'];
  192. $express_remark = empty($result['express_remark']) ? '暂无' : $result['express_remark'];
  193. $log['log_remark'] = '快递公司(' . $express_name . ')' . '单号(' . $invoice_no . ')' . '备注说明(' . $express_remark . ')';
  194. break;
  195. //商家拒绝退款 //商家拒绝收货
  196. case AfterSaleLog::SHOP_REFUSE_REFUND:
  197. case AfterSaleLog::SHOP_REFUSE_TAKE_GOODS:
  198. $admin_remark = empty($result['admin_remark']) ? '暂无' : $result['admin_remark'];
  199. $log['log_remark'] = '备注:' . $admin_remark;
  200. break;
  201. }
  202. }
  203. $result['shop_address'] = self::getShopAddress($shop_id);
  204. return $result;
  205. }
  206. /**
  207. * @notes 获取商家地址
  208. * @return string
  209. * @author suny
  210. * @date 2021/7/14 10:19 上午
  211. */
  212. public static function getShopAddress($shop_id)
  213. {
  214. $shop_info = Shop::where('id', $shop_id)->find();
  215. $refund_address = $shop_info['refund_address'];
  216. $shop_province = $refund_address['province_id'] ?? ''; //省份
  217. $shop_city = $refund_address['city_id'] ?? ''; //城市
  218. $shop_district = $refund_address['district_id'] ?? ''; //县区
  219. $shop_address = $refund_address['address'] ?? ''; //详细地址
  220. $shop_contact = $refund_address['nickname'] ?? ''; //联系人
  221. $shop_mobile = $refund_address['mobile'] ?? ''; //联系电话
  222. //组装退货地址
  223. if (empty($shop_province) || empty($shop_city) || empty($shop_district)) {
  224. $arr = [];
  225. } else {
  226. $arr = [$shop_province, $shop_city, $shop_district];
  227. }
  228. $shop_address = AreaServer::getAddress($arr, $shop_address);
  229. return $shop_address . '(' . $shop_contact . ',' . $shop_mobile . ')';
  230. }
  231. /**
  232. * @notes 商家同意售后
  233. * @param $id
  234. * @param $shop_id
  235. * @return false
  236. * @throws \think\db\exception\DataNotFoundException
  237. * @throws \think\db\exception\DbException
  238. * @throws \think\db\exception\ModelNotFoundException
  239. * @author suny
  240. * @date 2021/7/14 10:19 上午
  241. */
  242. public static function agree($id, $shop_id)
  243. {
  244. $after_sale = AfterSale::find($id);
  245. if ($after_sale['del'] == 1) {
  246. return false;
  247. }
  248. $after_sale->update_time = time();
  249. //仅退款
  250. if ($after_sale['refund_type'] == AfterSale::TYPE_ONLY_REFUND) {
  251. $after_sale->status = AfterSale::STATUS_WAIT_REFUND;//更新为等待退款状态
  252. }
  253. //退款退货
  254. if ($after_sale['refund_type'] == AfterSale::TYPE_REFUND_RETURN) {
  255. $after_sale->status = AfterSale::STATUS_WAIT_RETURN_GOODS;//更新为商品待退货状态
  256. }
  257. $after_sale->save();
  258. //记录日志
  259. AfterSaleLogLogic::record(
  260. AfterSaleLog::TYPE_SHOP,
  261. AfterSaleLog::SHOP_AGREE_REFUND,
  262. $after_sale['order_id'],
  263. $after_sale['id'],
  264. $shop_id,
  265. AfterSaleLog::SHOP_AGREE_REFUND
  266. );
  267. // 仅退款;更新订单商品为等待退款
  268. if ($after_sale['refund_type'] == AfterSale::TYPE_ONLY_REFUND) {
  269. $order_goods = OrderGoods::find(['id' => $after_sale['order_goods_id']]);
  270. $order_goods->refund_status = OrderGoodsEnum::REFUND_STATUS_WAIT;//等待退款
  271. $order_goods->save();
  272. }
  273. $mobile = Order::where(['id' => $after_sale['order_id']])->value('mobile');
  274. //通知用户
  275. event('Notice', [
  276. 'scene' => NoticeEnum::AFTER_SALE_NOTICE,
  277. 'mobile' => $mobile,
  278. 'params' => [
  279. 'after_sale_sn' => $after_sale['sn'],
  280. 'user_id' => $after_sale['user_id'],
  281. 'after_sale_result' => AfterSaleLog::getLogDesc(AfterSaleLog::SHOP_AGREE_REFUND),
  282. 'after_sale_remark' => AfterSaleLog::getLogDesc(AfterSaleLog::SHOP_AGREE_REFUND),
  283. 'time' => date('Y-m-d H:i:s', time())
  284. ]
  285. ]);
  286. }
  287. /**
  288. * @notes 商家拒绝
  289. * @param $post
  290. * @param $shop_id
  291. * @return false
  292. * @throws \think\db\exception\DataNotFoundException
  293. * @throws \think\db\exception\DbException
  294. * @throws \think\db\exception\ModelNotFoundException
  295. * @author suny
  296. * @date 2021/7/14 10:19 上午
  297. */
  298. public static function refuse($post, $shop_id)
  299. {
  300. $id = $post['id'];
  301. $after_sale = AfterSale::find($id);
  302. if ($after_sale['del'] == 1) {
  303. return false;
  304. }
  305. $after_sale->update_time = time();
  306. $after_sale->status = AfterSale::STATUS_REFUSE_REFUND;//更新为拒绝退款状态
  307. $after_sale->admin_remark = isset($post['remark']) ? $post['remark'] : '';
  308. $after_sale->save();
  309. //记录日志
  310. AfterSaleLogLogic::record(
  311. AfterSaleLog::TYPE_SHOP,
  312. AfterSaleLog::SHOP_REFUSE_REFUND,
  313. $after_sale['order_id'],
  314. $after_sale['id'],
  315. $shop_id,
  316. AfterSaleLog::SHOP_REFUSE_REFUND
  317. );
  318. $mobile = Order::where(['id' => $after_sale['order_id']])->value('mobile');
  319. //通知用户
  320. event('Notice', [
  321. 'scene' => NoticeEnum::AFTER_SALE_NOTICE,
  322. 'mobile' => $mobile,
  323. 'params' => [
  324. 'after_sale_sn' => $after_sale['sn'],
  325. 'user_id' => $after_sale['user_id'],
  326. 'after_sale_result' => AfterSaleLog::getLogDesc(AfterSaleLog::SHOP_REFUSE_REFUND),
  327. 'after_sale_remark' => AfterSaleLog::getLogDesc(AfterSaleLog::SHOP_REFUSE_REFUND),
  328. 'time' => date('Y-m-d H:i:s', time())
  329. ]
  330. ]);
  331. }
  332. /**
  333. * @notes 商家收货
  334. * @param $post
  335. * @param $admin_id
  336. * @throws \think\db\exception\DataNotFoundException
  337. * @throws \think\db\exception\DbException
  338. * @throws \think\db\exception\ModelNotFoundException
  339. * @author suny
  340. * @date 2021/7/14 10:20 上午
  341. */
  342. public static function takeGoods($post, $admin_id)
  343. {
  344. $id = $post['id'];
  345. $after_sale = AfterSale::find($id);
  346. $after_sale->update_time = time();
  347. $after_sale->status = AfterSale::STATUS_WAIT_REFUND;//更新为等待退款状态
  348. $after_sale->save();
  349. //记录日志
  350. AfterSaleLogLogic::record(
  351. AfterSaleLog::TYPE_SHOP,
  352. AfterSaleLog::SHOP_TAKE_GOODS,
  353. $after_sale['order_id'],
  354. $after_sale['id'],
  355. $admin_id,
  356. AfterSaleLog::SHOP_TAKE_GOODS
  357. );
  358. //更新订单商品为等待退款状态
  359. $order_goods = OrderGoods::find(['id' => $after_sale['order_goods_id']]);
  360. $order_goods->refund_status = OrderGoodsEnum::REFUND_STATUS_WAIT;//等待退款
  361. $order_goods->save();
  362. }
  363. /**
  364. * @notes 商家拒绝收货
  365. * @param $post
  366. * @param $admin_id
  367. * @throws \think\db\exception\DataNotFoundException
  368. * @throws \think\db\exception\DbException
  369. * @throws \think\db\exception\ModelNotFoundException
  370. * @author suny
  371. * @date 2021/7/14 10:20 上午
  372. */
  373. public static function refuseGoods($post, $admin_id)
  374. {
  375. $id = $post['id'];
  376. $after_sale = AfterSale::find($id);
  377. $after_sale->update_time = time();
  378. $after_sale->status = AfterSale::STATUS_REFUSE_RECEIVE_GOODS;//更新为拒绝收货状态
  379. $after_sale->admin_remark = isset($post['remark']) ? $post['remark'] : '';
  380. $after_sale->save();
  381. //记录日志
  382. AfterSaleLogLogic::record(
  383. AfterSaleLog::TYPE_SHOP,
  384. AfterSaleLog::SHOP_REFUSE_TAKE_GOODS,
  385. $after_sale['order_id'],
  386. $after_sale['id'],
  387. $admin_id,
  388. AfterSaleLog::SHOP_REFUSE_TAKE_GOODS
  389. );
  390. }
  391. /**
  392. * @notes 确认退款 ===> 退款
  393. * @param $id
  394. * @param $admin_id
  395. * @return bool|string
  396. * @throws \think\db\exception\DataNotFoundException
  397. * @throws \think\db\exception\DbException
  398. * @throws \think\db\exception\ModelNotFoundException
  399. * @throws \think\exception\DbException
  400. * @throws \think\exception\PDOException
  401. * @author suny
  402. * @date 2021/7/14 10:20 上午
  403. */
  404. public static function confirm($post, $admin_id)
  405. {
  406. //售后记录状态
  407. $after_sale = AfterSale::find($post['id']);
  408. if($after_sale['del'] == 1){
  409. return '该售后已经撤销';
  410. }
  411. if($after_sale['status'] != AfterSaleEnum::STATUS_WAITING){
  412. return '售后状态错误';
  413. }
  414. $order = OrderModel::find(['id' => $after_sale['order_id']]);
  415. $order_goods = OrderGoods::find(['id' => $after_sale['order_goods_id']]);
  416. Db::startTrans();
  417. try {
  418. //更新售后为退款成功状态
  419. $after_sale->update_time = time();
  420. $after_sale->status = AfterSale::STATUS_SUCCESS_REFUND;
  421. $after_sale->save();
  422. //售后日志
  423. AfterSaleLogLogic::record(
  424. AfterSaleLog::TYPE_SHOP,
  425. AfterSaleLog::REFUND_SUCCESS,
  426. $after_sale['order_id'],
  427. $after_sale['id'],
  428. $admin_id,
  429. AfterSaleLog::REFUND_SUCCESS
  430. );
  431. //更新订单和订单商品状态
  432. OrderRefundLogic::afterSaleRefundUpdate($order, $order_goods['id'], $admin_id);
  433. //线下支付订单原路退回不做处理
  434. if ($post['refund_way'] != OrderRefundEnum::REFUND_WAY_ORIGINAL || $order['pay_way'] != PayEnum::OFFLINE_PAY) {
  435. //订单退款
  436. OrderRefundLogic::refund($order, $order['order_amount'], $after_sale['refund_price'],$post['refund_way']);
  437. }
  438. Db::commit();
  439. return true;
  440. } catch (\Exception $e) {
  441. Db::rollback();
  442. //增加退款失败记录
  443. OrderRefundLogic::addErrorRefund($order, $e->getMessage());
  444. //记录日志
  445. AfterSaleLogLogic::record(
  446. AfterSaleLog::TYPE_SHOP,
  447. AfterSaleLog::REFUND_ERROR,//退款失败
  448. $after_sale['order_id'],
  449. $after_sale['id'],
  450. $admin_id,
  451. AfterSaleLog::REFUND_ERROR,//退款失败
  452. $e->getMessage()
  453. );
  454. return $e->getMessage();
  455. }
  456. }
  457. /**
  458. * @notes 全部数量
  459. * @return int
  460. * @author suny
  461. * @date 2021/7/13 3:53 下午
  462. */
  463. public static function getAll($shop_id)
  464. {
  465. return AfterSale::alias('a')
  466. ->where(['a.del' => 0, 'shop_id' => $shop_id])
  467. ->join('order o', 'a.order_id = o.id')
  468. ->count('a.id');
  469. }
  470. /**
  471. * @notes 获取统计数量
  472. * @param $status
  473. * @return array
  474. * @author suny
  475. * @date 2021/7/13 4:07 下午
  476. */
  477. public static function getStatus($status, $shop_id)
  478. {
  479. foreach ($status as $key => $value) {
  480. $count = AfterSale::alias('a')
  481. ->join('order o', 'a.order_id = o.id')
  482. ->where(['status' => $key, 'a.del' => 0, 'shop_id' => $shop_id])
  483. ->count('a.id');
  484. $data[] = $value . "(" . $count . ")";
  485. }
  486. return $data;
  487. }
  488. /**
  489. * @notes 导出Excel
  490. * @param array $condition
  491. * @return array|false
  492. * @author 段誉
  493. * @date 2022/4/24 10:10
  494. */
  495. public static function export($condition = [])
  496. {
  497. try {
  498. $field = 'a.sn,a.refund_type,a.refund_price,a.status,a.create_time,
  499. u.nickname,o.order_sn';
  500. $lists = (new AfterSale())
  501. ->alias('a')
  502. ->field($field)
  503. ->join('order o', 'o.id = a.order_id')
  504. ->join('user u', 'u.id = a.user_id')
  505. ->join('order_goods g', 'g.id = a.order_goods_id')
  506. ->with(['order_goods', 'user', 'order'])
  507. ->where($condition)
  508. ->order('a.id desc')
  509. ->group('a.id')
  510. ->select()->toArray();
  511. foreach ($lists as &$list) {
  512. $list['refund_type'] = AfterSale::getRefundTypeDesc($list['refund_type']);
  513. $list['status'] = AfterSale::getStatusDesc($list['status']);
  514. }
  515. $excelFields = [
  516. 'sn' => '售后单号',
  517. 'nickname' => '用户昵称',
  518. 'order_sn' => '订单编号',
  519. 'refund_type' => '售后方式',
  520. 'refund_price' => '售后金额',
  521. 'status' => '售后状态',
  522. 'create_time' => '申请时间',
  523. ];
  524. $export = new ExportExcelServer();
  525. $export->setFileName('售后');
  526. $result = $export->createExcel($excelFields, $lists);
  527. return ['url' => $result];
  528. } catch (\Exception $e) {
  529. self::$error = $e->getMessage();
  530. return false;
  531. }
  532. }
  533. }