model = new CompanyModel(); } // 显示公司设置 public function index() { // 获取公司配置 $this->assign('companys', $this->model->getList()); $this->display('content/company.html'); } // 修改公司设置 public function mod() { if (! $_POST) { return; } $data = array( 'name' => post('name'), 'address' => post('address'), 'postcode' => post('postcode'), 'contact' => post('contact'), 'mobile' => post('mobile'), 'phone' => post('phone'), 'fax' => post('fax'), 'email' => post('email'), 'qq' => post('qq'), 'weixin' => post('weixin'), 'blicense' => post('blicense'), 'other' => post('other') ); if ($this->model->checkCompany()) { if ($this->model->modCompany($data)) { $this->log('修改公司信息成功!'); success('修改成功!', - 1); } else { location(- 1); } } else { $data['acode'] = session('acode'); if ($this->model->addCompany($data)) { $this->log('修改公司信息成功!'); success('修改成功!', - 1); } else { location(- 1); } } } }