diff --git a/Application/Admin/Controller/QueryController.class.php b/Application/Admin/Controller/QueryController.class.php index 63e4428a5..83d911277 100644 --- a/Application/Admin/Controller/QueryController.class.php +++ b/Application/Admin/Controller/QueryController.class.php @@ -801,11 +801,25 @@ class QueryController extends ThinkController $data['msg'] = '请上传汇款证明'; return $data; } + $downloadId = M('document_download')->where(array('file_id' => $transferProof))->getField('id'); + if (empty($downloadId)) { + $fileData = M('File')->field('size,ext')->find($transferProof); + $downloadSave['content'] = '推广员提现订单汇款证明'; + $downloadSave['file_id'] = $transferProof; + $downloadSave['size'] = $fileData['size']; + $downloadRes = M('document_download')->add($downloadSave); + if (!$downloadRes) { + $data['status'] = 0; + $data['msg'] = '保存失败'; + return $data; + } + $downloadId = $downloadRes; + } $map['id'] = $ids; $map['status'] = 1; $save['audit_time'] = time(); $save['status'] = $status; - $save['transfer_proof'] = $transferProof; + $save['transfer_proof'] = $downloadId; $res = $withdraw->where($map)->save($save); if ($res === false) { $data['status'] = 0; diff --git a/Application/Base/Service/PromoteService.class.php b/Application/Base/Service/PromoteService.class.php index a5874251a..59ae9d8d6 100644 --- a/Application/Base/Service/PromoteService.class.php +++ b/Application/Base/Service/PromoteService.class.php @@ -184,10 +184,10 @@ class PromoteService { $shiftIds = json_decode($task['shift_ids'], true) ?? []; if (count($shiftIds) > 0) { $firstMap['id'] = ['in', $shiftIds]; - $secondMap['id'] = ['in', $shiftIds]; + $secondMap['parent_id'] = ['in', $shiftIds]; } - $status = M('promote', 'tab_')->where($firstMap)->save(['parent_id' => $toPromote['id']]); + $status = M('promote', 'tab_')->where($firstMap)->save(['parent_id' => $toPromote['id'], 'parent_name' => $toPromote['account']]); if (!$status) { $model->rollback(); return ['status' => false, 'msg' => '系统异常,修改推广员上级失败']; diff --git a/Application/Home/Controller/DownloadController.class.php b/Application/Home/Controller/DownloadController.class.php index 6987c0714..eccd40bbe 100644 --- a/Application/Home/Controller/DownloadController.class.php +++ b/Application/Home/Controller/DownloadController.class.php @@ -1712,6 +1712,10 @@ class DownloadController extends BaseController { break; case "提现明细": $this->withdrawDtlExcelInfo($id,$map); + break; + case "汇款证明": + $this->remitCerDownLoad($id,$map); + break; default: break; } @@ -2201,6 +2205,13 @@ class DownloadController extends BaseController { } + public function remitCerDownLoad($id,$map) { + $proof_id = $map['id']; + $file = new FileController(); + $file->download($proof_id); + $this->backSuccessExport($id); + } + public function withdrawDtlExcelInfo($id,$map) { $xlsName = "提现记录"; $xlsCell = array( @@ -2625,6 +2636,39 @@ class DownloadController extends BaseController { } } + /* + * 汇款证明 + * */ + public function Remittancecer() { + $id = $_REQUEST["id"]; + $model = M("withdraw","tab_"); + $res = $model->where(['id'=>$id])->field('transfer_proof,status')->find(); + $transfer_proof = intval($res["transfer_proof"]); + $map = ['id'=>$transfer_proof]; + $addtime = time(); + $conditions = json_encode($map,TRUE); + $data = [ + 'logid' => 'remitrecord_'.time(), + 'admin_id' => PID, + 'type' => '/Home/Finance/withdrawRecord', + 'dataname' => '汇款证明', + 'status' => 0, + 'addtime' => $addtime, + 'begintime' => 0, + 'content' => '', + 'conditions' =>$conditions, + ]; + $log = M('downloadlog','tab_')->add($data); + if (!$log) { + $this->error('添加下载失败'); + } + $this->success('添加下载成功',U('listsIndex')); + + + } + + + public function encryptDecrypt($key, $string, $decrypt){ diff --git a/Application/Home/View/default/Finance/withdrawRecord.html b/Application/Home/View/default/Finance/withdrawRecord.html index 120f3428e..819bfe48a 100644 --- a/Application/Home/View/default/Finance/withdrawRecord.html +++ b/Application/Home/View/default/Finance/withdrawRecord.html @@ -172,7 +172,7 @@ <td> <a href="{:U('withdrawDtl', array('id'=>$vo['id']))}">提现明细</a> <if condition="$vo['status'] eq 2"> - <a>汇款证明</a> + <a data-href="{:U('download/Remittancecer',['id'=>$vo['id']])}" class="ajax-get">汇款证明</a> </if> <a href="{:U('settlementOrder', array('id'=>$vo['id']))}">结算单</a> </td> diff --git a/Application/Home/View/default/Promote/children.html b/Application/Home/View/default/Promote/children.html index e2d515343..3b9634435 100644 --- a/Application/Home/View/default/Promote/children.html +++ b/Application/Home/View/default/Promote/children.html @@ -123,7 +123,7 @@ </div> <div class="pagenation clearfix"> - <a id="sch-btn" data-href="{:U('download/children_data_export',array_merge(['promote_type'=>I('promote_type')],I('post.')))}" class="ajax-get" >导出</a> + <a id="sch-btn" href="{:U('download/children_data_export',array_merge(['promote_type'=>I('promote_type')],I('post.')))}" class="ajax-get" >导出</a> {$pagination} </div> </div> diff --git a/Application/Media/View/default/Article/article/detail.html b/Application/Media/View/default/Article/article/detail.html index 0fe1b6835..16dd4eb5a 100644 --- a/Application/Media/View/default/Article/article/detail.html +++ b/Application/Media/View/default/Article/article/detail.html @@ -44,14 +44,14 @@ <div class="bag_img"><volist name="carousel" id="carousel"><a href="{$carousel.url}" title="{$carousel.title}"><img src="{:get_cover($carousel['data'],'path')}"></a></volist></div> <ul class="bag_ul"> <volist name="gift_like" id="gl"> - <li> + <li> <a class="bag_lia" href="{:U('Gift/gift_detail',array('gid'=>base64_encode($gl['gift_id'])))}" title="{$gl.relation_game_name}" > - + <img src="{:get_cover($gl['icon'],'path')}" onerror="this.src='__IMG__/empty.jpg';this.onerror=null"> - - - - </a> + + + + </a> <i><a href="{:U('Gift/gift_detail',array('gid'=>base64_encode($gl['gift_id'])))}" title="{$gl.relation_game_name}" >{:msubstr2($gl['relation_game_name'],0,4)}</a></i> <em title="{$gl['giftbag_name']}">{:msubstr2($gl['giftbag_name'],0,5)}</em> <a class="lqlb" href="{:U('Gift/gift_detail',array('gid'=>base64_encode($gl['gift_id'])))}" >领取礼包</a> </li> </volist> </ul> @@ -72,9 +72,9 @@ </h3> <ul style="display: block;"> <li><a href="{:U('Game/game_detail',array('id'=>$new['id']))}" title="{$new.relation_game_name}"> - + <img src="{:get_cover($new['icon'],'path')}" onerror="this.src='__IMG__/empty.jpg';this.onerror=null"> - + </a> <span style="height:66px;padding-top:10px;" class="sideMenu_span"> @@ -134,7 +134,7 @@ $(function(){ returnDefault:false //鼠标从.sideMen移走后返回默认状态(默认false) }); },500); - + var e = $('.newshot'),o = e.offset().top,s = e.siblings('.newcon').height(); var h = parseInt($('.aside1').height())+parseInt($('.aside2').height()); @@ -145,10 +145,10 @@ $(function(){ if (c>=o) { if (h>t) { e.css({'position':'absolute','top':'auto','bottom':'20px','background':'#FFFFFF','z-index':1000}); - + } else { e.css({'position':'fixed','top':0,'background':'#FFFFFF','z-index':1000}); - + } } else { e.removeAttr('style'); @@ -157,5 +157,5 @@ $(function(){ }); }); -</script> +</script> </block> \ No newline at end of file diff --git a/Application/Media/View/default/Article/article/detail1.html b/Application/Media/View/default/Article/article/detail1.html index 22ffd826a..f1a0c5caf 100644 --- a/Application/Media/View/default/Article/article/detail1.html +++ b/Application/Media/View/default/Article/article/detail1.html @@ -54,141 +54,213 @@ </if> </head> <block name="body" > -<link rel="stylesheet" type="text/css" href="__CSS__/news.css"> -<link rel="stylesheet" type="text/css" href="__CSS__/jianhu.css"> - <!-- <script id="jsID" type="text/javascript"> - jQuery("#header_1_p").slide({ - type:"menu",// 效果类型,针对菜单/导航而引入的参数(默认slide) - titCell:".nLi", //鼠标触发对象 - targetCell:".sub", //titCell里面包含的要显示/消失的对象 - effect:"slideDown", //targetCell下拉效果 - delayTime:300 , //效果时间 - triggerTime:0, //鼠标延迟触发时间(默认150) - returnDefault:true //鼠标移走后返回默认状态,例如默认频道是“预告片”,鼠标移走后会返回“预告片”(默认false) - }); - </script> --> - <!----中间----> -<div class="bg"> - <div class="innerwarp"> - <div class="clearfix"> - <a href="{:U('Index/index')}" class="back fr"><i></i><span>返回官网</span></a> + <script src="__JS__/jquery.min.js"></script> + <script src="__JS__/rem.js"></script> + <link rel="stylesheet" type="text/css" href="__CSS__/reset.css" /> + <link rel="stylesheet" type="text/css" href="__CSS__/heard.css" /> + <link rel="stylesheet" type="text/css" href="__CSS__/foot.css" /> + <link rel="stylesheet" type="text/css" href="__CSS__/supervise.css" /> + + <div class="service_swiper"> + <img src="__IMG__/lunbo3.png" alt=""> + <a href="{:U('Index/index')}" style="z-index: 9999" id="back_to_index" class="back_to_index"> + <img src="__IMG__/black.png" alt=""></a> + </div> + <div class="service_info"> + <div class="service_left"> + <div class="list"> + <li class="selected" >监护工程概述</li> + <li class="" >申请服务流程</li> + <li class="" >监护工程概述</li> + <li class="" >健康提示</li> + <li class="" >纠纷处理</li> + </div> + <div class="content"> + <div> + <div class="content_box"> + <div class="headline">监护工程概述</div> + <p> + 网络游戏未成年人家长监护工程”是一项由文化部指导,义乌市其豪网络科技有限公司旨在加强家长对未成年人参与网络游戏的监护,引导未成年人健康、绿色参与网络游戏,和谐家庭关系的行业自律行动。</p> + <p>2010年2月5日,首批试点的六家企业共同启动“监护工程”,开始了游戏企业与未成年人家长联合共同预防未成年人沉迷网络游戏的有益尝试。实践中一些成功的案例让我们看到 + “监护工程”提供了一种切实可行的方法,一种家长实施监控的管道,使家长纠正部分未成年子女沉迷网游成为可能。</p> + <p> + “监护工程”引导家长和未成年人正确面对网络游戏文化,加强相互沟通,在共同约定和认可的时间或规则下健康游戏,既保护了未成年人不受过度沉迷的伤害,也为家长指导未成年人健康游戏提供了有力的技术保障。</p> + <p>其豪网络科技有限公司已贯彻实施“家长监护工程”的四项具体要求,即专人负责、有专线电话、有专区设置、有季度报告。</p> + <p>(一)专人负责</p> + <p>1.已指定专门的负责人,已将指定负责人及联络方式向浙江省文化厅备案;</p> + <p>2.培训专门服务人员对“家长监护工程”提供专业咨询解答和服务支持;帮助家长了解被监护人游戏行为,提供家长与被监护人进行沟通的建议;</p> + <p>3.指定客服人员会定期跟踪、与家长沟通。如若家长有需要帮助,负责人会根据实际的情况提供相应的协助。</p> + <p>(二)专线电话</p> + <p>1.已开通“家长监护工程”专线服务电话(区别于普通服务热线):0579-85828290. 提供咨询解答和受理服务。</p> + <p>2.已在原有的客服电话中提供转接到专线服务电话的链接;</p> + <p>3.提供了多种服务渠道,确保家长可选择最便利的方式提出服务申请(网络申请、电子邮件、信函邮寄、上门申请等)。</p> + <p>(三)专区设置</p> + <p>1.已在网站设置“家长监护工程”专区,在主要运营产品网站的显著位置都已设置进入该工程页面的链接方式;</p> + <p>2.专区对工程情况、申请条件、处理流程、可采取的监护结果等事项都作了说明;</p> + <p> 3.已在专区显著位置设置监护服务申请入口、受理方式(家长监护专线);</p> + <p>4.专区已预设好问题和答案,或展示虚拟案例操作流程及结果,供家长阅览和参考;</p> + <p>5.专区已设置服务申请进度查询;</p> + <p>6.专区已登载《未成年人健康参与网络游戏提示》,引导未成年人健康地玩游戏、玩健康的游戏。</p> + <p>(四)季度报告</p> + <p> + 其豪网络科技有限公司已安排专门人员每个季度根据客服人员平时的反馈记录向浙江省文化厅提交“家长监护工程”情况报告。报告内容包括咨询数量、申请数量、受理与完成情况、重点案例分析、疑难问题说明,对于工程实施过程中出现的问题提出意见或建议。</p> + </div> + </div> + <div style="display:none;"> + <div class="content_box"> + <div class="headline">申请服务流程</div> + <p>1.在监护人发现被监护人有沉溺渡口网络游戏的情况下,监护人可向渡口公司申请发起未成年人家长监护机制。</p> + <p>2.监护人需亲自通过传真方式向我司提供有效材料,向渡口公司提出未成年人账户监控的申请。在收到传真后,我司即开始启动监护机制审核流程,首先进入疑似账号身份确认期。</p> + <p style="color: #06F; font-weight: bolder;">疑似账号身份确认期(15 个自然日)</p> + <p>1.在判断申请材料完整的情况下,我司将通过官方邮箱联系疑似帐号归属者,告知其在 15 + 个自然日内将按照监护人需求对其账号进行相关操作,并要求疑似账号归属者提供身份材料以便我司判定其与监护人监护关系;</p> + <p>2.若疑似账号归属者在 15 个自然日内不能提供有效身份证明或逾期提供,则默认为疑似账号归属者与被监护人身份相符。我司即按照监护人申请要求,对其游戏账号纳入防沉迷系统;</p> + <p>3.若疑似账号归属者在 15 个自然日内提供的身份证明与被监护人相符,我司即按照监护人申请要求,对其游戏账号纳入防沉迷系统或冻结账号;</p> + <p>4.若疑似账号归属者在 15 + 个自然日内提供的身份证明与被监护人不符,我司则无法判定其与被监护人的身份关系。在此情况下,为保障用户游戏账号安全,我司将通知监护人通过公安机关出具账号找回协查证明,由我司协助被监护人找回游戏账号后再进行后续操作。</p> + </div> </div> - - <div class="container clearfix"> - <div class="left_box fl"> - <div class="tab_head"> - <ul class="clearfix"> - <li class="current"><span>监护工程概述</span></li> - <li><span>申请服务流程</span></li> - <li><span>介绍详细说明</span></li> - <li><span>健康提示</span></li> - <li><span>纠纷处理</span></li> - </ul> - </div> - <div class="tab_content"> - <div class="content_det"> - <h4> 家长监护工程概述</h4> - <p>网络游戏未成年人家长监护工程”是一项由文化部指导,义乌市其豪网络科技有限公司旨在加强家长对未成年人参与网络游戏的监护,引导未成年人健康、绿色参与网络游戏,和谐家庭关系的行业自律行动。</p> - <p>2010年2月5日,首批试点的六家企业共同启动“监护工程”,开始了游戏企业与未成年人家长联合共同预防未成年人沉迷网络游戏的有益尝试。实践中一些成功的案例让我们看到 “监护工程”提供了一种切实可行的方法,一种家长实施监控的管道,使家长纠正部分未成年子女沉迷网游成为可能。</p> - <p>“监护工程”引导家长和未成年人正确面对网络游戏文化,加强相互沟通,在共同约定和认可的时间或规则下健康游戏,既保护了未成年人不受过度沉迷的伤害,也为家长指导未成年人健康游戏提供了有力的技术保障。</p> - <p>其豪网络科技有限公司已贯彻实施“家长监护工程”的四项具体要求,即专人负责、有专线电话、有专区设置、有季度报告。</p> - <p>(一)专人负责</p> - <p>1.已指定专门的负责人,已将指定负责人及联络方式向浙江省文化厅备案;</p> - <p>2.培训专门服务人员对“家长监护工程”提供专业咨询解答和服务支持;帮助家长了解被监护人游戏行为,提供家长与被监护人进行沟通的建议;</p> - <p>3.指定客服人员会定期跟踪、与家长沟通。如若家长有需要帮助,负责人会根据实际的情况提供相应的协助。</p> - <p>(二)专线电话</p> - <p>1.已开通“家长监护工程”专线服务电话(区别于普通服务热线):0579-85828290. 提供咨询解答和受理服务。</p> - <p>2.已在原有的客服电话中提供转接到专线服务电话的链接;</p> - <p>3.提供了多种服务渠道,确保家长可选择最便利的方式提出服务申请(网络申请、电子邮件、信函邮寄、上门申请等)。</p> - <p>(三)专区设置</p> - <p>1.已在网站设置“家长监护工程”专区,在主要运营产品网站的显著位置都已设置进入该工程页面的链接方式;</p> - <p>2.专区对工程情况、申请条件、处理流程、可采取的监护结果等事项都作了说明;</p> - <p> 3.已在专区显著位置设置监护服务申请入口、受理方式(家长监护专线);</p> - <p>4.专区已预设好问题和答案,或展示虚拟案例操作流程及结果,供家长阅览和参考;</p> - <p>5.专区已设置服务申请进度查询;</p> - <p>6.专区已登载《未成年人健康参与网络游戏提示》,引导未成年人健康地玩游戏、玩健康的游戏。</p> - <p>(四)季度报告</p> - <p> 其豪网络科技有限公司已安排专门人员每个季度根据客服人员平时的反馈记录向浙江省文化厅提交“家长监护工程”情况报告。报告内容包括咨询数量、申请数量、受理与完成情况、重点案例分析、疑难问题说明,对于工程实施过程中出现的问题提出意见或建议。</p> - </div> - <div class="content_det hidden"> - <h4>监护申请服务流程</h4> - <div style="text-align: center;"><img src="__IMG__/lc.jpg" width="636" height="467"></div> - </div> - <div class="content_det hidden"> - <h4>流程介绍详细说明</h4> - <p style="color: #06F; font-weight: bolder;">监护人提出申请</p> - <p>1.在监护人发现被监护人有沉溺渡口网络游戏的情况下,监护人可向渡口公司申请发起未成年人家长监护机制。</p> - <p>2.监护人需亲自通过传真方式向我司提供有效材料,向渡口公司提出未成年人账户监控的申请。在收到传真后,我司即开始启动监护机制审核流程,首先进入疑似账号身份确认期。</p> - <p style="color: #06F; font-weight: bolder;">疑似账号身份确认期(15 个自然日)</p> - <p>1.在判断申请材料完整的情况下,我司将通过官方邮箱联系疑似帐号归属者,告知其在 15 个自然日内将按照监护人需求对其账号进行相关操作,并要求疑似账号归属者提供身份材料以便我司判定其与监护人监护关系;</p> - <p>2.若疑似账号归属者在 15 个自然日内不能提供有效身份证明或逾期提供,则默认为疑似账号归属者与被监护人身份相符。我司即按照监护人申请要求,对其游戏账号纳入防沉迷系统;</p> - <p>3.若疑似账号归属者在 15 个自然日内提供的身份证明与被监护人相符,我司即按照监护人申请要求,对其游戏账号纳入防沉迷系统或冻结账号;</p> - <p>4.若疑似账号归属者在 15 个自然日内提供的身份证明与被监护人不符,我司则无法判定其与被监护人的身份关系。在此情况下,为保障用户游戏账号安全,我司将通知监护人通过公安机关出具账号找回协查证明,由我司协助被监护人找回游戏账号后再进行后续操作。</p> - </div> - <div class="content_det hidden"> - <h4>《未成年人健康参与网络游戏提示》</h4> - <p>随着网络在青少年中的普及,未成年人接触网络游戏已经成为普遍现象。为保护未成年人健康参与游戏,在政府进一步加强行业管理的前提下,家长也应当加强监护引导。为此,我们为未成年人参与网络游戏提供以下意见:</p> - <p>一、主动控制游戏时间。游戏只是学习、生活的调剂,要积极参与线下的各类活动,并让父母了解自己在网络游戏中的行为和体验。</p> - <p>二、不参与可能耗费较多时间的游戏设置。不玩大型角色扮演类游戏,不玩有PK类设置的游戏。在校学生每周玩游戏不超过2小时,每月在游戏中的花费不超过10元。</p> - <p>三、不要将游戏当作精神寄托。尤其在现实生活中遇到压力和挫折时,应多与家人朋友交流倾诉,不要只依靠游戏来缓解压力。</p> - <p>四、养成积极健康的游戏心态。克服攀比、炫耀、仇恨和报复等心理,避免形成欺凌弱小、抢劫他人等不良网络行为习惯。</p> - <p>五、注意保护个人信息。包括个人家庭、朋友身份信息,家庭、学校、单位地址,电话号码等,防范网络陷阱和网络犯罪。</p> - <p style="text-align: right;">二〇一〇年五月二十八日</p> - </div> - <div class="content_det hidden"> - <h4> 交易纠纷处理流程</h4> - <p>1、 帐号被盗处流程:账号被盗相关的账号及游戏内虚拟数据丢失等问题当您的密码泄露导致游戏内损失,第一时间进行木马查杀并修改密码、注册邮箱,确保账号安全。在完成以上安全措施后请尽快联系客服,提交所需要的信息—技术人员进行数据分析-我们会尽力尝试为您挽回损失</p> - <p>2、 物品丢失当您的账号中有物品有丢失的情况,请在事件发生72小时内尽快联系客服—提交所需要的信息—技术人员会尽快帮您进行查询处理。</p> - <p>4、 游戏BUG引起的数据丢失、状态异常、无法登录等问题当您在正常游戏过程中遇到游戏BUG,造成损失(第三方软件除外)-请在事件发生72小时内尽快联系客服-提交所需要的信息—技术人员进行数据分析-我们会对于确认BUG造成的游戏内损失进行补偿</p> - <p>5、 在充值时误操作导致充错服务器、充值未到账等问题当您充错服务器或是充值之后未到账时,请您立刻与客服联系,提交所需要的信息—技术人员进行数据分析-我们会尽力尝试挽回您误操作造成的损失。</p> - <p>家长监护服务进度查询</p> - <p>如果您已经申请家长监护服务,您可以通过我们的首页在线客服进行查询,了解您所提交的服务申请最新处理进展,如:传真是否收到,是否需要后续提交信息,账号是否已经进行处理等。服务期间,如果您对需要提交的信息或者 处理结果有疑问,或者其他任何问题,您均可以随时联系我们,我们将由专门负责的客服主管为您提供咨询解答服务,或者配合、指导您解决问题。</p> - <p style="text-align: right;">二〇一〇年五月二十八日</p> - </div> - </div> + <div style="display:none;"> + <div class="content_box"> + <div class="headline">监护工程概述</div> + <p>网络游戏未成年人家长监护工程”是一项由文化部指导,义乌市其豪网络科技有限公司旨在加强家长对未成年人参与网络游戏的监护,引导未成年人健康、绿色参与网络游戏,和谐家庭关系的行业自律行动。</p> + <p>2010年2月5日,首批试点的六家企业共同启动“监护工程”,开始了游戏企业与未成年人家长联合共同预防未成年人沉迷网络游戏的有益尝试。实践中一些成功的案例让我们看到 “监护工程”提供了一种切实可行的方法,一种家长实施监控的管道,使家长纠正部分未成年子女沉迷网游成为可能。</p> + <p>“监护工程”引导家长和未成年人正确面对网络游戏文化,加强相互沟通,在共同约定和认可的时间或规则下健康游戏,既保护了未成年人不受过度沉迷的伤害,也为家长指导未成年人健康游戏提供了有力的技术保障。</p> + <p>其豪网络科技有限公司已贯彻实施“家长监护工程”的四项具体要求,即专人负责、有专线电话、有专区设置、有季度报告。</p> + <p> (一)专人负责</p> + <p> 1.已指定专门的负责人,已将指定负责人及联络方式向海南省文化厅备案;</p> + <p>2.培训专门服务人员对“家长监护工程”提供专业咨询解答和服务支持;帮助家长了解被监护人游戏行为,提供家长与被监护人进行沟通的建议;</p> + <p> 3.指定客服人员会定期跟踪、与家长沟通。如若家长有需要帮助,负责人会根据实际的情况提供相应的协助。</p> + </div> + </div> + <div style="display:none;"> + <div class="content_box"> + <div class="headline">健康提示</div> + <p> + 随着网络在青少年中的普及,未成年人接触网络游戏已经成为普遍现象。为保护未成年人健康参与游戏,在政府进一步加强行业管理的前提下,家长也应当加强监护引导。为此,我们为未成年人参与网络游戏提供以下意见:</p> + <p>一、主动控制游戏时间。游戏只是学习、生活的调剂,要积极参与线下的各类活动,并让父母了解自己在网络游戏中的行为和体验。</p> + <p>二、不参与可能耗费较多时间的游戏设置。不玩大型角色扮演类游戏,不玩有PK类设置的游戏。在校学生每周玩游戏不超过2小时,每月在游戏中的花费不超过10元。</p> + <p>三、不要将游戏当作精神寄托。尤其在现实生活中遇到压力和挫折时,应多与家人朋友交流倾诉,不要只依靠游戏来缓解压力。</p> + <p>四、养成积极健康的游戏心态。克服攀比、炫耀、仇恨和报复等心理,避免形成欺凌弱小、抢劫他人等不良网络行为习惯。</p> + <p>五、注意保护个人信息。包括个人家庭、朋友身份信息,家庭、学校、单位地址,电话号码等,防范网络陷阱和网络犯罪。</p> + <p style="text-align: right;">二〇一〇年五月二十八日</p> + </div> + </div> + <div style="display:none;"> + <div class="content_box"> + <div class="headline">纠纷处理</div> + <p>1、 + 帐号被盗处流程:账号被盗相关的账号及游戏内虚拟数据丢失等问题当您的密码泄露导致游戏内损失,第一时间进行木马查杀并修改密码、注册邮箱,确保账号安全。在完成以上安全措施后请尽快联系客服,提交所需要的信息—技术人员进行数据分析-我们会尽力尝试为您挽回损失</p> + <p>2、 物品丢失当您的账号中有物品有丢失的情况,请在事件发生72小时内尽快联系客服—提交所需要的信息—技术人员会尽快帮您进行查询处理。</p> + <p>4、 + 游戏BUG引起的数据丢失、状态异常、无法登录等问题当您在正常游戏过程中遇到游戏BUG,造成损失(第三方软件除外)-请在事件发生72小时内尽快联系客服-提交所需要的信息—技术人员进行数据分析-我们会对于确认BUG造成的游戏内损失进行补偿</p> + <p>5、 + 在充值时误操作导致充错服务器、充值未到账等问题当您充错服务器或是充值之后未到账时,请您立刻与客服联系,提交所需要的信息—技术人员进行数据分析-我们会尽力尝试挽回您误操作造成的损失。</p> + <p>家长监护服务进度查询</p> + <p> + 如果您已经申请家长监护服务,您可以通过我们的首页在线客服进行查询,了解您所提交的服务申请最新处理进展,如:传真是否收到,是否需要后续提交信息,账号是否已经进行处理等。服务期间,如果您对需要提交的信息或者 + 处理结果有疑问,或者其他任何问题,您均可以随时联系我们,我们将由专门负责的客服主管为您提供咨询解答服务,或者配合、指导您解决问题。</p> + <p style="text-align: right;">二〇一〇年五月二十八日</p> + </div> + </div> + </div> + </div> + <div class="service_right"> + <div class="service_right_box"> + <div class="service_right_top"> + <div class="title">服务联系方式</div> + <div class="service_people"> + <img src="__IMG__/icon_normal_people.png" alt=""> + <span>联系人:{:C('PC_WORKER')}</span> + </div> + <div class="service_people"> + <img src="__IMG__/icon_normal_phone.png" alt=""> + <span>申请电话:{:C('PC_SET_SERVER_TEL')}</span> </div> - <div class="right_box fr"> - <div class="contact"> - <p class="title">服务联系方式</p> - <div class="line_detail"><i class="icons perple_icon"></i><span>联系人:{:C('PC_WORKER')}</span></div> - <div class="line_detail"><i class="icons phone_icon"></i><span>申请电话:{:C('PC_SET_SERVER_TEL')}</span></div> - <div class="line_detail"><i class="icons email_icon"></i><span>邮箱:{:C('PC_SET_SERVER_EMAIL')}</span></div> - <div class="line_detail"><i class="icons time_icon"></i><span>工作时间:{:C('PC_WORK_TIME')}</span></div> - </div> - <div class="download"> - <p class="title">快速下载</p> - <if condition="C('PC_GUARDIANSHIP1') gt 0"> + <div class="service_people"> + <img src="__IMG__/icon_normal_email.png" alt=""> + <span>邮箱:{:C('PC_SET_SERVER_EMAIL')}</span> + </div> + <div class="service_people"> + <img src="__IMG__/icon_normal_time.png" alt=""> + <span>工作时间:{:C('PC_WORK_TIME')}</span> + </div> + </div> + <div class="service_right_bom"> + <div class="title">快速下载</div> + <div class="service_download"> + <img src="__IMG__/icon_noemal_wendang.png" alt=""> + <if condition="C('PC_GUARDIANSHIP1') gt 0"> <?php $guardianship1 = get_file(C('PC_GUARDIANSHIP1'));?> - <div class="line_detail"><i class="icons fujian_icon"></i><span>附件1:<a href="http://{$_SERVER['HTTP_HOST']}{$guardianship1['path']}" download="{$guardianship1['name']}" class="links">{$guardianship1['name']}</a></span></div> - <else /> - <div class="line_detail"><i class="icons fujian_icon"></i><span>附件1:</span></div> - </if> - <if condition="C('PC_GUARDIANSHIP2') gt 0"> + <div>附件1:<span><a + href="http://{$_SERVER['HTTP_HOST']}{$guardianship1['path']}" + download="{$guardianship1['name']}" + class="links">{$guardianship1['name']}</a></span></div> + <else/> + <div>附件1:<span></span></div> + </if> + + </div> + <div class="service_download"> + <img src="__IMG__/icon_noemal_wendang.png" alt=""> + <if condition="C('PC_GUARDIANSHIP2') gt 0"> <?php $guardianship2 = get_file(C('PC_GUARDIANSHIP2'));?> - <div class="line_detail"><i class="icons fujian_icon"></i><span>附件2:<a href="http://{$_SERVER['HTTP_HOST']}{$guardianship2['path']}" download="{$guardianship2['name']}" class="links">{$guardianship2['name']}</a></span></div> - <else /> - <div class="line_detail"><i class="icons fujian_icon"></i><span>附件2:</span></div> - </if> - <if condition="C('PC_GUARDIANSHIP3') gt 0"> + <div>附件2:<a + href="http://{$_SERVER['HTTP_HOST']}{$guardianship2['path']}" + download="{$guardianship2['name']}" + class="links">{$guardianship2['name']}</a></div> + <else/> + <div>附件2:</div> + </if> + + </div> + <div class="service_download"> + <img src="__IMG__/icon_noemal_wendang.png" alt=""> + <if condition="C('PC_GUARDIANSHIP3') gt 0"> <?php $guardianship3 = get_file(C('PC_GUARDIANSHIP3'));?> - <div class="line_detail"><i class="icons fujian_icon"></i><span>附件3:<a href="http://{$_SERVER['HTTP_HOST']}{$guardianship3['path']}" download="{$guardianship3['name']}" class="links">{$guardianship3['name']}</a></span></div> - <else /> - <div class="line_detail"><i class="icons fujian_icon"></i><span>附件3:</span></div> - </if> - </div> + <div>附件3:<a + href="http://{$_SERVER['HTTP_HOST']}{$guardianship3['path']}" + download="{$guardianship3['name']}" + class="links">{$guardianship3['name']}</a></div> + <else/> + <div>附件3:</div> + </if> + </div> </div> - <div class="footer"> - <p>抵制不良网页游戏,拒绝盗版游戏。注意自我保护,谨防受骗上当。适度游戏益脑,沉迷游戏伤身。合理安排时间,享受健康生活。</p> - <p class="red_font">适龄提示:适合12岁以上使用。</p> + </div> + </div> + </div> + <!-- foot --> + <div class="foot"> + <div class="foot_box"> + <div class="foot_top"> + <img src="__IMG__/foot_logo.png" alt=""> + <div class="foot_top_ri"> + <div class="foot_link"> + <a href="/media.php?s=/Article/news1/type/supervise.html">家长监护</a> + <a href="/media.php?s=/Service/index.html">客服帮助</a> + <a href="#">国浩律所</a> + </div> + <div class="foot_serial"> + <span>备案号:琼ICP备19000556号-1</span> + <span>网络文化经营许可证编号:琼网文(2019)2354-200号</span> + </div> + <div class="foot_code">copyright2019</div> + <div class="foot_approve"> <img src="__IMG__/foot_slide.png" alt=""></div> </div> </div> + <div class="foot_bom">抵制不良网页游戏,拒绝盗版游戏。注意自我保护,谨防受骗上当。适度游戏益脑,沉迷游戏伤身。合理安排时间,享受健康生活。适龄提示:适合12周岁以上使用。</div> </div> + </div> <!----中间----> - <script type="text/javascript" src="__JS__/jquery-1.11.2.min.js"></script> - <script type="text/javascript" src="__JS__/jquery.SuperSlide.2.1.1.js"></script> + <script type="text/javascript" src="__JS__/jquery-1.11.2.min.js"></script> + <script type="text/javascript" src="__JS__/jquery.SuperSlide.2.1.1.js"></script> + <script src="__JS__/service.js"></script> <script type="text/javascript"> -// jQuery("#header_1_p").slide({ + + +// jQuery("#header_1_p").slide({ // type:"menu",// 效果类型,针对菜单/导航而引入的参数(默认slide) // titCell:".nLi", //鼠标触发对象 // targetCell:".sub", //titCell里面包含的要显示/消失的对象 @@ -228,30 +300,30 @@ $(function(){ $('.float_contact_position').on('click','.top',function(){ $('body,html').animate({"scrollTop":0},500); }); - var e = $('.newshot'),o = e.offset().top,s = e.siblings('.newcon').height(); + // var e = $('.newshot'),o = e.offset().top,s = e.siblings('.newcon').height(); var h = parseInt($('.aside1').height())+parseInt($('.aside2').height()); $(window).scroll(function() { var c = $(this).scrollTop(); - var t = $('.jsfb').offset().top-c; - if (h<s) { - if (c>=o) { - if (h>t) { - e.css({'position':'absolute','top':'auto','bottom':'20px','background':'#FFFFFF','z-index':1000}); - - } else { - e.css({'position':'fixed','top':0,'background':'#FFFFFF','z-index':1000}); - - } - } else { - e.removeAttr('style'); - } - } + // var t = $('.jsfb').offset().top-c; + // if (h<s) { + // if (c>=o) { + // if (h>t) { + // e.css({'position':'absolute','top':'auto','bottom':'20px','background':'#FFFFFF','z-index':1000}); + // + // } else { + // e.css({'position':'fixed','top':0,'background':'#FFFFFF','z-index':1000}); + // + // } + // } else { + // e.removeAttr('style'); + // } + // } }); - + }); -</script> +</script> <script> $('.tab_head ul li').click(function(){ var that = $(this); diff --git a/Application/Media/View/default/Article/article/news1.html b/Application/Media/View/default/Article/article/news1.html index 4eb7e2cd4..2d9395429 100644 --- a/Application/Media/View/default/Article/article/news1.html +++ b/Application/Media/View/default/Article/article/news1.html @@ -15,17 +15,17 @@ <!-- 文章内容 --> {$info.content} <!-- 文章内容 --> - - + + </div> </div> </div> </div> - <!----中间----> - <script type="text/javascript" src="__JS__/jquery-1.11.2.min.js"></script> - <script type="text/javascript" src="__JS__/jquery.SuperSlide.2.1.1.js"></script> + <!----中间----> + <script type="text/javascript" src="__JS__/jquery-1.11.2.min.js"></script> + <script type="text/javascript" src="__JS__/jquery.SuperSlide.2.1.1.js"></script> <script type="text/javascript"> @@ -55,7 +55,7 @@ $(function(){ returnDefault:false //鼠标从.sideMen移走后返回默认状态(默认false) }); },500); - + var e = $('.newshot'),o = e.offset().top,s = e.siblings('.newcon').height(); var h = parseInt($('.aside1').height())+parseInt($('.aside2').height()); @@ -66,19 +66,19 @@ $(function(){ if (c>=o) { if (h>t) { e.css({'position':'absolute','top':'auto','bottom':'20px','background':'#FFFFFF','z-index':1000}); - + } else { e.css({'position':'fixed','top':0,'background':'#FFFFFF','z-index':1000}); - + } } else { e.removeAttr('style'); } } }); - + }); -</script> +</script> </block> \ No newline at end of file diff --git a/Application/Media/View/default/Article/supervise.html b/Application/Media/View/default/Article/supervise.html index 0245e953e..d47579343 100644 --- a/Application/Media/View/default/Article/supervise.html +++ b/Application/Media/View/default/Article/supervise.html @@ -23,17 +23,17 @@ </if> </div> - + </div> </div> - + </div> </div> </div> - <!----中间----> - <script type="text/javascript" src="__JS__/jquery-1.11.2.min.js"></script> - <script type="text/javascript" src="__JS__/jquery.SuperSlide.2.1.1.js"></script> + <!----中间----> + <script type="text/javascript" src="__JS__/jquery-1.11.2.min.js"></script> + <script type="text/javascript" src="__JS__/jquery.SuperSlide.2.1.1.js"></script> <script type="text/javascript"> @@ -66,5 +66,5 @@ $(function(){ }); -</script> +</script> </block> \ No newline at end of file diff --git a/Application/Media/View/default/Index/business.html b/Application/Media/View/default/Index/business.html index 1ec36beb5..0cd6eefda 100644 --- a/Application/Media/View/default/Index/business.html +++ b/Application/Media/View/default/Index/business.html @@ -34,7 +34,7 @@ <ul > <volist name="recommend" id="rec" offset="0" length="1"> <li> - <img src="__IMG__/play.png" alt=""> + <img src="{:get_cover($rec['cover'],'path')}" onerror="this.src='__IMG__/empty.jpg';this.onerror=null"/> <div class="have_product_box"> <div class="name">《{:msubstr2($rec['relation_game_name'],0,10)}》</div> <div class="del">{$rec.features}</div> diff --git a/Application/Media/View/default/Index/index.html b/Application/Media/View/default/Index/index.html index fa6f20eb0..3f70d1676 100644 --- a/Application/Media/View/default/Index/index.html +++ b/Application/Media/View/default/Index/index.html @@ -13,7 +13,7 @@ </div> <div class="home_text"> <div class="home_pad"> - <div class="title" style="margin-bottom: 15px">公司介绍</div> + <div class="title">公司介绍</div> <div class="del">COMPANY PROFILE</div> <div class="content"> <p>万盟天下励志为玩家提供国内最精品的移动游戏,公司集休闲、娱乐、游戏、玩家互动为一体,以公司服务和玩家互动娱乐为核心, 并于游戏厂商共建良好的沟通反馈机制,力图为大家打造一个最优秀最专业的绿色健康游戏服务平台。</p> diff --git a/Application/Media/View/default/Public/base.html b/Application/Media/View/default/Public/base.html index b48e071cf..92ea68b11 100644 --- a/Application/Media/View/default/Public/base.html +++ b/Application/Media/View/default/Public/base.html @@ -56,7 +56,13 @@ <title>{:seo_replace(C('media_center.seo_title'),'','media')}</title> <meta name="keywords" content="{:seo_replace(C('media_center.seo_keyword'),array('game_name'=>$data['game_name'],'title'=>$data['title'],'game_type_name'=>$data['game_type_name'],'giftbag_name'=>$data['giftbag_name']),'media')}"> <meta name="description" content="{:seo_replace(C('media_center.seo_description'),array('game_name'=>$data['game_name'],'title'=>$data['title'],'game_type_name'=>$data['game_type_name'],'giftbag_name'=>$data['giftbag_name']),'media')}"> - </if> + + <elseif condition="ACTION_NAME eq business"/> + <title>{:seo_replace(C('media_business.seo_title'),'','media')}-产品服务</title> + <elseif condition="ACTION_NAME eq hezuo"/> + <title>{:seo_replace(C('media_business.seo_title'),'','media')}-商务合作</title> + </if> + <meta name="frontend" content="Robin"> <if condition="ACTION_NAME eq plogin"> <link rel="stylesheet" type="text/css" href="__CSS__/login.css"> diff --git a/Application/Media/View/default/Service/index.html b/Application/Media/View/default/Service/index.html index 4064fc9ea..bfe585594 100644 --- a/Application/Media/View/default/Service/index.html +++ b/Application/Media/View/default/Service/index.html @@ -1,5 +1,8 @@ <extend name="Public/base" /> <block name="body"> + <script src="__JS__/jquery.min.js"></script> + <script src="__JS__/rem.js"></script> + <link rel="stylesheet" type="text/css" href="__CSS__/heard.css" /> <link rel="stylesheet" href="__CSS__/service.css"> <div class="g-container"> <div class="service-banner"> diff --git a/Data/update.sql b/Data/update.sql index b22117111..15b22eb0d 100644 --- a/Data/update.sql +++ b/Data/update.sql @@ -365,4 +365,7 @@ ALTER TABLE `sys_shift_task` ADD COLUMN `remark` varchar(255) NOT NULL DEFAULT ' -- 2019-11-07 cxj -ALTER TABLE `platform_query`.`tab_withdraw` ADD COLUMN `transfer_proof` int(11) NOT NULL DEFAULT 0 COMMENT '汇款证明' AFTER `settlement_end_time`; \ No newline at end of file +ALTER TABLE `tab_withdraw` ADD COLUMN `transfer_proof` int(11) NOT NULL DEFAULT 0 COMMENT '汇款证明' AFTER `settlement_end_time`; + +-- 2019-11-08 cxj +ALTER TABLE `sys_document_download` MODIFY COLUMN `id` int(10) NOT NULL AUTO_INCREMENT COMMENT '文档ID' FIRST; \ No newline at end of file diff --git a/Public/Home/js/20170831/common.js b/Public/Home/js/20170831/common.js index e737460f8..6cbdf3c1e 100644 --- a/Public/Home/js/20170831/common.js +++ b/Public/Home/js/20170831/common.js @@ -186,10 +186,10 @@ $(function(){ window.updateAlert = function (text,status,c) { switch(status){ case 1: - layer.msg(text, {icon: 1}); + layer.msg(text, {icon: 2}); break; default: - layer.msg(text, {icon: 2}); + layer.msg(text, {icon: 1}); break; } } diff --git a/Public/Media/css/base1.css b/Public/Media/css/base1.css index 13aba14cc..da8ecab95 100644 --- a/Public/Media/css/base1.css +++ b/Public/Media/css/base1.css @@ -1,6 +1,6 @@ @charset "utf-8"; html{font-family:"Microsoft YaHei","Helvetica Neue",Helvetica,sans-serif,Arial,"tahoma";} -/* body{background:#fff; font:12px/22px "Microsoft YaHei"; min-width:1200px;} */ +body{ } body,div,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,p,img,select,input{padding:0; margin:0; list-style:none; vertical-align:middle;} input,textarea:focus{outline:none;} input::-webkit-input-placeholder,input:-ms-input-placeholder,input::-moz-placeholder{color:#999;} diff --git a/Public/Media/css/heard.css b/Public/Media/css/heard.css index d0deadc0d..74f6e5aab 100644 --- a/Public/Media/css/heard.css +++ b/Public/Media/css/heard.css @@ -30,7 +30,7 @@ .heard_tabbar ul li a{ font-size: 0.24rem; color: #5B5B5B; - padding-bottom: 0.65rem; + padding-bottom: 0.55rem; border-bottom: 0.04rem solid #fff; } diff --git a/Public/Media/css/service.css b/Public/Media/css/service.css index 10ad33172..e809e9b40 100644 --- a/Public/Media/css/service.css +++ b/Public/Media/css/service.css @@ -1,172 +1,385 @@ -.service_swiper{ - width: 100%; - height: 8rem; +@charset UTF-8;.account-box .account-c,.game-box .game-c,.service-c { + border-top: 1px dotted #e6e6e6 + } + +.account-box .account-c li,.game-box .game-c li,.service-c li { + text-indent: 10px +} + +.service-wrap { + width: 1150px; + margin: 0 auto +} + +.service-banner { + background: url(../images/banner-box.jpg) center 0 no-repeat +} + +.service-banner-wrap { + height: 320px; + margin: 0 auto; + background: url(../images/kfbg.jpg) center 0 no-repeat; + margin-top:80px; + +} +.kfrw{ position:absolute; top:-80px; right:-60px; background:url(../images/kfrw.png) no-repeat; width:300px; height:400px;} +.ser_tit{ background:url(../images/ser_tit.png) no-repeat; margin-left:400px; width:320px; height:100px;} +.ser_li{ width:800px; margin-left:150px;} +.ser_li li{ float:left; width:200px; text-align:center;} +.ser_li li a i{ display:block; width:130px; height:130px; margin:0 auto; margin-bottom:10px;} +.ser_li li span{ font-size:22px; color:#fff; font-weight:bold;} +.ser_ic01{ background:url(../images/ser_sort.png) no-repeat; background-position:-30px -15px; } + +.ser_ic02{ background:url(../images/ser_sort.png) no-repeat; background-position:-225px -15px; } +.ser_ic03{ background:url(../images/ser_sort.png) no-repeat; background-position:-415px -15px; } +.ser_ic04{ background:url(../images/ser_sort.png) no-repeat; background-position:-610px -15px; } + +.service-btn-wrap { + width: 1260px; + margin: 0 auto; position: relative; - z-index: -1; + padding-top:20px; +} + +.service-btn { + width: 207px; + height: 77px; + float: right; + background: url(../images/service-btn.jpg) left top no-repeat; + background-size: 100% 100%; + margin: 55px 20px 0 0 +} + +.question-btn { + width: 207px; + height: 77px; + background: url(../images/question-btn.jpg) left top no-repeat; + background-size: 100% 100%; + position: absolute; + right: 20px; + top: 150px } -.service_swiper>img:first-child{ + +.account-box,.game-box,.pay-box { + box-shadow: 1px 10px 10px #e6e6e6; + position: relative; + float: left +} + +.service-content { + min-width: 1200px; + max-width: 1920px; + height: 300px; + margin: 0 auto; + padding-top: 30px; +} + +.pay-box { + width: 349px; + height: 321px; + margin-right: 50px; + background-color: #fff +} + +.pay-box .pay-mask { width: 100%; - height: 100%; + height: 98px; + background: url(../images/pay-mask.png) left top no-repeat +} + +.pay-box .pay-mask .pay-t { + font-size: 22px; + line-height: 60px; + padding: 25px 0 0 87px +} + +.pay-box .pay-mask .pay-t a { + color: #37b0e9 +} + +.pay-box .pay-mask .pay-t .pay-icon { + width: 50px; + height: 50px; + display: block; + float: left; + margin-right: 20px; + background: url(../images/pay-icon.png) left top no-repeat; + background-size: 100% +} + +.service-c { + width: 100%; + height: 125px; + margin: 0 auto; + padding: 20px 0 +} + +.service-c li { + line-height: 30px; + width:33%; + float:left; +} + +.account-box .account-mask .account-t,.game-box .game-mask .game-t { + font-size: 22px; + line-height: 60px; + padding: 25px 0 0 87px +} + +.service-c li a { + color: #676767; + font-size:14px; +} + +.service-c li a:hover { + color: #74B32E; + text-decoration: underline +} + +.account-box { + width: 349px; + height: 321px; + margin-right: 50px; + background-color: #fff +} + +.account-box .account-mask { + width: 100%; + height: 98px; + background: url(../images/account-mask.png) right bottom no-repeat +} + +.account-box .account-mask .account-t a { + color: #37b0e9 +} + +.account-box .account-mask .account-t .account-icon { + width: 50px; + height: 50px; + display: block; + float: left; + margin-right: 20px; + background: url(../images/account-icon.png) left top no-repeat; + background-size: 100% 100% +} + +.account-box .account-c { + width: 313px; + height: 205px; + margin: 0 auto +} + +.account-box .account-c li a { + color: #676767 +} + +.account-box .account-c li a:hover { + color: #37b0e9; + text-decoration: underline +} + +.game-box { + width: 349px; + height: 321px; + background-color: #fff +} + +.game-box .game-mask { + width: 100%; + height: 98px; + background: url(../images/game-mask.png) right top no-repeat +} + +.game-box .game-mask .game-t a { + color: #37b0e9 +} + +.game-box .game-mask .game-t .game-icon { + width: 50px; + height: 50px; + display: block; + float: left; + margin-right: 20px; + background: url(../images/game-icon.png) left top no-repeat; + background-size: 100% 100% +} + +.game-box .game-c { + width: 313px; + height: 205px; + margin: 0 auto +} + +.game-box .game-c li a { + color: #676767 +} + +.game-box .game-c li a:hover { + color: #37b0e9; + text-decoration: underline +} + +.bottom-btn { + width: 830px; + height: 101px; + border: 1px solid #e6e6e6; + margin: 30px auto +} + +.bottom-btn ul li { + width: 166px; + height: 50px; + margin-left: -1px; + border-right: 1px solid #e6e6e6; + border-bottom: 1px solid #e6e6e6; + text-align: center; + line-height: 51px; + float: left } -.service_swiper>a{ - position: absolute; - width: 1.20rem; - height: 0.4rem; - top: 0.82rem; - right: 3.61rem; - font-size: 0.2rem; - cursor: pointer; -} -.service_swiper> a img{ + +.bottom-btn ul li a { width: 100%; height: 100%; + display: block } -.service_info{ - width: 12rem; - margin: -2.12rem auto 1.12rem auto; - display: flex; - align-items: flex-end; - justify-content: space-between; -} -.service_left{ - width: 9rem; -} -.service_left .list{ - display: flex; - align-items: center; - margin-left: 0.12rem; -} -.service_left .list li{ - width: 1.2rem; - height: 0.5rem; - font-size: 0.16rem; - color: #292929; - box-shadow:0px 0px 0.1rem 0px rgba(0, 0, 0, 0.4); - border-radius:0.1rem 0.1rem 0px 0px; - background-color: #fff; - text-align: center; - line-height: 0.5rem; - margin-right: 0.05rem; + +.bottom-btn ul li:hover { + background-color: #37b0e9 } -.service_left .list li.selected{ - background-color: #00A3E1; - color: #fff; + +.bottom-btn ul li:hover a { + color: #fff } -.service_left .content{ + +.crumbs-box { width: 100%; - height: 400px; - box-shadow:0px 0px 0.6rem 0px rgba(0, 0, 0, 0.2); - border-radius:0.1rem; - background-color: #fff; - overflow: auto; -} -@media screen and (min-width: 1920px) { - .service_left .content { - height: 4rem; - } -} -.service_left .content::-webkit-scrollbar { /*滚动条整体样式*/ - width: 0.3rem; - height: 2rem; -} -.service_left .content::-webkit-scrollbar-thumb {/*滚动条里面小方块*/ - -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); - background: #00A3E1; - border-radius: 0.1rem; -} -.service_left .content::-webkit-scrollbar-track {/*滚动条里面轨道*/ - -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2); - border-radius: 0.1rem; - background-color: #fff; -} -/* .service_left .content::-webkit-scrollbar-button { - background-color:cyan; -} */ -.service_left .content>div{ - height: 100%; - width: 100%; - font-size: 0.16rem; - color: #292929; -} -.service_left .content .content_box{ - padding: 0.2rem 0.17rem 0.12rem 0.24rem; -} -.service_left .content .content_box .headline{ - font-size: 0.2rem; - color: #00A3E1; - margin-bottom: 0.19rem; -} -.service_left .content .content_box>p{ - color: #292929; - font-size: 0.16rem; - margin-bottom: 0.38rem; -} -.service_left .content .content_box>p:last-child{ - margin-bottom: 0; -} -.service_right{ - width: 2.8rem; - height: 400px; - background-color:#fff ; - box-shadow:0px 0px 0.6rem 0px rgba(0, 0, 0, 0.2); - border-radius:0.1rem; -} -@media screen and (min-width: 1920px) { - .service_right { - height: 4rem; - } -} -.service_right_box{ - padding: 0.18rem 0.2rem 0.18rem 0.21rem; -} -.service_right_top{ - padding-bottom: 0.2rem; - border-bottom:1px solid #F5F5F5; -} -.service_right_top .title{ - padding:0.02rem 0 0.02rem 0.09rem; - border-left: 0.02rem solid #00A3E1; - font-size: 0.16rem; - color: #00A3E1; -} -.service_people{ - display: flex; - align-items: center; - margin-top: 0.2rem; -} -.service_people>img{ - width: 0.2rem; - height: 0.2rem; -} -.service_people>span{ - font-size: 0.14rem; - color: #292929; - margin-left: 0.07rem; -} -.service_right_bom{ - margin-top: 0.21rem; -} -.service_right_bom .title{ - padding:0.02rem 0 0.02rem 0.09rem; - border-left: 0.02rem solid #00A3E1; - font-size: 0.16rem; - color: #00A3E1; -} -.service_download{ - display: flex; - align-items: center; - margin-top: 0.2rem; -} -.service_download>img{ - width: 0.22rem; - height: 0.22rem; -} -.service_download>div{ - margin-left: 0.07rem; - font-size: 0.14rem; - color: #292929; -} -.service_download>div>span{ - color: #00A3E1; - font-size: 0.14rem; -} \ No newline at end of file + height: 40px; + line-height: 40px; + background-color: #55c4f0 +} + +.crumbs-box .crumbs { + width: 1200px; + margin: 0 auto +} + +.crumbs-box .crumbs a { + float: left; + width: 108px; + text-align: center; + height: 40px; + color: #fff +} + +.crumbs-box .crumbs a.active { + background-color: #1595c7 +} + +.service-list { + width: 1200px; + height: 120px; + border: 1px solid #eee; + padding: 10px 20px; + margin-bottom: 10px; + overflow: hidden +} + +.service-list h2 { + font-size: 18px; + padding-bottom: 10px; + margin-bottom: 10px; + border-bottom: 1px dotted #e6e6e6 +} + +.service-list div { + color: #939393; + height: 75px; + overflow: hidden +} +.cjwt .m-subtitle-bar h2 { + line-height:1; + text-indent:25px; + color:#333; + font-size:20px; + font-weight:bold; + border-left:5px solid #44A7E0; +} +.cjwt .m-subtitle-bar h2 a { + color:#44A7E0 +} +.cjwt .m-subtitle-bar h2 a:hover { + color:#74B32E +} +.cjwt .m-subtitle-bar .more { + float:right; + margin-right:19px; + line-height:24px; + color:#676767 +} +.cjwt .m-subtitle-bar .more:hover { + color:#74B32E +} +.cjwt .m-subtitle-bar{ margin-bottom:20px;} +.cjwt{ background: #fff; + width: 95%; + padding: 25px; + margin: 0 auto;} + +/*客服详情*/ +.server_detail{ background:#fff; margin-top:30px; height:700px;} +.crumbs {padding: 15px 0; + color: #999; + font-size: 14px; + padding-left: 20px; + border-bottom: 3px solid #F1F2F3;border:none;} +.crumbs em{ font-weight:bold;} + +#ser_sub{} +#ser_sub #l{ float:left; width:240px; height:300px; background:#fff; padding:15px;-webkit-border-radius: 5px; + border-radius: 5px;} +#ser_sub #l ul{ padding:0px 0 0 0; background: #F4F4F4; min-height:500px;} +#ser_sub #l li{ font-size:16px; line-height:50px; height:50px;margin-bottom: 1px;} +#ser_sub #l li a{ display:block; line-height:50px; height:50px; text-align:center;} +#ser_sub #l li a:hover, #ser_sub #l li a.now{color: #FFFFFF; + background: #03B4F5; + text-align: center;} + + +.tabContent #r{ float:right; width:860px; background:#fff; padding:0 20px;} +.tabContent h4{ font-size:24px; line-height:55px;border-bottom:1px solid #ebebeb;} +.tabContent ul{ font-size:14px;} +.tabContent ul li{ } +.tabContent ul li .q{background: #f4f4f4;font:14px/40px "\5FAE\8F6F\96C5\9ED1";color: #262626;padding: 0 10px 0 5px;height: 40px; font-weight:bold;} +.tabContent ul li .q em {color: #cbcbcb;padding-right: 5px;} +.tabContent ul li .a{color:#666; line-height:1.7; padding:10px;} + + +/*内容区域*/ +.tabmain{width:95%;height:600px;margin:15px auto;background: #F3F3F3;border:1px solid #F3F3F3;} +.tabmain .tabGroup{float:left;width:20%;height:auto; z-index:3;} +.tabmain .tabGroup li{height:48px;line-height:48px;padding-left:8px;text-align:center;cursor:pointer;-webkit-user-select:none; -moz-user-select:none;font-size:16px;font-family:'Microsoft yahei';color:#666;} +.tabmain .tabGroup li.selectedTab{padding-left:10px;background: #03B4F5;color:#fff;font-weight:bold;} +.tabmain .tabContent{padding:5px 20px;background-color:#fff;color:#777; min-height:600px;} +.tabContent p a{margin-right:15px;text-decoration:none;text-align:center;color:orange; font-weight:bold;} +.tabContent h3{margin-bottom:5px;background:orange;color:#fff;font-size:16px;font-weight:bold;line-height:35px;text-align:center;} +.tabContent dl{line-height:22px;margin-bottom:10px;} +.tabContent dt{color:#1d9fd3;font-weight:bold;} +.tabContent dd img{display:block;} +.tabmain .blueline{position:absolute;top:0px;left:0px;width:3px;height:48px;overflow:hidden;} + +.tabContent .witness p{position:relative;padding-left:20px;} +.tabContent .witness p em{color:orange; font-weight:bold;} +.tabContent .witness p a{color:#666;font-weight:normal;display:block; line-height:24px; text-align:left;} +.tabContent .witness p a:hover{background-color:#efefef;} +.tabContent .witness p .ele{left:0px;} + +#container{float:left;width:80%;height:600px;background:#fff;overflow:hidden;} +#slider{position:absolute;top:0px;right:0;width:6px;border-radius:6px;background:#ccc;cursor:pointer;} +#sliderParent{position:absolute;left:0;height:0;width:100%;z-index:999;} +#outerWrap{position:relative;z-index:999} + +/*滚动条*/ +.wrapacon{position:relative;float:left;width:468px;height:360px;margin-top:5px;overflow:hidden;} +.wrapaconlis{position:absolute;left:0;top:0;width:450px;} +.scrbar{position:relative; width:4px; height:355px;border:1px solid #f4f4f4;border-radius:20px;background-color:#f4f4f4; float:left;left:443px;margin-left:15px;} +.scrbar .barbg{position:absolute;right:-1px;top:50px;width:2px;height:105px;border:2px solid #dadada;background-color:#dadada;border-radius:20px;} \ No newline at end of file diff --git a/Public/Media/css/supervise.css b/Public/Media/css/supervise.css new file mode 100644 index 000000000..8655ec593 --- /dev/null +++ b/Public/Media/css/supervise.css @@ -0,0 +1,173 @@ +.service_swiper{ + width: 100%; + height: 8rem; + position: relative; +} +.service_swiper>img:first-child{ + width: 100%; + height: 100%; + position: relative; + z-index: -1; +} +.service_swiper>a{ + position: absolute; + width: 1.20rem; + height: 0.4rem; + top: 0.82rem; + right: 3.61rem; + font-size: 0.2rem; + cursor: pointer; +} +.service_swiper> a img{ + width: 100%; + height: 100%; +} +.service_info{ + width: 12rem; + margin: -2.12rem auto 1.12rem auto; + display: flex; + align-items: flex-end; + justify-content: space-between; +} +.service_left{ + width: 9rem; +} +.service_left .list{ + display: flex; + align-items: center; + margin-left: 0.12rem; +} +.service_left .list li{ + width: 1.2rem; + height: 0.5rem; + font-size: 0.16rem; + color: #292929; + box-shadow:0px 0px 0.1rem 0px rgba(0, 0, 0, 0.4); + border-radius:0.1rem 0.1rem 0px 0px; + background-color: #fff; + text-align: center; + line-height: 0.5rem; + margin-right: 0.05rem; +} +.service_left .list li.selected{ + background-color: #00A3E1; + color: #fff; +} +.service_left .content{ + width: 100%; + height: 400px; + box-shadow:0px 0px 0.6rem 0px rgba(0, 0, 0, 0.2); + border-radius:0.1rem; + background-color: #fff; + overflow: auto; +} +@media screen and (min-width: 1920px) { + .service_left .content { + height: 4rem; + } +} +.service_left .content::-webkit-scrollbar { /*滚动条整体样式*/ + width: 0.3rem; + height: 2rem; +} +.service_left .content::-webkit-scrollbar-thumb {/*滚动条里面小方块*/ + -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); + background: #00A3E1; + border-radius: 0.1rem; +} +.service_left .content::-webkit-scrollbar-track {/*滚动条里面轨道*/ + -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2); + border-radius: 0.1rem; + background-color: #fff; +} +/* .service_left .content::-webkit-scrollbar-button { + background-color:cyan; +} */ +.service_left .content>div{ + height: 100%; + width: 100%; + font-size: 0.16rem; + color: #292929; +} +.service_left .content .content_box{ + padding: 0.2rem 0.17rem 0.12rem 0.24rem; +} +.service_left .content .content_box .headline{ + font-size: 0.2rem; + color: #00A3E1; + margin-bottom: 0.19rem; +} +.service_left .content .content_box>p{ + color: #292929; + font-size: 0.16rem; + margin-bottom: 0.38rem; +} +.service_left .content .content_box>p:last-child{ + margin-bottom: 0; +} +.service_right{ + width: 2.8rem; + height: 400px; + background-color:#fff ; + box-shadow:0px 0px 0.6rem 0px rgba(0, 0, 0, 0.2); + border-radius:0.1rem; +} +@media screen and (min-width: 1920px) { + .service_right { + height: 4rem; + } +} +.service_right_box{ + padding: 0.18rem 0.2rem 0.18rem 0.21rem; +} +.service_right_top{ + padding-bottom: 0.2rem; + border-bottom:1px solid #F5F5F5; +} +.service_right_top .title{ + padding:0.02rem 0 0.02rem 0.09rem; + border-left: 0.02rem solid #00A3E1; + font-size: 0.16rem; + color: #00A3E1; +} +.service_people{ + display: flex; + align-items: center; + margin-top: 0.2rem; +} +.service_people>img{ + width: 0.2rem; + height: 0.2rem; +} +.service_people>span{ + font-size: 0.14rem; + color: #292929; + margin-left: 0.07rem; +} +.service_right_bom{ + margin-top: 0.21rem; +} +.service_right_bom .title{ + padding:0.02rem 0 0.02rem 0.09rem; + border-left: 0.02rem solid #00A3E1; + font-size: 0.16rem; + color: #00A3E1; +} +.service_download{ + display: flex; + align-items: center; + margin-top: 0.2rem; +} +.service_download>img{ + width: 0.22rem; + height: 0.22rem; +} +.service_download>div{ + margin-left: 0.07rem; + font-size: 0.14rem; + color: #292929; +} +.service_download>div>span{ + color: #00A3E1; + font-size: 0.14rem; +} \ No newline at end of file diff --git a/Public/Media/images/black.png b/Public/Media/images/black.png new file mode 100644 index 000000000..9ac931253 Binary files /dev/null and b/Public/Media/images/black.png differ diff --git a/Public/Media/js/service.js b/Public/Media/js/service.js new file mode 100644 index 000000000..16a541e28 --- /dev/null +++ b/Public/Media/js/service.js @@ -0,0 +1,22 @@ +$(function() { + $(".service_left li").click( + function(){ + // console.log($(this).index()) + /*每个li下属的div*/ + var divShow = $(".content").children("div"); + /*利用selected进行判断*/ + // console.log($(this).hasClass("")) + if($(this).hasClass("")){ + /*li标签的顺序和div的顺序是对应的,获取索引*/ + var index = $(this).index(); + /*当前对象设置class属性*/ + $(this).addClass("selected"); + /*移除其他同级元素属性*/ + $(this).siblings("li").removeClass("selected"); + /*展示当前li对应的div内容,利用方法显示和隐藏*/ + $(divShow[index]).show(); + /*隐藏同级元素*/ + $(divShow[index]).siblings("div").hide(); + } + }) +}) \ No newline at end of file diff --git a/index.php b/index.php index 24e284545..44b309d90 100644 --- a/index.php +++ b/index.php @@ -14,6 +14,11 @@ if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !'); */ define('APP_DEBUG', true ); define('ROOTTT',dirname(__FILE__).'/'); +if (APP_DEBUG) { + ini_set("display_errors", "On"); + error_reporting(E_ALL | E_STRICT); +} + /** * 应用目录设置 * 安全期间,建议安装调试完成后移动到非WEB目录 @@ -24,6 +29,7 @@ if(!is_file(APP_PATH . 'User/Conf/config.php')){ header('Location: ./install.php'); exit; } + /** * 缓存目录设置 * 此目录必须可写,建议移动到非WEB目录