| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <!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-->
- <!--<link rel="stylesheet" type="text/css" href="css/app.css" />-->
- <style>
- .mui-table h4,
- .mui-table h5,
- .mui-table .mui-h5,
- .mui-table .mui-h6,
- .mui-table p {
- margin-top: 0;
- }
-
- .mui-table h4 {
- line-height: 21px;
- font-weight: 500;
- }
-
- .mui-table .oa-icon {
- position: absolute;
- right: 0;
- bottom: 0;
- }
-
- .mui-table .oa-icon-star-filled {
- color: #f14e41;
- }
-
- .mui-bar-nav {
- background-color: #00a1cb;
- color: #fff;
- }
- .mui-bar-nav h1{
- color: #fff;
- }
- .Messge{
- font-size: 12px;
- margin-top: 10px;
- margin-bottom: 10px;
- color: #8f8f94;
- }
- .title{
- font-size: 18px;
- color: #000;
- }
- .mui-content{
- background-color: #fff;
- }
- body{
- background: #FFF;
- }
- .content{
- font-size: 16px;
- }
- h4{
- font-size: 20px;
- font-weight: 500;
- }
- </style>
- </head>
- <body>
- <header class="mui-bar mui-bar-nav" style="padding-right: 15px;height: 50px;color: #fff;">
- <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">
- <div class="" style="padding: 20px 15px;">
- <h4 class="Title"></h4>
- <h5 style="margin-top: 15px;"><span class="time"></span><span></span></h5>
- <div class="Messge">
- <span class='title'></span>
- <div class="content">
-
- </div>
-
- </div>
-
- </div>
-
- <span></span>
- </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>
|