Beispiel #1
0
 public function view_modify()
 {
     $this->smarty->assign('title', '修改运输平台');
     $id = isset($_GET['id']) ? intval(trim($_GET['id'])) : 0;
     if (empty($id) || !is_numeric($id)) {
         redirect_to("index.php?mod=carrierPlatForm&act=index");
         exit;
     }
     $carrierPlatForm = new CarrierPlatFormAct();
     $res = $carrierPlatForm->actModify($id);
     $carrierList = TransOpenApiModel::getCarrier(2);
     $this->smarty->assign('lists', $carrierList);
     //运输方式列表
     $platFormlist = TransOpenApiModel::getPlatForm("ALL");
     //平台列表
     $this->smarty->assign('platFormlist', $platFormlist);
     $this->smarty->assign('ship_id', $res['carrierId']);
     $this->smarty->assign('plat_id', $res['platId']);
     $this->smarty->assign('ship_name', $res['shipName']);
     $this->smarty->assign('ship_service', $res['shipService']);
     $this->smarty->assign('id', $res['id']);
     $this->smarty->display('carrierPlatFormModify.htm');
 }