43 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {extend name="../../base/view/common/base" /}
 | |
| <!-- 主体 -->
 | |
| {block name="breadcrumb"}
 | |
| <span class="layui-breadcrumb">
 | |
| 	<a href="http://www.meteteme.com/" target="_blank">江苏美天科技</a>
 | |
| 	<a href="/applications/nav/index"><cite>应用</cite></a>
 | |
| </span>
 | |
| {/block}
 | |
| {block name="body"}
 | |
| <div class="table-content p-3">
 | |
|     <div class="layui-form-bar border-t border-x" style="display: flex; justify-content: center;align-items: center;height: 94vh !important;">
 | |
|         <div class="btn_l">
 | |
|             <button class="layui-btn diy-button">
 | |
|                 <strong>文件中转</strong>
 | |
|                 <p>服务器内部资源跳转外部</p>
 | |
|             </button>
 | |
|         </div>
 | |
|         <div class="btn_r">
 | |
|             <button class="layui-btn diy-button layui-bg-purple">
 | |
|                 <strong>报销管理</strong>
 | |
|                 <p>存储员工报销数据电子档</p>
 | |
|             </button>
 | |
|         </div>
 | |
|     </div>
 | |
| </div>
 | |
| {/block}
 | |
| <!-- /主体 -->
 | |
| <!-- 脚本 -->
 | |
| {block name="script"}
 | |
| <script>
 | |
|     //跳转文件中转
 | |
|     $('.btn_l button').click(function(){
 | |
|         window.location.href = '/picbed/index/index';
 | |
|     });
 | |
| 
 | |
|     //跳转Demos管理
 | |
|     $('.btn_r button').click(function(){
 | |
|         window.location.href = '/reimbursement/index/index';
 | |
|     });
 | |
| </script>
 | |
| 
 | |
| {/block}
 | |
| <!-- /脚本 --> |