91 lines
4.2 KiB
PHTML
91 lines
4.2 KiB
PHTML
<?php
|
||
$this->headTitle($this->config->title->site);
|
||
$this->headTitle($this->config->title->author);
|
||
$this->headTitle()->setSeparator(' - ');
|
||
//$this->headLink()->appendStylesheet('/css/admin.css');
|
||
$this->breadcrumb('<a href="/">首页</a>');
|
||
$this->breadcrumb('<a href="/admin/data">数据管理</a>');
|
||
$this->breadcrumb('支持项目');
|
||
$this->breadcrumb()->setSeparator(' > ');
|
||
$this->theme->AppendPlus($this,'colorbox');
|
||
?>
|
||
<div class="row-fluid">
|
||
<div class="span2">
|
||
<?= $this->partial('data/left.phtml'); ?>
|
||
</div>
|
||
<div class="span10">
|
||
<div>
|
||
<ul class="nav nav-tabs">
|
||
<li><a href="/admin/data/fund/ac/datalist">数据相关</a></li>
|
||
<li><a href="/admin/data/fund/">所有项目</a></li>
|
||
<li class="active"><a href="/admin/data/fund/ac/add">添加新项目</a></li>
|
||
</ul>
|
||
</div>
|
||
<div class="">
|
||
<?php if(!empty($this->error)) { ?>
|
||
<div class="alert alert-block alert-error fade in" id="Alert-error-box">
|
||
<a class="close" data-dismiss="alert" href="#">×</a>
|
||
<?php if(!is_array($this->error)) { ?><h4 class="alert-heading"><?= $this->error ?></h4><?php } else { ?>
|
||
<ul>
|
||
<?php foreach($this->error as $v) { ?>
|
||
<li><?= $v ?></li>
|
||
<?php } ?>
|
||
</ul>
|
||
<?php } ?>
|
||
</div>
|
||
<?php } ?>
|
||
<?php if(!empty($this->msg)) { ?>
|
||
<div class="alert <?= $this->AlertType;?>">
|
||
<a data-dismiss="alert" class="close">×</a>
|
||
<?php echo $this->msg ?>
|
||
</div>
|
||
<?php if(!empty($this->jump_url)) { ?>
|
||
<script language="javascript">setTimeout("self.location='<?php echo $this->jump_url ?>'",3000);</script>
|
||
<?php } ?>
|
||
<?php } else{ ?>
|
||
<form class="form-horizontal" method="post">
|
||
<div class="control-group">
|
||
<label class="control-label" for="title">项目名称</label>
|
||
<div class="controls">
|
||
<input type="text" id="title" name="title" value="<?= isset($this->data['title']) ? $this->data['title']:"" ?>" />
|
||
</div>
|
||
</div>
|
||
<div class="control-group">
|
||
<label class="control-label" for="fund_id">编号</label>
|
||
<div class="controls">
|
||
<input type="text" id="fund_id" name="fund_id" value="<?= isset($this->data['fund_id']) ? $this->data['fund_id']:"" ?>" />
|
||
</div>
|
||
</div>
|
||
<div class="control-group">
|
||
<label class="control-label" for="fund_type">类型</label>
|
||
<div class="controls">
|
||
<input type="text" id="fund_type" name="fund_type" value="<?= isset($this->data['fund_type']) ? $this->data['fund_type']:"" ?>" />
|
||
</div>
|
||
</div>
|
||
<div class="control-group">
|
||
<label class="control-label" for="title_en">英文名称</label>
|
||
<div class="controls">
|
||
<input type="text" id="title_en" name="title_en" value="<?= isset($this->data['title_en']) ? $this->data['title_en']:"" ?>" />
|
||
</div>
|
||
</div>
|
||
<div class="control-group">
|
||
<label class="control-label" for="fund_type_en">英文类型</label>
|
||
<div class="controls">
|
||
<input type="text" id="fund_type_en" name="fund_type_en" value="<?= isset($this->data['fund_type_en']) ? $this->data['fund_type_en']:"" ?>" />
|
||
</div>
|
||
</div>
|
||
<div class="control-group">
|
||
<div class="controls">
|
||
<input type="hidden" name="submit" value="1" />
|
||
<?php if(!empty($this->id)) { ?>
|
||
<input type="hidden" name="id" value=" <?=$this->id?> " />
|
||
<?php } ?>
|
||
<button type="submit" class="btn btn-primary">提交</button>
|
||
</div>
|
||
</div>
|
||
</form>
|
||
<?php } ?>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- //页面内容 -->
|