|
@@ -43,11 +43,13 @@ class IndexController extends WeChatBaseController |
|
@@ -43,11 +43,13 @@ class IndexController extends WeChatBaseController |
43
|
$this->error('已经注册过相关信息!','/');
|
43
|
$this->error('已经注册过相关信息!','/');
|
44
|
}
|
44
|
}
|
45
|
$Hospital = new HospitalModel();
|
45
|
$Hospital = new HospitalModel();
|
|
|
46
|
+ $hospital = $Hospital->getHospital();
|
46
|
$platform = $Hospital->getPlatment()->toArray();
|
47
|
$platform = $Hospital->getPlatment()->toArray();
|
47
|
$Job = new JobModel();
|
48
|
$Job = new JobModel();
|
48
|
$jobs = $Job->getJob()->toArray();
|
49
|
$jobs = $Job->getJob()->toArray();
|
49
|
$this->assign('jobs', $jobs);
|
50
|
$this->assign('jobs', $jobs);
|
50
|
$this->assign('platform', $platform);
|
51
|
$this->assign('platform', $platform);
|
|
|
52
|
+ $this->assign('hospital', $hospital);
|
51
|
return $this->fetch();
|
53
|
return $this->fetch();
|
52
|
}
|
54
|
}
|
53
|
|
55
|
|