修改数据可视化中得bug,修改后台管理员数量统计功能
This commit is contained in:
parent
29604ab761
commit
775b0ee360
|
@ -24,7 +24,7 @@ class Admin_UserController extends Zend_Controller_Action
|
||||||
$uq=$this->db->query($sql);
|
$uq=$this->db->query($sql);
|
||||||
$row=$uq->fetch();
|
$row=$uq->fetch();
|
||||||
|
|
||||||
$sqlt="select count(id) as total from users where usertype='administrator'";
|
$sqlt="select count(id) as total from users where usertype='{$this->view->config->auth->identifier}'";
|
||||||
$uqt=$this->db->query($sqlt);
|
$uqt=$this->db->query($sqlt);
|
||||||
$adminrow=$uqt->fetch();
|
$adminrow=$uqt->fetch();
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,8 @@
|
||||||
<p class="content"><?= $item['description']; ?></p>
|
<p class="content"><?= $item['description']; ?></p>
|
||||||
<p>
|
<p>
|
||||||
操作:
|
操作:
|
||||||
<a href="/admin/data/visual/uuid/<?php echo $item['uuid'];?>">编辑可视化要素</a>
|
<a href="/admin/data/visual/uuid/<?php echo $item['uuid'];?>">编辑可视化要素</a> |
|
||||||
|
<a href="/visual/view/uuid/<?= $item['uuid'] ?>">前台预览</a>
|
||||||
</p>
|
</p>
|
||||||
</li>
|
</li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
|
|
@ -12,7 +12,11 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="span12">
|
<div class="span12">
|
||||||
<h3><?= $this->info['title'] ?> <small>数据可视化查看</small></h3>
|
<h3><?= $this->info['title'] ?> <small>数据可视化查看</small></h3>
|
||||||
<h4><small>请在需要查看的可视化要素上点击以描绘图表,再次点击可取消显示</small></h4>
|
<h4><small>请在需要查看的可视化要素上点击以描绘图表,再次点击可取消显示,绘制图像前可自主选择图像类型</small></h4>
|
||||||
|
<div class="btn-group linetypes" data-toggle="buttons-radio">
|
||||||
|
<button type="button" class="btn active" value="line">折线图</button>
|
||||||
|
<button type="button" class="btn" value="column">柱状图</button>
|
||||||
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
|
|
||||||
<?php $vars = (new \Westdc\Visual\VariableEncoder)->normaldecode($this->data['vars']);?>
|
<?php $vars = (new \Westdc\Visual\VariableEncoder)->normaldecode($this->data['vars']);?>
|
||||||
|
@ -35,8 +39,13 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
_this = {};
|
_this = {};
|
||||||
|
_this.linetype = 'line';
|
||||||
$(function() {
|
$(function() {
|
||||||
|
|
||||||
|
$('.linetypes button').click(function(e) {
|
||||||
|
_this.linetype = $(this).val();
|
||||||
|
});
|
||||||
|
|
||||||
$('#datachart').highcharts('StockChart', {
|
$('#datachart').highcharts('StockChart', {
|
||||||
|
|
||||||
rangeSelector : {
|
rangeSelector : {
|
||||||
|
@ -46,6 +55,10 @@ $(function() {
|
||||||
|
|
||||||
credits : {
|
credits : {
|
||||||
enabled : false
|
enabled : false
|
||||||
|
},
|
||||||
|
|
||||||
|
xAxis : {
|
||||||
|
allowDecimals : true
|
||||||
}
|
}
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -77,7 +90,11 @@ $(function() {
|
||||||
chart.addSeries({
|
chart.addSeries({
|
||||||
name: seriename,
|
name: seriename,
|
||||||
data: data,
|
data: data,
|
||||||
type : 'column'
|
type : _this.linetype,
|
||||||
|
dataGrouping: {
|
||||||
|
enabled: false,
|
||||||
|
forced: false,
|
||||||
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
'timeout': 30000,
|
'timeout': 30000,
|
||||||
|
|
Loading…
Reference in New Issue