overview.php
950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<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>