You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

37 lines
2.2 KiB

<!--申请店铺信息--><div class="m mb10">
<table id="detailCategoryQuaTable" class="table mt10 mb10" style="width:700px;">
<thead>
<tr>
<th style="width: 14%;">类目名称</th>
<th style="width: 16%;">资质名称</th>
<th style="width: 40%;">电子版</th>
<th style="width: 170px;">到期日</th>
</tr>
</thead>
<tbody>
{foreach from=$permanent_list item=permanent key=pk}
<tr>
<td>
{$permanent.cat_name}<input type="hidden" value="{$permanent.cat_id}" name="permanentCat_id_{$permanent.cat_id}[]">
</td>
<td>
{$permanent.dt_title}
<input type="hidden" value="{$permanent.dt_id}" name="permanent_title_{$permanent.cat_id}[]">
</td>
<td>
<input name="permanentFile_{$permanent.cat_id}[]" type="file">{if $permanent.permanent_file}&nbsp;&nbsp;<a href="{$permanent.permanent_file}" target="_blank">查看</a>{/if}
</td>
<td>
{if $permanent.permanent_date}
<input id="categoryId_date_{$permanent.dt_id}" class="input jdate narrow" type="text" size="17" readonly value="{$permanent.permanent_date}" name="categoryId_date_{$permanent.cat_id}[]" onclick="return showCalendar(this.id, '%Y-%m-%d %H:%M', '24', false, this.id);">
<label><input type="checkbox" id="categoryId_permanent" value="1" name="categoryId_permanent_{$permanent.cat_id}[]" onClick="get_categoryId_permanent(this, '{$permanent.permanent_date}', {$permanent.dt_id})"> 永久</label>
{else}
<input id="categoryId_date_{$permanent.dt_id}" class="input jdate narrow" type="text" size="17" readonly value="" name="categoryId_date_{$permanent.cat_id}[]" onclick="return showCalendar(this.id, '%Y-%m-%d %H:%M', '24', false, this.id);">
<label><input type="checkbox" id="categoryId_permanent" {if $permanent.cate_title_permanent eq 1}checked{/if} value="1" name="categoryId_permanent_{$pk}" onClick="get_categoryId_permanent(this, '', {$permanent.dt_id})"> 永久</label>
{/if}
</td>
</tr>
{/foreach}
</tbody>
</table>