165 lines
4.9 KiB
HTML
165 lines
4.9 KiB
HTML
{extend name="common/base"/}
|
|
{block name="style"}
|
|
<style type="text/css">
|
|
.editormd-code-toolbar select {
|
|
display: inline-block
|
|
}
|
|
|
|
.editormd li {
|
|
list-style: inherit;
|
|
}
|
|
.layui-td-gray{
|
|
width: 110px;
|
|
}
|
|
.addrhelper-ok-btn{
|
|
display: none;
|
|
}
|
|
</style>
|
|
{/block}
|
|
<!-- 主体 -->
|
|
{block name="body"}
|
|
<form class="layui-form p-4">
|
|
<input type="hidden" name="id" value="{$detail.brand_id}">
|
|
<h3 class="pb-3">编辑</h3>
|
|
<table class="layui-table layui-table-form">
|
|
<tr>
|
|
<td class="layui-td-gray">上级分类<font>*</font>
|
|
</td>
|
|
<td>
|
|
<select name="" lay-filter="storeBrandCategory" lay-search>
|
|
<option value="">选择分类</option>
|
|
{volist name='storeBrandCategory' id='vo'}
|
|
{if $detail.storeBrandCategory.pid == $vo.store_brand_category_id}
|
|
<option value="{$vo.store_brand_category_id}" selected >{$vo.cate_name}</option>
|
|
{else /}
|
|
<option value="{$vo.store_brand_category_id}" >{$vo.cate_name}</option>
|
|
{/if}
|
|
{/volist}
|
|
|
|
</select>
|
|
</td>
|
|
<td>
|
|
<div class="layui-col-md4">
|
|
<label class="layui-form-label">子分类</label>
|
|
<div class="layui-input-block">
|
|
<div id="demo1"></div>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="layui-td-gray">品牌名称<font>*</font></td>
|
|
<td colspan="4">
|
|
<input type="text" name="brand_name" lay-verify="required" lay-reqText="请输入品牌名称"
|
|
autocomplete="off" value="{$detail.brand_name}" class="layui-input">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<div class="layui-form-item">
|
|
<label class="layui-form-label">是否显示</label>
|
|
<div class="layui-input-block">
|
|
<input type="checkbox" name="is_show" lay-skin="switch" {$detail.is_show?'checked':''}>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
<td class="layui-td-gray">排序</td>
|
|
<td>
|
|
<input type="text" name="sort" value="{$detail.sort}" placeholder="请输入数字,越小越靠前" autocomplete="off"
|
|
class="layui-input">
|
|
</td>
|
|
</tr>
|
|
|
|
</table>
|
|
<div class="pt-3">
|
|
<button class="layui-btn layui-btn-normal" lay-submit="" lay-filter="webform">立即提交</button>
|
|
<button type="reset" class="layui-btn layui-btn-primary">重置</button>
|
|
</div>
|
|
</form>
|
|
{/block}
|
|
<!-- /主体 -->
|
|
|
|
<!-- 脚本 -->
|
|
{block name="script"}
|
|
<script src="/static/assets/js/jquery.min.js"></script>
|
|
<script src="/static/assets/js/addrHelper.js"></script>
|
|
<script src="/static/assets/js/xm-select.js"></script>
|
|
<script>
|
|
var moduleInit = ['tool','tinymce'];
|
|
|
|
function gouguInit() {
|
|
|
|
var form = layui.form, tool = layui.tool;
|
|
|
|
//上传缩略图
|
|
var upload_thumb = layui.upload.render({
|
|
elem: '#upload_btn_thumb',
|
|
url: '/admin/api/upload',
|
|
done: function (res) {
|
|
//如果上传失败
|
|
if (res.code == 1) {
|
|
return layer.msg('上传失败');
|
|
}
|
|
//上传成功
|
|
$('#upload_box_thumb input').attr('value', res.data.filepath);
|
|
$('#upload_box_thumb img').attr('src', res.data.filepath);
|
|
}
|
|
});
|
|
|
|
//监听提交
|
|
form.on('submit(webform)', function (data) {
|
|
|
|
let callback = function (e) {
|
|
console.log(e);
|
|
layer.msg(e.msg);
|
|
if (e.code == 0) {
|
|
tool.tabRefresh(71);
|
|
tool.sideClose(1000);
|
|
}
|
|
}
|
|
|
|
tool.post('{$url[2]}', data.field, callback);
|
|
return false;
|
|
});
|
|
|
|
form.on('select(storeBrandCategory)', function (data) {
|
|
street(data.value);
|
|
});
|
|
|
|
street("{$detail.storeBrandCategory.pid}");
|
|
|
|
var group_access = "{:session('gougu_admin')['group_access']}";
|
|
|
|
function street (id) {
|
|
if(id == null || id == '')
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var demo1 = xmSelect.render({
|
|
name: 'brand_category_id',
|
|
el: '#demo1',
|
|
prop: {
|
|
name: 'cate_name',
|
|
value: 'store_brand_category_id',
|
|
},
|
|
data: [],
|
|
radio: true,
|
|
initValue: ['{$detail.storeBrandCategory.store_brand_category_id}'],
|
|
disabled: group_access == 2 || group_access==4 ? true : false,
|
|
|
|
});
|
|
|
|
$.get('/admin/product.brandClassify/street?pcode=' + id, function (result) {
|
|
|
|
demo1.update({
|
|
data: result
|
|
});
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
</script>
|
|
{/block}
|
|
<!-- /脚本 --> |