You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.5 KiB
PHP
71 lines
2.5 KiB
PHP
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<title>URLS</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<link rel="stylesheet" href="/css/information-system.css" type="text/css" />
|
|
</head>
|
|
<body>
|
|
|
|
<div class="row-fluid">
|
|
<div class="span1">
|
|
|
|
</div>
|
|
|
|
<div class="span10">
|
|
|
|
<legend>每周信息分享</legend>
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th class="span1">#</th>
|
|
<th class="span7">标题</th>
|
|
<th class="span2">发布者</th>
|
|
<th class="span2">时间</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
if (isset($search_list)) {
|
|
foreach ($search_list as $key => $item) {
|
|
?>
|
|
<tr>
|
|
<td><?php echo $key + 1; ?></td>
|
|
<td><a href="<?php echo site_url('infoshare/detail/' . $item->isd_is_id); ?>" target="_blank" ><?php echo $item->isd_title; ?></a></td>
|
|
<td><?php echo $item->isd_fromname; ?></td>
|
|
<td><?php echo date('m/d/Y', strtotime($item->isd_datetime)); ?></td>
|
|
</tr>
|
|
<?php }
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div>
|
|
|
|
<h5>信息共享平台介绍:</h5>
|
|
<p>1、 功能:分类和储存那些零散但是有价值的信息。</p>
|
|
<p>2、 作用:方便各职位人员随时查看;新外联培训时的知识补充。</p>
|
|
|
|
<h5>操作方法:</h5>
|
|
<p>1、 分享流程:邮件标题含有#信息分享#字样→公告后自动存档至平台→采购负责每周整理→每周五技术自动转发本周信息</p>
|
|
<p>2、 查看方法: 进入HT首页→点击右下角查看分享信息字样→进入信息共享平台。</p>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="span1">
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|