信息发布→ 登录 注册 退出

Linux如何使用Crontab定时监测维护Tomcat应用程序

发布时间:2023-05-14

点击量:

监测的应用接口: 新闻接口、天气接口
处理方法:应用接口不可用时自动重启tomcat,并发送告警邮件给相关人员

#!/bin/bash
#---------------------------------------------------------
# 功能说明:
#	监控指定http服务是否可用,如果不可用立即重启tomcat
#
# 使用说明:
#	1. 将此脚本放置在/home/opentsp/crontab/目录下。
#	2. 修改脚本执行权下为可执行权限。
#	3. 添加到定时任务中,定时执行时间(建议为20分钟)
#	4. 修改邮件发送人员信息列表(当服务重启时发邮件给相关人员)
#                    - 周凌飞(2014-08-13)
#---------------------------------------------------------
export lc_all=zh_cn.utf-8

#网站地址、参数
server_name="趣驾云接口服务"
url_2="http://127.0.0.1/get_rss_news?p=%7b%27chid%27:%27tiyu%27%7d"
keyworld_2=''
url_3="http://127.0.0.1/get_json_weather?p=%7blon:116.407617,lat:39.993956,date:1%7d"
keyworld_3='temperature'

#邮件发送列表
mail_ary=(
xxxxxxxxx@navinfo.com
xxxxxxxxx@navinfo.com
xxxxxxxxx@navinfo.com
)

#接口调用失败的处理方法
function dofail(){
	local ipinfo=$(ifconfig |sed -n '2p'|awk '{print substr($2,6)}');
	# 发送邮件
	for _v in ${mail_ary[*]} ; do
	<img src="//public-space.oss-cn-hongkong.aliyucs.com/gz/132.jpg" />	echo "[$server_name 异常] - [$(date -d "0 min" +"%y-%m-%d %h:%m:%s")] - [请求地址: $1] - [请求返回码: $2]" | mail -s ${ipinfo}服务异常 ${_v}
	done
	# 写入日志
	echo "[error] - [$(date -d "0 min" +"%y-%m-%d %h:%m:%s")] - 返回码[$2] - 重启tomcat服务" >> detect-http.log
	# 关闭tomcat
	sh /home/opentsp/crontab/ibr-shutdown.sh
	exit;
}

#请求超时时间设置
time_out=40
function docheck(){
	local url_x=$1;
	local keyworld_x=$2;
	http_status_code=`curl -m $time_out -o /dev/null -s -w "%{http_code}" "${url_x}"`
	if [ $http_status_code != 200 ];then
		#请求失败
		echo "-> fail - 返回码${http_status_code}";
		dofail ${url_x} ${http_status_code};
	else
		#服务器正常响应,检查返回内容
		if curl -m ${time_out} -s ${url_x} | grep -q ${keyworld_x};then
			echo "-> success";
		else
			echo "->> fail";
			# 返回内容错误处理
			dofail ${url_x} ${http_status_code};
		fi
	fi
}

#
#检查 - 新闻
docheck ${url_2} ${keyworld_2}
#检查 - 天气
docheck ${url_3} ${keyworld_3}</pre><p>将以上代码放入到linux的定时任务中即可,定时任务时间建议为20分钟一次。</p> </div>
        <div class="tags"><span>标签:</span># <a href="/tags/21563.html">linux</a>  # <a href="/tags/45293.html">tomcat</a>  # <a href="/tags/32522.html">重启</a>  # <a href="/tags/39545.html">邮件发送</a>  # <a href="/tags/39376.html">执行时间</a>  # <a href="/tags/40085.html">将此</a>  # <a href="/tags/63935.html">发邮件</a>  # <a href="/tags/39627.html">可执行</a>  # <a href="/tags/40027.html">发送邮件</a>  # <a href="/tags/32484.html">不可用</a>  # <a href="/tags/45058.html">自动重启</a>  # <a href="/tags/40487.html">目录下</a>  </div>


<!-- 相关栏目开始 -->
<div class="xglm" style="display:none;height:0;overflow: hidden;font-size: 0;">
<p><br>相关栏目:
    【<a href='/news/' class=''>
        科技资讯    </a>】
    【<a href='/tuiguang/' class=''>
        运营推广    </a>】
    【<a href='/jiaocheng/' class=''>
        技术教程    </a>】
    【<a href='/seo/' class=''>
        SEO优化    </a>】
    【<a href='/ai/' class=''>
        AI营销    </a>】
    【<a href='/yunweikaifa/' class='on'>
        运维开发    </a>】
    【<a href='/ruanjianbiancheng/' class=''>
        软件编程    </a>】
</p>
</div>
<!-- 相关栏目结束 -->
<!-- 随机文章输出开始 -->
<div class="sjwz" style="display:none;height:0;overflow: hidden;font-size: 0;">
<p><br>相关推荐:
<a href='/yunweikaifa/89414.html'>Laravel websocket怎么实现_Laravel Broadcasting广播系统教程</a> 
<a href='/yunweikaifa/91128.html'>laravel怎么实现用户邮箱验证流程_laravel用户邮箱验证流程实现方法</a> 
<a href='/yunweikaifa/91273.html'>laravel如何连接并操作多个数据库_Laravel多数据库连接与操作方法</a> 
<a href='/yunweikaifa/88754.html'>Laravel 419 page expired怎么解决_Laravel CSRF令牌过期处理</a> 
<a href='/yunweikaifa/93277.html'>Swoole怎么在onWorkerStart里预加载业务代码</a> 
<a href='/yunweikaifa/89999.html'>Laravel项目出现Class not found错误的原因和解决方法</a> 
<a href='/yunweikaifa/88996.html'>Laravel如何定义路由和控制器?(基础代码示例)</a> 
<a href='/yunweikaifa/89109.html'>Laravel Facade的原理是什么_深入理解Laravel门面及其工作机制</a> 
<a href='/yunweikaifa/89503.html'>Laravel如何处理复杂的表单和多步操作_Laravel多步骤表单流程设计</a> 
<a href='/yunweikaifa/91137.html'>laravel如何安全地处理用户上传的文件_Laravel用户上传文件安全处理方法</a> 
<a href='/yunweikaifa/88823.html'>Laravel如何创建自定义中间件?(Middleware代码示例)</a> 
<a href='/yunweikaifa/91421.html'>Swoole如何异步读写大文件</a> 
<a href='/yunweikaifa/89551.html'>Laravel怎么配置和使用Redis进行缓存</a> 
<a href='/yunweikaifa/93701.html'>laravel如何实现一个简单的站内信系统_Laravel简单站内信系统实现方法</a> 
<a href='/yunweikaifa/89934.html'>Laravel如何解决Eloquent的N+1查询问题</a> 
<a href='/yunweikaifa/93795.html'>Swoole的onWorkerError事件在什么情况下触发</a> 
<a href='/yunweikaifa/91031.html'>laravel怎么使用数据库事务保证数据一致性_laravel数据库事务使用方法</a> 
<a href='/yunweikaifa/93859.html'>Swoole怎么创建一个最简单的HTTP服务器</a> 
<a href='/yunweikaifa/89566.html'>Laravel如何集成Stripe或PayPal进行支付处理</a> 
<a href='/yunweikaifa/89008.html'>Laravel如何为API生成Swagger或OpenAPI文档</a> 
<a href='/yunweikaifa/91910.html'>laravel如何与前端框架进行Token认证_Laravel前端Token认证实现方法</a> 
<a href='/yunweikaifa/94561.html'>thinkphp运行模式和环境变量如何设置</a> 
<a href='/yunweikaifa/88765.html'>Laravel如何使用Blade模板引擎?(完整语法和示例)</a> 
<a href='/yunweikaifa/93953.html'>Laravel表单验证?验证规则怎样设置?</a> 
<a href='/yunweikaifa/94413.html'>Swoole中怎么用协程同时请求多个HTTP接口</a> 
<a href='/yunweikaifa/94528.html'>Swoole如何实现自定义的进程管理</a> 
<a href='/yunweikaifa/90866.html'>laravel怎么使用PHPUnit的数据提供者(Data Provider)进行测试_laravel PHPUnit数据提供者使用方法</a> 
<a href='/yunweikaifa/88423.html'>Laravel如何实现登录错误次数限制_Laravel自带LoginThrottles限流配置【方法】</a> 
<a href='/yunweikaifa/90336.html'>laravel怎么实现任务链(Chaining)和任务批处理(Batching)_laravel任务链与批处理实现方法</a> 
<a href='/yunweikaifa/89974.html'>Laravel Sanctum如何为移动App生成和管理API Token</a> 
<a href='/yunweikaifa/88952.html'>Laravel Sail是什么_基于Docker的Laravel本地开发环境Sail入门</a> 
<a href='/yunweikaifa/89268.html'>Laravel如何使用Eloquent进行子查询</a> 
<a href='/yunweikaifa/94612.html'>Swoole的Table最大能存储多少数据</a> 
<a href='/yunweikaifa/88387.html'>Laravel怎么配置自定义表前缀_Laravel数据库迁移与Eloquent表名映射【步骤】</a> 
<a href='/yunweikaifa/90707.html'>laravel怎么实现延迟队列任务_laravel延迟队列任务实现方法</a> 
<a href='/yunweikaifa/94653.html'>Laravel如何配置队列处理器_异步任务处理与队列配置</a> 
<a href='/yunweikaifa/92990.html'>Laravel如何正确处理表单验证_请求数据验证核心指南</a> 
<a href='/yunweikaifa/88625.html'>Laravel如何使用Facades(门面)及其工作原理_Laravel门面模式与底层机制</a> 
<a href='/yunweikaifa/88683.html'>Laravel怎么实现验证码(Captcha)功能</a> 
<a href='/yunweikaifa/93944.html'>Swoole如何实现一个简单的TCP客户端</a> 
<a href='/yunweikaifa/89423.html'>Laravel忘记管理员密码怎么办_Laravel Tinker重置用户密码</a> 
<a href='/yunweikaifa/90588.html'>laravel怎么处理CORS跨域请求问题_laravel CORS跨域处理方法</a> 
<a href='/yunweikaifa/91958.html'>Laravel如何配置和使用Redis_高性能缓存与队列驱动</a> 
<a href='/yunweikaifa/92311.html'>Swoole如何优雅地关闭服务器和所有连接</a> 
<a href='/yunweikaifa/90573.html'>laravel怎么实现一个全局的异常处理器_laravel全局异常处理器实现方法</a> 
<a href='/yunweikaifa/91443.html'>laravel怎么使用Guzzle发起HTTP请求_laravel Guzzle HTTP请求使用教程</a> 
<a href='/yunweikaifa/92295.html'>laravel如何使用模型工厂(Factory)和数据填充(Seeder)_Laravel模型工厂与Seeder使用方法</a> 
<a href='/yunweikaifa/93011.html'>Swoole如何获取当前Worker进程的ID</a> 
<a href='/yunweikaifa/88410.html'>Laravel怎么配置不同环境的数据库_Laravel本地测试与生产环境动态切换【方法】</a> 
<a href='/yunweikaifa/92110.html'>laravel如何处理并发请求和竞态条件_Laravel并发请求与竞态条件处理方法</a> 
</p>
</div>
<!-- 随机文章输出结束 -->        
<div class="web_det_bom">
          <div class="web_bom_left">             <p><a href="/yunweikaifa/262711.html" title="mesh组网有哪些优缺点">上一篇:mesh组网有哪些优缺点</a></p>
                        <p><a href="/yunweikaifa/262721.html" title="Nginx常用操作有哪些">下一篇:Nginx常用操作有哪些</a></p>
             </div>
          <div class="fanhui_right"> <a href="javascript:history.back(-1);">
            <h6>返回</h6>
            </a> </div>
        </div>
      </div>
    </div>
  </div>
</div>
<div class="topback"></div>
<link href="/template/fenlei1/pc/skin/css/footer.css" rel="stylesheet" media="screen" type="text/css" />
<link href="/template/fenlei1/pc/skin/css/amazeui.min.css" rel="stylesheet" media="screen" type="text/css" />
<div id="vue-app-footer">
  <div class="foot am-cf ">
    <div class="am-cf foot_topbg cfcontwidth" style="position: relative;">
      <ul class="foot_top am-fl">
        <li class="foot_a am-fl"><a href="/" class="am-fl size_12">网站首页</a></li>
                <li class="foot_a am-fl"><a href="/app/" class="am-fl size_12">  |  APP开发</a></li>
                <li class="foot_a am-fl"><a href="/weixin/" class="am-fl size_12">  |  小程序开发</a></li>
                <li class="foot_a am-fl"><a href="/Internet/" class="am-fl size_12">  |  物联网开发</a></li>
                <li class="foot_a am-fl"><a href="/cms/" class="am-fl size_12">  |  系统开发</a></li>
                <li class="foot_a am-fl"><a href="/article/" class="am-fl size_12">  |  开发学院</a></li>
                <li class="foot_a am-fl"><a href="/ruzhu/" class="am-fl size_12">  |  商家入驻</a></li>
              </ul>
      <div class="am-gotop am-gotop-default footop am-fr am-no-layout"><a title="回到顶部"><span class="am-gotop-title">回到顶部</span></a></div>
    </div>
    <div class="foot_bottombg">
      <div class="foot_bottom  cfcontwidth am-cf">
        <div class="foot_bottomleft am-fl">
          <div class="foot_p size_12"><b>内江振祥营销策划有限公司</b></div>
		  <div class="foot_p size_12">Q   Q:<a href="https://wpa.qq.com/msgrd?v=3&uin=8888610&site=qq&menu=yes">8888610</a></div>
          <div class="foot_p size_12">邮 箱:<a href="mail:8888610@qq.com" class="foot_p">8888610@qq.com</a></div>
          <div class="foot_p size_12">© <script>document.write( new Date().getFullYear() );</script> 内江振祥营销策划有限公司 版权所有 <a href="https://beian.miit.gov.cn/" rel="nofollow" target="_blank">蜀ICP备2024086403号</a>  <div style="display:none">
<a href="http://sunyizhen.cn">宜昌市隼壹珍商贸有限公司</a>
<a href="http://www.sunyizhen.cn">宜昌市隼壹珍商贸有限公司</a>
<a href="http://peijia1.cn">宜昌市隼壹珍商贸有限公司</a>
<a href="http://www.peijia1.cn">宜昌市隼壹珍商贸有限公司</a>
<a href="http://yuanminjixie.com">宜昌市隼壹珍商贸有限公司</a>
<a href="http://www.yuanminjixie.com">宜昌市隼壹珍商贸有限公司</a>
<a href="http://ivua.cn">宜昌市隼壹珍商贸有限公司</a>
<a href="http://www.ivua.cn">宜昌市隼壹珍商贸有限公司</a>
<a href="http://syzsm.cn">宜昌市隼壹珍商贸有限公司</a>
<a href="http://www.syzsm.cn">宜昌市隼壹珍商贸有限公司</a>
<a href="http://zxyxch.cn">内江振祥营销策划有限公司</a>
<a href="http://www.zxyxch.cn">内江振祥营销策划有限公司</a>
<a href="http://sczxch.cn">内江振祥营销策划有限公司</a>
<a href="http://www.sczxch.cn">内江振祥营销策划有限公司</a>
<a href="http://njzxch.cn">内江振祥营销策划有限公司</a>
<a href="http://www.njzxch.cn">内江振祥营销策划有限公司</a>
<a href="http://zhenxiangch.cn">内江振祥营销策划有限公司</a>
<a href="http://www.zhenxiangch.cn">内江振祥营销策划有限公司</a>
<a href="http://qxmr88.cn">内江振祥营销策划有限公司</a>
<a href="http://www.qxmr88.cn">内江振祥营销策划有限公司</a>
<a href="http://sczxchw.cn">内江振祥营销策划有限公司</a>
<a href="http://www.sczxchw.cn">内江振祥营销策划有限公司</a>
<a href="http://easydzh.cn">内江振祥营销策划有限公司</a>
<a href="http://www.easydzh.cn">内江振祥营销策划有限公司</a>
<a href="http://zxadw.cn">内江振祥营销策划有限公司</a>
<a href="http://www.zxadw.cn">内江振祥营销策划有限公司</a>
<a href="http://esxguide.com">恩施州毯滚百货有限公司</a>
<a href="http://www.esxguide.com">恩施州毯滚百货有限公司</a>
<a href="http://mrxnyqc.cn">襄阳市蜂欢商贸有限公司</a>
<a href="http://www.mrxnyqc.cn">襄阳市蜂欢商贸有限公司</a>
<a href="http://redfetish.com">恩施州换冯百货有限公司</a>
<a href="http://www.redfetish.com">恩施州换冯百货有限公司</a>
<a href="http://dyastoyota.com">恩施州健提百货有限公司</a>
<a href="http://www.dyastoyota.com">恩施州健提百货有限公司</a>
<a href="http://xa1010.cn">西安益零商贸有限公司</a>
<a href="http://www.xa1010.cn">西安益零商贸有限公司</a>
<a href="http://nan-ao.cn">南奥教育</a>
<a href="http://www.nan-ao.cn">南奥教育</a>
<a href="http://kszxs.cn">南奥教育</a>
<a href="http://www.kszxs.cn">南奥教育</a>
<a href="http://nanaojiaoyu.cn">南昌市南奥教育咨询有限公司</a>
<a href="http://www.nanaojiaoyu.cn">南昌市南奥教育咨询有限公司</a>
<a href="http://naedu.com.cn">南昌市南奥教育咨询有限公司</a>
<a href="http://www.naedu.com.cn">南昌市南奥教育咨询有限公司</a>
<a href="http://jxnanao.cn">南昌市南奥教育咨询有限公司</a>
<a href="http://www.jxnanao.cn">南昌市南奥教育咨询有限公司</a>
<a href="http://sscffc.cn">南昌市南奥教育咨询有限公司</a>
<a href="http://www.sscffc.cn">南昌市南奥教育咨询有限公司</a>
<a href="http://nawork.cn">南奥教育网</a>
<a href="http://www.nawork.cn">南奥教育网</a>
<a href="http://nazuoye.cn">南奥教育网</a>
<a href="http://www.nazuoye.cn">南奥教育网</a>
<a href="http://ndaxue.cn">南奥学习网</a>
<a href="http://www.ndaxue.cn">南奥学习网</a>
<a href="http://nstudy.com.cn">南奥学习网</a>
<a href="http://www.nstudy.com.cn">南奥学习网</a>
<a href="http://nanaojy.cn">南奥教育</a>
<a href="http://www.nanaojy.cn">南奥教育</a>
<a href="http://liuxueji.com.cn">南奥留学记</a>
<a href="http://www.liuxueji.com.cn">南奥留学记</a>
<a href="http://liuxuenews.com">南奥教育</a>
<a href="http://www.liuxuenews.com">南奥教育</a>
<a href="http://aqrn.cn">南昌市南奥教育咨询有限公司</a>
<a href="http://www.aqrn.cn">南昌市南奥教育咨询有限公司</a>
<a href="http://0791n.cn">南昌市南奥教育咨询有限公司</a>
<a href="http://www.0791n.cn">南昌市南奥教育咨询有限公司</a>
<a href="http://hanxinbh.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://www.hanxinbh.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://jxyjq.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://www.jxyjq.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://shmkw.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://www.shmkw.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://qxmrsp.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://www.qxmrsp.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://iqmj.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://www.iqmj.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://yjqtx.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://www.yjqtx.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://ncyjq.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://www.ncyjq.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://ejiaq.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://www.ejiaq.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://1jqi.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://www.1jqi.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://yjqwl.com">南昌壹佳企网络通信有限公司</a>
<a href="http://www.yjqwl.com">南昌壹佳企网络通信有限公司</a>
<a href="http://ejqwl.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://www.ejqwl.cn">南昌壹佳企网络通信有限公司</a>
<a href="http://edingchen.com">广照天下广告</a>
<a href="http://www.edingchen.com">广照天下广告</a>
<a href="http://cdgjp.com">广照天下广告策划</a>
<a href="http://www.cdgjp.com">广照天下广告策划</a>
<a href="http://jobeople.com">广照天下</a>
<a href="http://www.jobeople.com">广照天下</a>
<a href="http://gztxch.cn">广照天下</a>
<a href="http://www.gztxch.cn">广照天下</a>
<a href="http://irgt.cn">广照天下</a>
<a href="http://www.irgt.cn">广照天下</a>
<a href="http://drorgan.com">广照天下广告策划</a>
<a href="http://www.drorgan.com">广照天下广告策划</a>
<a href="http://51yingcai.com.cn">广照天下广告策划</a>
<a href="http://www.51yingcai.com.cn">广照天下广告策划</a>
<a href="http://gztx8.cn">南昌市广照天下广告策划有限公司</a>
<a href="http://www.gztx8.cn">南昌市广照天下广告策划有限公司</a>
<a href="http://gztx1.cn">南昌市广照天下广告策划有限公司</a>
<a href="http://www.gztx1.cn">南昌市广照天下广告策划有限公司</a>
<a href="http://tenque.cn">宿州市腾雀网络科技有限公司</a>
<a href="http://www.tenque.cn">宿州市腾雀网络科技有限公司</a>
<a href="http://tenquewl.com">宿州市腾雀网络科技有限公司</a>
<a href="http://www.tenquewl.com">宿州市腾雀网络科技有限公司</a>
<a href="http://tenquekj.cn">宿州市腾雀网络科技有限公司</a>
<a href="http://www.tenquekj.cn">宿州市腾雀网络科技有限公司</a>
<a href="http://tq001.cn">宿州市腾雀网络科技有限公司</a>
<a href="http://www.tq001.cn">宿州市腾雀网络科技有限公司</a>
<a href="http://51hongxin.com">宿州市腾雀网络科技有限公司</a>
<a href="http://www.51hongxin.com">宿州市腾雀网络科技有限公司</a>
<a href="http://yingsoft.com.cn">宿州市腾雀网络科技有限公司</a>
<a href="http://www.yingsoft.com.cn">宿州市腾雀网络科技有限公司</a>
<a href="http://0557a.cn">宿州市腾雀网络科技有限公司</a>
<a href="http://www.0557a.cn">宿州市腾雀网络科技有限公司</a>
<a href="http://sztui.cn">宿州市腾雀网络科技有限公司</a>
<a href="http://www.sztui.cn">宿州市腾雀网络科技有限公司</a>
<a href="http://sztqw.cn">宿州市腾雀网络科技有限公司</a>
<a href="http://www.sztqw.cn">宿州市腾雀网络科技有限公司</a>
<a href="http://yrswzx.cn">九江市云仁商务咨询有限公司</a>
<a href="http://www.yrswzx.cn">九江市云仁商务咨询有限公司</a>
<a href="http://71wu.com">九江市云仁商务咨询有限公司</a>
<a href="http://www.71wu.com">九江市云仁商务咨询有限公司</a>
<a href="http://k79.com.cn">九江市云仁商务咨询有限公司</a>
<a href="http://www.k79.com.cn">九江市云仁商务咨询有限公司</a>
<a href="http://yun-ren.cn">九江市云仁商务咨询有限公司</a>
<a href="http://www.yun-ren.cn">九江市云仁商务咨询有限公司</a>
<a href="http://zhanba.com.cn">九江市云仁商务咨询有限公司</a>
<a href="http://www.zhanba.com.cn">九江市云仁商务咨询有限公司</a>
</div></div>
        </div>
        <div class="foot_bottomright am-fl am-cf">
          <div class="foot_bottleft am-fl">
            <p class="foot_botta weight_700 size_24"><a href="tel:4008888355" class="foot_p">4008888355</a></p>
            <p class="foot_botta size_12">24小时响应</p>
            <a href="https://wpa.qq.com/msgrd?v=3&uin=8888610&site=qq&menu=yes" class="size_18 color_100 foot_qq"> 在线沟通 </a></div>
          <div class="foot_bottright am-fr">
            <div class="footright_img"><img src="/uploads/allimg/20260115/1-260115222T5Y8.png" alt="二维码"/></div>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
<dl class="toolbar">
  <dd class="qq"><a href="https://wpa.qq.com/msgrd?v=3&uin=8888610&site=qq&menu=yes" target="_blank"><i></i><span>在线客服</span></a></dd>
  <dd class="tel"><i></i><span>服务热线</span>
    <div class="box">
      <p>服务热线</p>
      <h3>4008888355</h3>
    </div>
  </dd>
  <dd class="code"><i></i><span>微信咨询</span>
    <div class="box"><img src="/uploads/allimg/20260115/1-260115222T5Y8.png" alt="二维码"/></div>
  </dd>
  <dd class="top" id="top"><i></i><span>返回顶部</span></dd>
</dl>
<div class="f_kslj">
  <ul>
    <li><a href="/" title="网站首页"><i class="fa fa-home" aria-hidden="true"></i>网站首页</a></li>
    <li><a href="tel:4008888355" title="一键拨打"><i class="fa fa-phone" aria-hidden="true"></i>一键拨打</a></li>
    <li><a onclick="dkcf()" title="微信咨询"><i class="fa fa-weixin" aria-hidden="true"></i>微信客服</a></li>
      </ul>
</div>
<div id="wxnr">
  <div class="nrdf"> <i class="x" onclick="gbcf()">×</i><img src="/uploads/allimg/20260115/1-260115222T5Y8.png" alt="二维码"/>
    <p>截屏,微信识别二维码</p>
    <!--
	<p>微信号:<span id="btn" data-clipboard-text=""></span></p>
    <p>(点击微信号复制,添加好友)</p>
	-->
    <p><a href="weixin://"><span><i class="fa fa-weixin" aria-hidden="true"></i>打开微信</span></a></p>
  </div>
</div>
<div id="weixin">微信号已复制,请打开微信添加咨询详情!</div>
<script language="javascript" type="text/javascript" src="/template/fenlei1/pc/skin/js/jquery-3.7.0.min.js"></script>
<script language="javascript" type="text/javascript" src="/template/fenlei1/pc/skin/js/clipboard.min.js"></script>
<script language="javascript" type="text/javascript" src="/template/fenlei1/pc/skin/js/head.js"></script>
 
<!-- 应用插件标签 start --> 
  
<!-- 应用插件标签 end -->


<script type="text/javascript">var root_dir="";var ey_aid=262716;</script>
<script language="javascript" type="text/javascript" src="/public/static/common/js/ey_footer.js?v=v1.7.1"></script>
</body>
</html>