12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace app\admin\controller\company;
- use app\admin\controller\AuthController;
- use app\admin\model\order\StoreOrder as StoreOrderModel;
- use app\admin\model\store\{
- StoreProduct as ProductModel
- };
- use app\admin\model\ump\StoreBargain;
- use app\admin\model\ump\StoreCombination;
- use app\admin\model\ump\StoreSeckill;
- use crmeb\services\{JsonService, JsonService as Json, UtilService as Util, FormBuilder as Form};
- use crmeb\traits\CurdControllerTrait;
- use think\facade\Route as Url;
- use app\admin\model\system\{
- SystemAttachment, ShippingTemplates
- };
- /**
- * 产品管理
- * Class StoreProduct
- * @package app\admin\controller\store
- */
- class Finance extends AuthController
- {
- use CurdControllerTrait;
- protected $bindModel = ProductModel::class;
- /**
- * @return mixed
- */
- public function index()
- {
- $this->assign([
- 'year' => get_month(),
- 'real_name' => $this->request->get('real_name', ''),
- 'status' => $this->request->param('status', ''),
- 'orderCount' => StoreOrderModel::orderCount(),
- 'payTypeCount' => StoreOrderModel::payTypeCount(),
- ]);
- return $this->fetch();
- }
- public function lst()
- {
- }
- }
|