mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-06-26 14:19:39 +08:00
82 lines
3.0 KiB
PHP
82 lines
3.0 KiB
PHP
{extend name='admin@public/content'}
|
|
|
|
{block name="content"}
|
|
<form onsubmit="return false;" action="{:request()->url()}" data-auto="true" method="post" class='form-horizontal layui-form padding-top-20'>
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label">品牌名称</label>
|
|
<div class='col-sm-8'>
|
|
<input autofocus name="brand_title" value='{$vo.brand_title|default=""}' required="required" title="请输入品牌名称" placeholder="请输入品牌名称" class="layui-input">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label label-required">品牌图片</label>
|
|
<div class='col-sm-8'>
|
|
<table class="layui-table background-item margin-none" lay-size="sm" lay-skin="nob">
|
|
<thead>
|
|
<tr>
|
|
<td>品牌LOGO</td>
|
|
<td>品牌图片</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td class="text-top" style="width:100px">
|
|
<input type="hidden" name="brand_logo" value="{$vo.brand_logo|default=''}">
|
|
<script>$('[name=brand_logo]').uploadOneImage()</script>
|
|
</td>
|
|
<td class="text-top">
|
|
<input type="hidden" name="brand_cover" value="{$vo.brand_cover|default=''}">
|
|
<script>$('[name=brand_cover]').uploadOneImage()</script>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label">品牌描述</label>
|
|
<div class='col-sm-8'>
|
|
<textarea placeholder="请输入品牌描述" title="请输入品牌描述" class="layui-textarea" name="brand_desc">{$vo.brand_desc|default=""}</textarea>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="col-sm-2 control-label">品牌内容</label>
|
|
<div class='col-sm-8'>
|
|
<textarea name="brand_detail">{$vo.brand_detail|default=''|raw}</textarea>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="hr-line-dashed"></div>
|
|
|
|
<div class="col-sm-7 col-sm-offset-2">
|
|
<div class="layui-form-item text-center">
|
|
{if !empty($vo.id)}<input type="hidden" name="id" value="{$vo.id}">{/if}
|
|
<button class="layui-btn" type="submit">保存配置</button>
|
|
<button class="layui-btn layui-btn-danger" type='button' onclick="window.history.back()">取消编辑</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script>window.form.render();</script>
|
|
|
|
<script>
|
|
/*! 实例富文本编辑器 */
|
|
require(['ckeditor'], function () {
|
|
window.createEditor('[name="brand_detail"]', {height: 500});
|
|
});
|
|
</script>
|
|
<style>
|
|
.background-item {
|
|
padding: 15px;
|
|
background: #efefef;
|
|
}
|
|
|
|
.background-item thead tr {
|
|
background: #e0e0e0
|
|
}
|
|
</style>
|
|
</form>
|
|
{/block} |