|
@@ -204,15 +204,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.postStatus') }}", {_token:'{{ csrf_token() }}',id:appoint_id}, function(result) {
|
|
|
if (result.status == 1) {
|
|
|
disapperTooltip('success', result.msg);
|
|
|
window.location.href = result.url;
|
|
@@ -228,7 +228,7 @@
|
|
|
}
|
|
|
});
|
|
|
qsDialog.setCloseDialog(false);
|
|
|
- qsDialog.setContent("重新生成会覆盖原有简历,请确认?");
|
|
|
+ qsDialog.setContent("即将下载简历,请确认?");
|
|
|
qsDialog.showFooter(true);
|
|
|
});
|
|
|
$("#ButtonAudit").click(function() {
|