博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Thinkphp项目结合JS消息提醒
阅读量:6407 次
发布时间:2019-06-23

本文共 2270 字,大约阅读时间需要 7 分钟。

hot3.png

Thinkphp项目结合JS消息提醒

这里简略贴下项目目录结构,请根据实际情况应用

项目结构简图

案例链接下载

接下来就是项目实际应用代码

  • index.html
    

消息提示框

  • msg_tip.js
checkmsg();function checkmsg() {    var url = "index.php?s=/Admin/public/ajax_box.html";    $.ajax({        type: "GET",        url: url,        dataType: "json",        success: function(msg) {            var num = msg;            var opentip_num = $('#opentip_num').val();            if (num != opentip_num) {                html = '';                $.each(msg, function(i, data) {                    html += '
  • ' + data + '

  • '; }) opentipwindow(num, html); } } }); setTimeout(function() { checkmsg(); }, 10000);}function opentipwindow(num, str) { document.getElementById('im_ring').play(); $('#ranklist').html(str); var titHeight = $("tiphead").height(); $(".tipfloat").show(); // $(".tipfloat").css('height',196); $(".tipfloat").css('height', 150); $(".close").click(function() { $(".tipfloat").animate({ height: titHeight - 50 }, 1000, function() { $(".tipfloat").hide(); }); });}function openwindowleft(targetUrl) { $('#loading').show(); var titHeight = $("tiphead").height(); $(".tipfloat").animate({ height: titHeight - 50 }, 1000, function() { $(".tipfloat").hide(); }); $("#rightMain").attr('src', targetUrl);}
    • yuyue_manage下就是图片啦

    • PublicController.class.php

    public function ajax_box() {		$info = I('ex');		$id = session('admin_id');		$map['status'] = 1;		$count = M('OrderInfo')->where($map)->count();		$where_g['status'] = 0;		$goods = M('Goods')->where($where_g)->count();		$where_sh['status'] = 0;		$shops = M('Shops')->where($where_sh)->count();		//$where_jie['money_status'] = 0;		$where_jie['status'] = array('GT', 0);		// pe($where_jie);		$order = M('OrderInfo')->where($where_jie)->count();		$data['count'] = '新订单' . $count . '个';		$data['goods'] = '未审核商品' . $goods . '个';		$data['shops'] = '未审核店铺' . $shops . '个';		$data['order'] = '订单列表' . $order . '个';		$this->ajaxReturn($data);	}

    转载于:https://my.oschina.net/yeahlife/blog/666224

    你可能感兴趣的文章
    Django form表单
    查看>>
    CTYL-9.14(tomcat端口与阿里云安全组,域名与tomcat配置,域名与反向代理)
    查看>>
    Java 多线程相关问题记录
    查看>>
    LNMP架构介绍、MySQL安装、PHP安装、 Nginx介绍
    查看>>
    es6 class 笔记
    查看>>
    简单的Spark+Mysql整合开发
    查看>>
    阿里java面试经验大汇总(附阿里职位需求)
    查看>>
    Python全套零基础视频教程+软件2018最新编程视频!
    查看>>
    内存管理之1:x86段式内存管理与保护模式
    查看>>
    20180925上课截图
    查看>>
    IO输入/输出流的简单总结
    查看>>
    JavaScript之DOM-9 HTML DOM(HTML DOM概述、常用HTML DOM对象、HTML表单)
    查看>>
    技术成长之路(一)
    查看>>
    中国北方国际五金城硬件选型
    查看>>
    Discuz X2 [Type] 查询语句安全威胁
    查看>>
    php.exe启动时提示缺少MVCR110.dall 64位 window系统 解决
    查看>>
    Hive索引
    查看>>
    判断是否为数字方法
    查看>>
    Oracle配置的一些经验
    查看>>
    [翻译] EF Core in Action 关于这本书
    查看>>