Commit e91ee74e authored by christ's avatar christ

share

parent ac745c3f
...@@ -6,15 +6,13 @@ ...@@ -6,15 +6,13 @@
<title></title> <title></title>
<style type="text/css"> <style type="text/css">
html,body,p,span,div,img{margin:0;padding:0;}body{width:750px;} html,body,p,span,div,img{margin:0;padding:0;}body{width:750px;}
.shareC { width:750px; padding:0; text-align:center;font-family:"黑体";color:#212121;} .shareC { width:750px;padding:0; text-align:center;font-family:"黑体";color:#212121;}
.header{background:url(/data/img/headerBg.png);padding-top:100px; height:415px; } .avatar{padding:55px 55px 20px 55px;}
.bgBD{width:162px; height:162px;background-color:white;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;margin:0 auto;} #headerBg{width:600px; height:500px;}
#headerBg{width:160px; height:160px;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;margin:1px;} #title{font-size:34px; }
#title{font-size:34px; margin-top:24px;} #title{ font-size:28px; line-height:36px; padding:0 110px 0 110px; height:72px;display:block; display:-webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;overflow:hidden;text-overflow:ellipsis;}
.address{ font-size:28px; line-height:36px; padding:50px 110px 0 110px; height:108px;display:block; display:-webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;overflow:hidden;text-overflow:ellipsis;} .price{color:#ff8519;font-size:46px;}
.noticePart{ width:560px;margin:16px auto 0 auto; background:url(/data/img/noticeBg.png);} .price #price{font-size:34px; text-decoration:line-through;}
.noticePart p{height:44px; font-size:20px; line-height:22px; padding:68px 28px 32px 28px; }
#notice{ max-width:504px;display:block; display:-webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;overflow:hidden;text-overflow:ellipsis;}
.qrcode{background:url(/data/img/flower.png); height:488px; margin:6px auto 0 auto;} .qrcode{background:url(/data/img/flower.png); height:488px; margin:6px auto 0 auto;}
#qrImg {margin-top:80px;} #qrImg {margin-top:80px;}
#qrcodeImg img { margin: 0 auto;} #qrcodeImg img { margin: 0 auto;}
...@@ -24,17 +22,14 @@ ...@@ -24,17 +22,14 @@
</head> </head>
<body> <body>
<div class="shareC"> <div class="shareC">
<div class="header"> <div class="avatar">
<div class="bgBD"> <img id="headerBg" src="" />
<img src="" id="headerBg" />
</div>
<p id="title"></p>
<p class="address">地址:<span id="address"></span></p>
</div> </div>
<div class="noticePart"> <div id="title"></div>
<p> <div class="price">
<span id="notice"></span> <img src="/data/img/sale.png" />
</p> <span id="discount" ></span>
<span id="price"></span>
</div> </div>
<div class="qrcode" id="qrcode"> <div class="qrcode" id="qrcode">
<img id="qrImg" src="" /> <img id="qrImg" src="" />
...@@ -53,18 +48,23 @@ ...@@ -53,18 +48,23 @@
headerBg : "<?php echo $params['imgUrl'];?>", headerBg : "<?php echo $params['imgUrl'];?>",
url : "<?php echo $params['qrCode'];?>", url : "<?php echo $params['qrCode'];?>",
qrImg : "<?php echo $params['qrCode'];?>", qrImg : "<?php echo $params['qrCode'];?>",
title : "<?php echo $params['storeName'];?>", title : "<?php echo $params['desc'];?>",
address : "<?php echo $params['address'];?>", price : "<?php echo $params['price'];?>",
notice : "<?php echo $params['desc'];?>" discount : "<?php echo $params['dicountPrice'];?>",
}; };
if(pageObj.notice==null || pageObj.notice=="") if(pageObj.notice==null || pageObj.notice=="")
pageObj.notice="暂无公告"; pageObj.notice="暂无公告";
var excute = ["title","address","notice"]; var excute = ["title"];
excute.forEach(function(v,i){ excute.forEach(function(v,i){
document.getElementById(v).innerHTML = pageObj[v]; document.getElementById(v).innerHTML = pageObj[v];
}); });
document.getElementById("headerBg").src = pageObj.headerBg; document.getElementById("headerBg").src = pageObj.headerBg;
document.getElementById("qrImg").src = pageObj.qrImg;} document.getElementById("discount").innerHTML = "<span style='font-size:30px;'>¥</span>"+(pageObj.discount / 100).toFixed(2);
if(pageObj.price != pageObj.discount)
document.getElementById("price").innerHTML = "<span style='font-size:30px;'>¥</span>"+(pageObj.price / 100).toFixed(2);
document.getElementById("qrImg").src = pageObj.qrImg;
// if(pageObj.type<=2){ // if(pageObj.type<=2){
// document.getElementById("qrImg").src = pageObj.qrImg;} // document.getElementById("qrImg").src = pageObj.qrImg;}
// else{ // else{
......
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