mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-04-05 20:17:53 +08:00
feat:实现团队功能
This commit is contained in:
parent
d152455c50
commit
64edcf97ce
@ -871,6 +871,20 @@ func (c *BookController) TeamDelete() {
|
||||
func (c *BookController) TeamSearch() {
|
||||
c.Prepare()
|
||||
|
||||
teamId, _ := c.GetInt("teamId")
|
||||
keyword := strings.TrimSpace(c.GetString("q"))
|
||||
|
||||
if teamId <= 0 {
|
||||
c.JsonResult(500, "参数错误")
|
||||
}
|
||||
|
||||
searchResult, err := models.NewTeamRelationship().FindNotJoinBookByName(teamId, keyword, 10)
|
||||
|
||||
if err != nil {
|
||||
c.JsonResult(500, err.Error())
|
||||
}
|
||||
c.JsonResult(0, "OK", searchResult)
|
||||
|
||||
}
|
||||
|
||||
func (c *BookController) IsPermission() (*models.BookResult, error) {
|
||||
|
@ -23,6 +23,7 @@ import (
|
||||
"github.com/lifei6671/mindoc/utils/ziptil"
|
||||
"gopkg.in/russross/blackfriday.v2"
|
||||
"encoding/json"
|
||||
"github.com/lifei6671/mindoc/utils"
|
||||
)
|
||||
|
||||
// Book struct .
|
||||
@ -104,7 +105,7 @@ func NewBook() *Book {
|
||||
func (book *Book) Insert() error {
|
||||
o := orm.NewOrm()
|
||||
// o.Begin()
|
||||
|
||||
book.BookName = utils.StripTags(book.BookName)
|
||||
_, err := o.Insert(book)
|
||||
|
||||
if err == nil {
|
||||
@ -153,6 +154,7 @@ func (book *Book) Find(id int,cols ...string) (*Book, error) {
|
||||
func (book *Book) Update(cols ...string) error {
|
||||
o := orm.NewOrm()
|
||||
|
||||
book.BookName = utils.StripTags(book.BookName)
|
||||
temp := NewBook()
|
||||
temp.BookId = book.BookId
|
||||
|
||||
|
@ -90,6 +90,7 @@ func (item *Document) Find(id int) (*Document, error) {
|
||||
//插入和更新文档.
|
||||
func (item *Document) InsertOrUpdate(cols ...string) error {
|
||||
o := orm.NewOrm()
|
||||
item.DocumentName = utils.StripTags(item.DocumentName)
|
||||
var err error
|
||||
if item.DocumentId > 0 {
|
||||
_, err = o.Update(item, cols...)
|
||||
|
@ -87,7 +87,7 @@ func init() {
|
||||
|
||||
beego.Router("/book/team/add", &controllers.BookController{}, "POST:TeamAdd")
|
||||
beego.Router("/book/team/delete", &controllers.BookController{}, "POST:TeamDelete")
|
||||
beego.Router("/book/team/search", &controllers.BookController{}, "POST:TeamSearch")
|
||||
beego.Router("/book/team/search", &controllers.BookController{}, "*:TeamSearch")
|
||||
|
||||
|
||||
//管理文章的路由
|
||||
|
@ -41,8 +41,7 @@
|
||||
<div class="box-head">
|
||||
<strong class="box-title"> 团队管理</strong>
|
||||
{{if eq .Member.Role 0}}
|
||||
<button type="button" class="btn btn-success btn-sm pull-right" data-toggle="modal"
|
||||
data-target="#addTeamDialogModal"><i class="fa fa-user-plus" aria-hidden="true"></i>
|
||||
<button type="button" class="btn btn-success btn-sm pull-right" data-toggle="modal" data-target="#addTeamDialogModal"><i class="fa fa-user-plus" aria-hidden="true"></i>
|
||||
添加团队
|
||||
</button>
|
||||
{{end}}
|
||||
@ -88,23 +87,21 @@
|
||||
</div>
|
||||
{{template "widgets/footer.tpl" .}}
|
||||
</div>
|
||||
<!-- Modal -->
|
||||
|
||||
<div class="modal fade" id="addTeamDialogModal" tabindex="-1" role="dialog" aria-labelledby="addTeamDialogModalLabel">
|
||||
<div class="modal-dialog" role="document">
|
||||
<form method="post" autocomplete="off" class="form-horizontal"
|
||||
action="{{urlfor "ManagerController.TeamCreate"}}" id="addTeamDialogForm">
|
||||
<form method="post" autocomplete="off" class="form-horizontal" action="{{urlfor "BookController.TeamAdd"}}" id="addTeamDialogForm">
|
||||
<input type="hidden" name="bookId" value="{{.Model.BookId}}">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
|
||||
aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title" id="myModalLabel">创建团队</h4>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title" id="myModalLabel">添加团队</h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label" for="account">团队名称<span
|
||||
class="error-message">*</span></label>
|
||||
<label class="col-sm-2 control-label" for="account">团队名称<span class="error-message">*</span></label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" name="teamName" class="form-control" placeholder="团队名称" id="teamName" maxlength="50">
|
||||
<select type="text" name="teamId" class="js-data-example-ajax form-control" multiple="multiple"></select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
@ -119,35 +116,6 @@
|
||||
</form>
|
||||
</div>
|
||||
</div><!--END Modal-->
|
||||
<div class="modal fade" id="editTeamDialogModal" tabindex="-1" role="dialog" aria-labelledby="editTeamDialogModalLabel">
|
||||
<div class="modal-dialog" role="document">
|
||||
<form method="post" autocomplete="off" class="form-horizontal" action="{{urlfor "ManagerController.TeamEdit"}}" id="editTeamDialogForm">
|
||||
<input type="hidden" name="teamId" value="">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
|
||||
aria-hidden="true">×</span></button>
|
||||
<h4 class="modal-title" id="myModalLabel">编辑团队</h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label" for="account">团队名称<span class="error-message">*</span></label>
|
||||
<div class="col-sm-10">
|
||||
<input type="text" name="teamName" class="form-control" placeholder="团队名称" maxlength="50">
|
||||
</div>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<span id="form-error-message"></span>
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">取消</button>
|
||||
<button type="submit" class="btn btn-success" data-loading-text="保存中..." id="btnEditTeam">保存
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div><!--END Modal-->
|
||||
|
||||
|
||||
<script src="{{cdnjs "/static/jquery/1.12.4/jquery.min.js"}}"></script>
|
||||
@ -159,7 +127,6 @@
|
||||
<script src="{{cdnjs "/static/js/main.js"}}" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
$(function () {
|
||||
var editTeamDialogModal = $("#editTeamDialogModal");
|
||||
|
||||
$("#addTeamDialogModal").on("show.bs.modal", function () {
|
||||
window.addTeamDialogModalHtml = $(this).find("form").html();
|
||||
@ -187,12 +154,14 @@
|
||||
});
|
||||
}).on("hidden.bs.modal", function () {
|
||||
$(this).find("form").html(window.addTeamDialogModalHtml);
|
||||
}).on("shown.bs.modal",function () {
|
||||
$(this).find("input[name='teamId']").focus();
|
||||
});
|
||||
|
||||
|
||||
$("#addTeamDialogForm").ajaxForm({
|
||||
beforeSubmit: function () {
|
||||
var account = $.trim($("#addTeamDialogForm #teamName").val());
|
||||
var account = $.trim($("#addTeamDialogForm input[name='teamId']").val());
|
||||
if (account === "") {
|
||||
return showError("团队名称不能为空");
|
||||
}
|
||||
@ -215,39 +184,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
editTeamDialogModal.on("shown.bs.modal",function () {
|
||||
$(this).find("input[name='teamName']").focus();
|
||||
});
|
||||
$("#editTeamDialogForm").ajaxForm({
|
||||
beforeSubmit: function () {
|
||||
var account = $.trim(editTeamDialogModal.find("input[name='teamName']").val());
|
||||
if (account === "") {
|
||||
return showError("团队名称不能为空");
|
||||
}
|
||||
$("#btnEditTeam").button("loading");
|
||||
return true;
|
||||
},success :function ($res) {
|
||||
if ($res.errcode === 0) {
|
||||
for (var index in app.lists) {
|
||||
var item = app.lists[index];
|
||||
if (item.team_id == $res.data.team_id) {
|
||||
app.lists.splice(index, 1, $res.data);
|
||||
break;
|
||||
}
|
||||
}
|
||||
editTeamDialogModal.modal("hide");
|
||||
}else {
|
||||
showError($res.message);
|
||||
}
|
||||
},
|
||||
error: function () {
|
||||
showError("服务器异常");
|
||||
},
|
||||
complete: function () {
|
||||
$("#btnEditTeam").button("reset");
|
||||
}
|
||||
});
|
||||
|
||||
var app = new Vue({
|
||||
el: "#teamList",
|
||||
data: {
|
||||
|
Loading…
Reference in New Issue
Block a user