123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0,user-scalable=0" />
- <title>添加客服</title>
- <script type="text/javascript" src="../common/jquery-2.1.0.js"></script>
- <script type="text/javascript">
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- window.onresize = function () {
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- }
- </script>
- <style type="text/css">
- body{width: 100%;min-height: 100vh;background: #FFFFFF;}
- body,p,div,text,img{margin: 0;padding: 0;-webkit-touch-callout:none;}
- .title{color: #000000;font-size: 0.16rem;line-height: 0.22rem;text-align: center;padding-top: 0.8rem;}
- .serviceEvmImg{width: 1.63rem;height: 1.64rem;display: block;margin: auto;margin-top: 0.15rem;}
-
-
- .copyDiv{width: 3rem;height: 0.37rem;margin: auto;margin-top: 0.15rem;background:
- #FA472E;border-radius: 0.19rem;font-size: 0.14rem;display: flex;align-items: center;justify-content: space-between; position: absolute;left: 0;right: 0;top: 5.1rem;margin: auto;border:0.02rem solid #FFFFFF;box-sizing: border-box;overflow: hidden;}
- .copyText{width: 2.2rem;height: 0.33rem;background: #FA472E;border-radius: 0.19rem 0 0 0.19rem;margin-left: 0.02rem;color: #ffffff;text-align: center;line-height: 0.33rem;}
- .copyButton{
- width: 0.6rem;
- height: 0.37rem;
- background: #ffffff;
- color: #FA472E;
- text-align: center;
- line-height: 0.37rem;
- border-radius: 0.37rem;
- }
- .hint{color: #333333;font-size: 0.12rem;line-height: 0.17rem;text-align: center;margin-top: 0.15rem;}
- #copy_1,#copy_2{
- position: absolute;
- left: -1000rem;
- }
- .alert-info {
- position: fixed;
- top: 1.74rem;
- right: 0;
- left: 0;
- bottom: 0;
- text-align: center;
- }
-
- .alert-info p {
- display: inline-block;
- height: 0.38rem;
- color: #fff;
- font-size: 0.14rem;
- line-height: 0.38rem;
- padding: 0 0.10rem;
- background-color: rgba(0, 0, 0, 0.7);
- border-radius: 5px;
- }
- .content{
- width: 100%;min-height: 100vh;background: #FFFFFF;position: relative;
- }
- .content img{
- width: 100%;
- }
- </style>
- </head>
- <body>
- <div class="content">
- <img src="bg.png?v=1" />
- <div class="copyDiv">
- <div class="copyText">微信号:guopiao10041030</div>
- <div class="copyButton" onclick="copyEvent()">复制</div>
- </div>
- </div>
-
- <input id="copy_1" type="text" readOnly="true" value=""/>
- <div id="copy_2"></div>
-
- <!--<p class="title">添加客服微信即可申请代理</p>
- <img src="serviceEvm.png" class="serviceEvmImg" />-->
-
- <!--<p class="hint">提示:您也可以截图保存到相册通过扫描二维码添加客服微信</p>-->
-
- <div class="alert-info" style="display: none;">
- <!-- tip提示,3s后消失 -->
- <p></p>
- </div>
- </body>
- </html>
- <script type="text/javascript">
- $().ready(function () {
- writeLogH5({action:'addService',channel:'H5',url:window.location.href});//埋点
- })
- function copyEvent () {
- var data='guopiao10041030';
- copy_2.innerHTML = data;
- copy_1.value = data;
- if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) {
- //区分iPhone设备
- window.getSelection().removeAllRanges();//这段代码必须放在前面否则无效
- var Url2=document.getElementById("copy_2");//要复制文字的节点
- var range = document.createRange();
- // 选中需要复制的节点
- range.selectNode(Url2);
- // 执行选中元素
- window.getSelection().addRange(range);
- // 执行 copy 操作
- var successful = document.execCommand('copy');
-
- // 移除选中的元素
- window.getSelection().removeAllRanges();
- }else{
- var Url2=document.getElementById("copy_1");//要复制文字的节点
- Url2.select(); // 选择对象
- document.execCommand("Copy"); // 执行浏览器复制命令
- }
- showMsg('复制成功')
- }
- //提示弹框
- function showMsg(msg) {
- var msgBox = document.getElementsByClassName('alert-info')[0];
- msgBox.children[0].innerText = msg;
- msgBox.style.display="block";
- setTimeout(function() {
- msgBox.style.display="none";
- }, 1500);
- }
- //H5页面埋点
- function writeLogH5 (data) {
- $.ajax({
- type:'post',
- url:'/api/v2/channel/writeLogH5',
- dataType:'json',
- data:data,
- success:function (res) {
- }
- })
- }
- </script>
|