|
|
@@ -1,4 +1,6 @@
|
|
|
{include file="layout/header" /}
|
|
|
+<style type="text/css">
|
|
|
+</style>
|
|
|
<!-- banner -->
|
|
|
<div class="product-details-banner">
|
|
|
<div class="container">
|
|
|
@@ -7,16 +9,15 @@
|
|
|
<ul class="rslides">
|
|
|
<li>
|
|
|
<div class="slider-info" style="text-align: left !important;">
|
|
|
- <p style="font-size: 2.8vw; margin-left: 170px">
|
|
|
- 数据分析
|
|
|
+ <p style="font-size: 2.8vw;">
|
|
|
+ {$product.product_name}
|
|
|
</p>
|
|
|
- <p style="font-size: 1vw; text-align: center;">
|
|
|
- 提供全球约150个国家和地区的篮球赛事赛程赛果、实时比分、比赛事件。覆盖500+不同赛事、6,000+球队 <br>
|
|
|
- 的一手赛况数据;用户无需守在电视直播前,即可快速了解多场篮球比赛的实时赛况、比赛结果等信息。
|
|
|
+ <p style="font-size: 1vw;">
|
|
|
+ {$product.product_content}
|
|
|
</p>
|
|
|
- <button>
|
|
|
- 立即选购
|
|
|
- </button>
|
|
|
+ <div style="text-align: right">
|
|
|
+ <button>立即选购</button>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</li>
|
|
|
</ul>
|
|
|
@@ -24,4 +25,68 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-{include file="layout/footer" /}
|
|
|
+
|
|
|
+<section class="wthree-row" id="pricing">
|
|
|
+ <div class="container" style="font-size: 18px; font-weight: 800; margin-top: 50px;">
|
|
|
+ 产品介绍
|
|
|
+ </div>
|
|
|
+ {volist name="productInfo" id="value"}
|
|
|
+ <div>
|
|
|
+ <div class="container" style="margin-top: 5px;">
|
|
|
+ <img src="{$Think.HOME_SITE_ROOT}/images/infoData.png">
|
|
|
+ {$value.productInfo_title}
|
|
|
+ </div>
|
|
|
+ <div class="container" style="margin-top: 5px;">
|
|
|
+ {$value.productInfo_content}
|
|
|
+ </div>
|
|
|
+ <div class="container" style="margin-top: 20px; margin-bottom: 50px">
|
|
|
+ <img src="{$Think.UPLOADS_ROOT}{$value.productInfo_img}" width="100%">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ {/volist}
|
|
|
+ <div class="container" style="font-size: 18px; font-weight: 800; margin-top: 50px;">
|
|
|
+ 产品价格
|
|
|
+ </div>
|
|
|
+ <div class="container" style="margin-top: 10px; margin-bottom: 50px;">
|
|
|
+ <table class="gridtable">
|
|
|
+ <tr>
|
|
|
+ <td style="border-right: 0;">产品名称</td>
|
|
|
+ <td style="border-right: 0; border-left: 0;">时间</td>
|
|
|
+ <td style="border-right: 0; border-left: 0;">价格</td>
|
|
|
+ <td style="border-left: 0;">选购</td>
|
|
|
+ </tr>
|
|
|
+ {volist name="renewal" id="value"}
|
|
|
+ <tr>
|
|
|
+ <td>{$value.renewal_name}</td>
|
|
|
+ <td>{$value.renewal_name}</td>
|
|
|
+ <td>
|
|
|
+ <?php
|
|
|
+ switch($value->renewal_id){
|
|
|
+ case 1:
|
|
|
+ echo $product->product_TypeOne;
|
|
|
+ break;
|
|
|
+ case 2:
|
|
|
+ echo $product->product_TypeTwo;
|
|
|
+ break;
|
|
|
+ case 3:
|
|
|
+ echo $product->product_TypeThree;
|
|
|
+ break;
|
|
|
+ case 4:
|
|
|
+ echo $product->product_TypeFour;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ ?>元
|
|
|
+ </td>
|
|
|
+ <td onclick="shopping('{$value.renewal_id}')" style="color: #0d93bf; cursor:pointer;">选购</td>
|
|
|
+ </tr>
|
|
|
+ {/volist}
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+</section>
|
|
|
+<script>
|
|
|
+ const myHost = "http://" + window.location.host;
|
|
|
+ function shopping(id) {
|
|
|
+ window.location.href = myHost + "/home/product/details.html?id=" + id;
|
|
|
+ }
|
|
|
+</script>
|
|
|
+{include file="layout/footer" /}
|