支付方式

This commit is contained in:
devil_gong
2018-12-24 15:04:39 +08:00
parent 1d81c85437
commit 5f926928b0
13 changed files with 964 additions and 736 deletions

View File

@ -2,7 +2,7 @@
namespace app\admin\controller;
use app\service\OrderService;
use app\service\ResourcesService;
use app\service\PaymentService;
use app\service\ExpressService;
/**
@ -89,10 +89,10 @@ class Order extends Common
$pay_where = [
'where' => ['is_enable'=>1, 'is_open_user'=>1, 'payment'=>config('under_line_list')],
];
$this->assign('buy_payment_list', ResourcesService::BuyPaymentList($pay_where));
$this->assign('buy_payment_list', PaymentService::BuyPaymentList($pay_where));
// 支付方式
$this->assign('payment_list', ResourcesService::PaymentList());
$this->assign('payment_list', PaymentService::PaymentList());
// 评价状态
$this->assign('common_comments_status_list', lang('common_comments_status_list'));