Authored by whb

修改bug

... ... @@ -14,7 +14,7 @@ a.btn
<tr>
<td style="width:200px;">标题</td>
<td colspan="2">
<input type="text" id="title" name="title" value="<?php echo $this->view->info['title'] ;?>" />
<input type="text" id="title" name="title" value="<?php echo $this->view->info['title'] ;?>" maxLength="50"/>
<select id="main_title_type" name="main_title_type">
<option value="0" <?php echo $this->view->info['main_title_type'] == 0 ? 'selected':''; ?>>中文</option>
<option value="1" <?php echo $this->view->info['main_title_type'] == 1 ? 'selected':''; ?>>英文</option>
... ...
... ... @@ -14,7 +14,7 @@
<ul>
<?php foreach($this->view->news as $val):?>
<li>
<a class="clearfix" href="<?php echo url('news/detail',array('id' => $val['id']))?>">
<a class="clearfix" href="<?php echo url('news/detail',array('id' => $val['id']))?>" target="_blank">
<div class="image-box">
<img src="<?php echo Lib_Images::getImageUrl($val['thumb'],'0230x0230','fragmentimg');?>" alt="">
</div>
... ...
<?php $this->_extends('layout/default_layout_mobile');?>
<?php $this->_block('main');?>
<div class="contact-us-section">
<h2>联系我们</h2>
<p></p>
</div>
<div class="contact-us-section">
<h2>客户服务</h2>
<p>Email:wen@yoho.cn</p>
</div>
... ...