64 lines
1.9 KiB
HTML
64 lines
1.9 KiB
HTML
{extend name="public/base"/}
|
|
{block name="body"}
|
|
<div class="main-box clearfix">
|
|
<header class="main-box-header clearfix">
|
|
<div class="pull-left">
|
|
<h2>{$meta_title}</h2>
|
|
</div>
|
|
<div class="pull-right">
|
|
<a class="btn btn-danger" href="{:url('add',array('model_id'=>$model_id))}"><i class="fa fa-plus"></i> 新 增</a>
|
|
<!-- <button class="btn btn-danger ajax-post confirm" url="{:url('del')}" target-form="ids"><i class="fa fa-remove"></i> 删 除</button> -->
|
|
<a class="btn btn-warning" href="{:url('Model/index')}"><i class="fa fa-reply"></i> 返回</a>
|
|
</div>
|
|
</header>
|
|
<div class="main-box-body clearfix">
|
|
<div class="table-responsive clearfix">
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th><input class="checkbox check-all" type="checkbox"></th>
|
|
<th>表单标题</th>
|
|
<th>字段名</th>
|
|
<th>字段类型</th>
|
|
<th>字段长度</th>
|
|
<th>默认值</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{volist name="list" id="item"}
|
|
<tr>
|
|
<td><input class="ids row-selected" type="checkbox" name="id[]" value="{$item['id']}"></td>
|
|
<td>{$item['title']}</td>
|
|
<td>{$item['name']}</td>
|
|
<td>{$item['type_text']}</td>
|
|
<td>{$item['length']}</td>
|
|
<td>{$item['value']}</td>
|
|
<td>
|
|
<a href="{:url('edit',array('id'=>$item['id'], 'model_id'=>$model_id))}">编辑</a>
|
|
<a href="{:url('del',array('id'=>$item['id'], 'model_id'=>$model_id))}" class="confirm ajax-get">删除</a>
|
|
</td>
|
|
</tr>
|
|
{/volist}
|
|
</tbody>
|
|
</table>
|
|
{$page}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/block}
|
|
{block name="script"}
|
|
<script type="text/javascript" src="__PUBLIC__/plugs/layer/layer.js"></script>
|
|
<script type="text/javascript">
|
|
$(function(){
|
|
$('.openDilog').click(function(){
|
|
layer.open({
|
|
type: 2,
|
|
title: false,
|
|
area: ['900px', '560px'],
|
|
content: $('.openDilog').attr('url')
|
|
});
|
|
});
|
|
})
|
|
</script>
|
|
{/block} |