| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- {include file="layout/header" /}
- <style type="text/css">
- </style>
- <!-- banner -->
- <div class="product-details-banner">
- <div class="container">
- <div>
- <div class="">
- <ul class="rslides">
- <li>
- <div class="slider-info" style="text-align: left !important;">
- <p style="font-size: 2.8vw;">
- {$product.product_name}
- </p>
- <p style="font-size: 1vw;">
- {$product.product_content}
- </p>
- <div style="text-align: right">
- <button>立即选购</button>
- </div>
- </div>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <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" /}
|