123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <?php /*a:3:{s:75:"/data/web/mall.valimart.net/app/admin/view/statgoods/stat_goods_prange.html";i:1657785098;s:61:"/data/web/mall.valimart.net/app/admin/view/public/header.html";i:1657785098;s:66:"/data/web/mall.valimart.net/app/admin/view/public/admin_items.html";i:1657785098;}*/ ?>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <title><?php echo htmlentities((isset($html_title) && ($html_title !== '')?$html_title:config('ds_config.site_name'))); ?><?php echo htmlentities(lang('system_backend')); ?></title>
- <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
- <link rel="stylesheet" href="<?php echo htmlentities(ADMIN_SITE_ROOT); ?>/css/admin.css">
- <link rel="stylesheet" href="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/js/jquery-ui/jquery-ui.min.css">
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/jquery-2.1.4.min.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/jquery.validate.min.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/jquery.cookie.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/common.js"></script>
- <script src="<?php echo htmlentities(ADMIN_SITE_ROOT); ?>/js/admin.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/js/jquery-ui/jquery-ui.min.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/js/jquery-ui/jquery.ui.datepicker-zh-CN.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/perfect-scrollbar.min.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/layer/layer.js"></script>
- <script type="text/javascript">
- var BASESITEROOT = "<?php echo htmlentities(BASE_SITE_ROOT); ?>";
- var ADMINSITEROOT = "<?php echo htmlentities(ADMIN_SITE_ROOT); ?>";
- var BASESITEURL = "<?php echo htmlentities(BASE_SITE_URL); ?>";
- var HOMESITEURL = "<?php echo htmlentities(HOME_SITE_URL); ?>";
- var ADMINSITEURL = "<?php echo htmlentities(ADMIN_SITE_URL); ?>";
- </script>
- </head>
- <body>
- <div id="append_parent"></div>
- <div id="ajaxwaitid"></div>
- <div class="page">
- <div class="fixed-bar">
- <div class="item-title">
- <div class="subject">
- <h3><?php echo htmlentities(lang('ds_statgoods')); ?></h3>
- <h5></h5>
- </div>
- <?php if($admin_item): ?>
- <ul class="tab-base ds-row">
- <?php if(is_array($admin_item) || $admin_item instanceof \think\Collection || $admin_item instanceof \think\Paginator): if( count($admin_item)==0 ) : echo "" ;else: foreach($admin_item as $key=>$item): ?>
- <li><a href="<?php echo htmlentities($item['url']); ?>" <?php if($item['name'] == $curitem): ?>class="current"<?php endif; ?>><span><?php echo htmlentities($item['text']); ?></span></a></li>
- <?php endforeach; endif; else: echo "" ;endif; ?>
- </ul>
- <?php endif; ?>
- </div>
- </div>
- <div class="fixed-empty"></div>
- <form method="get" name="formSearch" id="formSearch">
- <div class="ds-search-form">
- <dl>
- <dd id="searchgc_td"></dd>
- <input type="hidden" id="choose_gcid" name="choose_gcid" value="0"/>
- <dd>
- <select name="search_type" id="search_type" class="querySelect">
- <option value="day" <?php if(isset($search_arr['search_type']) && $search_arr['search_type'] == 'day'): ?>selected<?php endif; ?>><?php echo htmlentities(lang('search_type_day')); ?></option>
- <option value="week" <?php if(isset($search_arr['search_type']) && $search_arr['search_type'] == 'week'): ?>selected<?php endif; ?>><?php echo htmlentities(lang('search_type_week')); ?></option>
- <option value="month" <?php if(isset($search_arr['search_type']) && $search_arr['search_type'] == 'month'): ?>selected<?php endif; ?>><?php echo htmlentities(lang('search_type_month')); ?></option>
- </select>
- </dd>
- <dd id="searchtype_day" style="display:none;">
- <input class="txt date" type="text" value="<?php echo date('Y-m-d',$search_arr['day']['search_time']); ?>" id="search_time" name="search_time">
- </dd>
- <dd id="searchtype_week" style="display:none;">
- <select name="searchweek_year" class="querySelect">
- <?php if(is_array($year_arr) || $year_arr instanceof \think\Collection || $year_arr instanceof \think\Paginator): if( count($year_arr)==0 ) : echo "" ;else: foreach($year_arr as $key=>$v): ?>
- <option value="<?php echo htmlentities($key); ?>" <?php echo $search_arr['week']['current_year']==$key ? 'selected' : ''; ?>><?php echo htmlentities($v); ?></option>
- <?php endforeach; endif; else: echo "" ;endif; ?>
- </select>
- <select name="searchweek_month" class="querySelect">
- <?php if(is_array($month_arr) || $month_arr instanceof \think\Collection || $month_arr instanceof \think\Paginator): if( count($month_arr)==0 ) : echo "" ;else: foreach($month_arr as $key=>$v): ?>
- <option value="<?php echo htmlentities($key); ?>" <?php echo $search_arr['week']['current_month']==$key ? 'selected' : ''; ?>><?php echo htmlentities($v); ?></option>
- <?php endforeach; endif; else: echo "" ;endif; ?>
- </select>
- <select name="searchweek_week" class="querySelect">
- <?php if(is_array($week_arr) || $week_arr instanceof \think\Collection || $week_arr instanceof \think\Paginator): if( count($week_arr)==0 ) : echo "" ;else: foreach($week_arr as $key=>$v): ?>
- <option value="<?php echo htmlentities($v['key']); ?>" <?php echo $search_arr['week']['current_week']==$key ? 'selected' : ''; ?>><?php echo htmlentities($v['val']); ?></option>
- <?php endforeach; endif; else: echo "" ;endif; ?>
- </select>
- </dd>
- <dd id="searchtype_month" style="display:none;">
- <select name="searchmonth_year" class="querySelect">
- <?php if(is_array($year_arr) || $year_arr instanceof \think\Collection || $year_arr instanceof \think\Paginator): if( count($year_arr)==0 ) : echo "" ;else: foreach($year_arr as $key=>$v): ?>
- <option value="<?php echo htmlentities($key); ?>" <?php echo $search_arr['month']['current_year']==$key ? 'selected' : ''; ?>><?php echo htmlentities($v); ?></option>
- <?php endforeach; endif; else: echo "" ;endif; ?>
- </select>
- <select name="searchmonth_month" class="querySelect">
- <?php if(is_array($month_arr) || $month_arr instanceof \think\Collection || $month_arr instanceof \think\Paginator): if( count($month_arr)==0 ) : echo "" ;else: foreach($month_arr as $key=>$v): ?>
- <option value="<?php echo htmlentities($key); ?>" <?php echo $search_arr['month']['current_month']==$key ? 'selected' : ''; ?>><?php echo htmlentities($v); ?></option>
- <?php endforeach; endif; else: echo "" ;endif; ?>
- </select>
- </dd>
- </dl>
- <div class="btn_group">
- <a href="javascript:void(0);" id="dssubmit" class="btn tooltip"><?php echo htmlentities(lang('ds_query')); ?></a>
- <a href="<?php echo url('Statgoods/pricerange'); ?>" class="btn btn-default" title="<?php echo htmlentities(lang('ds_cancel')); ?>"><?php echo htmlentities(lang('ds_cancel')); ?></a>
- </div>
- </div>
- </form>
- <div class="explanation" id="explanation">
- <div class="title" id="checkZoom">
- <h4 title="<?php echo htmlentities(lang('ds_explanation_tip')); ?>"><?php echo htmlentities(lang('ds_explanation')); ?></h4>
- <span id="explanationZoom" title="<?php echo htmlentities(lang('ds_explanation_close')); ?>" class="arrow"></span>
- </div>
- <ul>
- <li><?php echo htmlentities(lang('stat_validorder_explain')); ?></li>
- <li><?php echo htmlentities(lang('statgoods_stat_goods_prange_help1')); ?></li>
- <li><?php echo htmlentities(lang('statgoods_stat_goods_prange_help2')); ?></li>
- </ul>
- </div>
- <table class="ds-default-table">
- <thead class="thead">
- <tr class="space">
- <th colspan="15"><?php echo htmlentities(lang('statgoods_price_distribution')); ?>(<a href="<?php echo url('Statgeneral/setting'); ?>" style="font-size:12px; font-weight:normal;"><?php echo htmlentities(lang('statgeneral_setting')); ?></a>)</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>
- <?php if($pricerange_statjson): ?>
- <div id="container_pricerange" class="w100pre close_float" style="height:400px"></div>
- <?php else: ?>
- <div class="w100pre close_float align-center h36 mt10"><?php echo htmlentities(lang('statgeneral_setting_tips')); ?>
- <a href="<?php echo url('Statgeneral/setting'); ?>" style="font-size:12px; font-weight:normal;"><?php echo htmlentities(lang('statgoods_set_now')); ?></a>
- </div>
- <?php endif; ?>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/highcharts/highcharts.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/statistics.js"></script>
- <script src="<?php echo htmlentities(PLUGINS_SITE_ROOT); ?>/mlselection.js"></script>
- <script>
- //展示搜索时间框
- function show_searchtime(){
- s_type = $("#search_type").val();
- $("[id^='searchtype_']").hide();
- $("#searchtype_"+s_type).show();
- }
- $(function () {
- //统计数据类型
- var s_type = $("#search_type").val();
- $('#search_time').datepicker({dateFormat: 'yy-mm-dd'});
- show_searchtime();
- $("#search_type").change(function(){
- show_searchtime();
- });
- //更新周数组
- $("[name='searchweek_month']").change(function(){
- var year = $("[name='searchweek_year']").val();
- var month = $("[name='searchweek_month']").val();
- $("[name='searchweek_week']").html('');
- $.getJSON(ADMINSITEURL+'/Common/getweekofmonth.html',{y:year,m:month},function(data){
- if(data != null){
- for(var i = 0; i < data.length; i++) {
- $("[name='searchweek_week']").append('<option value="'+data[i].key+'">'+data[i].val+'</option>');
- }
- }
- });
- });
- $('#container_pricerange').highcharts(<?php echo $pricerange_statjson; ?>);
- $('#dssubmit').click(function(){
- $('#formSearch').submit();
- });
- //商品分类
- init_gcselect(<?php echo $gc_choose_json; ?>,<?php echo $gc_json; ?>);
- });
- </script>
|