overview.php 950 Bytes
<table class="table table-striped table-hover">
    <tr>
        <th>语言</th>
        <td>
            <?php if($info->language=='zh'){?>
                      中文
            <?php }?>

            <?php if($info->language=='en'){?>
                英文
            <?php }?>
        </td>
    </tr>


    <tr>
        <th>讲解点名称</th>
        <td><?= $info->name?></td>
    </tr>

    <tr>
        <th>图片</th>
        <td><img   width="100px" height="100px" src="https://dev-1255927177.cos.ap-shanghai.myqcloud.com<?= $info->img_url?>"/></td>
    </tr>

    <tr>
        <th>语音讲解</th>
        <td> <audio controls="controls" src="https://dev-1255927177.cos.ap-shanghai.myqcloud.com<?= $info->audio_url?>"  ></audio>  </td>
    </tr>

    <tr>
        <th>文字描述</th>
        <td><textarea name="" id="" cols="150" rows="30">
                <?= $info->describetion?>
            </textarea></td>
    </tr>
</table>