| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title></title>
- <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <!--标准mui.css-->
- <link rel="stylesheet" href="../css/mui.min.css">
- <!--App自定义的css-->
- <style>
- .mui-bar-nav {
- background-color: #cd0000!important;
- height: 50px;
- color: #fff;
- }
- .mui-input-row{
- padding: 0 15px;
- }
- .mui-input-row h5{
- text-align: center;
- color: #000;
- font-weight: bold;
- }
- .mui-input-row h6{
- color: #000;
- font-weight: bold;
- }
- .mui-input-row p{
- text-indent: 2em;
- }
- </style>
- </head>
- <body>
- <header class="mui-bar mui-bar-nav">
- <a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left" style="color: #fff;"></a>
- <h1 class="mui-center mui-title">服务守则</h1>
- </header>
- <div class="mui-content" style="margin-top: 15px;">
- <div class="mui-input-row">
- <h5>用户服务守则</h5>
- <h6>一、特别提示</h6>
- <p>本APP使用仅限于双汇在职业务员工,人员有变动时请对应负责人及时更新;业务员处理消费者投诉时,如果消费者没有打400电话,需要业务员打400电话进行备案
- </p>
- <h6 p style="text-align: right; line-height: 60px;">双汇投资发展
- 有限公司</h6>
- </div>
- </div>
- </body>
- <script src="../js/mui.min.js"></script>
- <script src="../js/zepto.js"></script>
- <script src="../js/huayi.config.js"></script>
- <script>
- mui.init();
- mui.plusReady(function() {
- var wv = plus.webview.currentWebview();
- var token = wv.token;
- var id = wv.name;
- mui.ajax(huayi.config.callcenter_url + "Article/GetInfoByTitle", {
- data: {
- title: $('.mui-title').text(),
- token: localStorage.getItem('token')
- },
- dataType: 'json', //服务器返回json格式数据
- type: 'get', //HTTP请求类型
- timeout: 10000, //超时时间设置为10秒;
- headers: {
- 'Content-Type': 'application/x-www-form-urlencoded; charset=utf-8'
- },
- success: function(data) {
- if(data.state == "success") {
- $('.mui-title').text(data.data.F_Title);
- $('.content').text(data.data.F_Content);
- } else {
- mui.toast("数据获取失败。");
- }
- },
- error: function(xhr, type, errorThrown) {
- //异常处理;
- }
- })
- });
- </script>
- </html>
|