send_message_low_profile_percent.blade.php
2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<div id="ask_percent" class="modal modal_bg">
<div style="display:none">
<!-- Отправитель сообщения: -->
<input type="hidden" id="modal_user_id" name="_user_id" class="input" placeholder="user_id" value="">
<!-- Получатель сообщения: -->
<input type="hidden" id="modal_to_user_id" name="_to_user_id" class="input" placeholder="to_user_id" value="">
<!-- Вакансия: -->
<input type="hidden" id="modal_vacancy" name="_vacancy" class="input" placeholder="vacancy" value="">
</div>
<div class="modal__body">
<div class="modal__title">Вы откликнулись на вакансию <span id="vac_name"></span></div>
<div class="modal__text">Ваше резюме заполнено менее чем на 50%</div>
<div class="modal__text">Вы хотите дополнить ваше резюме?</div>
<div class="modal__buttons">
<a href="{{ route('worker.cabinet') }}" class="button main__employer-page-two-item-button">Да</a>
<button type="button"
data-fancybox
data-src="#send2"
{{--data-vacancy="{{ $Q->id }}"
data-uid="{{ $uid }}"
data-tuid="{{ $Q->employer->user_id }}"--}}
data-options='{"touch":false,"autoFocus":false}'
class="button main__employer-page-two-item-button js_send_wp_button">Нет</button>
</div>
</div>
</div>
<script>
$(document).on('change', '#modal_user_id', function () {
$('.js_send_wp_button').data('uid', $('#modal_user_id').val());
})
$(document).on('change', '#modal_to_user_id', function () {
$('.js_send_wp_button').data('tuid', $('#modal_to_user_id').val());
})
$(document).on('change', '#modal_vacancy', function () {
$('.js_send_wp_button').data('vacancy', $('#modal_vacancy').val());
$.ajax({
url: 'vacancy/'+$('#modal_vacancy').val(),
type: 'GET',
dataType: "json",
success: function (data) {
$('#vac_name').html(data.name)
}
})
})
$(document).on('click', '.js_send_wp_button', function() {
$('#_to_user_id').val($(this).data('tuid'));
$('#_vacancy').val($(this).data('vacancy'));
$('#_user_id').val($(this).data('uid'));
});
</script>