|
@@ -76,6 +76,7 @@
|
|
|
<th>学校</th>
|
|
|
<th>专业类别</th>
|
|
|
<th>具体专业</th>
|
|
|
+ <th>简历是否下载</th>
|
|
|
<th>操作</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
@@ -104,6 +105,9 @@
|
|
|
<td>
|
|
|
{{ $v->pro_text }}
|
|
|
</td>
|
|
|
+ <td>
|
|
|
+ {{ $v->status }}
|
|
|
+ </td>
|
|
|
<td>
|
|
|
|
|
|
<button class='btn btn-primary btn-xs fetch_word' data-aid="{{$v->id}}" style="margin-bottom: 10px">下载简历</button>
|
|
@@ -210,15 +214,15 @@
|
|
|
health($(this).data('param'),$(this).data("type"));
|
|
|
});
|
|
|
$(document).off("click",'.fetch_word').on('click','.fetch_word',function () {
|
|
|
- var recruit_id = $(this).attr('data-rid'),appoint_id = $(this).attr('data-aid');
|
|
|
+ var appoint_id = $(this).attr('data-aid');
|
|
|
|
|
|
var qsDialog = $(this).dialog({
|
|
|
- title: 'word简历生成',
|
|
|
+ title: 'word简历下载',
|
|
|
loading: true,
|
|
|
showFooter: false,
|
|
|
yes: function() {
|
|
|
$('.J_btnyes').val('发送中...');
|
|
|
- $.post("{{ route('recruit.fetchword') }}", {_token:'{{ csrf_token() }}',recruit_id:recruit_id,appoint_id:appoint_id}, function(result) {
|
|
|
+ $.post("{{ route('Health.qjwjStatus') }}", {_token:'{{ csrf_token() }}',id:appoint_id}, function(result) {
|
|
|
if (result.status == 1) {
|
|
|
disapperTooltip('success', result.msg);
|
|
|
window.location.href = result.url;
|
|
@@ -234,7 +238,7 @@
|
|
|
}
|
|
|
});
|
|
|
qsDialog.setCloseDialog(false);
|
|
|
- qsDialog.setContent("重新生成会覆盖原有简历,请确认?");
|
|
|
+ qsDialog.setContent("即将下载简历,请确认?");
|
|
|
qsDialog.showFooter(true);
|
|
|
});
|
|
|
$("#ButtonAudit").click(function() {
|