49 lines
1.4 KiB
HTML
49 lines
1.4 KiB
HTML
<h4 align="center">Мои заявления</h4>
|
|
{if isset($user.statuses[0])}
|
|
{$out}
|
|
|
|
<script type="text/javascript">
|
|
/* $(document).ready(function(){
|
|
$(".faddfile").click(function(){
|
|
var title=$(this).parent().parent().find("label").html();
|
|
var name=$(this).parent().parent().find("input").attr("name");
|
|
console.log(title+"-"+name);
|
|
$(this).closest(".mf_item").after('<div class="control-group mf_item"><label class="control-label span4">Еще документ: </label><div class="controls span6"><input type="file" class="span12" name="'+name+'" /></div><div class="controls span2"></div></div>');
|
|
return false;
|
|
});
|
|
}); */
|
|
|
|
$(document).ready(function(){
|
|
$(".edit_my_order").click(function(){
|
|
var id = $(this).data("id");
|
|
$(".content_this_my_order").html(id);
|
|
|
|
$.ajax({
|
|
url: '/json.php',dataType:'json',type:'POST',async:false,data:'edit_my_order='+id,
|
|
success: function(data){
|
|
$(".content_this_my_order").html(data.html);
|
|
|
|
$(".my_order_table").css("display", "none");
|
|
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
//кнопка редактирования отдельного заявления (своего!)
|
|
$(".edit_mhelp").click(function(){
|
|
alert("12222");
|
|
/*$.ajax({
|
|
url: '/json.php', dataType: 'json', type: 'POST', async: false, data: 'edit_mhelp',
|
|
succes: function(){
|
|
alert("123");
|
|
}
|
|
});*/
|
|
});
|
|
|
|
|
|
});
|
|
</script>
|
|
{else}
|
|
<p align="center">Доступа нет!</p>
|
|
{/if} |