123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Gold
- * Date: 2024/3/6
- * Time: 14:56
- */
- namespace app\user\controller;
- use app\common\model\User;
- use library\Controller;
- /**
- * 收货地址
- * Class Delivery
- * @package app\user\controller
- */
- class Active extends Controller
- {
- /**
- * 列表
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function index()
- {
- $this->usersTotal = 100;
- $this->goodsTotal = 100;
- $this->orderTotal = 100;
- $this->amountTotal = 100;
- $this->fetch();
- }
- }
|