统一创建比赛,编辑比赛的时候小组可见的交互逻辑和界面[CI SKIP]

This commit is contained in:
sxw@401
2015-09-12 11:33:47 +08:00
parent 74f122b472
commit d06096b19b
4 changed files with 315 additions and 331 deletions

View File

@@ -3,7 +3,7 @@ require(["jquery", "avalon", "editor", "uploader", "bsAlert", "csrfToken", "date
function ($, avalon, editor, uploader, bsAlert, csrfTokenHeader) { function ($, avalon, editor, uploader, bsAlert, csrfTokenHeader) {
$("#add-contest-form").validator().on('submit', function (e) { $("#add-contest-form").validator().on('submit', function (e) {
if (!e.isDefaultPrevented()){ if (!e.isDefaultPrevented()) {
e.preventDefault(); e.preventDefault();
var ajaxData = { var ajaxData = {
title: vm.title, title: vm.title,
@@ -16,25 +16,32 @@ require(["jquery", "avalon", "editor", "uploader", "bsAlert", "csrfToken", "date
end_time: vm.endTime, end_time: vm.endTime,
visible: false visible: false
}; };
if (vm.choseGroupList.length == 0) {
bsAlert("你没有选择参赛用户!"); var selectedGroups = [];
return false; if (!vm.isGlobal) {
for (var i = 0; i < vm.allGroups.length; i++) {
if (vm.allGroups[i].isSelected) {
selectedGroups.push(vm.allGroups[i].id);
}
}
ajaxData.groups = selectedGroups;
} }
if (vm.choseGroupList[0].id == 0) { //everyone | public contest else {
if (vm.password) { if (vm.password) {
ajaxData.password = vm.password; ajaxData.password = vm.password;
ajaxData.contest_type = 2; ajaxData.contest_type = 2;
} }
else{ else
ajaxData.contest_type = 1; ajaxData.contest_type = 1;
}
} }
else { // Add groups info if (!vm.isGlobal && !selectedGroups.length) {
ajaxData.groups = []; bsAlert("你没有选择参赛用户!");
for (var i = 0; vm.choseGroupList[i]; i++) return false;
ajaxData.groups.push(parseInt(vm.choseGroupList[i].id)) }
if (vm.editDescription == "") {
bsAlert("比赛描述不能为空!");
return false;
} }
$.ajax({ // Add contest $.ajax({ // Add contest
beforeSend: csrfTokenHeader, beforeSend: csrfTokenHeader,
url: "/api/admin/contest/", url: "/api/admin/contest/",
@@ -44,20 +51,19 @@ require(["jquery", "avalon", "editor", "uploader", "bsAlert", "csrfToken", "date
method: "post", method: "post",
success: function (data) { success: function (data) {
if (!data.code) { if (!data.code) {
bsAlert("添加成功!将转到比赛列表页以便为比赛添加问题(注意比赛当前状态为:隐藏)"); bsAlert("添加成功!将转到比赛列表页以便为比赛添加问题(注意比赛当前状态为:隐藏)");
vm.title = ""; vm.title = "";
vm.description = ""; vm.description = "";
vm.startTime = ""; vm.startTime = "";
vm.endTime = ""; vm.endTime = "";
vm.password = ""; vm.password = "";
vm.mode = ""; vm.mode = "";
vm.hideRank = 0; vm.hideRank = 0;
vm.showSubmission = false; vm.showSubmission = false;
vm.group = "-1"; location.hash = "#contest/contest_list";
vm.groupList = []; vm.isGlobal = true;
vm.choseGroupList = []; vm.allGroups = [];
vm.passwordUsable = false; vm.showGlobalViewRadio = true;
location.hash = "#contest/contest_list";
} }
else { else {
bsAlert(data.data); bsAlert(data.data);
@@ -69,80 +75,59 @@ require(["jquery", "avalon", "editor", "uploader", "bsAlert", "csrfToken", "date
}); });
editor("#editor"); editor("#editor");
if (avalon.vmodels.add_contest) if (avalon.vmodels.add_contest)
var vm = avalon.vmodels.add_contest; var vm = avalon.vmodels.add_contest;
else else
var vm = avalon.define({ var vm = avalon.define({
$id: "add_contest", $id: "add_contest",
title: "", title: "",
description: "", description: "",
startTime: "", startTime: "",
endTime: "", endTime: "",
password: "", password: "",
mode: "", mode: "",
hideRank: 0, hideRank: 0,
showSubmission: false, showSubmission: false,
group: "-1", isGlobal: true,
groupList: [], allGroups: [],
choseGroupList: [], showGlobalViewRadio: true
passwordUsable: false, });
addGroup: function() {
if (vm.group == -1) return;
if (vm.groupList[vm.group].id == 0){
vm.passwordUsable = true;
vm.choseGroupList = [];
for (var key in vm.groupList){
vm.groupList[key].chose = true;
}
}
vm.groupList[vm.group]. chose = true;
vm.choseGroupList.push({name:vm.groupList[vm.group].name, index:vm.group, id:vm.groupList[vm.group].id});
vm.group = -1;
},
removeGroup: function(groupIndex){
if (vm.groupList[vm.choseGroupList[groupIndex].index].id == 0){
vm.passwordUsable = false;
for (key in vm.groupList){
vm.groupList[key].chose = false;
}
}
vm.groupList[vm.choseGroupList[groupIndex].index].chose = false;
vm.choseGroupList.remove(vm.choseGroupList[groupIndex]);
}
});
$.ajax({ // Get current user type $.ajax({
url: "/api/user/", url: "/api/user/",
method: "get", method: "get",
dataType: "json", dataType: "json",
success: function (data) { success: function (data) {
if (!data.code) { if (!data.code) {
if (data.data.admin_type == 2) { // Is super user var admin_type = data.data.admin_type;
vm.isGlobal = true; if (data.data.admin_type == 1) {
vm.groupList.push({id:0,name:"所有人",chose:false}); vm.isGlobal = false;
vm.showGlobalViewRadio = false;
} }
$.ajax({ // Get the group list of current user }
beforeSend: csrfTokenHeader, $.ajax({
url: "/api/admin/group/", url: "/api/admin/group/",
method: "get", method: "get",
dataType: "json", dataType: "json",
success: function (data) { success: function (data) {
if (!data.code) { if (!data.code) {
if (!data.data.length) { if (!data.data.length) {
return; if (admin_type != 2)
} bsAlert("您的用户权限只能创建小组内比赛,但是您还没有创建过小组");
for (var i = 0; i < data.data.length; i++) { return;
var item = data.data[i];
item["chose"] = false;
vm.groupList.push(item);
}
} }
else { for (var i = 0; i < data.data.length; i++) {
bsAlert(data.data); var item = data.data[i];
item["isSelected"] = false;
vm.allGroups.push(item);
} }
} }
}); else {
} bsAlert(data.data);
}
}
});
} }
}); });

View File

@@ -3,21 +3,39 @@ require(["jquery", "avalon", "csrfToken", "bsAlert", "editor", "datetimePicker",
avalon.ready(function () { avalon.ready(function () {
$("#edit-contest-form").validator().on('submit', function (e) { $("#edit-contest-form").validator().on('submit', function (e) {
if (!e.isDefaultPrevented()){ if (!e.isDefaultPrevented()) {
e.preventDefault(); e.preventDefault();
var ajaxData = { var ajaxData = {
id: vm.contestList[vm.editingContestId-1].id, id: vm.contestList[vm.editingContestId - 1].id,
title: vm.editTitle, title: vm.editTitle,
description: vm.editDescription, description: vm.editDescription,
mode: vm.editMode, mode: vm.editMode,
contest_type: 0, contest_type: 0,
hide_rank: vm.editHideRank, hide_rank: vm.editHideRank,
show_user_submission: vm.editShowSubmission, show_user_submission: vm.editShowSubmission,
start_time: vm.editStartTime, start_time: vm.editStartTime,
end_time: vm.editEndTime, end_time: vm.editEndTime,
visible: vm.editVisible visible: vm.editVisible
}; };
if (vm.choseGroupList.length == 0) {
var selectedGroups = [];
if (!vm.isGlobal) {
for (var i = 0; i < vm.allGroups.length; i++) {
if (vm.allGroups[i].isSelected) {
selectedGroups.push(vm.allGroups[i].id);
}
}
ajaxData.groups = selectedGroups;
}
else {
if (vm.password) {
ajaxData.password = vm.editPassword;
ajaxData.contest_type = 2;
}
else
ajaxData.contest_type = 1;
}
if (!vm.isGlobal && !selectedGroups.length) {
bsAlert("你没有选择参赛用户!"); bsAlert("你没有选择参赛用户!");
return false; return false;
} }
@@ -25,22 +43,8 @@ require(["jquery", "avalon", "csrfToken", "bsAlert", "editor", "datetimePicker",
bsAlert("比赛描述不能为空!"); bsAlert("比赛描述不能为空!");
return false; return false;
} }
if (vm.choseGroupList[0].id == 0) { //everyone | public contest
if (vm.editPassword) {
ajaxData.password = vm.editPassword;
ajaxData.contest_type = 2;
}
else{
ajaxData.contest_type = 1;
}
}
else { // Add groups info
ajaxData.groups = [];
for (var i = 0; vm.choseGroupList[i]; i++)
ajaxData.groups.push(parseInt(vm.choseGroupList[i].id))
}
$.ajax({ // Add contest $.ajax({ // modify contest info
beforeSend: csrfTokenHeader, beforeSend: csrfTokenHeader,
url: "/api/admin/contest/", url: "/api/admin/contest/",
dataType: "json", dataType: "json",
@@ -52,7 +56,7 @@ require(["jquery", "avalon", "csrfToken", "bsAlert", "editor", "datetimePicker",
if (!data.code) { if (!data.code) {
bsAlert("修改成功!"); bsAlert("修改成功!");
vm.editingContestId = 0; // Hide the editor vm.editingContestId = 0; // Hide the editor
vm.getPage(1); // Refresh the contest list vm.getPage(1); // Refresh the contest list
} }
else { else {
bsAlert(data.data); bsAlert(data.data);
@@ -63,138 +67,124 @@ require(["jquery", "avalon", "csrfToken", "bsAlert", "editor", "datetimePicker",
return false; return false;
}); });
if(avalon.vmodels.contestList){ if (avalon.vmodels.contestList) {
// this page has been loaded before, so set the default value // this page has been loaded before, so set the default value
var vm = avalon.vmodels.contestList; var vm = avalon.vmodels.contestList;
vm.contestList= []; vm.contestList = [];
vm.previousPage= 0; vm.previousPage = 0;
vm.nextPage= 0; vm.nextPage = 0;
vm.page= 1; vm.page = 1;
vm.totalPage= 1; vm.totalPage = 1;
vm.group= "-1"; vm.keyword = "";
vm.groupList= []; vm.editingContestId = 0;
vm.choseGroupList= []; vm.editTitle = "";
vm.passwordUsable= false; vm.editDescription = "";
vm.keyword= ""; vm.editProblemList = [];
vm.editingContestId= 0; vm.editPassword = "";
vm.editTitle= ""; vm.editStartTime = "";
vm.editDescription= ""; vm.editEndTime = "";
vm.editProblemList= []; vm.editMode = "";
vm.editPassword= ""; vm.editHideRank = 0;
vm.editStartTime= ""; vm.editShowSubmission = false;
vm.editEndTime= ""; vm.editVisible = false;
vm.editMode= ""; vm.editingProblemContestIndex = 0;
vm.editHideRank= 0; }
vm.editShowSubmission= false; else {
vm.editProblemList= []; var vm = avalon.define({
vm.editVisible= false; $id: "contestList",
vm.editChoseGroupList= []; contestList: [],
vm.editingProblemContestIndex= 0; previousPage: 0,
} nextPage: 0,
else { page: 1,
var vm = avalon.define({ totalPage: 1,
$id: "contestList", showVisibleOnly: false,
contestList: [], keyword: "",
previousPage: 0, editingContestId: 0,
nextPage: 0, editTitle: "",
page: 1, editDescription: "",
totalPage: 1, editProblemList: [],
showVisibleOnly: false, editPassword: "",
group: "-1", editStartTime: "",
groupList: [], editEndTime: "",
choseGroupList: [], editMode: "",
passwordUsable: false, editHideRank: false,
keyword: "", editShowSubmission: false,
editingContestId: 0, editVisible: false,
editTitle: "", editingProblemContestIndex: 0,
editDescription: "", isGlobal: true,
editProblemList: [], allGroups: [],
editPassword: "", showGlobalViewRadio: true,
editStartTime: "",
editEndTime: "",
editMode: "",
editHideRank: false,
editShowSubmission: false,
editProblemList: [],
editVisible: false,
editChoseGroupList: [],
editingProblemContestIndex: 0,
getNext: function () {
if (!vm.nextPage)
return;
getPageData(vm.page + 1);
},
getPrevious: function () {
if (!vm.previousPage)
return;
getPageData(vm.page - 1);
},
getBtnClass: function (btn) {
if (btn == "next") {
return vm.nextPage ? "btn btn-primary" : "btn btn-primary disabled";
}
else {
return vm.previousPage ? "btn btn-primary" : "btn btn-primary disabled";
}
},
getPage: function (page_index) {
getPageData(page_index);
},
showEditContestArea: function (contestId) {
if (vm.editingContestId && !confirm("如果继续将丢失未保存的信息,是否继续?"))
return;
if (contestId == vm.editingContestId)
vm.editingContestId = 0;
else {
vm.editingContestId = contestId;
vm.editTitle = vm.contestList[contestId-1].title;
vm.editPassword = vm.contestList[contestId-1].password;
vm.editStartTime = vm.contestList[contestId-1].start_time.substring(0,16).replace("T"," ");
vm.editEndTime = vm.contestList[contestId-1].end_time.substring(0,16).replace("T"," ");
vm.editMode = vm.contestList[contestId-1].mode;
vm.editVisible = vm.contestList[contestId-1].visible;
if (vm.contestList[contestId-1].contest_type == 0) { //contest type == 0, contest in group
//Clear the choseGroupList
while (vm.choseGroupList.length) {
vm.removeGroup(0);
}
for (var i = 0; i < vm.contestList[contestId-1].groups.length; i++){ getNext: function () {
var id = parseInt(vm.contestList[contestId-1].groups[i]); if (!vm.nextPage)
var index = 0; return;
for (; vm.groupList[index]; index++) { getPageData(vm.page + 1);
if (vm.groupList[index].id == id) },
break; getPrevious: function () {
if (!vm.previousPage)
return;
getPageData(vm.page - 1);
},
getBtnClass: function (btn) {
if (btn == "next") {
return vm.nextPage ? "btn btn-primary" : "btn btn-primary disabled";
}
else {
return vm.previousPage ? "btn btn-primary" : "btn btn-primary disabled";
}
},
getPage: function (page_index) {
getPageData(page_index);
},
showEditContestArea: function (contestId) {
if (vm.editingContestId && !confirm("如果继续将丢失未保存的信息,是否继续?"))
return;
if (contestId == vm.editingContestId)
vm.editingContestId = 0;
else {
vm.editingContestId = contestId;
vm.editTitle = vm.contestList[contestId - 1].title;
vm.editPassword = vm.contestList[contestId - 1].password;
vm.editStartTime = vm.contestList[contestId - 1].start_time.substring(0, 16).replace("T", " ");
vm.editEndTime = vm.contestList[contestId - 1].end_time.substring(0, 16).replace("T", " ");
vm.editMode = vm.contestList[contestId - 1].mode;
vm.editVisible = vm.contestList[contestId - 1].visible;
if (vm.contestList[contestId - 1].contest_type == 0) { //contest type == 0, contest in group
vm.isGlobal = false;
for (var i = 0; i < vm.allGroups.length; i++) {
vm.allGroups[i].isSelected = false;
}
for (var i = 0; i < vm.contestList[contestId - 1].groups.length; i++) {
var id = parseInt(vm.contestList[contestId - 1].groups[i]);
for (var index = 0; vm.allGroups[index]; index++) {
if (vm.allGroups[index].id == id) {
vm.allGroups[index].isSelected = true;
break;
}
}
} }
vm.groupList[index].chose = true;
vm.choseGroupList.push({
name:vm.groupList[index].name,
index:index,
id:id
});
} }
else {
vm.isGlobal = true;
}
vm.editHideRank = vm.contestList[contestId - 1].Hide_rank;
vm.editShowSubmission = vm.contestList[contestId - 1].show_user_submission;
editor("#editor").setValue(vm.contestList[contestId - 1].description);
vm.editingProblemContestIndex = 0;
} }
else{ },
vm.group = "0"; showEditProblemArea: function (contestId) {
vm.addGroup()//vm.editChoseGroupList = [0]; id 0 is for the group of everyone~ if (vm.editingProblemContestIndex == contestId) {
vm.editingProblemContestIndex = 0;
return;
} }
vm.editHideRank = vm.contestList[contestId-1].Hide_rank; if (vm.editingContestId && !confirm("如果继续将丢失未保存的信息,是否继续?")) {
vm.editShowSubmission = vm.contestList[contestId-1].show_user_submission; return;
editor("#editor").setValue(vm.contestList[contestId-1].description); }
vm.editingProblemContestIndex = 0; $.ajax({ // Get the problem list of current contest
}
},
showEditProblemArea: function(contestId) {
if (vm.editingProblemContestIndex == contestId) {
vm.editingProblemContestIndex = 0;
return;
}
if (vm.editingContestId&&!confirm("如果继续将丢失未保存的信息,是否继续?")){
return;
}
$.ajax({ // Get the problem list of current contest
beforeSend: csrfTokenHeader, beforeSend: csrfTokenHeader,
url: "/api/admin/contest_problem/?contest_id=" + vm.contestList[contestId-1].id, url: "/api/admin/contest_problem/?contest_id=" + vm.contestList[contestId - 1].id,
method: "get", method: "get",
dataType: "json", dataType: "json",
success: function (data) { success: function (data) {
@@ -206,51 +196,27 @@ require(["jquery", "avalon", "csrfToken", "bsAlert", "editor", "datetimePicker",
} }
} }
}); });
vm.editingContestId = 0; vm.editingContestId = 0;
vm.editingProblemContestIndex = contestId; vm.editingProblemContestIndex = contestId;
vm.editMode = vm.contestList[contestId-1].mode; vm.editMode = vm.contestList[contestId - 1].mode;
},
addGroup: function() {
if (vm.group == -1) return;
if (vm.groupList[vm.group].id == 0){
vm.passwordUsable = true;
vm.choseGroupList = [];
for (var i = 0; i < vm.groupList.length; i++) {
vm.groupList[i].chose = true;
}
}
vm.groupList[vm.group]. chose = true;
// index of the group is relative. It is related to user
vm.choseGroupList.push({name:vm.groupList[vm.group].name, index:vm.group, id:vm.groupList[vm.group].id});
vm.group = -1;
},
removeGroup: function(groupIndex){
if (vm.groupList[vm.choseGroupList[groupIndex].index].id == 0){
vm.passwordUsable = false;
for (var i = 0; i < vm.groupList.length; i++) {
vm.groupList[i].chose = false;
}
}
vm.groupList[vm.choseGroupList[groupIndex].index].chose = false;
vm.choseGroupList.remove(vm.choseGroupList[groupIndex]);
}, },
addProblem: function () { addProblem: function () {
vm.$fire("up!showContestProblemPage", 0, vm.contestList[vm.editingProblemContestIndex-1].id, vm.editMode); vm.$fire("up!showContestProblemPage", 0, vm.contestList[vm.editingProblemContestIndex - 1].id, vm.editMode);
}, },
showProblemEditPage: function(el) { showProblemEditPage: function (el) {
vm.$fire("up!showContestProblemPage", el.id, vm.contestList[vm.editingProblemContestIndex-1].id, vm.editMode); vm.$fire("up!showContestProblemPage", el.id, vm.contestList[vm.editingProblemContestIndex - 1].id, vm.editMode);
}, },
showSubmissionPage: function(el) { showSubmissionPage: function (el) {
var problemId = 0 var problemId = 0
if (el) if (el)
problemId = el.id; problemId = el.id;
vm.$fire("up!showContestSubmissionPage", problemId, vm.contestList[vm.editingProblemContestIndex-1].id, vm.editMode); vm.$fire("up!showContestSubmissionPage", problemId, vm.contestList[vm.editingProblemContestIndex - 1].id, vm.editMode);
} }
}); });
vm.$watch("showVisibleOnly", function() { vm.$watch("showVisibleOnly", function () {
getPageData(1); getPageData(1);
}) })
} }
getPageData(1); getPageData(1);
//init time picker //init time picker
@@ -293,39 +259,40 @@ require(["jquery", "avalon", "csrfToken", "bsAlert", "editor", "datetimePicker",
} }
// Get group list // Get group list
$.ajax({ // Get current user type $.ajax({
url: "/api/user/", url: "/api/user/",
method: "get", method: "get",
dataType: "json", dataType: "json",
success: function (data) { success: function (data) {
if (!data.code) { if (!data.code) {
if (data.data.admin_type == 2) { // Is super user var admin_type = data.data.admin_type;
vm.isGlobal = true; if (data.data.admin_type == 1) {
vm.groupList.push({id:0,name:"所有人",chose:false}); vm.isGlobal = false;
vm.showGlobalViewRadio = false;
} }
$.ajax({ // Get the group list of current user }
beforeSend: csrfTokenHeader, $.ajax({
url: "/api/admin/group/", url: "/api/admin/group/",
method: "get", method: "get",
dataType: "json", dataType: "json",
success: function (data) { success: function (data) {
if (!data.code) { if (!data.code) {
if (!data.data.length) { if (!data.data.length) {
//this user have no group can use if (admin_type != 2)
return; bsAlert("您的用户权限只能创建小组内比赛,但是您还没有创建过小组");
} return;
for (var i = 0; i < data.data.length; i++) {
var item = data.data[i];
item["chose"] = false;
vm.groupList.push(item);
}
} }
else { for (var i = 0; i < data.data.length; i++) {
bsAlert(data.data); var item = data.data[i];
item["isSelected"] = false;
vm.allGroups.push(item);
} }
} }
}); else {
} bsAlert(data.data);
}
}
});
} }
}); });

View File

@@ -45,22 +45,37 @@
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<label>允许参加的用户</label>
<div class="form-group"> <div class="form-group">
<select class="form-control" ms-duplex="group" ms-change="addGroup" value="-1"> <label>可见范围</label>
<option value="-1">请选择</option>
<option ms-repeat="groupList" ms-attr-value="$index" ms-visible="!el.chose">{{el.name}}</option> <div>
</select> <span ms-if="showGlobalViewRadio">
<label>
<small><input type="radio" value="true" name="isGlobal" ms-duplex-boolean="isGlobal">全局可见
</small>
</label>
</span>
<span>
<label>
<small><input type="radio" value="false" name="isGlobal" ms-duplex-boolean="isGlobal">小组内可见
</small>
</label>
</span>
</div>
</div> </div>
</div> </div>
<div class="col-md-6" ms-visible="passwordUsable"> <div class="col-md-6" ms-visible="isGlobal">
<label>密码保护</label> <label>密码保护</label>
<div class="form-group"> <div class="form-group">
<input type="text" class="form-control" name="password" placeholder="留空就是公开赛" ms-duplex="password"> <input type="text" class="form-control" name="password" placeholder="留空就是公开赛" ms-duplex="password">
</div> </div>
</div> </div>
<div class="col-md-12"> <div class="form-group col-md-12" ms-visible="!isGlobal">
<div ms-repeat="choseGroupList" class="group-tag" ms-click="removeGroup($index)">{{el.name}}</div> <!-- radio 的value 没有用 但是没有的话,表单验证会出错-->
<div ms-repeat="allGroups" class="col-md-4">
<input type="checkbox" value="group_id" ms-duplex-checked="el.isSelected">&nbsp;&nbsp;{{ el.name }}
</div>
</div> </div>
<div class="col-md-3"> <div class="col-md-3">
<label>排名方式</label> <label>排名方式</label>

View File

@@ -63,7 +63,7 @@
<textarea id="editor" placeholder="这里输入内容" autofocus ms-duplex="editDescription"></textarea> <textarea id="editor" placeholder="这里输入内容" autofocus ms-duplex="editDescription"></textarea>
<div class="help-block with-errors"></div> <div class="help-block with-errors"></div>
<p class="error-info" ms-visible="editDescription==''" >请填写比赛描述</p> <p class="error-info" ms-visible="editDescription==''">请填写比赛描述</p>
</div> </div>
</div> </div>
<div class="col-md-4"> <div class="col-md-4">
@@ -88,29 +88,46 @@
</div> </div>
<div class="col-md-3"> <div class="col-md-3">
<label>封榜时间(结束前/min)</label> <label>封榜时间(结束前/min)</label>
<div class="form-group"> <div class="form-group">
<input class="form-control" ms-duplex="editHideRank" type="number" data-error="请填写封榜时间" required> <input class="form-control" ms-duplex="editHideRank" type="number" data-error="请填写封榜时间" required>
<div class="help-block with-errors"></div> <div class="help-block with-errors"></div>
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<label>允许参加的用户</label>
<div class="form-group"> <div class="form-group">
<select class="form-control" ms-duplex="group" ms-change="addGroup" value="-1"> <label>可见范围</label>
<option value="-1">请选择</option>
<option ms-repeat="groupList" ms-attr-value="$index" ms-visible="!el.chose">{{el.name}}</option> <div>
</select> <span ms-if="showGlobalViewRadio">
<label>
<small><input type="radio" value="true" name="isGlobal" ms-duplex-boolean="isGlobal">全局可见
</small>
</label>
</span>
<span>
<label>
<small><input type="radio" value="false" name="isGlobal" ms-duplex-boolean="isGlobal">小组内可见
</small>
</label>
</span>
</div>
</div> </div>
</div> </div>
<div class="col-md-6" ms-visible="passwordUsable"> <div class="col-md-6" ms-visible="isGlobal">
<label>密码保护</label> <label>密码保护</label>
<input type="text" class="form-control" name="password" placeholder="留空就是公开赛" ms-duplex="editPassword"> <input type="text" class="form-control" name="password" placeholder="留空就是公开赛" ms-duplex="editPassword">
</div> </div>
<div class="col-md-12"> <div class="form-group col-md-12" ms-visible="!isGlobal">
<div ms-repeat="choseGroupList" class="group-tag" ms-click="removeGroup($index)">{{el.name}}</div> <!-- radio 的value 没有用 但是没有的话,表单验证会出错-->
<div ms-repeat="allGroups" class="col-md-4">
<input type="checkbox" value="group_id" ms-duplex-checked="el.isSelected">&nbsp;&nbsp;{{ el.name }}
</div>
</div> </div>
<div class="col-md-3"> <div class="col-md-7">
<label>排名方式</label> <label>排名方式</label>
<div class="form-group"> <div class="form-group">
@@ -158,7 +175,7 @@
<tr ms-repeat="editProblemList"> <tr ms-repeat="editProblemList">
<td>{{ el.sort_index }}</td> <td>{{ el.sort_index }}</td>
<td>{{ el.title }}</td> <td>{{ el.title }}</td>
<td ms-visible="editMode=='2'">{{ el.score}}</td> <td ms-visible="editMode=='2'">{{ el.score }}</td>
<td ms-text="el.visible?'可见':'不可见'"></td> <td ms-text="el.visible?'可见':'不可见'"></td>
<td>{{ el.create_time|date("yyyy-MM-dd HH:mm:ss") }}</td> <td>{{ el.create_time|date("yyyy-MM-dd HH:mm:ss") }}</td>
<td> <td>