Files
2019-02-28 19:48:21 +08:00

153 lines
7.9 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<include file="public/min-header" />
<link href="__PUBLIC__/plugins/daterangepicker/daterangepicker-bs3.css" rel="stylesheet" type="text/css" />
<script src="__PUBLIC__/plugins/daterangepicker/moment.min.js" type="text/javascript"></script>
<script src="__PUBLIC__/plugins/daterangepicker/daterangepicker.js" type="text/javascript"></script>
<div class="wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="panel-heading">
<ol class="breadcrumb panel-title">
<li><a href="#"><i class="fa fa-dashboard"></i> 后台首页</a></li>
<li><a href="#" class="active">系统设置</a></li>
<!--<li class="active">Data tables</li>-->
</ol>
</div>
</section>
<section class="content" style="padding:0px 15px;">
<!-- Main content -->
<div class="container-fluid">
<div class="pull-right">
<a href="javascript:history.go(-1)" data-toggle="tooltip" title="" class="btn btn-default" data-original-title="返回"><i class="fa fa-reply"></i></a>
</div>
<div class="panel panel-default">
<div class="panel-body ">
<ul class="nav nav-tabs">
<foreach name="group_list" item="vo" key="k">
<li><a href="javascript:void(0)" data-url="{:U('System/index',array('inc_type'=>$k))}" data-toggle="tab" onclick="goset(this)">{$vo}</a></li>
</foreach>
</ul>
<!--表单数据-->
<form method="post" id="handlepost" action="{:U('System/handle')}">
<!--通用信息-->
<div class="tab-content col-md-10">
<div class="tab-pane active" id="tab_tongyong">
<table class="table table-bordered">
<tbody>
<tr>
<td class="col-sm-2">市场价格比例:</td>
<td class="col-sm-8">
<input type="text" class="form-control" name="store_name" value="{$config.store_name}" >
<span id="err_attr_name" style="color:#F00; display:none;"></span>
</td>
</tr>
<tr>
<td>会员注册赠送积分:</td>
<td >
<input type="text" class="form-control" name="store_logo" value="{$config.store_logo}" >
</td>
</tr>
<tr>
<td>附件上传大小:</td>
<td >
<input type="text" class="form-control" name="store_logo" value="{$config.store_logo}" >
</td>
</tr>
<tr>
<td>默认库存:</td>
<td >
<input type="text" class="form-control" name="store_logo" value="{$config.store_logo}" >
</td>
</tr>
<tr>
<td>URL重写</td>
<td >
<input type="text" class="form-control" name="store_logo" value="{$config.store_logo}" >
</td>
</tr>
<tr>
<td>消费积分名称:</td>
<td >
<input type="text" class="form-control" name="store_logo" value="{$config.store_logo}" >
</td>
</tr>
<tr>
<td>积分换算比例:</td>
<td >
<input type="text" class="form-control" name="store_logo" value="{$config.store_logo}" >
</td>
</tr>
<tr>
<td>积分支付比例:</td>
<td >
<input type="text" class="form-control" name="store_logo" value="{$config.store_logo}" >
</td>
</tr>
<tr>
<td>是否开启订单提醒:</td>
<td >
<input type="text" class="form-control" name="store_logo" value="{$config.store_logo}" >
</td>
</tr>
<tr>
<td>是否关闭注册:</td>
<td>
<input type="radio" class="" name="is_reg" value="0" >
<input type="radio" class="" name="is_reg" value="1" >
</td>
</tr>
<tr>
<td>网站是否开启:</td>
<td>
<input type="radio" class="" name="is_open" value="0" >
<input type="radio" class="" name="is_open" value="1" >
</td>
</tr>
<tr>
<td>关闭原因:</td>
<td>
<input type="text" class="form-control" name="close_reason" value="" >
</td>
</tr>
<tr>
<td>版权信息:</td>
<td>
<input type="text" class="form-control" name="version_info" value="" >
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td><input type="hidden" name="inc_type" value="{$inc_type}"></td>
<td class="text-right"><input class="btn btn-primary" type="buuton" onclick="adsubmit()" value="保存"></td></tr>
</tfoot>
</table>
</div>
</div>
</form><!--表单数据-->
</div>
</div>
</div>
</section>
</div>
<script>
function adsubmit(){
$('#handlepost').submit();
}
$(document).ready(function(){
get_province();
});
function goset(obj){
window.location.href = $(obj).attr('data-url');
}
</script>
</body>
</html>