You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
3.3 KiB
81 lines
3.3 KiB
<?php /*a:2:{s:73:"E:\waibao\ahbcqz\server\app\admin\view\decoration\menu_decorate\shop.html";i:1679478874;s:51:"E:\waibao\ahbcqz\server\app\admin\view\layout1.html";i:1679478874;}*/ ?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title><?php echo url(); ?></title>
|
|
<meta name="renderer" content="webkit">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
|
<link rel="stylesheet" href="/static/lib/layui/css/layui.css?v=<?php echo htmlentities($front_version); ?>">
|
|
<link rel="stylesheet" href="/static/admin/css/app.css?v=<?php echo htmlentities($front_version); ?>">
|
|
<link rel="stylesheet" href="/static/admin/css/like.css?v=<?php echo htmlentities($front_version); ?>">
|
|
<script src="/static/lib/layui/layui.js?v=<?php echo htmlentities($front_version); ?>"></script>
|
|
<script src="/static/admin/js/app.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<?php echo $js_code; ?>
|
|
<script src="/static/admin/js/jquery.min.js"></script>
|
|
<script src="/static/admin/js/function.js"></script>
|
|
|
|
|
|
|
|
<div class="wrapper">
|
|
<div class="layui-card layui-form">
|
|
<div class="layui-card-body">
|
|
<div class="layui-collapse" style="border:1px dashed #c4c4c4">
|
|
<div class="layui-colla-item">
|
|
<h2 class="layui-colla-title like-layui-colla-title" style="background-color: #fff">操作提示</h2>
|
|
<div class="layui-colla-content layui-show tips">
|
|
*移动端商城店铺街设置
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="layui-card-body">
|
|
<div class="layui-form-item">
|
|
<label class="layui-form-label" style="width:85px;">店铺街功能:</label>
|
|
<div class="layui-input-block">
|
|
<input type="radio" name="shop_street_hide" value="1" title="显示" <?php if($shop_street_hide==1): ?>checked<?php endif; ?>>
|
|
<input type="radio" name="shop_street_hide" value="0" title="隐藏" <?php if($shop_street_hide==0): ?>checked<?php endif; ?>>
|
|
</div>
|
|
<div class="layui-form-mid layui-word-aux">设置关闭店铺街功能时,用户进入店铺街会显示暂无数据,方便微信小程序提交审核</div>
|
|
</div>
|
|
|
|
<div class="layui-form-item">
|
|
<div class="layui-input-block">
|
|
<button class="layui-btn layui-btn-normal" lay-submit lay-filter="addBtn">确定</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
layui.use(["form"], function () {
|
|
var form = layui.form;
|
|
|
|
form.on('submit(addBtn)', function(data){
|
|
like.ajax({
|
|
url: "<?php echo url('decoration.MenuDecorate/shop'); ?>",
|
|
data: data.field,
|
|
type: "POST",
|
|
success:function(res) {
|
|
if(res.code === 1) {
|
|
layui.layer.msg(res.msg);
|
|
setTimeout(function () {
|
|
location.reload()
|
|
}, 500);
|
|
}
|
|
}
|
|
});
|
|
|
|
});
|
|
})
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|