| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- {extend name="layout/content"}
- {block name="content"}
- <style type="text/css">
- .spacing {
- margin-bottom: 10px;
- padding-right:4px;
- padding-left: 4px;
- }
- #talentInfoForm label {
- font-size: xx-small;
- }
- .imgs li{
- list-style: none;
- float: left;
- border: 1px solid #d8d1d1;
- text-align: center;
- height: 30px;
- }
- .layui-layer-btn .layui-layer-btn1 {
- border-color: #009688;
- background-color: #009688;
- color: #fff;
- }
- #fileList li{width:80px;height:80px;float:left;margin:10px;overflow:hidden;}
- #fileList li img{width:80px;}
- </style>
- <div class="ibox float-e-margins">
- <div class="ibox-content">
- <div class="form-horizontal">
- <div class="row">
- <div class="col-sm-12" >
- <div class="tabs-container" >
- <ul class="nav nav-tabs">
- <li class="" style="float: right;">
- <button type="button" class="btn btn-sm btn-primary " onclick="TalentQuitInfoDlg.download()" >
- <i class="fa fa-download"></i> 打包下载
- </button>
- </li>
- </ul>
- </div>
- <div class="tab-content">
- <div id="tab-1" class="tab-pane active">
- <div class="panel-body" >
- <div class="panel panel-default">
- <div class="panel-heading" onclick="$(this).next().toggle()">基础信息</div>
- <div class="panel-body">
- <form id="talentQuitForm">
- <div class="col-sm-12 form-group-sm">
- <input type="hidden" id="id" name="id" value="{$row.id}"/>
- <input type="hidden" id="type" name="type" value="{$row.type}"/>
- <input type="hidden" id="checkState" name="checkState" value="{$row.checkState}"/>
- <input type="hidden" id="enterpriseId" name="enterpriseId" value="{$row.enterpriseId}"/>
- <input type="hidden" id="talentId" name="talentId" value="{$row.talentId}"/>
- <input type="hidden" id="year" name="year" value="{$row.year}">
- <div class="rowGroup col-sm-12">
- <label class="col-sm-2 control-label spacing">
- {switch name="row.type"}
- {case value="5"}
- 医院名称
- {/case}
- {case value="6"}
- 学校名称
- {/case}
- {default/}
- 企业/单位名称
- {/switch}
- </label>
- <div class="col-sm-6 spacing">
- <input class="form-control" id="name" name="name" readonly="readonly" value="{$row.name}">
- </div>
- </div>
- <div class="rowGroup col-sm-12">
- <label class="col-sm-2 control-label spacing">账号</label>
- <div class="col-sm-6 spacing">
- <input class="form-control" id="username" readonly="readonly" name="username" value="{$row.username}"/>
- </div>
- </div>
- <div class="rowGroup col-sm-12">
- <label class="col-sm-2 control-label spacing">证件号码</label>
- <div class="col-sm-6 spacing">
- <input class="form-control" id="idCard" readonly="readonly" name="idCard" value="{$row.idCard}"/>
- </div>
- </div>
- <div class="rowGroup col-sm-12">
- <label class="col-sm-2 control-label spacing">注销原因</label>
- <div class="col-sm-6 spacing">
- <textarea class="form-control" id="reason" readonly="readonly" name="reason" rows="5">{$row.reason}</textarea>
- </div>
- </div>
- <div class="rowGroup col-sm-12">
- <label class="col-sm-2 control-label spacing">附件</label>
- <div class="col-sm-6 spacing" id="fileList">
- <ul>
- {volist name="row.files" id="file"}
- <li>
- {if condition="strtoupper($file['ext']) eq 'PDF'"}
- <img src="/static/img/Pdf.png" onclick="Feng.showPdf('{$file.path|getStoragePath}');"/>
- {else/}
- {if condition="in_array(strtoupper($file['ext']),['XLS','XLSX'])"}
- <img src="/static/img/File.png" onclick="Feng.showExcel('{$file.path|getStoragePath}');"/>
- {else/}
- <img src="{$file.path|getStoragePath}" onclick="Feng.showImg(this);"/>
- {/if}
- {/if}
- </li>
- {/volist}
- </ul>
- </div>
- </div>
- </div>
- </form>
- </div>
- </div>
- <div class="panel panel-default">
- <div class="panel-heading" onclick="$(this).next().toggle()">日志</div>
- <table id="logTable">
- </table>
- </div>
- </div>
- </div>
- <div id="tab-2" class="tab-pane ">
- <table id="fileTable" class="table-condensed" style="table-layout: fixed!important;" data-mobile-responsive="true" data-click-to-select="true">
- <thead>
- <tr>
- <th data-field="selectItem" data-checkbox="true"></th>
- </tr>
- </thead>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script type="text/javascript">
- document.write('<script src="/static/modular/enterprise/closeAccountRecord/closeAccount_info.js?v=' + (new Date()).getTime() + '"><\/script>');
- </script>
- {/block}
|