本文整理汇总了PHP中getStoreJoininImageUrl函数的典型用法代码示例。如果您正苦于以下问题:PHP getStoreJoininImageUrl函数的具体用法?PHP getStoreJoininImageUrl怎么用?PHP getStoreJoininImageUrl使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了getStoreJoininImageUrl函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: getStoreJoininImageUrl
</td>
</tr>
<tr>
<th>身份证号码:</th>
<td><?php
echo $output['joinin_detail']['business_licence_number'];
?>
</td></tr>
<tr>
<th>身份证扫描件:</th>
<td colspan="20"><a nctype="nyroModal" href="<?php
echo getStoreJoininImageUrl($output['joinin_detail']['business_licence_number_electronic']);
?>
"> <img src="<?php
echo getStoreJoininImageUrl($output['joinin_detail']['business_licence_number_electronic']);
?>
" alt="" /> </a></td>
</tr>
</tbody>
</table>
<table border="0" cellpadding="0" cellspacing="0" class="store-joinin">
<thead>
<tr>
<th colspan="2">结算(支付宝)账号信息:</th>
</tr>
</thead>
<tbody>
<tr>
开发者ID:Maplecms,项目名称:shopnc-api,代码行数:31,代码来源:store_joinin_c2c_apply.pay.php
示例2: getStoreJoininImageUrl
<tr>
<th>纳税人识别号:</th>
<td><input type="text" class="txt w300" name="taxpayer_id" value="<?php
echo $output['joinin_detail']['taxpayer_id'];
?>
"></td>
</tr>
<tr>
<th>税务登记证号<br />
电子版:</th>
<td>
<a nctype="nyroModal" href="<?php
echo getStoreJoininImageUrl($output['joinin_detail']['tax_registration_certificate_electronic']);
?>
"> <img src="<?php
echo getStoreJoininImageUrl($output['joinin_detail']['tax_registration_certificate_electronic']);
?>
" alt="" /> </a>
<input type="file" name="tax_registration_certificate_electronic">
</td>
</tr>
</tbody>
</table>
<div><a id="btn_fail" class="btn" href="JavaScript:void(0);"><span><?php
echo $lang['nc_submit'];
?>
</span></a></div>
</form>
</div>
</div>
<script type="text/javascript" src="<?php
开发者ID:qqq232575,项目名称:shopx,代码行数:31,代码来源:store.edit.php
示例3: getStoreJoininImageUrl
<?php
}
?>
</tbody>
</table></td>
</tr>
<?php
if (in_array(intval($output['joinin_detail']['joinin_state']), array(STORE_JOIN_STATE_PAY, STORE_JOIN_STATE_FINAL))) {
?>
<tr>
<th>付款凭证:</th>
<td><a nctype="nyroModal" href="<?php
echo getStoreJoininImageUrl($output['joinin_detail']['paying_money_certificate']);
?>
"> <img src="<?php
echo getStoreJoininImageUrl($output['joinin_detail']['paying_money_certificate']);
?>
" alt="" /> </a></td>
</tr>
<tr>
<th>付款凭证说明:</th>
<td><?php
echo $output['joinin_detail']['paying_money_certificate_explain'];
?>
</td>
</tr>
<?php
}
?>
<?php
if (in_array(intval($output['joinin_detail']['joinin_state']), array(STORE_JOIN_STATE_NEW, STORE_JOIN_STATE_PAY))) {
开发者ID:uwitec,项目名称:xbshop,代码行数:31,代码来源:store_joinin.detail.php
示例4: getStoreJoininImageUrl
</tr>
<tr>
<th>开户银行所在地:</th>
<td colspan="20"><?php
echo $output['joinin_detail']['bank_address'];
?>
</td>
</tr>
<tr>
<th>开户银行许可证<br/>
电子版:</th>
<td colspan="20"><a nctype="nyroModal" href="<?php
echo getStoreJoininImageUrl($output['joinin_detail']['bank_licence_electronic']);
?>
"> <img src="<?php
echo getStoreJoininImageUrl($output['joinin_detail']['bank_licence_electronic']);
?>
" alt="" /> </a></td>
</tr>
</tbody>
</table>
<form id="form_paying_money_certificate" action="index.php?act=store_joinin&op=pay_save" method="post" enctype="multipart/form-data">
<input id="verify_type" name="verify_type" type="hidden" />
<input name="member_id" type="hidden" value="<?php
echo $output['joinin_detail']['member_id'];
?>
" />
<table border="0" cellpadding="0" cellspacing="0" class="store-joinin">
<thead>
开发者ID:lehman3087,项目名称:wanhaoshop,代码行数:31,代码来源:decoration_joinin_apply.pay.php
示例5: date
<?php
if ($val['re_start_time'] != '') {
?>
<?php
echo date('Y-m-d', $val['re_start_time']) . ' ~ ' . date('Y-m-d', $val['re_end_time']);
?>
<?php
}
?>
</td>
<td>
<?php
if ($val['re_pay_cert'] != '') {
?>
<a href="<?php
echo getStoreJoininImageUrl($val['re_pay_cert']);
?>
" target="_blank">查看</a>
<?php
}
?>
</td>
<td><?php
echo str_replace(array('0', '1', '2'), array('待付款', '待审核', '通过审核'), $val['re_state']);
?>
</td>
<td class="nscs-table-handle">
<?php
if ($val['re_state'] == '0') {
?>
<span><a href="javascript:void(0)" class="btn-red" onclick="ajax_get_confirm('<?php
开发者ID:uwitec,项目名称:xbshop,代码行数:31,代码来源:store_reopen.index.php
注:本文中的getStoreJoininImageUrl函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论