作者 王晓刚
1 个管道 的构建 通过 耗费 1 秒

提现最低限制

... ... @@ -8,7 +8,11 @@
</ul>
<volist name="data_goods" id="vo">
<div style="margin-top: 10px;">
<img src="{:cmf_get_image_url($vo.thumbnail)}" class="img-rounded">
<notempty name="$vo.thumbnail">
<img src="{:cmf_get_image_preview_url($vo.thumbnail)}"
style="height:36px;width: 36px;"
onclick="parent.imagePreviewDialog(this.src);">
</notempty>
<h4>书籍:{$vo.book_name}&nbsp;&nbsp;X&nbsp;&nbsp;{$vo.number}本</h4>
<h4>定价:{$vo.pricing}</h4>
<h4>售价:{$vo.price}</h4>
... ...
... ... @@ -8,7 +8,11 @@
</ul>
<volist name="data_goods" id="vo">
<div style="margin-top: 10px;">
<img src="{:cmf_get_image_url($vo.thumbnail)}" class="img-rounded" style="width: 300px;height: 300px;">
<notempty name="$vo.thumbnail">
<img src="{:cmf_get_image_preview_url($vo.thumbnail)}"
style="height:36px;width: 36px;"
onclick="parent.imagePreviewDialog(this.src);">
</notempty>
<h4>书籍:{$vo.book_name}&nbsp;&nbsp;X&nbsp;&nbsp;{$vo.number}本</h4>
<h4>定价:{$vo.pricing}</h4>
<h4>售价:{$vo.price}</h4>
... ...
... ... @@ -36,11 +36,23 @@
</tr>
<tr>
<th>身份证正面</th>
<td><img src="{:cmf_get_image_url($data.img_front)}" alt=""></td>
<td>
<notempty name="$data.img_front">
<img src="{:cmf_get_image_preview_url($data.img_front)}"
style="height:36px;width: 36px;"
onclick="parent.imagePreviewDialog(this.src);">
</notempty>
</td>
</tr>
<tr>
<th>身份证反面</th>
<td><img src="{:cmf_get_image_url($data.img_back)}" alt=""></td>
<td>
<notempty name="$data.img_back">
<img src="{:cmf_get_image_preview_url($data.img_back)}"
style="height:36px;width: 36px;"
onclick="parent.imagePreviewDialog(this.src);">
</notempty>
</td>
</tr>
</table>
<div class="form-group">
... ...
... ... @@ -8,7 +8,11 @@
</ul>
<volist name="data_content" id="vo">
<div style="margin-top: 10px;">
<img src="{:cmf_get_image_url($vo.thumbnail)}" class="img-rounded" style="width: 300px;height: 300px;">
<notempty name="$vo.thumbnail">
<img src="{:cmf_get_image_preview_url($vo.thumbnail)}"
style="height:36px;width: 36px;"
onclick="parent.imagePreviewDialog(this.src);">
</notempty>
<h4>书籍:{$vo.book_name}&nbsp;&nbsp;X&nbsp;&nbsp;{$vo.number}本</h4>
<h4>定价:{$vo.pricing}</h4>
<h4>售价:{$vo.price}</h4>
... ...