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.
24 lines
494 B
24 lines
494 B
<?php
|
|
|
|
namespace app\admin\controller\wanlshop;
|
|
|
|
use app\common\controller\Backend;
|
|
|
|
/**
|
|
* 地址管理
|
|
*
|
|
* @icon fa fa-circle-o
|
|
*/
|
|
class Address extends Backend
|
|
{
|
|
|
|
protected $model = null;
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->model = new \app\admin\model\wanlshop\Address;
|
|
$this->view->assign("defaultList", $this->model->getDefaultList());
|
|
$this->view->assign("statusList", $this->model->getStatusList());
|
|
}
|
|
}
|
|
|