12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- define(['jquery', 'bootstrap', 'backend', 'addtabs', 'table', 'echarts', 'echarts-theme', 'template'], function ($, undefined, Backend, Datatable, Table, Echarts, undefined, Template) {
- var Controller = {
- index: function () {
- // 基于准备好的dom,初始化echarts实例
- var myChart = Echarts.init(document.getElementById('echart'), 'walden');
- // 指定图表的配置项和数据
- var option = {
- title: {
- text: '',
- subtext: ''
- },
- color: [
- "#18d1b1",
- "#3fb1e3",
- "#626c91",
- "#a0a7e6",
- "#c4ebad",
- "#96dee8"
- ],
- tooltip: {
- trigger: 'axis'
- },
- legend: {
- data: ['注册用户数']
- },
- toolbox: {
- show: false,
- feature: {
- magicType: {show: true, type: ['stack', 'tiled']},
- saveAsImage: {show: true}
- }
- },
- xAxis: {
- type: 'category',
- boundaryGap: false,
- data: Config.column
- },
- yAxis: {},
- grid: [{
- left: 'left',
- top: 'top',
- right: '10',
- bottom: 30
- }],
- series: [{
- name: '注册用户数',
- type: 'line',
- smooth: true,
- areaStyle: {
- normal: {}
- },
- lineStyle: {
- normal: {
- width: 1.5
- }
- },
- data: Config.user_data
- }]
- };
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- $(window).resize(function () {
- myChart.resize();
- });
- $(document).on("click", ".btn-refresh", function () {
- setTimeout(function () {
- myChart.resize();
- }, 0);
- });
- // 绑定【待处理报名数量】点击弹窗事件
- $(document).on("click", "#signup_count", function () {
- Fast.api.open('exam/room_signup?status=0', '待处理报名数量', {
- shadeClose: false,
- shade: [0.3, '#393D49'],
- area: ['80%', '80%'],
- });
- });
- // 【待处理报名数量】置红
- let total_wait_apply_signup_count = $('#total_wait_apply_signup_count').text();
- if (parseInt(total_wait_apply_signup_count) > 0) {
- $('#total_wait_apply_signup_count').addClass('font-red');
- }
- }
- };
- return Controller;
- });
|