Commit ab89c747 by 姜雷

合并冲突

parents e22117d6 5d803383
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head>
<meta charset="UTF-8" /> <head>
<meta <meta charset="UTF-8" />
name="viewport" <meta name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" />
/> <meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script> <title>公告</title>
<title>公告</title> <style>
<style> html,
html, body,
body, #app {
#app { width: 100%;
width: 100%; /* height: 100%;
/* height: 100%;
overflow: hidden; */ overflow: hidden; */
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
.loadingText {
padding: 6.66667vw; .loadingText {
} padding: 6.66667vw;
.Content { }
/* height: 100%; */
padding: 4.8vw 3.2vw; .Content {
box-sizing: border-box; /* height: 100%; */
/* overflow-y: scroll; padding: 4.8vw 3.2vw;
box-sizing: border-box;
/* overflow-y: scroll;
-webkit-overflow-scrolling: touch; */ -webkit-overflow-scrolling: touch; */
} }
.Content .content-title {
font-size: 4.53333vw; .Content .content-title {
color: #1e1e1e; font-size: 4.53333vw;
font-weight: bold; color: #1e1e1e;
line-height: 5.33333vw; font-weight: bold;
word-break: break-all; line-height: 5.33333vw;
} word-break: break-all;
.Content .content-info { }
font-size: 3.46667vw;
color: #909090; .Content .content-info {
padding: 4vw 0; font-size: 3.46667vw;
display: flex; color: #909090;
justify-content: space-between; padding: 4vw 0;
} display: flex;
.Content .content-info-src { justify-content: space-between;
flex: 1; }
}
.Content .content-body { .Content .content-info-src {
font-size: 3.73333vw; flex: 1;
color: #1e1e1e; }
word-break: break-all;
}
</style>
</head>
<body>
<div id="app">
<div class="loadingText">
加载中。。。
</div>
</div>
</body>
<script> .Content .content-body {
function getUrlParam(name) { font-size: 3.73333vw;
var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)'); //构造一个含有目标参数的正则表达式对象 color: #1e1e1e;
var r = window.location.search.substr(1).match(reg); //匹配目标参数 word-break: break-all;
if (r != null) return unescape(r[2]);
return null; //返回参数值
} }
$(function() { </style>
var id = getUrlParam('id'); </head>
var token = getUrlParam('token');
$.ajax({ <body>
url: <div id="app">
'https://api-schoolhome.dcrym.com/dcxy/wechat/homepage/campus/itemInfo?itemId=' + <div class="loadingText">
id, 加载中。。。
headers: { </div>
token: token, </div>
}, </body>
}).done(function(res) {
if (res.code === 1000) { <script>
var data = res.data; function getUrlParam(name) {
$('#app').html( var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)'); //构造一个含有目标参数的正则表达式对象
'<div class="Content">' + var r = window.location.search.substr(1).match(reg); //匹配目标参数
'<div class="content-title">' + if (r != null) return unescape(r[2]);
data.title + return null; //返回参数值
'</div>' + }
'<div class="content-info">' + $(function () {
'<span class="content-info-src ellipsis">' + var id = getUrlParam('id');
data.source + var token = getUrlParam('token');
'</span>' + var customerId = getUrlParam('customerId');
'<span>' + $.ajax({
data.updateTime + url:
'</span>' + 'https://ex-test-dcxy-home-app.168cad.top/app/home/module/notice/detail?noticeCode=' +
'</div>' + id + '&customerId=' + customerId,
'<div class="content-body" ></div>' + headers: {
'</div>', token: token,
); },
$('.content-body').html(data.content); }).done(function (res) {
} else { if (res.code === 1000) {
$('.loadingText').html('获取失败!'); var data = res.data;
} // $('#app').html(
}); // '<div class="Content">' +
// '<div class="content-title">' +
// data.title +
// '</div>' +
// '<div class="content-info">' +
// '<span class="content-info-src ellipsis">' +
// data.source +
// '</span>' +
// '<span>' +
// data.updateTime +
// '</span>' +
// '</div>' +
// '<div class="content-body" ></div>' +
// '</div>',
// );
$('#app').html(data.content);
} else {
$('.loadingText').html('获取失败!');
}
}); });
</script> });
</html> </script>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment