parent
91109b07bc
commit
c605a11778
@ -0,0 +1,148 @@
|
|||||||
|
$(document).on('turbolinks:load', function() {
|
||||||
|
if ($('body.cooperative-competitions-index-page').length > 0) {
|
||||||
|
$('.modal.cooperative-upload-file-modal').on('upload:success', function(e, data){
|
||||||
|
var $imageElement = $('.competition-image-' + data.source_id);
|
||||||
|
$imageElement.attr('src', data.url);
|
||||||
|
$imageElement.show();
|
||||||
|
$imageElement.next().html('重新上传');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
$(".cooperative-competition-list-form").on("change", '.competitions-hot-select', function () {
|
||||||
|
var s_value = $(this).get(0).checked ? 1 : 0;
|
||||||
|
var json = {};
|
||||||
|
json["hot"] = s_value;
|
||||||
|
$.ajax({
|
||||||
|
url: "/cooperative/competitions/hot_setting",
|
||||||
|
type: "POST",
|
||||||
|
dataType:'json',
|
||||||
|
data: json,
|
||||||
|
success: function(){
|
||||||
|
$.notify({ message: '操作成功' });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// ============== 新增竞赛 ===============
|
||||||
|
var $modal = $('.modal.cooperative-create-competition-modal');
|
||||||
|
var $form = $modal.find('form.cooperative-create-competition-form');
|
||||||
|
var $competitionNameInput = $form.find('input[name="competition_name"]');
|
||||||
|
|
||||||
|
$form.validate({
|
||||||
|
errorElement: 'span',
|
||||||
|
errorClass: 'danger text-danger',
|
||||||
|
rules: {
|
||||||
|
competition_name: {
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// modal ready fire
|
||||||
|
$modal.on('show.bs.modal', function () {
|
||||||
|
$competitionNameInput.val('');
|
||||||
|
});
|
||||||
|
|
||||||
|
$modal.on('click', '.submit-btn', function(){
|
||||||
|
$form.find('.error').html('');
|
||||||
|
|
||||||
|
if ($form.valid()) {
|
||||||
|
var url = $form.data('url');
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
method: 'POST',
|
||||||
|
dataType: 'json',
|
||||||
|
url: url,
|
||||||
|
data: $form.serialize(),
|
||||||
|
success: function(){
|
||||||
|
$.notify({ message: '创建成功' });
|
||||||
|
$modal.modal('hide');
|
||||||
|
|
||||||
|
setTimeout(function(){
|
||||||
|
window.location.reload();
|
||||||
|
}, 500);
|
||||||
|
},
|
||||||
|
error: function(res){
|
||||||
|
var data = res.responseJSON;
|
||||||
|
$form.find('.error').html(data.message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 导入学生
|
||||||
|
var $importScoreModal = $('.modal.cooperative-import-competition-score-modal');
|
||||||
|
var $importScoreForm = $importScoreModal.find('form.cooperative-import-competition-score-form');
|
||||||
|
var $competitionIdInput = $importScoreForm.find('input[name="competition_id"]');
|
||||||
|
|
||||||
|
$importScoreModal.on('show.bs.modal', function(event){
|
||||||
|
resetFileInputFunc($importScoreModal.find('.upload-file-input'));
|
||||||
|
$importScoreModal.find('.file-names').html('选择文件');
|
||||||
|
$importScoreModal.find('.upload-file-input').trigger('click');
|
||||||
|
|
||||||
|
var $link = $(event.relatedTarget);
|
||||||
|
var competitionId = $link.data('competition-id');
|
||||||
|
$competitionIdInput.val(competitionId);
|
||||||
|
});
|
||||||
|
|
||||||
|
$importScoreModal.on('change', '.upload-file-input', function(e){
|
||||||
|
var file = $(this)[0].files[0];
|
||||||
|
$importScoreModal.find('.file-names').html(file ? file.name : '请选择文件');
|
||||||
|
});
|
||||||
|
|
||||||
|
var importUserFormValid = function(){
|
||||||
|
if($importScoreForm.find('input[name="file"]').val() == undefined || $importScoreForm.find('input[name="file"]').val().length == 0){
|
||||||
|
$importScoreForm.find('.error').html('请选择文件');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
|
var buildResultMessage = function(data){
|
||||||
|
var messageHtml = "<div>导入结果:成功" + data.success + "条,失败"+ data.fail.length + "条</div>";
|
||||||
|
|
||||||
|
if(data.fail.length > 0){
|
||||||
|
messageHtml += '<table class="table"><thead class="thead-light"><tr><th>数据</th><th>失败原因</th></tr></thead><tbody>';
|
||||||
|
|
||||||
|
data.fail.forEach(function(item){
|
||||||
|
messageHtml += '<tr><td>' + item.data + '</td><td>' + item.message + '</td></tr>';
|
||||||
|
});
|
||||||
|
|
||||||
|
messageHtml += '</tbody></table>'
|
||||||
|
}
|
||||||
|
|
||||||
|
return messageHtml;
|
||||||
|
};
|
||||||
|
|
||||||
|
$importScoreModal.on('click', '.submit-btn', function(){
|
||||||
|
$importScoreForm.find('.error').html('');
|
||||||
|
|
||||||
|
if (importUserFormValid()) {
|
||||||
|
$('body').mLoading({ text: '正在导入...' });
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
method: 'POST',
|
||||||
|
dataType: 'json',
|
||||||
|
url: '/cooperative/import_competition_scores',
|
||||||
|
data: new FormData($importScoreForm[0]),
|
||||||
|
processData: false,
|
||||||
|
contentType: false,
|
||||||
|
success: function(data){
|
||||||
|
$('body').mLoading('destroy');
|
||||||
|
$importScoreModal.modal('hide');
|
||||||
|
|
||||||
|
showMessageModal(buildResultMessage(data), function(){
|
||||||
|
window.location.reload();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
error: function(res){
|
||||||
|
$('body').mLoading('destroy');
|
||||||
|
var data = res.responseJSON;
|
||||||
|
$importScoreForm.find('.error').html(data.message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
@ -0,0 +1,9 @@
|
|||||||
|
$(document).on('turbolinks:load', function() {
|
||||||
|
if($('body.cooperative-enroll-lists-index-page').length > 0){
|
||||||
|
var search_form = $(".search-form");
|
||||||
|
//导出
|
||||||
|
$(".competition-enroll-list-form").on("click","#enroll-lists-export",function () {
|
||||||
|
window.location.href = "/cooperative/competitions/"+$(this).attr("data-competition-id")+"/enroll_lists/export.xlsx?" + search_form.serialize();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,116 @@
|
|||||||
|
.cooperative-competition-settings-index-page {
|
||||||
|
.competition-mode-container {
|
||||||
|
.row {
|
||||||
|
height: 35px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.des-row {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-control {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
//.mode-input {
|
||||||
|
// input {
|
||||||
|
// width: 40%;
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
}
|
||||||
|
|
||||||
|
.col-md-label{
|
||||||
|
-webkit-box-flex: 0;
|
||||||
|
flex: 0 0 10%;
|
||||||
|
max-width: 10%;
|
||||||
|
min-width: 30px;
|
||||||
|
padding-right: 15px;
|
||||||
|
padding-left: 15px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.col-md-label-s{
|
||||||
|
-webkit-box-flex: 0;
|
||||||
|
flex: 0 0 30px;
|
||||||
|
padding-right: 15px;
|
||||||
|
padding-left: 15px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.setBtn_s{
|
||||||
|
height: 35px;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sponsor_label{
|
||||||
|
border:1px solid #4CACFF;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: rgba(76,172,255,0.3);
|
||||||
|
color: #333;
|
||||||
|
padding:0px 4px;
|
||||||
|
height: 30px;
|
||||||
|
line-height: 30px;
|
||||||
|
float: left;
|
||||||
|
margin: 4px 5px;
|
||||||
|
|
||||||
|
span{
|
||||||
|
display: block;
|
||||||
|
float: left;
|
||||||
|
height: 28px;
|
||||||
|
line-height: 28px;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a{
|
||||||
|
font-size: 18px;
|
||||||
|
float: left;
|
||||||
|
height: 28px;
|
||||||
|
line-height: 28px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.large_panel{
|
||||||
|
padding:0px 15px;
|
||||||
|
|
||||||
|
.large_panel_part{
|
||||||
|
border-top: 1px solid #eaeaea;
|
||||||
|
}
|
||||||
|
.large_panel_part:first-child{
|
||||||
|
border:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.large_panel_part >.row ,.small_panel >.row{
|
||||||
|
border-bottom: 1px solid #eaeaea;
|
||||||
|
padding:20px 0px;
|
||||||
|
}
|
||||||
|
.small_panel{
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
.row:last-child{
|
||||||
|
border:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.task_Input_div:nth-child(3n-2) > span.col-4{
|
||||||
|
flex: 0 0 81px;
|
||||||
|
max-width: 81px;
|
||||||
|
}
|
||||||
|
.task_Input_div:nth-child(3n-2){
|
||||||
|
flex: 0 0 50%;
|
||||||
|
max-width: 50%;
|
||||||
|
}
|
||||||
|
.task_Input_div:nth-child(3n-1){
|
||||||
|
flex: 0 0 25%;
|
||||||
|
max-width: 25%;
|
||||||
|
}
|
||||||
|
.task_Input_div:nth-child(3n){
|
||||||
|
flex: 0 0 25%;
|
||||||
|
max-width: 25%;
|
||||||
|
}
|
||||||
|
.task_Input_div:nth-child(3n) > span.col-4{
|
||||||
|
flex: 0 0 33.3%;
|
||||||
|
max-width: 33.3%;
|
||||||
|
}
|
||||||
|
.task_Input_div:nth-child(3n) > div.col-6{
|
||||||
|
flex: 0 0 50%;
|
||||||
|
max-width: 50%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,51 @@
|
|||||||
|
class Cooperative::CompetitionPrizeUsersController < Cooperative::BaseController
|
||||||
|
def index
|
||||||
|
@competition = current_competition
|
||||||
|
|
||||||
|
prize_users = Admins::CompetitionPrizeUserQuery.call(params.merge(competition_id: current_competition.id))
|
||||||
|
include_class = [:competition_team, :competition_prize, :approver,
|
||||||
|
user: [:process_real_name_apply, :process_professional_apply, user_extension: :school]]
|
||||||
|
@prize_users = paginate(prize_users.preload(include_class))
|
||||||
|
|
||||||
|
respond_to do |format|
|
||||||
|
format.js
|
||||||
|
format.html
|
||||||
|
format.xlsx do
|
||||||
|
@all_prize_users = prize_users
|
||||||
|
filename = "#{@competition.name}竞赛获奖人信息列表_#{Time.current.strftime('%Y%m%d%H%M%S')}.xlsx"
|
||||||
|
render xlsx: 'index', filename: filename
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def create
|
||||||
|
Admins::CreateCompetitionPrizeUsersService.call(current_competition)
|
||||||
|
render_ok
|
||||||
|
rescue ApplicationService::Error => ex
|
||||||
|
render_error(ex.message)
|
||||||
|
end
|
||||||
|
|
||||||
|
def approve
|
||||||
|
Admins::ApproveCompetitionPrizeUserService.call(current_prize_user, current_user)
|
||||||
|
@prize_user = current_prize_user
|
||||||
|
rescue ApplicationService::Error => ex
|
||||||
|
render_js_error(ex.message, type: :notify)
|
||||||
|
end
|
||||||
|
|
||||||
|
def unapprove
|
||||||
|
Admins::UnapproveCompetitionPrizeUserService.call(current_prize_user, current_user)
|
||||||
|
@prize_user = current_prize_user
|
||||||
|
rescue ApplicationService::Error => ex
|
||||||
|
render_js_error(ex.message, type: :notify)
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def current_prize_user
|
||||||
|
@_current_prize_user ||= current_competition.competition_prize_users.find(params[:id])
|
||||||
|
end
|
||||||
|
|
||||||
|
def current_competition
|
||||||
|
@_current_competition ||= current_laboratory.competitions.find(params[:competition_id])
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,43 @@
|
|||||||
|
class Cooperative::CompetitionPrizesController < Cooperative::BaseController
|
||||||
|
def index
|
||||||
|
@competition = current_competition
|
||||||
|
end
|
||||||
|
|
||||||
|
def new
|
||||||
|
@prize = current_competition.competition_prizes.new
|
||||||
|
end
|
||||||
|
|
||||||
|
def create
|
||||||
|
@prize = current_competition.competition_prizes.create!(save_params)
|
||||||
|
render_ok
|
||||||
|
end
|
||||||
|
|
||||||
|
def edit
|
||||||
|
@prize = current_competition_prize
|
||||||
|
end
|
||||||
|
|
||||||
|
def update
|
||||||
|
current_competition_prize.update!(save_params)
|
||||||
|
render_ok
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy
|
||||||
|
current_competition_prize.destroy!
|
||||||
|
|
||||||
|
render_delete_success
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def current_competition_prize
|
||||||
|
@_current_competition_prize ||= current_competition.competition_prizes.find(params[:id])
|
||||||
|
end
|
||||||
|
|
||||||
|
def current_competition
|
||||||
|
@_current_competition ||= current_laboratory.competitions.find(params[:competition_id])
|
||||||
|
end
|
||||||
|
|
||||||
|
def save_params
|
||||||
|
params.require(:competition_prize).permit(:name, :category, :num)
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,33 @@
|
|||||||
|
class Cooperative::CompetitionSettingsController < Cooperative::BaseController
|
||||||
|
def index
|
||||||
|
@competition = current_competition
|
||||||
|
end
|
||||||
|
|
||||||
|
def basic_setting
|
||||||
|
Admins::CompetitionBasicSettingService.call(current_competition, basic_form_params)
|
||||||
|
render_ok
|
||||||
|
end
|
||||||
|
|
||||||
|
def nav_setting
|
||||||
|
Admins::CompetitionNavSettingService.call(current_competition, nav_form_params)
|
||||||
|
render_ok
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def current_competition
|
||||||
|
@_current_competition ||= current_laboratory.competitions.find(params[:competition_id])
|
||||||
|
end
|
||||||
|
|
||||||
|
def basic_form_params
|
||||||
|
params.permit(:identifier, :name, :sub_title, :start_time, :end_time, :mode,
|
||||||
|
:identifier, :bonus, :awards_count, :description, :course_id, :teach_start_time,
|
||||||
|
:teach_end_time, sponsor_schools: [], region_schools: [], manager_ids: [])
|
||||||
|
end
|
||||||
|
|
||||||
|
def nav_form_params
|
||||||
|
params.permit(:enroll_end_time,
|
||||||
|
competition_staffs: %i[category minimum maximum mutiple_limited],
|
||||||
|
navbar: %i[module_type module_id name hidden position url])
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,57 @@
|
|||||||
|
class Cooperative::CompetitionsController < Cooperative::BaseController
|
||||||
|
before_action :find_competition, except: [:index]
|
||||||
|
|
||||||
|
def index
|
||||||
|
# params[:sort_by] = params[:sort_by].presence || 'created_at'
|
||||||
|
# params[:sort_direction] = params[:sort_direction].presence || 'desc'
|
||||||
|
@competitions = current_laboratory.competitions.order("created_at desc")
|
||||||
|
@params_page = params[:page] || 1
|
||||||
|
@competitions = paginate @competitions
|
||||||
|
ids = @competitions.map(&:id)
|
||||||
|
@member_count_map = TeamMember.where(competition_id: ids).group(:competition_id).count
|
||||||
|
|
||||||
|
@competition_hot = ModuleSetting.exists?(module_type: "Competition", property: "hot")
|
||||||
|
respond_to do |format|
|
||||||
|
format.js
|
||||||
|
format.html
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def create
|
||||||
|
name = params[:competition_name].to_s.strip
|
||||||
|
Competition.create!(name: name)
|
||||||
|
render_ok
|
||||||
|
end
|
||||||
|
|
||||||
|
def hot_setting
|
||||||
|
if params[:hot].to_i == 1 && !ModuleSetting.exists?(module_type: "Competition", property: "hot")
|
||||||
|
ModuleSetting.create!(module_type: "Competition", property: "hot")
|
||||||
|
elsif params[:hot].to_i == 0 && ModuleSetting.exists?(module_type: "Competition", property: "hot")
|
||||||
|
ModuleSetting.where(module_type: "Competition", property: "hot").destroy_all
|
||||||
|
end
|
||||||
|
render_ok
|
||||||
|
end
|
||||||
|
|
||||||
|
def publish
|
||||||
|
@competition.update_attributes!(published_at: Time.now)
|
||||||
|
end
|
||||||
|
|
||||||
|
def unpublish
|
||||||
|
@competition.update_attributes!(published_at: nil)
|
||||||
|
end
|
||||||
|
|
||||||
|
def online_switch
|
||||||
|
if @competition.status
|
||||||
|
@competition.update_attributes!(status: false)
|
||||||
|
else
|
||||||
|
@competition.update_attributes!(status: true, online_time: Time.now)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def find_competition
|
||||||
|
@competition = current_laboratory.competitions.find_by(id: params[:id])
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
@ -0,0 +1,33 @@
|
|||||||
|
class Cooperative::EnrollListsController < Cooperative::BaseController
|
||||||
|
|
||||||
|
def index
|
||||||
|
@competition = current_competition
|
||||||
|
default_sort('created_at', 'desc')
|
||||||
|
enroll_lists = Admins::CompetitionEnrollListQuery.call(@competition, params)
|
||||||
|
|
||||||
|
@params_page = params[:page] || 1
|
||||||
|
@enroll_lists = paginate enroll_lists.preload(competition_team: [:user, :teachers], user: { user_extension: :school })
|
||||||
|
@personal = @competition.personal?
|
||||||
|
|
||||||
|
respond_to do |format|
|
||||||
|
format.js
|
||||||
|
format.html
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def export
|
||||||
|
default_sort('created_at', 'desc')
|
||||||
|
@enroll_lists = Admins::CompetitionEnrollListQuery.call(current_competition, params)
|
||||||
|
@enroll_lists = @enroll_lists.preload(competition_team: [:user, :teachers], user: { user_extension: :school })
|
||||||
|
@competition_scores = current_competition.competition_scores.where(competition_stage_id: 0).order("score desc, cost_time desc").pluck(:competition_team_id)
|
||||||
|
@personal = current_competition.personal?
|
||||||
|
filename = ["#{current_competition.name}竞赛报名列表", Time.zone.now.strftime('%Y-%m-%d%H:%M:%S')].join('-') << '.xlsx'
|
||||||
|
render xlsx: 'export', filename: filename
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
def current_competition
|
||||||
|
@_current_competition ||= current_laboratory.competitions.find(params[:competition_id])
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
@ -0,0 +1 @@
|
|||||||
|
$('.competition-prize-user-list-container .competition-prize-user-item-<%= @prize_user.id %>').html("<%= j( render partial: 'cooperative/competition_prize_users/shared/tr', locals: { prize_user: @prize_user } ) %>");
|
@ -0,0 +1,64 @@
|
|||||||
|
<%
|
||||||
|
define_breadcrumbs do
|
||||||
|
add_breadcrumb('竞赛列表', cooperative_competitions_path)
|
||||||
|
add_breadcrumb(@competition.name)
|
||||||
|
end
|
||||||
|
%>
|
||||||
|
|
||||||
|
<div class="box search-form-container flex-column mb-0 pb-0 competition-prize-user-form">
|
||||||
|
<ul class="nav nav-tabs w-100 search-form-tabs">
|
||||||
|
<li class="nav-item">
|
||||||
|
<%= link_to '报名列表', cooperative_competition_enroll_lists_path(@competition), class: "nav-link search-form-tab" %>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<%= link_to '获奖证书审批', cooperative_competition_competition_prize_users_path(@competition), class: "nav-link search-form-tab active" %>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="d-flex">
|
||||||
|
<%= form_tag(cooperative_competition_competition_prize_users_path(unsafe_params), method: :get, class: 'search-form mt-3 flex-1 d-flex align-items-end', remote: true) do %>
|
||||||
|
<div class="form-group mb-0 mr-3">
|
||||||
|
<label for="status">奖项:</label>
|
||||||
|
<% prize_options = [['不限', '']] + @competition.competition_prizes.map{ |p| [p.name, p.id] } %>
|
||||||
|
<%= select_tag(:prize_id, options_for_select(prize_options), class: 'form-control') %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<% auth_options = [['不限', ''], %w(未认证 not_authed), %w(待认证 authing), %w(已认证 authed)] %>
|
||||||
|
<div class="form-group mb-0 mr-3">
|
||||||
|
<label for="status">实名认证状态:</label>
|
||||||
|
<%= select_tag(:real_name_auth, options_for_select(auth_options), class: 'form-control') %>
|
||||||
|
</div>
|
||||||
|
<div class="form-group mb-0 mr-3">
|
||||||
|
<label for="status">职业认证状态:</label>
|
||||||
|
<%= select_tag(:professional_auth, options_for_select(auth_options), class: 'form-control') %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group mb-0 mr-3">
|
||||||
|
<label for="status">职业:</label>
|
||||||
|
<%- identity_options = [['不限', ''], %w(教师 0), %w(学生 1)] %>
|
||||||
|
<%= select_tag(:identity, options_for_select(identity_options), class: 'form-control') %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group mb-0 mr-3">
|
||||||
|
<label for="status">审批状态:</label>
|
||||||
|
<%- status_options = [['不限', ''], %w(未审批 pending), %w(已审批 approved)] %>
|
||||||
|
<%= select_tag(:status, options_for_select(status_options), class: 'form-control') %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<%= text_field_tag(:keyword, params[:keyword], class: 'form-control col-sm-2 ml-3', placeholder: '战队/学校名称检索') %>
|
||||||
|
|
||||||
|
<%= submit_tag('搜索', class: 'btn btn-primary ml-3', 'data-disable-with': '搜索中...') %>
|
||||||
|
<%= link_to '清除', cooperative_competition_competition_prize_users_path(@competition), class: "btn btn-default",'data-disable-with': '清除中...' %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<div class="mt-3 d-flex align-items-end">
|
||||||
|
<%= link_to '导出', cooperative_competition_competition_prize_users_path(competition_id: @competition.id, format: :xlsx), class: 'btn btn-primary' %>
|
||||||
|
<%#= javascript_void_link '导出', class: 'btn btn-primary', 'data-url': cooperative_competition_competition_prize_users_path(competition_id: @competition.id, format: :xlsx) %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="box cooperative-list-container competition-prize-user-list-container">
|
||||||
|
<%= render(partial: 'cooperative/competition_prize_users/shared/list', locals: { prize_users: @prize_users }) %>
|
||||||
|
</div>
|
@ -0,0 +1 @@
|
|||||||
|
$('.competition-prize-user-list-container').html("<%= j( render partial: 'cooperative/competition_prize_users/shared/list', locals: { prize_users: @prize_users } ) %>");
|
@ -0,0 +1,33 @@
|
|||||||
|
wb = xlsx_package.workbook
|
||||||
|
|
||||||
|
wb.styles do |s|
|
||||||
|
blue_cell = s.add_style :bg_color => "FAEBDC", :sz => 10,:height => 25,:b => true, :border => { :style => :thin, :color =>"000000" },:alignment => {wrap_text: true,:horizontal => :center,:vertical => :center}
|
||||||
|
wb.add_worksheet(name: "#{@competition.name}证书审批列表") do |sheet|
|
||||||
|
sheet.add_row %w(序号 排名 奖项 战队ID 战队名称 姓名 职业 学号 学校名称 学院名称 地区 实名认证 职业认证 手机号码 队长 签领/开户行及银行卡号 审批时间 审批人), :height => 25,:style => blue_cell
|
||||||
|
|
||||||
|
@all_prize_users.each_with_index do |prize_user, index|
|
||||||
|
user = prize_user.user
|
||||||
|
data = [
|
||||||
|
index + 1,
|
||||||
|
prize_user.rank,
|
||||||
|
prize_user.competition_prize.name,
|
||||||
|
prize_user.competition_team_id,
|
||||||
|
prize_user.competition_team.name,
|
||||||
|
user.real_name,
|
||||||
|
user.identity,
|
||||||
|
user.student_id,
|
||||||
|
user.school_name,
|
||||||
|
user.department_name,
|
||||||
|
user.location,
|
||||||
|
user.auth_status,
|
||||||
|
user.pro_status,
|
||||||
|
user.phone,
|
||||||
|
prize_user.leader? ? "是" : "-",
|
||||||
|
[prize_user.extra&.[]('bank'), prize_user.extra&.[]('second_bank'), prize_user.extra&.[]('card_no')].compact.join('/'),
|
||||||
|
prize_user.approved_at&.strftime('%Y-%m-%d %H:%M'),
|
||||||
|
prize_user.approver&.real_name
|
||||||
|
]
|
||||||
|
sheet.add_row(data)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,33 @@
|
|||||||
|
<table class="table table-hover text-center competition-prize-user-list-table">
|
||||||
|
<thead class="thead-light">
|
||||||
|
<tr>
|
||||||
|
<th width="6%">奖项</th>
|
||||||
|
<th width="5%">排名</th>
|
||||||
|
<th width="10%" class="text-left">战队名称</th>
|
||||||
|
<th width="8%">真实姓名</th>
|
||||||
|
<th width="5%">职业</th>
|
||||||
|
<th width="8%">学号</th>
|
||||||
|
<th width="10%">单位</th>
|
||||||
|
<th width="5%">实名</th>
|
||||||
|
<th width="5%">职业</th>
|
||||||
|
<th width="5%">手机</th>
|
||||||
|
<th width="5%">队长</th>
|
||||||
|
<th width="10%">审批时间</th>
|
||||||
|
<th width="8%">审批人</th>
|
||||||
|
<th width="10%">操作</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody style="overflow-wrap:break-word;">
|
||||||
|
<% if prize_users.present? %>
|
||||||
|
<% prize_users.each do |prize_user| %>
|
||||||
|
<tr class="competition-prize-user-item-<%= prize_user.id %>">
|
||||||
|
<%= render('cooperative/competition_prize_users/shared/tr', prize_user: prize_user) %>
|
||||||
|
</tr>
|
||||||
|
<% end %>
|
||||||
|
<% else %>
|
||||||
|
<%= render 'cooperative/shared/no_data_for_table' %>
|
||||||
|
<% end %>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<%= render partial: 'cooperative/shared/paginate', locals: { objects: prize_users } %>
|
@ -0,0 +1,35 @@
|
|||||||
|
<%- user = prize_user.user -%>
|
||||||
|
<td><%= prize_user.competition_prize.name %></td>
|
||||||
|
<td><%= prize_user.rank %></td>
|
||||||
|
<td class="text-left"><%= prize_user.competition_team.name %></td>
|
||||||
|
<td><%= user.real_name %></td>
|
||||||
|
<td><%= user.identity %></td>
|
||||||
|
<td><%= user.is_teacher? ? user.user_extension.technical_title : user.user_extension.student_id %></td>
|
||||||
|
<td><%= user.school_name %></td>
|
||||||
|
<td><%= display_auth_state(user.authentication?, user.process_real_name_apply.present?) %></td>
|
||||||
|
<td><%= display_auth_state(user.professional_certification?, user.process_professional_apply.present?) %></td>
|
||||||
|
<td><%= display_auth_state user.phone_binded? %></td>
|
||||||
|
<td><%= display_auth_state prize_user.leader?, error: '' %></td>
|
||||||
|
<td><%= display_text prize_user.approved_at&.strftime('%Y-%m-%d %H:%M') %></td>
|
||||||
|
<td><%= display_text prize_user.approver&.real_name %></td>
|
||||||
|
|
||||||
|
<td class="action-container">
|
||||||
|
<% if prize_user.leader? && prize_user.competition_prize.category == 'bonus' %>
|
||||||
|
<% bank_content = [prize_user.extra&.[]('bank'), prize_user.extra&.[]('second_bank'), prize_user.extra&.[]('card_no')].compact.join('<br>').presence || '无' %>
|
||||||
|
<%= javascript_void_link('查看银行账户', data: { toggle: 'tooltip', title: bank_content.html_safe, html: true, placement: 'left', trigger: 'click' }) %>
|
||||||
|
<% prize_module = prize_user.competition&.competition_modules.find_by(module_type: 'certificate') %>
|
||||||
|
<% if prize_module %>
|
||||||
|
<%= link_to('编辑', EduSetting.get("host_name").to_s + "/competitions/#{prize_user.competition&.identifier}?menu=#{prize_module&.id}&user_id=#{user.id}", target: "_blank") %>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<% if prize_user.pending? %>
|
||||||
|
<%= link_to('审批通过', approve_cooperative_competition_competition_prize_user_path(prize_user.competition, prize_user),
|
||||||
|
data: { confirm: '确认审批通过吗?' },
|
||||||
|
remote: true, method: :post, class: 'approve-action') %>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to('撤销审批', unapprove_cooperative_competition_competition_prize_user_path(prize_user.competition, prize_user),
|
||||||
|
data: { confirm: '确认撤销审批吗?' },
|
||||||
|
remote: true, method: :post, class: 'approve-action') %>
|
||||||
|
<% end %>
|
||||||
|
</td>
|
@ -0,0 +1 @@
|
|||||||
|
$('.competition-prize-user-list-container .competition-prize-user-item-<%= @prize_user.id %>').html("<%= j( render partial: 'cooperative/competition_prize_users/shared/tr', locals: { prize_user: @prize_user } ) %>");
|
@ -0,0 +1,2 @@
|
|||||||
|
$('.cooperative-modal-container').html("<%= j( render partial: 'cooperative/competition_prizes/shared/save_competition_prize_modal', locals: { prize: @prize, title: '编辑奖项', form_method: 'PATCH' } ) %>");
|
||||||
|
$('.modal.cooperative-save-competition-prize-modal').modal('show');
|
@ -0,0 +1 @@
|
|||||||
|
$('#competition-prize-card .competition-prize-table tbody').html("<%= j( render partial: 'cooperative/competition_settings/shared/competition_prizes', locals: { competition: @competition } ) %>");
|
@ -0,0 +1,2 @@
|
|||||||
|
$('.cooperative-modal-container').html("<%= j( render partial: 'cooperative/competition_prizes/shared/save_competition_prize_modal', locals: { prize: @prize, title: '新建奖项', form_method: 'POST' } ) %>");
|
||||||
|
$('.modal.cooperative-save-competition-prize-modal').modal('show');
|
@ -0,0 +1,29 @@
|
|||||||
|
<div class="modal fade cooperative-save-competition-prize-modal" tabindex="-1" role="dialog" aria-hidden="true">
|
||||||
|
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h5 class="modal-title"><%= title ||= '保存奖项设置' %></h5>
|
||||||
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||||
|
<span aria-hidden="true">×</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<%= simple_form_for([:cooperative, prize.competition, prize], data: { form_method: form_method }, html: { class: 'cooperative-save-competition-prize-form' }, defaults: { wrapper_html: { class: 'offset-md-1 col-md-10' } }) do |f| %>
|
||||||
|
|
||||||
|
<%= f.input :name, label: '奖项名称:', placeholder: '请输入奖项名称' %>
|
||||||
|
<%= f.input :num, as: :integer, label: '数量:', placeholder: '请输入数量', input_html: { min: 1 } %>
|
||||||
|
|
||||||
|
<%= f.input :category, label: '奖励类型:' do %>
|
||||||
|
<%= f.select :category, [%w(奖金 bonus), %w(无 unset)], {}, class: 'form-control' %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<div class="error text-danger"></div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">取消</button>
|
||||||
|
<button type="button" class="btn btn-primary submit-btn">确认</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -0,0 +1,27 @@
|
|||||||
|
<% competition.competition_prizes.each_with_index do |prize, index| %>
|
||||||
|
<tr class="competition-prize-item-<%= prize.id %>">
|
||||||
|
<td><%= index + 1 %></td>
|
||||||
|
<td><%= prize.name %></td>
|
||||||
|
<td><%= prize.num %></td>
|
||||||
|
<td><%= prize.category_text %></td>
|
||||||
|
<td>
|
||||||
|
<% member_image_exists = Util::FileManage.exists?(prize, CompetitionPrize.member_suffix) %>
|
||||||
|
<%= image_tag(member_image_exists ? Util::FileManage.source_disk_file_url(prize, CompetitionPrize.member_suffix) : '', height: 60, class: "w-100 preview-image prize-member-image-#{prize.id}", style: member_image_exists ? '' : 'display:none') %>
|
||||||
|
<%= javascript_void_link member_image_exists ? '重新上传' : '上传模板', class: 'action upload-prize-member-image-action', data: { source_id: prize.id, source_type: 'CompetitionPrize', suffix: CompetitionPrize.member_suffix, toggle: 'modal', target: '.cooperative-upload-file-modal' } %>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<% team_image_exists = Util::FileManage.exists?(prize, CompetitionPrize.team_suffix) %>
|
||||||
|
<%= image_tag(team_image_exists ? Util::FileManage.source_disk_file_url(prize, CompetitionPrize.team_suffix) : '', height: 60, class: "w-100 preview-image prize-team-image-#{prize.id}", style: team_image_exists ? '' : 'display:none') %>
|
||||||
|
<%= javascript_void_link team_image_exists ? '重新上传' : '上传模板', class: 'action upload-prize-team-image-action', data: { source_id: prize.id, source_type: 'CompetitionPrize', suffix: CompetitionPrize.team_suffix, toggle: 'modal', target: '.cooperative-upload-file-modal' } %>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<% teacher_image_exists = Util::FileManage.exists?(prize, CompetitionPrize.teacher_suffix) %>
|
||||||
|
<%= image_tag(teacher_image_exists ? Util::FileManage.source_disk_file_url(prize, CompetitionPrize.teacher_suffix) : '', height: 60, class: "w-100 preview-image prize-teacher-image-#{prize.id}", style: teacher_image_exists ? '' : 'display:none') %>
|
||||||
|
<%= javascript_void_link teacher_image_exists ? '重新上传' : '上传模板', class: 'action upload-prize-teacher-image-action', data: { source_id: prize.id, source_type: 'CompetitionPrize', suffix: CompetitionPrize.teacher_suffix, toggle: 'modal', target: '.cooperative-upload-file-modal' } %>
|
||||||
|
</td>
|
||||||
|
<td class="action-container">
|
||||||
|
<%= link_to '编辑', edit_cooperative_competition_competition_prize_path(competition, prize), remote: true, class: 'action edit-competition-prize-action' %>
|
||||||
|
<%= delete_link '删除', cooperative_competition_competition_prize_path(competition, prize, element: ".competition-prize-item-#{prize.id}"), class: 'action delete-competition-prize-action' %>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<% end %>
|
@ -0,0 +1 @@
|
|||||||
|
alert("<%= @message %>");
|
@ -0,0 +1 @@
|
|||||||
|
window.location.reload();
|
@ -0,0 +1,18 @@
|
|||||||
|
<% define_breadcrumbs do %>
|
||||||
|
<% add_breadcrumb('竞赛列表', cooperative_competitions_path) %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="box mb-5 cooperative-competition-list-form">
|
||||||
|
<div class="d-flex align-items-center w-100">
|
||||||
|
<%= javascript_void_link '新增', class: 'btn btn-primary', data: { toggle: 'modal', target: '.cooperative-create-competition-modal' } %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="box cooperative-list-container competitions-list-container">
|
||||||
|
<%= render partial: 'cooperative/competitions/shared/list', locals: { competitions: @competitions } %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<%= render 'cooperative/competitions/shared/create_competition_modal' %>
|
||||||
|
<%= render partial: 'cooperative/shared/modal/upload_file_modal', locals: { title: '上传图片' } %>
|
||||||
|
<%= render partial: 'cooperative/competitions/shared/import_competition_score_modal' %>
|
@ -0,0 +1 @@
|
|||||||
|
$('.competitions-list-container').html("<%= j( render partial: 'cooperative/competitions/shared/list', locals: { competitions: @competitions } ) %>");
|
@ -0,0 +1,4 @@
|
|||||||
|
var page_no = $("#competition-item-<%= @competition.id %>").children(":first").html();
|
||||||
|
$("#competition-item-<%= @competition.id %>").html("<%= j render partial: "cooperative/competitions/shared/td", locals: {competition: @competition, page_no: 1} %>");
|
||||||
|
$("#competition-item-<%= @competition.id %>").children(":first").html(page_no);
|
||||||
|
show_success_flash();
|
@ -0,0 +1,4 @@
|
|||||||
|
var page_no = $("#competition-item-<%= @competition.id %>").children(":first").html();
|
||||||
|
$("#competition-item-<%= @competition.id %>").html("<%= j render partial: "cooperative/competitions/shared/td", locals: {competition: @competition, page_no: 1} %>");
|
||||||
|
$("#competition-item-<%= @competition.id %>").children(":first").html(page_no);
|
||||||
|
show_success_flash();
|
@ -0,0 +1,28 @@
|
|||||||
|
<div class="modal fade cooperative-create-competition-modal" tabindex="-1" role="dialog" aria-hidden="true">
|
||||||
|
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h5 class="modal-title">新增竞赛</h5>
|
||||||
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||||
|
<span aria-hidden="true">×</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<form class="cooperative-create-competition-form" data-url="<%= cooperative_competitions_path %>">
|
||||||
|
<div class="form-group d-flex">
|
||||||
|
<label for="new_mirror_id" class="col-form-label">竞赛名称:</label>
|
||||||
|
<div class="w-75 d-flex flex-column">
|
||||||
|
<%= text_field_tag(:competition_name, nil, class: 'form-control', placeholder: '请输入竞赛名称') %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="error text-danger"></div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">取消</button>
|
||||||
|
<button type="button" class="btn btn-primary submit-btn">确认</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -0,0 +1,32 @@
|
|||||||
|
<div class="modal fade cooperative-import-competition-score-modal" tabindex="-1" role="dialog" aria-hidden="true">
|
||||||
|
<div class="modal-dialog modal-dialog-centered" role="document">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h5 class="modal-title">导入成绩</h5>
|
||||||
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||||
|
<span aria-hidden="true">×</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<form class="cooperative-import-competition-score-form" enctype="multipart/form-data">
|
||||||
|
<%= hidden_field_tag(:competition_id, nil) %>
|
||||||
|
|
||||||
|
<div class="input-group">
|
||||||
|
<div class="input-group-prepend">
|
||||||
|
<span class="input-group-text">文件</span>
|
||||||
|
</div>
|
||||||
|
<div class="custom-file">
|
||||||
|
<input type="file" name="file" class="upload-file-input" id="import-competition-score-input" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet">
|
||||||
|
<label class="custom-file-label file-names" for="import-user-input">选择文件</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="error text-danger"></div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">取消</button>
|
||||||
|
<button type="button" class="btn btn-primary submit-btn">确认</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
@ -0,0 +1,30 @@
|
|||||||
|
<table class="table text-center shixun-settings-list-table">
|
||||||
|
<thead class="thead-light">
|
||||||
|
<th width="6%">序号</th>
|
||||||
|
<th width="14%" class="text-left">竞赛主标题</th>
|
||||||
|
<th width="10%">竞赛副标题</th>
|
||||||
|
<th width="8%">模式</th>
|
||||||
|
<th width="8%">报名人数</th>
|
||||||
|
<th width="8%">指导老师</th>
|
||||||
|
<th width="8%">参赛者</th>
|
||||||
|
<th width="14%">主题图片792*340</th>
|
||||||
|
<th width="8%">创建时间</th>
|
||||||
|
<th>
|
||||||
|
操作
|
||||||
|
</th>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<% if competitions.present? %>
|
||||||
|
<% competitions.each_with_index do |competition, index| %>
|
||||||
|
<tr id="competition-item-<%= competition.id %>">
|
||||||
|
<% page_no = list_index_no(@params_page.to_i, index) %>
|
||||||
|
<%= render partial: "cooperative/competitions/shared/td", locals: {competition: competition, page_no: page_no} %>
|
||||||
|
</tr>
|
||||||
|
<% end %>
|
||||||
|
<% else %>
|
||||||
|
<%= render 'cooperative/shared/no_data_for_table' %>
|
||||||
|
<% end %>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<%= render partial: 'cooperative/shared/paginate', locals: { objects: competitions } %>
|
@ -0,0 +1,31 @@
|
|||||||
|
<td><%= page_no %></td>
|
||||||
|
<td class="text-left">
|
||||||
|
<span><%= link_to competition.name, cooperative_competition_enroll_lists_path(competition), :title => competition.name %></span>
|
||||||
|
</td>
|
||||||
|
<td><%= competition.sub_title %></td>
|
||||||
|
<td><%= competition.mode_type %></td>
|
||||||
|
<td><%= @member_count_map&.fetch(competition.id, 0) || competition.team_members.count %></td>
|
||||||
|
<td><%= competition.teacher_staff_num %></td>
|
||||||
|
<td><%= competition.member_staff_num %></td>
|
||||||
|
<td class="competition-setting-image">
|
||||||
|
<% imageExists = File.exist?(disk_filename("Competition", competition.id)) %>
|
||||||
|
<% imageUrl = imageExists ? '/' + url_to_avatar(competition) + "?#{Time.now.to_i}" : '' %>
|
||||||
|
<%= image_tag(imageUrl, width: 60, height: 40, class: "preview-image competition-image-#{competition.id}", data: { toggle: 'tooltip', title: '点击预览' }, style: imageExists ? '' : 'display:none') %>
|
||||||
|
<%= javascript_void_link imageExists ? '重新上传' : '上传图片', class: 'action upload-competition-image-action', data: { source_id: competition.id, source_type: 'Competition', toggle: 'modal', target: '.cooperative-upload-file-modal' } %>
|
||||||
|
</td>
|
||||||
|
<td><%= competition.created_at.strftime('%Y-%m-%d %H:%M') %></td>
|
||||||
|
<td class="action-container">
|
||||||
|
<%= link_to '配置', cooperative_competition_competition_settings_path(competition), class: 'action edit-action' %>
|
||||||
|
|
||||||
|
<% if !competition.status? && competition.published_at.blank? %>
|
||||||
|
<%= link_to '发布', publish_cooperative_competition_path(competition), class: 'action publish-action', method: :post, remote: true %>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to '取消发布', unpublish_cooperative_competition_path(competition), class: 'action unpublish-action', method: :post, remote: true %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<%= link_to competition.published? ? "下架" : "上架", online_switch_cooperative_competition_path(competition), class: 'action online-action', method: :post, remote: true %>
|
||||||
|
|
||||||
|
<% if competition.mode != 1 %>
|
||||||
|
<%= javascript_void_link '导入成绩', class: 'action', data: { competition_id: competition.id, toggle: 'modal', target: '.cooperative-import-competition-score-modal'} %>
|
||||||
|
<% end %>
|
||||||
|
</td>
|
@ -0,0 +1,4 @@
|
|||||||
|
var page_no = $("#competition-item-<%= @competition.id %>").children(":first").html();
|
||||||
|
$("#competition-item-<%= @competition.id %>").html("<%= j render partial: "cooperative/competitions/shared/td", locals: {competition: @competition, page_no: 1} %>");
|
||||||
|
$("#competition-item-<%= @competition.id %>").children(":first").html(page_no);
|
||||||
|
show_success_flash();
|
@ -0,0 +1,42 @@
|
|||||||
|
<table class="table text-center shixun-settings-list-table">
|
||||||
|
<thead class="thead-light">
|
||||||
|
<tr>
|
||||||
|
<th width="4%" class="text-left">序号</th>
|
||||||
|
<th width="6%"><%= sort_tag('战队ID', name: 'competition_team_id', path: cooperative_competition_enroll_lists_path(@competition)) %></th>
|
||||||
|
<th width="12%">战队名称</th>
|
||||||
|
<th width="10%">创建者</th>
|
||||||
|
<th width="10%">队员姓名</th>
|
||||||
|
<th width="6%">职业</th>
|
||||||
|
<th width="12%">学号</th>
|
||||||
|
<th width="10%">队员学校</th>
|
||||||
|
<th width="6%">地区</th>
|
||||||
|
<th width="16%">指导老师</th>
|
||||||
|
<th width="8%"><%= sort_tag('报名时间', name: 'created_at', path: cooperative_competition_enroll_lists_path(@competition)) %></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<% if enroll_lists.present? %>
|
||||||
|
<% enroll_lists.each_with_index do |member, index| %>
|
||||||
|
<tr id="competition-team-member-<%= member.id %>">
|
||||||
|
<% team = member.competition_team %>
|
||||||
|
<% page_no = list_index_no(@params_page.to_i, index) %>
|
||||||
|
<td><%= page_no %></td>
|
||||||
|
<td><%= member.competition_team_id %></td>
|
||||||
|
<td><%= @personal ? "--" : team.name %></td>
|
||||||
|
<td><%= team.user.real_name %></td>
|
||||||
|
<td><%= member.user.real_name %></td>
|
||||||
|
<td><%= member.user.identity %></td>
|
||||||
|
<td><%= member.user.student_id %></td>
|
||||||
|
<td><%= member.user.school_name %></td>
|
||||||
|
<td><%= member.user.school_province %></td>
|
||||||
|
<td><%= @personal ? "--" : team.teachers_info %></td>
|
||||||
|
<td><%= member.created_at.strftime('%Y-%m-%d %H:%M') %></td>
|
||||||
|
</tr>
|
||||||
|
<% end %>
|
||||||
|
<% else %>
|
||||||
|
<%= render 'cooperative/shared/no_data_for_table' %>
|
||||||
|
<% end %>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<%= render partial: 'cooperative/shared/paginate', locals: { objects: enroll_lists } %>
|
@ -0,0 +1,29 @@
|
|||||||
|
wb = xlsx_package.workbook
|
||||||
|
wb.add_worksheet(name: '报名列表') do |sheet|
|
||||||
|
sheet.add_row %w(序号 战队ID 战队名称 创建者 指导老师 队员姓名 职业 手机号 邮箱 学号 实名认证 职业认证 队员学校 地区 报名时间 排名)
|
||||||
|
|
||||||
|
@enroll_lists.each_with_index do |member, index|
|
||||||
|
team = member.competition_team
|
||||||
|
member_user = member.user
|
||||||
|
rank = @competition_scores.length > 0 ? @competition_scores.index(member.competition_team_id).to_i + 1 : "--"
|
||||||
|
data = [
|
||||||
|
index + 1,
|
||||||
|
member.competition_team_id,
|
||||||
|
@personal ? "--" : team.name,
|
||||||
|
team.user.real_name,
|
||||||
|
@personal ? "--" : team.teachers_info,
|
||||||
|
member_user.real_name,
|
||||||
|
member_user.identity,
|
||||||
|
member_user.phone.present? ? (member_user.phone.to_s + "\t") : "--",
|
||||||
|
member_user.mail,
|
||||||
|
member_user.student_id.present? ? (member_user.student_id.to_s + "\t") : "--",
|
||||||
|
member_user.authentication ? "√" : "",
|
||||||
|
member_user.professional_certification ? "√" : "",
|
||||||
|
member_user.school_name,
|
||||||
|
member_user.school_province,
|
||||||
|
team.created_at&.strftime('%Y-%m-%d %H:%M'),
|
||||||
|
rank
|
||||||
|
]
|
||||||
|
sheet.add_row(data)
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,33 @@
|
|||||||
|
<%
|
||||||
|
define_breadcrumbs do
|
||||||
|
add_breadcrumb('竞赛列表', cooperative_competitions_path)
|
||||||
|
add_breadcrumb(@competition.name)
|
||||||
|
end
|
||||||
|
%>
|
||||||
|
|
||||||
|
<div class="box search-form-container flex-column mb-0 pb-0 competition-enroll-list-form">
|
||||||
|
<ul class="nav nav-tabs w-100 search-form-tabs">
|
||||||
|
<li class="nav-item">
|
||||||
|
<%= link_to '报名列表', cooperative_competition_enroll_lists_path(@competition), class: "nav-link search-form-tab active" %>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item">
|
||||||
|
<%= link_to '获奖证书审批', cooperative_competition_competition_prize_users_path(@competition), class: "nav-link search-form-tab" %>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div class="d-flex">
|
||||||
|
<%= form_tag(cooperative_competition_enroll_lists_path(unsafe_params), method: :get, class: 'form-inline search-form mt-3 flex-1 d-flex', remote: true) do %>
|
||||||
|
<%= text_field_tag(:keyword, params[:keyword], class: 'form-control col-sm-2 ml-3', placeholder: '战队名称检索') %>
|
||||||
|
<%= text_field_tag(:school, params[:school], class: 'form-control col-sm-2 ml-3', placeholder: '队员学校名称检索') %>
|
||||||
|
<%= text_field_tag(:location, params[:location], class: 'form-control col-sm-2 ml-3', placeholder: '队员地区检索') %>
|
||||||
|
<%= submit_tag('搜索', class: 'btn btn-primary ml-3', 'data-disable-with': '搜索中...') %>
|
||||||
|
<%= link_to "清除", cooperative_competition_enroll_lists_path(@competition), class: "btn btn-default",'data-disable-with': '清除中...' %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<a href="javascript:void(0)" class="btn btn-primary mt-3" id="enroll-lists-export" data-competition-id="<%= @competition.id %>">导出</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="box cooperative-list-container competition-enroll-list-container">
|
||||||
|
<%= render(partial: 'cooperative/enroll_lists/list', locals: { enroll_lists: @enroll_lists }) %>
|
||||||
|
</div>
|
@ -0,0 +1 @@
|
|||||||
|
$('.competition-enroll-list-container').html("<%= j( render(partial: 'cooperative/enroll_lists/list', locals: { enroll_lists: @enroll_lists }) ) %>");
|
Loading…
Reference in new issue