Merge branch 'develop' of https://git.trustie.net/jacknudt/trustieforge into develop
Conflicts: app/views/issues/_form.html.erb db/schema.rb
This commit is contained in:
commit
7899bfe985
4
Gemfile
4
Gemfile
|
@ -50,10 +50,10 @@ gem 'elasticsearch-model'
|
||||||
gem 'elasticsearch-rails'
|
gem 'elasticsearch-rails'
|
||||||
|
|
||||||
#rails 3.2.22.2 bug
|
#rails 3.2.22.2 bug
|
||||||
gem "test-unit", "~>3.0"
|
# gem "test-unit", "~>3.0"
|
||||||
|
|
||||||
### profile
|
### profile
|
||||||
gem 'oneapm_rpm'
|
# gem 'oneapm_rpm'
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
gem 'grape-swagger'
|
gem 'grape-swagger'
|
||||||
|
|
|
@ -89,11 +89,15 @@ module Mobile
|
||||||
tip = 0 #0班级1项目
|
tip = 0 #0班级1项目
|
||||||
type = params[:type]
|
type = params[:type]
|
||||||
result = 1
|
result = 1
|
||||||
|
|
||||||
|
#0回复 1回复的回复
|
||||||
|
reply_type = params[:reply_type]
|
||||||
|
|
||||||
|
update_id = 0
|
||||||
|
|
||||||
if params[:content]!="" && current_user
|
if params[:content]!="" && current_user
|
||||||
case type
|
case type
|
||||||
when "HomeworkCommon"
|
when "HomeworkCommon"
|
||||||
homework_common = HomeworkCommon.find(params[:id])
|
|
||||||
|
|
||||||
#如果是私有的 并且不是成员则不能回复
|
#如果是私有的 并且不是成员则不能回复
|
||||||
# is_public = homework_common.course.is_public
|
# is_public = homework_common.course.is_public
|
||||||
# if is_public == 0 && !current_user.member_of_course?(homework_common.course)
|
# if is_public == 0 && !current_user.member_of_course?(homework_common.course)
|
||||||
|
@ -106,15 +110,29 @@ module Mobile
|
||||||
# result = 2
|
# result = 2
|
||||||
# end
|
# end
|
||||||
# end
|
# end
|
||||||
|
if reply_type == nil || reply_type == 0
|
||||||
|
homework_common = HomeworkCommon.find(params[:id])
|
||||||
feedback = HomeworkCommon.add_homework_jour(current_user, params[:content], params[:id])
|
feedback = HomeworkCommon.add_homework_jour(current_user, params[:content], params[:id])
|
||||||
if (feedback.errors.empty?)
|
if (feedback.errors.empty?)
|
||||||
homework_common.update_column(:updated_at, Time.now)
|
homework_common.update_column(:updated_at, Time.now)
|
||||||
result = 2
|
result = 2
|
||||||
|
update_id = homework_common.id
|
||||||
|
end
|
||||||
|
else
|
||||||
|
#二级回复
|
||||||
|
reply = JournalsForMessage.find params[:id].to_i
|
||||||
|
homework_common = HomeworkCommon.find reply.jour_id
|
||||||
|
|
||||||
|
options = {:notes => params[:content], :reply_id => reply.user_id,:user_id => current_user.id,:m_parent_id => params[:id].to_i,:m_reply_id => params[:id].to_i}
|
||||||
|
feedback = HomeworkCommon.add_homework_jour(current_user, params[:content], reply.jour_id, options)
|
||||||
|
if (feedback.errors.empty?)
|
||||||
|
homework_common.update_column(:updated_at, Time.now)
|
||||||
|
result = 2
|
||||||
|
update_id = homework_common.id
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
when "News"
|
when "News"
|
||||||
news = News.find(params[:id])
|
|
||||||
|
|
||||||
# if news.project
|
# if news.project
|
||||||
# if news.project.is_public == false && !current_user.member_of?(news.project)
|
# if news.project.is_public == false && !current_user.member_of?(news.project)
|
||||||
# status = -1
|
# status = -1
|
||||||
|
@ -126,19 +144,28 @@ module Mobile
|
||||||
# tip = 0
|
# tip = 0
|
||||||
# end
|
# end
|
||||||
# end
|
# end
|
||||||
|
|
||||||
if status == 0
|
if status == 0
|
||||||
|
if reply_type == nil || reply_type == 0
|
||||||
|
news = News.find(params[:id])
|
||||||
comment = Comment.new
|
comment = Comment.new
|
||||||
comment.comments = params[:content]
|
comment.comments = params[:content]
|
||||||
comment.author = current_user
|
comment.author = current_user
|
||||||
if news.comments << comment
|
if news.comments << comment
|
||||||
result = 2
|
result = 2
|
||||||
|
update_id = news.id
|
||||||
|
end
|
||||||
|
else
|
||||||
|
#二级回复
|
||||||
|
comment = Comment.find(params[:id])
|
||||||
|
news = News.find comment.commented_id
|
||||||
|
new_comment = news.comments.build(:author_id => current_user.id, :reply_id => params[:id], :comments => params[:content], :parent_id => comment.id)
|
||||||
|
if new_comment.save
|
||||||
|
result = 2
|
||||||
|
update_id = news.id
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
when "Message"
|
when "Message"
|
||||||
message = Message.find(params[:id])
|
|
||||||
board = Board.find(message.board_id)
|
|
||||||
|
|
||||||
# if message.project
|
# if message.project
|
||||||
# if message.project.is_public == false && !current_user.member_of?(message.project)
|
# if message.project.is_public == false && !current_user.member_of?(message.project)
|
||||||
# status = -1
|
# status = -1
|
||||||
|
@ -152,6 +179,9 @@ module Mobile
|
||||||
# end
|
# end
|
||||||
|
|
||||||
if status == 0
|
if status == 0
|
||||||
|
# if reply_type == nil || reply_type == 0
|
||||||
|
message = Message.find(params[:id])
|
||||||
|
board = Board.find(message.board_id)
|
||||||
topic = message.root
|
topic = message.root
|
||||||
reply = Message.new
|
reply = Message.new
|
||||||
reply.author = current_user
|
reply.author = current_user
|
||||||
|
@ -159,13 +189,16 @@ module Mobile
|
||||||
reply.content = params[:content]
|
reply.content = params[:content]
|
||||||
reply.parent_id = params[:id]
|
reply.parent_id = params[:id]
|
||||||
reply.subject = "RE: #{topic.subject}"
|
reply.subject = "RE: #{topic.subject}"
|
||||||
if topic.children << reply
|
if message.children << reply
|
||||||
result = 2
|
result = 2
|
||||||
|
update_id = topic.id
|
||||||
end
|
end
|
||||||
|
# else
|
||||||
|
#二级回复
|
||||||
|
|
||||||
|
# end
|
||||||
end
|
end
|
||||||
when "JournalsForMessage"
|
when "JournalsForMessage"
|
||||||
jour = JournalsForMessage.find params[:id]
|
|
||||||
|
|
||||||
# if jour.jour_type == "Project"
|
# if jour.jour_type == "Project"
|
||||||
# if jour.project.is_public == false && !current_user.member_of?(jour.project)
|
# if jour.project.is_public == false && !current_user.member_of?(jour.project)
|
||||||
# status = -1
|
# status = -1
|
||||||
|
@ -179,6 +212,8 @@ module Mobile
|
||||||
# end
|
# end
|
||||||
|
|
||||||
if status == 0
|
if status == 0
|
||||||
|
# if reply_type == nil || reply_type == 0
|
||||||
|
jour = JournalsForMessage.find(params[:id]).root
|
||||||
parent_id = params[:id]
|
parent_id = params[:id]
|
||||||
author_id = current_user.id
|
author_id = current_user.id
|
||||||
reply_user_id = jour.user_id
|
reply_user_id = jour.user_id
|
||||||
|
@ -195,26 +230,48 @@ module Mobile
|
||||||
if jfm.errors.empty?
|
if jfm.errors.empty?
|
||||||
(JournalsForMessage.find parent_id).update_attribute(:updated_on,Time.now)
|
(JournalsForMessage.find parent_id).update_attribute(:updated_on,Time.now)
|
||||||
result = 2
|
result = 2
|
||||||
|
update_id = jour.id
|
||||||
end
|
end
|
||||||
|
# else
|
||||||
|
#二级回复
|
||||||
|
|
||||||
|
# end
|
||||||
end
|
end
|
||||||
when 'Issue'
|
when 'Issue'
|
||||||
issue = Issue.find params[:id]
|
|
||||||
|
|
||||||
# if issue.project.is_public == false && !current_user.member_of?(issue.project)
|
# if issue.project.is_public == false && !current_user.member_of?(issue.project)
|
||||||
# status = -1
|
# status = -1
|
||||||
# tip = 1
|
# tip = 1
|
||||||
# end
|
# end
|
||||||
|
|
||||||
if status == 0
|
if status == 0
|
||||||
|
if reply_type == nil || reply_type == 0
|
||||||
|
issue = Issue.find params[:id]
|
||||||
is_jour = Journal.new
|
is_jour = Journal.new
|
||||||
is_jour.user_id = current_user.id
|
is_jour.user_id = current_user.id
|
||||||
is_jour.notes = params[:content]
|
is_jour.notes = params[:content]
|
||||||
is_jour.journalized = issue
|
is_jour.journalized = issue
|
||||||
if is_jour.save
|
if is_jour.save
|
||||||
result = 2
|
result = 2
|
||||||
|
update_id = issue.id
|
||||||
|
end
|
||||||
|
else
|
||||||
|
#二级回复
|
||||||
|
jour = Journal.find(params[:id])
|
||||||
|
issue = jour.journalized
|
||||||
|
is_jour = Journal.new
|
||||||
|
is_jour.user_id = current_user.id
|
||||||
|
is_jour.notes = params[:content]
|
||||||
|
is_jour.reply_id = params[:id]
|
||||||
|
is_jour.parent_id = params[:id]
|
||||||
|
is_jour.journalized = issue
|
||||||
|
if is_jour.save
|
||||||
|
result = 2
|
||||||
|
update_id = issue.id
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
when 'BlogComment'
|
when 'BlogComment'
|
||||||
|
if reply_type == nil || reply_type == 0
|
||||||
blog = BlogComment.find(params[:id]).root
|
blog = BlogComment.find(params[:id]).root
|
||||||
blogComment = BlogComment.new
|
blogComment = BlogComment.new
|
||||||
blogComment.author = current_user
|
blogComment.author = current_user
|
||||||
|
@ -223,20 +280,40 @@ module Mobile
|
||||||
blogComment.title = "RE: #{blog.title}"
|
blogComment.title = "RE: #{blog.title}"
|
||||||
if blog.children << blogComment
|
if blog.children << blogComment
|
||||||
result = 2
|
result = 2
|
||||||
|
update_id = blog.id
|
||||||
|
end
|
||||||
|
else
|
||||||
|
#二级回复
|
||||||
|
blog = BlogComment.find(params[:id]).root
|
||||||
|
blogComment = BlogComment.new
|
||||||
|
blogComment.author = current_user
|
||||||
|
blogComment.blog = blog.blog
|
||||||
|
blogComment.content = params[:content]
|
||||||
|
blogComment.title = "RE: #{blog.title}"
|
||||||
|
parent = BlogComment.find params[:id]
|
||||||
|
blogComment.parent_id = params[:id] #被回复的回复
|
||||||
|
blogComment.reply_id = parent.author.id #被回复者id
|
||||||
|
|
||||||
|
if parent.children << blogComment
|
||||||
|
result = 2
|
||||||
|
update_id = blog.id
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if result == 2
|
if result == 2
|
||||||
update_course_activity_api(type,params[:id])
|
update_course_activity_api(type,update_id)
|
||||||
update_user_activity_api(type,params[:id])
|
update_user_activity_api(type,update_id)
|
||||||
update_org_activity_api(type,params[:id])
|
update_org_activity_api(type,update_id)
|
||||||
update_forge_activity_api(type,params[:id])
|
update_forge_activity_api(type,update_id)
|
||||||
update_principal_activity_api(type,params[:id])
|
update_principal_activity_api(type,update_id)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
result = 3
|
result = 3
|
||||||
end
|
end
|
||||||
present :result, result
|
present :result, result
|
||||||
present :status, status
|
present :status, status
|
||||||
|
present :act_id, update_id
|
||||||
present :tip, tip
|
present :tip, tip
|
||||||
present :subscribe,subscribe
|
present :subscribe,subscribe
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,6 +4,61 @@ module Mobile
|
||||||
class Users < Grape::API
|
class Users < Grape::API
|
||||||
resource :users do
|
resource :users do
|
||||||
|
|
||||||
|
desc "我的资料"
|
||||||
|
params do
|
||||||
|
requires :token, type: String
|
||||||
|
end
|
||||||
|
|
||||||
|
get 'get_userinfo' do
|
||||||
|
authenticate!
|
||||||
|
present :data, current_user, with: Mobile::Entities::User
|
||||||
|
present :status, 0
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "上传头像"
|
||||||
|
params do
|
||||||
|
requires :token, type: String
|
||||||
|
requires :imgdata, type: String
|
||||||
|
end
|
||||||
|
|
||||||
|
post 'upload_head' do
|
||||||
|
authenticate!
|
||||||
|
#直接生成头像
|
||||||
|
dirPath = "public/images/avatars/User"
|
||||||
|
|
||||||
|
fileDir = dirPath + "/"+current_user.id.to_s
|
||||||
|
imgdata = Base64.decode64(params[:imgdata].split(",")[1])
|
||||||
|
if imgdata.length > 1024*1024
|
||||||
|
present :message,"上传图片不能超过1M"
|
||||||
|
present :status, -1
|
||||||
|
else
|
||||||
|
begin
|
||||||
|
File.open(fileDir,'wb'){ |f| f.write(imgdata) }
|
||||||
|
present :status, 0
|
||||||
|
rescue
|
||||||
|
present :message,"上传失败"
|
||||||
|
present :status, -1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "解除绑定"
|
||||||
|
params do
|
||||||
|
requires :token, type: String
|
||||||
|
end
|
||||||
|
|
||||||
|
post 'user_unbind' do
|
||||||
|
authenticate!
|
||||||
|
|
||||||
|
user = current_user
|
||||||
|
uw = user.user_wechat
|
||||||
|
|
||||||
|
us = UsersService.new
|
||||||
|
us.wechat_unbind user.user_wechat
|
||||||
|
|
||||||
|
present :status, 0
|
||||||
|
end
|
||||||
|
|
||||||
desc "查询是否已绑定"
|
desc "查询是否已绑定"
|
||||||
params do
|
params do
|
||||||
requires :openid, type: String, desc: 'wechat openid'
|
requires :openid, type: String, desc: 'wechat openid'
|
||||||
|
@ -221,6 +276,73 @@ module Mobile
|
||||||
present :data,my_jours,with:Mobile::Entities::Jours
|
present :data,my_jours,with:Mobile::Entities::Jours
|
||||||
present :status,0
|
present :status,0
|
||||||
end
|
end
|
||||||
|
|
||||||
|
desc "修改我的资料"
|
||||||
|
|
||||||
|
params do
|
||||||
|
requires :token, type: String
|
||||||
|
requires :lastname, type: String
|
||||||
|
requires :sex, type: Integer
|
||||||
|
requires :mail, type: String
|
||||||
|
end
|
||||||
|
|
||||||
|
post 'edit_userinfo' do
|
||||||
|
authenticate!
|
||||||
|
user = current_user
|
||||||
|
status = 0
|
||||||
|
message = ""
|
||||||
|
|
||||||
|
#昵称 不能超过30个字符
|
||||||
|
if params[:lastname].length > 30 then
|
||||||
|
message = "姓名不能超过30个字符!"
|
||||||
|
status = -1
|
||||||
|
end
|
||||||
|
|
||||||
|
if params[:mail].length > 60 then
|
||||||
|
message = "邮箱地址不能超过60个字符!"
|
||||||
|
status = -1
|
||||||
|
end
|
||||||
|
|
||||||
|
if !(params[:mail].match(/\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i))
|
||||||
|
message = "请输入正确的邮箱地址!"
|
||||||
|
status = -1
|
||||||
|
end
|
||||||
|
|
||||||
|
if status == 0
|
||||||
|
# 修改邮箱的时候同步修改到gitlab
|
||||||
|
if user.mail != params[:mail]
|
||||||
|
g = Gitlab.client
|
||||||
|
begin
|
||||||
|
g.edit_user(user.gid, :email => params[:mail])
|
||||||
|
rescue
|
||||||
|
Rails.logger.error "sync user's email of gitlab failed!"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
user.mail = params[:mail]
|
||||||
|
|
||||||
|
user.lastname = params[:lastname]
|
||||||
|
|
||||||
|
se = user.extensions
|
||||||
|
|
||||||
|
se.gender = params[:sex]
|
||||||
|
|
||||||
|
if user.save && se.save
|
||||||
|
status = 0
|
||||||
|
else
|
||||||
|
message = "该邮箱地址已被使用!"
|
||||||
|
status = -1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if status == 0
|
||||||
|
present :data, current_user, with: Mobile::Entities::User
|
||||||
|
present :status, 0
|
||||||
|
else
|
||||||
|
present :status, -1
|
||||||
|
present :message, message
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -30,15 +30,24 @@ module Mobile
|
||||||
u.nil? ? "" : u.show_name
|
u.nil? ? "" : u.show_name
|
||||||
when :roles_id
|
when :roles_id
|
||||||
u[:roles_id].nil? ? nil : u.roles_id
|
u[:roles_id].nil? ? nil : u.roles_id
|
||||||
|
when :login
|
||||||
|
u.login
|
||||||
|
when :lastname
|
||||||
|
u.lastname
|
||||||
|
when :mail
|
||||||
|
u.mail
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
expose :id
|
expose :id
|
||||||
#头像
|
#头像
|
||||||
|
user_expose :login
|
||||||
|
user_expose :lastname
|
||||||
|
#邮箱地址
|
||||||
|
user_expose :mail
|
||||||
expose :nickname
|
expose :nickname
|
||||||
#真名
|
#真名
|
||||||
user_expose :img_url
|
user_expose :img_url
|
||||||
|
@ -51,8 +60,6 @@ module Mobile
|
||||||
#我的二维码
|
#我的二维码
|
||||||
#工作单位
|
#工作单位
|
||||||
user_expose :work_unit
|
user_expose :work_unit
|
||||||
#邮箱地址
|
|
||||||
user_expose :mail
|
|
||||||
#地区
|
#地区
|
||||||
user_expose :location
|
user_expose :location
|
||||||
#签名
|
#签名
|
||||||
|
|
|
@ -180,6 +180,7 @@ class IssuesController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# 用户发布新issue
|
||||||
def create
|
def create
|
||||||
call_hook(:controller_issues_new_before_save, { :params => params, :issue => @issue })
|
call_hook(:controller_issues_new_before_save, { :params => params, :issue => @issue })
|
||||||
@issue.save_attachments(params[:attachments] || (params[:issue] && params[:issue][:uploads]))
|
@issue.save_attachments(params[:attachments] || (params[:issue] && params[:issue][:uploads]))
|
||||||
|
@ -222,6 +223,7 @@ class IssuesController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def edit
|
def edit
|
||||||
|
# 修改实例变量的值
|
||||||
return unless update_issue_from_params
|
return unless update_issue_from_params
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
|
@ -230,6 +232,7 @@ class IssuesController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# 用户编辑更改issue
|
||||||
def update
|
def update
|
||||||
if params[:issue_detail]
|
if params[:issue_detail]
|
||||||
issue = Issue.find(params[:id])
|
issue = Issue.find(params[:id])
|
||||||
|
@ -237,6 +240,7 @@ class IssuesController < ApplicationController
|
||||||
@saved = update_user_issue_detail(issue, params)
|
@saved = update_user_issue_detail(issue, params)
|
||||||
return
|
return
|
||||||
else
|
else
|
||||||
|
# 修改实例变量的值
|
||||||
return unless update_issue_from_params
|
return unless update_issue_from_params
|
||||||
@issue.save_attachments(params[:attachments] || (params[:issue] && params[:issue][:uploads]))
|
@issue.save_attachments(params[:attachments] || (params[:issue] && params[:issue][:uploads]))
|
||||||
saved = false
|
saved = false
|
||||||
|
@ -572,6 +576,7 @@ class IssuesController < ApplicationController
|
||||||
@time_entry = TimeEntry.new(:issue => @issue, :project => @issue.project)
|
@time_entry = TimeEntry.new(:issue => @issue, :project => @issue.project)
|
||||||
@time_entry.attributes = params[:time_entry]
|
@time_entry.attributes = params[:time_entry]
|
||||||
|
|
||||||
|
# 更新issue状态时,journal表产生记录,返回@current_journal
|
||||||
@issue.init_journal(User.current)
|
@issue.init_journal(User.current)
|
||||||
|
|
||||||
issue_attributes = params[:issue]
|
issue_attributes = params[:issue]
|
||||||
|
|
|
@ -8,8 +8,21 @@ class OrgMemberController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# 组织子成员,及其分页
|
||||||
|
def org_member_paging
|
||||||
|
@organization = Organization.find(params[:org])
|
||||||
|
|
||||||
|
if User.current.admin? || User.current.admin_of_org?(@organization)
|
||||||
|
@members = OrgMember.where(:organization_id => @organization.id).all.sort
|
||||||
|
@members = paginateHelper @members, 20
|
||||||
|
respond_to do |format|
|
||||||
|
format.js
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@org = Organization.find(params[:org])
|
@organization = Organization.find(params[:org])
|
||||||
if params[:membership].nil?
|
if params[:membership].nil?
|
||||||
@fail_hint = l(:label_blank_user_lists_for_org)
|
@fail_hint = l(:label_blank_user_lists_for_org)
|
||||||
else
|
else
|
||||||
|
@ -17,9 +30,11 @@ class OrgMemberController < ApplicationController
|
||||||
role_id = params[:orgRole]
|
role_id = params[:orgRole]
|
||||||
member_ids.each do |user_id|
|
member_ids.each do |user_id|
|
||||||
member = OrgMember.create(:user_id => user_id, :created_at => Time.now)
|
member = OrgMember.create(:user_id => user_id, :created_at => Time.now)
|
||||||
@org.org_members << member
|
@organization.org_members << member
|
||||||
OrgMemberRole.create(:org_member_id => member.id, :role_id => role_id)
|
OrgMemberRole.create(:org_member_id => member.id, :role_id => role_id)
|
||||||
end
|
end
|
||||||
|
@members = (@organization.org_members).sort
|
||||||
|
@members = paginateHelper @members, 20
|
||||||
end
|
end
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.js
|
format.js
|
||||||
|
@ -32,7 +47,11 @@ class OrgMemberController < ApplicationController
|
||||||
@member_role = @member.org_member_roles[0]
|
@member_role = @member.org_member_roles[0]
|
||||||
@member_role.role_id = params[:org_member][:role_ids][0]
|
@member_role.role_id = params[:org_member][:role_ids][0]
|
||||||
@member_role.save
|
@member_role.save
|
||||||
@org = @member.organization
|
@organization = @member.organization
|
||||||
|
# 成员编辑角色后分页
|
||||||
|
@members = (@organization.org_members).sort
|
||||||
|
@members = paginateHelper @members, 20
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.js
|
format.js
|
||||||
end
|
end
|
||||||
|
@ -44,8 +63,10 @@ class OrgMemberController < ApplicationController
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
member = OrgMember.find(params[:id])
|
member = OrgMember.find(params[:id])
|
||||||
@org = member.organization
|
@organization = member.organization
|
||||||
member.destroy
|
member.destroy
|
||||||
|
@members = (@organization.org_members).sort
|
||||||
|
@members = paginateHelper @members, 20
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.js
|
format.js
|
||||||
end
|
end
|
||||||
|
|
|
@ -421,6 +421,8 @@ class OrganizationsController < ApplicationController
|
||||||
@organization = Organization.find(params[:id])
|
@organization = Organization.find(params[:id])
|
||||||
|
|
||||||
if User.current.admin? || User.current.admin_of_org?(@organization)
|
if User.current.admin? || User.current.admin_of_org?(@organization)
|
||||||
|
@members = OrgMember.where(:organization_id => @organization.id).all.sort
|
||||||
|
@members = paginateHelper @members, 20
|
||||||
else
|
else
|
||||||
render_403
|
render_403
|
||||||
end
|
end
|
||||||
|
@ -451,10 +453,11 @@ class OrganizationsController < ApplicationController
|
||||||
|
|
||||||
def members
|
def members
|
||||||
if @organization.is_public? || User.current.admin? || User.current.member_of_org?(@organization)
|
if @organization.is_public? || User.current.admin? || User.current.member_of_org?(@organization)
|
||||||
@members = OrgMember.where("organization_id =?", @organization.id)
|
@members = OrgMember.where(:organization_id => @organization.id).all.sort
|
||||||
else
|
else
|
||||||
render_403
|
render_403
|
||||||
end
|
end
|
||||||
|
@members = paginateHelper @members, 20
|
||||||
end
|
end
|
||||||
|
|
||||||
def more_org_projects
|
def more_org_projects
|
||||||
|
|
|
@ -580,6 +580,7 @@ class ProjectsController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@members = paginateHelper @members
|
@members = paginateHelper @members
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def update_message_status(user, project)
|
def update_message_status(user, project)
|
||||||
|
|
|
@ -2677,7 +2677,8 @@ class UsersController < ApplicationController
|
||||||
project_ids.each do |project_id|
|
project_ids.each do |project_id|
|
||||||
project = Project.find(project_id)
|
project = Project.find(project_id)
|
||||||
if project.news.map(&:id).exclude?(news.id)
|
if project.news.map(&:id).exclude?(news.id)
|
||||||
message = Message.create(:board_id => project.boards.first.id, :subject => news.title, :content => news.description, :author_id => User.current.id)
|
# message = Message.create(:board_id => project.boards.first.id, :subject => news.title, :content => news.description, :author_id => User.current.id)
|
||||||
|
message = News.create(:project_id => project.id, :title => news.title, :summary => news.summary, :description => news.description, :author_id => User.current.id, :created_on => Time.now )
|
||||||
# record forward to table forwards if new record is valid
|
# record forward to table forwards if new record is valid
|
||||||
if message.valid?
|
if message.valid?
|
||||||
news.forwards << Forward.new(:to_type => message.class.name, :to_id => message.id)
|
news.forwards << Forward.new(:to_type => message.class.name, :to_id => message.id)
|
||||||
|
@ -3515,11 +3516,15 @@ class UsersController < ApplicationController
|
||||||
@order, @c_sort, @type, @list_type = 1, 2, 1, 1
|
@order, @c_sort, @type, @list_type = 1, 2, 1, 1
|
||||||
#limit = 5
|
#limit = 5
|
||||||
|
|
||||||
@my_projects = @user.projects.visible.where("projects.user_id = #{@user.id}").select("projects.*,(SELECT MAX(updated_at) FROM `forge_activities` WHERE forge_activities.project_id = projects.id) AS updatetime").order("updatetime DESC")
|
# 用户的所有项目
|
||||||
|
# @my_projects = @user.projects.visible.where("projects.user_id = #{@user.id}").select("projects.*,(SELECT MAX(updated_at) FROM `forge_activities` WHERE forge_activities.project_id = projects.id) AS updatetime").order("updatetime DESC")
|
||||||
|
@my_projects = @user.projects.where("projects.user_id = #{@user.id}").select("projects.*,(SELECT MAX(updated_at) FROM `forge_activities` WHERE forge_activities.project_id = projects.id) AS updatetime").order("updatetime DESC")
|
||||||
@my_projects_count = @my_projects.count
|
@my_projects_count = @my_projects.count
|
||||||
|
|
||||||
@my_joined_projects = @user.projects.visible.where("projects.user_id != #{@user.id}").select("projects.*,(SELECT MAX(updated_at) FROM `forge_activities` WHERE forge_activities.project_id = projects.id) AS updatetime").order("updatetime DESC")
|
#@my_joined_projects = @user.projects.visible.where("projects.user_id != #{@user.id}").select("projects.*,(SELECT MAX(updated_at) FROM `forge_activities` WHERE forge_activities.project_id = projects.id) AS updatetime").order("updatetime DESC")
|
||||||
|
@my_joined_projects = @user.projects.where("projects.user_id != #{@user.id}").select("projects.*,(SELECT MAX(updated_at) FROM `forge_activities` WHERE forge_activities.project_id = projects.id) AS updatetime").order("updatetime DESC")
|
||||||
@my_joined_projects_count = @my_joined_projects.count
|
@my_joined_projects_count = @my_joined_projects.count
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html {render :layout => 'new_base_user'}
|
format.html {render :layout => 'new_base_user'}
|
||||||
end
|
end
|
||||||
|
|
|
@ -167,6 +167,27 @@ class WechatsController < ActionController::Base
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
on :click, with: 'UNBIND' do |request, key|
|
||||||
|
uw = user_binded?(request[:FromUserName])
|
||||||
|
unless uw
|
||||||
|
request.reply.text "您还未绑定帐号"
|
||||||
|
else
|
||||||
|
#解除绑定
|
||||||
|
us = UsersService.new
|
||||||
|
us.wechat_unbind uw
|
||||||
|
|
||||||
|
tmpurl = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=#{Wechat.config.appid}&redirect_uri=#{ROOT_URL+'/wechat/user_activities'}&response_type=code&scope=snsapi_base&state=login&connect_redirect=1#wechat_redirect"
|
||||||
|
news = (1..1).each_with_object([]) { |n, memo| memo << { title: '重新绑定提醒',
|
||||||
|
content: "尊敬的用户,您已解除绑定。\n解除时间:#{format_time(Time.now)}\n点击进入重新绑定!"} }
|
||||||
|
request.reply.news(news) do |article, n, index| # article is return object
|
||||||
|
url = tmpurl
|
||||||
|
article.item title: "#{n[:title]}",
|
||||||
|
description: n[:content],
|
||||||
|
url: url
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def join_class_request(request)
|
def join_class_request(request)
|
||||||
openid = request[:FromUserName]
|
openid = request[:FromUserName]
|
||||||
wl = WechatLog.where("openid = '#{openid}' and request_raw like '%\"Event\":\"click\"%'").order('id desc').first
|
wl = WechatLog.where("openid = '#{openid}' and request_raw like '%\"Event\":\"click\"%'").order('id desc').first
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
module OrgMemberHelper
|
module OrgMemberHelper
|
||||||
include ApplicationHelper
|
include ApplicationHelper
|
||||||
|
|
||||||
def find_user_not_in_current_org_by_name org
|
def find_user_not_in_current_org_by_name org
|
||||||
if params[:q] && params[:q].lstrip.rstrip != ""
|
if params[:q] && params[:q].lstrip.rstrip != ""
|
||||||
scope = Principal.active.sorted.not_member_of_org(org).like(params[:q])
|
scope = Principal.active.sorted.not_member_of_org(org).like(params[:q])
|
||||||
|
|
|
@ -757,6 +757,7 @@ class Issue < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# 更新issue时,判断更新之前当前是否有自动更新的评论
|
||||||
def init_journal(user, notes = "")
|
def init_journal(user, notes = "")
|
||||||
@current_journal ||= Journal.new(:journalized => self, :user => user, :notes => notes)
|
@current_journal ||= Journal.new(:journalized => self, :user => user, :notes => notes)
|
||||||
if new_record?
|
if new_record?
|
||||||
|
@ -1454,8 +1455,18 @@ class Issue < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
# Callback on file attachment
|
# Callback on file attachment
|
||||||
|
# 在执行issue模块前 执行:当附件被添加时,产生评论
|
||||||
|
# 第一次创建issue时,@current_journal为nil,评论不产生
|
||||||
|
# 当附件名称重名时,也不产生评论
|
||||||
|
# 当更新isuue时,第一次上传的附件的已经存在,则不更新次附件评论
|
||||||
def attachment_added(obj)
|
def attachment_added(obj)
|
||||||
if @current_journal && @current_journal.user_id == obj.author_id && JournalDetail.find_all_by_value(obj.filename).count == 0
|
|
||||||
|
# 找出该issue评论表中,附件重名的个数
|
||||||
|
jor = Journal.where(:journalized_id => self.id)
|
||||||
|
jor_ids = jor.empty? ? "(-1)" : "(" + jor.map{|detail| detail.id}.join(",") + ")"
|
||||||
|
jor_details_count = JournalDetail.where("journal_id in #{jor_ids} and value = '#{obj.filename}'").count
|
||||||
|
|
||||||
|
if @current_journal && @current_journal.user_id == obj.author_id && jor_details_count == 0 && self.attachments.find_all_by_filename(obj.filename).count == 0
|
||||||
@current_journal.details << JournalDetail.new(:property => 'attachment', :prop_key => obj.id, :value => obj.filename)
|
@current_journal.details << JournalDetail.new(:property => 'attachment', :prop_key => obj.id, :value => obj.filename)
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -941,46 +941,36 @@ class CoursesService
|
||||||
:description => description, :homework_state => state,:open_anonymous_evaluation => open_anonymous_evaluation}
|
:description => description, :homework_state => state,:open_anonymous_evaluation => open_anonymous_evaluation}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def student_homework_score(groupid,course_id, nums, score_sort_by, sort_type = 'score')
|
||||||
def student_homework_score(groupid,course_id, nums, score_sort_by)
|
|
||||||
#teachers = find_course_teachers(@course)
|
|
||||||
#start_from = start_from * nums
|
|
||||||
sql_select = ""
|
sql_select = ""
|
||||||
if groupid == 0
|
if groupid == 0
|
||||||
if nums == 0
|
sql_select = "SELECT members.*,(
|
||||||
sql_select = "SELECT members.*, SUM(homework_attaches.score) as score FROM members, homework_attaches
|
SELECT SUM(student_works.work_score)
|
||||||
WHERE members.course_id = #{course_id} AND members.user_id in (SELECT students_for_courses.student_id FROM students_for_courses WHERE course_id = #{course_id}) AND members.user_id = homework_attaches.user_id
|
FROM student_works,homework_commons
|
||||||
AND homework_attaches.bid_id in (SELECT bid_id FROM homework_for_courses WHERE course_id = #{course_id}) GROUP BY members.user_id
|
WHERE student_works.homework_common_id = homework_commons.id
|
||||||
UNION all
|
AND homework_commons.course_id = course_id
|
||||||
SELECT members.*, 0 as score FROM members,homework_attaches,students_for_courses WHERE members.course_id = #{course_id} AND
|
AND student_works.user_id = members.user_id
|
||||||
students_for_courses.course_id = #{course_id} and members.user_id = students_for_courses.student_id AND
|
) AS score,(SELECT (message_num*2 + message_reply_num*1 + news_reply_num*1 + news_num*1 +
|
||||||
members.user_id NOT IN (SELECT homework_attaches.user_id FROM homework_attaches WHERE homework_attaches.bid_id in (SELECT bid_id FROM homework_for_courses WHERE course_id = #{course_id} )
|
resource_num*5 + journal_num*1 + homework_journal_num*1 ) FROM `course_contributor_scores` AS ccs WHERE ccs.course_id = #{course_id} AND ccs.user_id = members.user_id
|
||||||
)
|
) AS act_score
|
||||||
GROUP BY members.user_id ORDER BY score #{score_sort_by}"
|
FROM members
|
||||||
|
JOIN students_for_courses
|
||||||
|
ON students_for_courses.student_id = members.user_id AND students_for_courses.course_id = members.course_id
|
||||||
|
WHERE members.course_id = #{course_id} ORDER BY #{sort_type} #{score_sort_by}"
|
||||||
else
|
else
|
||||||
sql_select = "SELECT members.*, SUM(homework_attaches.score) as score FROM members, homework_attaches
|
sql_select = "SELECT members.*,(
|
||||||
WHERE members.course_id = #{course_id} AND members.user_id in (SELECT students_for_courses.student_id FROM students_for_courses WHERE course_id = #{course_id}) AND members.user_id = homework_attaches.user_id
|
SELECT SUM(student_works.work_score)
|
||||||
AND homework_attaches.bid_id in (SELECT bid_id FROM homework_for_courses WHERE course_id = #{course_id}) GROUP BY members.user_id
|
FROM student_works,homework_commons
|
||||||
UNION all
|
WHERE student_works.homework_common_id = homework_commons.id
|
||||||
SELECT members.*, 0 as score FROM members,homework_attaches,students_for_courses WHERE members.course_id = #{course_id} AND
|
AND homework_commons.course_id = #{course_id}
|
||||||
students_for_courses.course_id = #{course_id} and members.user_id = students_for_courses.student_id AND
|
AND student_works.user_id = members.user_id
|
||||||
members.user_id NOT IN (SELECT homework_attaches.user_id FROM homework_attaches WHERE homework_attaches.bid_id in (SELECT bid_id FROM homework_for_courses WHERE course_id = #{course_id} )
|
) AS score,(SELECT (message_num*2 + message_reply_num*1 + news_reply_num*1 + news_num*1 +
|
||||||
)
|
resource_num*5 + journal_num*1 + homework_journal_num*1 ) FROM `course_contributor_scores` AS ccs WHERE ccs.course_id = #{course_id} AND ccs.user_id = members.user_id
|
||||||
GROUP BY members.user_id ORDER BY score #{score_sort_by} " #limit #{start_from}, #{nums}"
|
) AS act_score
|
||||||
|
FROM members
|
||||||
end
|
JOIN students_for_courses
|
||||||
else
|
ON students_for_courses.student_id = members.user_id AND students_for_courses.course_id = members.course_id
|
||||||
sql_select = "SELECT members.*, SUM(homework_attaches.score) as score FROM members, homework_attaches
|
WHERE members.course_id = #{course_id} AND members.course_group_id = #{groupid} ORDER BY #{sort_type} #{score_sort_by}"
|
||||||
WHERE members.course_id = #{course_id} AND members.user_id in (SELECT students_for_courses.student_id FROM students_for_courses WHERE course_id = #{course_id}) AND members.user_id = homework_attaches.user_id
|
|
||||||
and members.course_group_id = #{groupid} AND homework_attaches.bid_id in (SELECT bid_id FROM homework_for_courses WHERE course_id = #{course_id})
|
|
||||||
GROUP BY members.user_id
|
|
||||||
UNION all
|
|
||||||
SELECT members.*, 0 as score FROM members,homework_attaches,students_for_courses WHERE members.course_id = #{course_id}
|
|
||||||
and members.course_group_id = #{groupid} AND
|
|
||||||
students_for_courses.course_id = #{course_id} and members.user_id = students_for_courses.student_id AND
|
|
||||||
members.user_id NOT IN (SELECT homework_attaches.user_id FROM homework_attaches WHERE homework_attaches.bid_id in (SELECT bid_id FROM homework_for_courses WHERE course_id = #{course_id} )
|
|
||||||
)
|
|
||||||
GROUP BY members.user_id ORDER BY score #{score_sort_by}"
|
|
||||||
end
|
end
|
||||||
sql = ActiveRecord::Base.connection()
|
sql = ActiveRecord::Base.connection()
|
||||||
homework_scores = Member.find_by_sql(sql_select)
|
homework_scores = Member.find_by_sql(sql_select)
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#coding=utf-8
|
||||||
class UsersService
|
class UsersService
|
||||||
include ApplicationHelper
|
include ApplicationHelper
|
||||||
include AccountHelper
|
include AccountHelper
|
||||||
|
@ -319,8 +320,22 @@ class UsersService
|
||||||
my_jours_arr
|
my_jours_arr
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def wechat_unbind uw
|
||||||
|
user = uw.user
|
||||||
|
|
||||||
|
#发重新绑定的微信模版消息
|
||||||
|
|
||||||
|
type = "login"
|
||||||
|
title = "尊敬的用户,您已解除绑定。"
|
||||||
|
key1 = "个人原因"
|
||||||
|
remark = "点击进入重新绑定。"
|
||||||
|
|
||||||
|
ws = WechatService.new
|
||||||
|
ws.rebind_notice user.id, type, user.id, title, key1,format_time(Time.now), remark
|
||||||
|
|
||||||
|
uw.user_id = nil
|
||||||
|
uw.delete
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -445,4 +445,41 @@ class WechatService
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def rebind_notice(user_id, type, id, first, key1, key2,remark="")
|
||||||
|
uw = UserWechat.where(user_id: user_id).first
|
||||||
|
unless uw.nil?
|
||||||
|
data = {
|
||||||
|
touser:uw.openid,
|
||||||
|
template_id:Wechat.config.rebind_notice,
|
||||||
|
url:Wechat.config.auto_openid_url_1+Wechat.config.auto_openid_url_2+"login"+Wechat.config.auto_openid_url_3,
|
||||||
|
topcolor:"#FF0000",
|
||||||
|
data:{
|
||||||
|
first: {
|
||||||
|
value:first,
|
||||||
|
color:"#707070"
|
||||||
|
},
|
||||||
|
keyword1:{
|
||||||
|
value:key1,
|
||||||
|
color:"#707070"
|
||||||
|
},
|
||||||
|
keyword2:{
|
||||||
|
value:key2,
|
||||||
|
color:"#707070"
|
||||||
|
},
|
||||||
|
remark:{
|
||||||
|
value:remark,
|
||||||
|
color:"#707070"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#data = three_keys_template uw.openid,Wechat.config.create_class_notice, type, id, first, key1, key2, key3, remark
|
||||||
|
begin
|
||||||
|
req = Wechat.api.template_message_send Wechat::Message.to(uw.openid).template(data)
|
||||||
|
rescue Exception => e
|
||||||
|
Rails.logger.error "[rebind_notice] ===> #{e}"
|
||||||
|
end
|
||||||
|
Rails.logger.info "send over. #{req}"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
|
@ -74,7 +74,6 @@
|
||||||
});
|
});
|
||||||
function check_and_submit(doc){
|
function check_and_submit(doc){
|
||||||
$("#error").html('').hide();
|
$("#error").html('').hide();
|
||||||
check_forum_name();
|
|
||||||
if( $("textarea[name='forum[name]']").val().trim() == "" && $("textarea[name='forum[description]']").val().trim() != "" ){
|
if( $("textarea[name='forum[name]']").val().trim() == "" && $("textarea[name='forum[description]']").val().trim() != "" ){
|
||||||
$("#error").html("名称不能为空").show();
|
$("#error").html("名称不能为空").show();
|
||||||
return;
|
return;
|
||||||
|
@ -98,7 +97,6 @@
|
||||||
'<%= check_forum_name_forums_path %>',
|
'<%= check_forum_name_forums_path %>',
|
||||||
{"forum_name":encodeURIComponent(name)},
|
{"forum_name":encodeURIComponent(name)},
|
||||||
function(data){
|
function(data){
|
||||||
|
|
||||||
if( data == 'true'){
|
if( data == 'true'){
|
||||||
$("#error").html("贴吧名称已经存在").show();
|
$("#error").html("贴吧名称已经存在").show();
|
||||||
check_pass = false;
|
check_pass = false;
|
||||||
|
|
|
@ -78,7 +78,7 @@
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
<%= call_hook(:view_issues_form_details_bottom, {:issue => @issue, :form => f}) %>
|
<%= call_hook(:view_issues_form_details_bottom, {:issue => @issue, :form => f}) %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<a href="javascript:void(0);" onclick="issue_desc_editor.sync();$('#issue-form').submit();" class="blue_btn fl ml80"> 确定</a>
|
<a href="javascript:void(0);" onclick="issue_desc_editor.sync();$('#issue-form').submit();" class="blue_btn fl ml80" id="issue_confirm"> 确定</a>
|
||||||
<% if params[:action] == "new" %>
|
<% if params[:action] == "new" %>
|
||||||
<% if @copy_from %>
|
<% if @copy_from %>
|
||||||
<%= link_to "取消", issue_path(@copy_from), :class => "grey_btn fl mr50 ml10" %>
|
<%= link_to "取消", issue_path(@copy_from), :class => "grey_btn fl mr50 ml10" %>
|
||||||
|
|
|
@ -1,12 +1,5 @@
|
||||||
<% if @saved %>
|
<% if @saved %>
|
||||||
$("#issue_detail").replaceWith('<%= escape_javascript(render :partial => 'issues/detail') %>')
|
location.reload();
|
||||||
$("#issue_edit").replaceWith('<%= escape_javascript(render :partial => 'issues/edit') %>')
|
|
||||||
|
|
||||||
$("#issue_detail").show();
|
|
||||||
$("#issue_edit").hide();
|
|
||||||
$("#reply_div_<%= @issue.id %>").html("<%= escape_javascript(render :partial => 'issues/issue_replies', :locals => {:issue => @issue,:replies_all_i=>0}) %>");
|
|
||||||
sd_create_editor_from_data(<%= @issue.id%>, null, "100%","<%=@issue.class.name%>");
|
|
||||||
$(".homepagePostReplyBannerCount").html('<%= escape_javascript(render :partial => 'issues/issue_reply_banner') %>');
|
|
||||||
//edit里的编辑器貌似显示不出来,所以手动js生成。
|
//edit里的编辑器貌似显示不出来,所以手动js生成。
|
||||||
issue_desc_editor = KindEditor.create('#issue_description',
|
issue_desc_editor = KindEditor.create('#issue_description',
|
||||||
{"width":"85%",
|
{"width":"85%",
|
||||||
|
@ -31,6 +24,7 @@ issue_desc_editor = KindEditor.create('#issue_description',
|
||||||
// "allowFileManager":true,
|
// "allowFileManager":true,
|
||||||
// "uploadJson":"/kindeditor/upload",
|
// "uploadJson":"/kindeditor/upload",
|
||||||
// "fileManagerJson":"/kindeditor/filemanager"});
|
// "fileManagerJson":"/kindeditor/filemanager"});
|
||||||
|
|
||||||
<%else%>
|
<%else%>
|
||||||
alert('<%= @issue.errors.full_messages[0].to_s%>')
|
alert('<%= @issue.errors.full_messages[0].to_s%>')
|
||||||
<%end %>
|
<%end %>
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
<a href ="javascript:void(0);" disabled="true"><%= image_tag(url_to_avatar(User.current),:width =>"40",:height => "40",:alt=>"头像", :id => "nh_user_logo", :class => "portraitRadius") %></a>
|
<a href ="javascript:void(0);" disabled="true"><%= image_tag(url_to_avatar(User.current),:width =>"40",:height => "40",:alt=>"头像", :id => "nh_user_logo", :class => "portraitRadius") %></a>
|
||||||
<ul class="topnav_login_list none" id="topnav_login_list">
|
<ul class="topnav_login_list none" id="topnav_login_list">
|
||||||
<li>
|
<li>
|
||||||
<a href ="javascript:void(0);" class="menuGrey" disabled="true">修改资料</a>
|
<%= link_to "修改资料", my_account_path(:tip => 1), :class => "menuGrey"%>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href ="javascript:void(0);" class="menuGrey" disabled="true">我的组织</a>
|
<a href ="javascript:void(0);" class="menuGrey" disabled="true">我的组织</a>
|
||||||
|
|
|
@ -90,7 +90,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostReplyDes">
|
<div class="homepagePostReplyDes">
|
||||||
<div class="homepagePostReplyPublisher"><a href="<%=user_path(reply.author)%>" class="newsBlue mr10 f14"><%= reply.author.name%></a><%= format_date(reply.created_at) %></div>
|
<div class="homepagePostReplyPublisher"><a href="<%=user_path(reply.author)%>" class="newsBlue mr10 f14"><%= reply.author.name%></a><%= format_date(reply.created_at) %></div>
|
||||||
<div class="homepagePostReplyContent" id="activity_description_<%= reply.id %>"><%= h reply.content%></div>
|
<div class="homepagePostReplyContent" id="activity_description_<%= reply.id %>"><%= h reply.content.html_safe%></div>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(function(){
|
$(function(){
|
||||||
|
|
|
@ -90,6 +90,7 @@
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li nhname="tag" nh_tag_0="true" nh_tag_1="true" nh_tag_3="true" style="display:none;">
|
<li nhname="tag" nh_tag_0="true" nh_tag_1="true" nh_tag_3="true" style="display:none;">
|
||||||
|
<!-- 基本资料页面单位审核显示 -->
|
||||||
<% if User.current.user_extensions.nil? %>
|
<% if User.current.user_extensions.nil? %>
|
||||||
<input nhname="tag" autocomplete="off" maxlength="36" nh_tag_0="true" nh_tag_1="true" nh_tag_3="true" id="province" name="province" style="display: none;" class="w210 fl" type="text" placeholder="--请搜索您所在的高校(单位)--" >
|
<input nhname="tag" autocomplete="off" maxlength="36" nh_tag_0="true" nh_tag_1="true" nh_tag_3="true" id="province" name="province" style="display: none;" class="w210 fl" type="text" placeholder="--请搜索您所在的高校(单位)--" >
|
||||||
<input nhname="tag" nh_tag_4="true" id="occupation" name="occupation" style="display: none;" class="w210" type="text" value="" placeholder=" --请选择您所属的单位--"/>
|
<input nhname="tag" nh_tag_4="true" id="occupation" name="occupation" style="display: none;" class="w210" type="text" value="" placeholder=" --请选择您所属的单位--"/>
|
||||||
|
@ -98,13 +99,14 @@
|
||||||
<span id="hint" style="color: #7f7f7f;display: none"><a id="school_num" href="javascript:void(0)" style="color: red" ></a><a id="search_condition" href="javascript:void(0)"></a></span>
|
<span id="hint" style="color: #7f7f7f;display: none"><a id="school_num" href="javascript:void(0)" style="color: red" ></a><a id="search_condition" href="javascript:void(0)"></a></span>
|
||||||
</p>
|
</p>
|
||||||
<!--<input nhname="tag" nh_tag_0="true" nh_tag_1="true" id="occupation_name" type="text" style="display: none;width:117px;" readonly/>-->
|
<!--<input nhname="tag" nh_tag_0="true" nh_tag_1="true" id="occupation_name" type="text" style="display: none;width:117px;" readonly/>-->
|
||||||
|
<!-- 从业者选择单位名称 -->
|
||||||
<% elsif User.current.user_extensions.identity == 3 || User.current.user_extensions.identity == 2 %>
|
<% elsif User.current.user_extensions.identity == 3 || User.current.user_extensions.identity == 2 %>
|
||||||
<% if User.current.user_extensions.school_id.nil? %>
|
<% if User.current.user_extensions.school_id.nil? %>
|
||||||
<input nhname="tag" autocomplete="off" maxlength="36" nh_tag_0="true" nh_tag_1="true" nh_tag_3="true" id="province" name="province" style="display: none;" class="w210 fl" type="text" placeholder="--请搜索您所在的高校(单位)--" >
|
<input nhname="tag" autocomplete="off" maxlength="36" nh_tag_0="true" nh_tag_1="true" nh_tag_3="true" id="province" name="province" style="display: none;" class="w210 fl" type="text" placeholder="--请搜索您所在的高校(单位)--" >
|
||||||
<input nhname="tag" nh_tag_4="true" id="occupation" name="occupation" style="display: none;" class="w210" type="text" value="<%= @user.user_extensions.occupation %>" />
|
<input nhname="tag" nh_tag_4="true" id="occupation" name="occupation" style="display: none;" class="w210" type="text" value="<%= @user.user_extensions.occupation %>" />
|
||||||
<% else %>
|
<% else %>
|
||||||
<input nhname="tag" autocomplete="off" maxlength="36" nh_tag_0="true" nh_tag_1="true" nh_tag_3="true" id="province" name="province" style="display: none;" class="w210 fl" type="text"value="<%= User.current.user_extensions.school %>" >
|
<input nhname="tag" autocomplete="off" maxlength="36" nh_tag_0="true" nh_tag_1="true" nh_tag_3="true" id="province" name="province" style="display: none;" class="w210 fl" type="text"value="<%= User.current.user_extensions.school %>" >
|
||||||
<input nhname="tag" nh_tag_4="true" id="occupation" name="occupation" style="display: none;" class="w210" type="text" value="<%= @user.user_extensions.occupation %>" />
|
<input nhname="tag" nh_tag_4="true" id="occupation" name="occupation" style="display: none;" class="w210" type="text" value="<%= @user.user_extensions.school.id %>" /> <!-- 单位名称的test框选中下拉列表框的id -->
|
||||||
<% end %>
|
<% end %>
|
||||||
<p class="fl ml10">
|
<p class="fl ml10">
|
||||||
<!-- <span id="errortip" class="icons_warning fl mt5" style="display: none;"></span> -->
|
<!-- <span id="errortip" class="icons_warning fl mt5" style="display: none;"></span> -->
|
||||||
|
@ -605,12 +607,15 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// 基本资料页面提交表单时,判断身份与单位是否合法
|
||||||
function my_account_form_submit(){
|
function my_account_form_submit(){
|
||||||
if($("#userIdentity").val() == -1 ) {
|
if($("#userIdentity").val() == -1 ) {
|
||||||
$("#identity_hint").html('<span style="color:red">请选择身份</span>').show();
|
$("#identity_hint").html('<span style="color:red">请选择身份</span>').show();
|
||||||
e.stopImmediatePropagation();
|
e.stopImmediatePropagation(); // 阻止事件冒泡
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 单位或高校必须从下拉列表中选择
|
||||||
if( $("input[name='province']").val().trim() != '' && $("input[name='occupation']").val().trim() == ''){ //学校名字和id不对的话
|
if( $("input[name='province']").val().trim() != '' && $("input[name='occupation']").val().trim() == ''){ //学校名字和id不对的话
|
||||||
$("#hint").html('<span style="color:red">单位名称必须是从下拉列表中选择的,不能手动修改</span>').show();
|
$("#hint").html('<span style="color:red">单位名称必须是从下拉列表中选择的,不能手动修改</span>').show();
|
||||||
e.stopImmediatePropagation();
|
e.stopImmediatePropagation();
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
<% if @fail_hint %>
|
<% if @fail_hint %>
|
||||||
alert("<%= @fail_hint %>");
|
alert("<%= @fail_hint %>");
|
||||||
<% else %>
|
<% else %>
|
||||||
$("#org_member_list").html('<%= escape_javascript( render :partial=>"organizations/org_member_list",:locals=> {:members=>@org.org_members}) %>');
|
// 组织添加成员后,同步刷新成员列表,左侧成员数
|
||||||
|
$("#org_member_list").html('<%= escape_javascript( render :partial => "organizations/org_member_list", :locals => {:members => @members}) %>');
|
||||||
$("#principals_for_new_member").html('');
|
$("#principals_for_new_member").html('');
|
||||||
$("#org_members_count_id").html("<%= @org.org_members.count %>");
|
$("#org_members_count_id").html("<%= @organization.org_members.count %>");
|
||||||
$("#not_org_member_search").val("");
|
$("#not_org_member_search").val("");
|
||||||
<% end %>
|
<% end %>
|
|
@ -1,3 +1,4 @@
|
||||||
|
// 删除成员后,同步刷新成员列表与左侧成员显示数
|
||||||
$("#org_members_count_id").html("");
|
$("#org_members_count_id").html("");
|
||||||
$("#org_members_count_id").html("<%= @org.org_members.count %>")
|
$("#org_members_count_id").html("<%= @organization.org_members.count %>");
|
||||||
$("#org_member_list").html('<%= escape_javascript( render :partial=>"organizations/org_member_list",:locals=> {:members=>@org.org_members}) %>');
|
$("#org_member_list").html('<%= escape_javascript( render :partial => "organizations/org_member_list", :locals=> {:members => @members}) %>');
|
|
@ -1,3 +1,4 @@
|
||||||
|
// 组织成员删除后,同步刷新成员数和成员列表
|
||||||
$("#org_members_count_id").html("");
|
$("#org_members_count_id").html("");
|
||||||
$("#org_members_count_id").html("<%= @org.org_members.count %>")
|
$("#org_members_count_id").html("<%= @organization.org_members.count %>");
|
||||||
$("#org_member_list").html('<%= escape_javascript( render :partial=>"organizations/org_member_list",:locals=> {:members=>@org.org_members}) %>');
|
$("#org_member_list").html('<%= escape_javascript( render :partial => "organizations/org_member_list", :locals => {:members => @members}) %>');
|
|
@ -4,11 +4,11 @@
|
||||||
{
|
{
|
||||||
alert('翻页或搜索后将丢失当前选择的用户数据!');
|
alert('翻页或搜索后将丢失当前选择的用户数据!');
|
||||||
}
|
}
|
||||||
<% if @flag == "true"%>
|
<%# if @flag == "true"%>
|
||||||
|
// $('#principals_for_new_member').html('<%#= escape_javascript(find_user_not_in_current_org_by_name(@org)) %>');
|
||||||
|
<%# else%>
|
||||||
$('#principals_for_new_member').html('<%= escape_javascript(find_user_not_in_current_org_by_name(@org)) %>');
|
$('#principals_for_new_member').html('<%= escape_javascript(find_user_not_in_current_org_by_name(@org)) %>');
|
||||||
<% else%>
|
<%# end%>
|
||||||
$('#principals_for_new_member').html('<%= escape_javascript(find_user_not_in_current_org_by_name(@org)) %>');
|
|
||||||
<% end%>
|
|
||||||
|
|
||||||
<% end %>
|
<% end %>
|
||||||
var collection = $("#principals_for_new_member").children("#principals").children("label");
|
var collection = $("#principals_for_new_member").children("#principals").children("label");
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
<% if @organization %>
|
||||||
|
// 局部更新组织页面子模块 id = org_member_list
|
||||||
|
$('#org_member_list').html("<%= escape_javascript(render :partial => 'organizations/org_member_list', :locals => {:members => @members}) %>");
|
||||||
|
<% end %>
|
|
@ -1 +1,2 @@
|
||||||
$("#org_member_list").html('<%= escape_javascript( render :partial=>"organizations/org_member_list",:locals=> {:members=>@org.org_members}) %>');
|
// 编辑成员列表角色后,刷新成员列表
|
||||||
|
$("#org_member_list").html('<%= escape_javascript( render :partial => "organizations/org_member_list",:locals => {:members => @members}) %>');
|
|
@ -103,22 +103,20 @@
|
||||||
<%= link_to "#{field.name}", show_org_subfield_organization_path(:id => organization.id, :sub_dir_name => field.subfield_subdomain_dir.name), :class => "homepageMenuText homepageMenuControl hidden", :onclick => "$('#homepageLeftMenuPost').slideToggle();" %>
|
<%= link_to "#{field.name}", show_org_subfield_organization_path(:id => organization.id, :sub_dir_name => field.subfield_subdomain_dir.name), :class => "homepageMenuText homepageMenuControl hidden", :onclick => "$('#homepageLeftMenuPost').slideToggle();" %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= link_to "#{field.name}", organization_path(organization, :org_subfield_id => field.id), :class => "homepageMenuText homepageMenuControl hidden", :onclick => "$('#homepageLeftMenuPost').slideToggle();" %>
|
<!-- link_to "#{field.name}", organization_path(organization, :org_subfield_id => field.id), :class => "homepageMenuText homepageMenuControl hidden", :onclick => "$('#homepageLeftMenuPost').slideToggle();" -->
|
||||||
|
<a href = "javascript:void(0);" class = "homepageMenuText" onclick = "$('#PostDomain_<%= field.id %>').slideToggle();"><%= field.name %></a>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% if User.current.logged? and User.current.admin_of_org?(organization) %>
|
<% if User.current.logged? and User.current.admin_of_org?(organization) %>
|
||||||
<%=link_to "", new_organization_org_document_comment_path(organization, :field_id => field.id), :method => "get", :class => "homepageMenuSetting fr", :title => "发布帖子" %>
|
<%=link_to "", new_organization_org_document_comment_path(organization, :field_id => field.id), :method => "get", :class => "homepageMenuSetting fr", :title => "发布帖子" %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
<div class="<%= (field.sub_domains.count == 0) ? 'homepageLeftMenuCourses':'homepageLeftMenuCourses borderBottomNone' %>" id="PostDomain_<%= field.id %>" style="display:none;">
|
<div class="homepageLeftMenuCourses" id="PostDomain_<%= field.id %>" style="display:<%= field.sub_domains.count == 0 ? 'none' : '' %>">
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<%= render :partial => 'organizations/org_subdomain',:locals => {:subdomains => field.sub_domains.reorder('priority').uniq, :org_subfield_id => field.id} %>
|
<%= render :partial => 'organizations/org_subdomain',:locals => {:subdomains => field.sub_domains.reorder('priority').uniq, :org_subfield_id => field.id} %>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<% unless (field.sub_domains.count == 0 || !if_hidden_subdomain(field)) %>
|
|
||||||
<li class="homepageLeftMenuMore" id="sub_domain_jiantou_<%= field %>">
|
|
||||||
<a href="javascript:void(0);" class="homepageLeftMenuMoreIcon" onclick="$('#PostDomain_<%= field.id %>').slideToggle();" style="border-bottom: 1px solid #ddd;"></a>
|
|
||||||
</li>
|
|
||||||
<% end %>
|
|
||||||
<% elsif field.field_type == "Comptec" %>
|
<% elsif field.field_type == "Comptec" %>
|
||||||
<div class="homepageLeftMenuBlock">
|
<div class="homepageLeftMenuBlock">
|
||||||
<%= link_to "#{field.name}", teachers_organization_path(organization, :org_subfield_id => field.id, :type => "#{User.current.admin? ? "" : "famous"}"), :class => "homepageMenuText homepageMenuControl hidden", :onclick => "$('#homepageLeftMenuPost').slideToggle();" %>
|
<%= link_to "#{field.name}", teachers_organization_path(organization, :org_subfield_id => field.id, :type => "#{User.current.admin? ? "" : "famous"}"), :class => "homepageMenuText homepageMenuControl hidden", :onclick => "$('#homepageLeftMenuPost').slideToggle();" %>
|
||||||
|
|
|
@ -34,8 +34,15 @@
|
||||||
<% if ( (User.current.id == member.organization.creator_id || User.current.admin_of_org?(member.organization) ) && member.user_id != member.organization.creator_id )%>
|
<% if ( (User.current.id == member.organization.creator_id || User.current.admin_of_org?(member.organization) ) && member.user_id != member.organization.creator_id )%>
|
||||||
<a href="javascript:void(0);" style="color: #0781B4;margin-left: 10px;float: left" onclick="$(this).parent().height();$('#org-member-<%= member.id%>-roles-form').show();">编辑</a>
|
<a href="javascript:void(0);" style="color: #0781B4;margin-left: 10px;float: left" onclick="$(this).parent().height();$('#org-member-<%= member.id%>-roles-form').show();">编辑</a>
|
||||||
<a href="javascript:void(0)" style = "color: #0781B4;margin-left: 10px;float: left" onclick = "ifDeleteOrgMember('<%= member.id %>','<%= username %>')" >删除</a>
|
<a href="javascript:void(0)" style = "color: #0781B4;margin-left: 10px;float: left" onclick = "ifDeleteOrgMember('<%= member.id %>','<%= username %>')" >删除</a>
|
||||||
<%#= link_to '删除', Setting.protocol + "://" + Setting.host_name + "/org_member/" + member.id.to_s,:method=>'delete',:style=>'color: #0781B4;margin-left: 30px;float: left',:confirm=>'您确定要删除么?', :remote => true %><% end %>
|
<%#= link_to '删除', Setting.protocol + "://" + Setting.host_name + "/org_member/" + member.id.to_s,:method=>'delete',:style=>'color: #0781B4;margin-left: 30px;float: left',:confirm=>'您确定要删除么?', :remote => true %>
|
||||||
|
<% end %>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<ul class="wlist">
|
||||||
|
<!-- 组织配置页面,成员子页面单独分页 -->
|
||||||
|
<%= pagination_links_full(@obj_pages, @obj_count, :per_page_links => false, :remote => false, :flag => true){ |text, parameters, options|
|
||||||
|
link_to text, org_member_paging_org_member_index_path( parameters.merge(:flag => true, :org => @organization.id, :format => 'js')), :remote => true
|
||||||
|
} %>
|
||||||
|
</ul>
|
|
@ -24,7 +24,7 @@
|
||||||
<% end%>
|
<% end%>
|
||||||
|
|
||||||
<ul class="wlist">
|
<ul class="wlist">
|
||||||
<%#= pagination_links_full @obj_pages, @obj_count, :per_page_links => false, :remote => false, :flag => true%>
|
<%= pagination_links_full @obj_pages, @obj_count, :per_page_links => false, :remote => false, :flag => true %>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<% if !@org_name.blank? %>
|
<% if !@org_name.blank? %>
|
||||||
<%if @check == false %>
|
<%if @check == false %>
|
||||||
$checkName = false
|
$checkName = false;
|
||||||
<% if @config_page %>
|
<% if @config_page %>
|
||||||
$("#check_name_hint").html('<span class="c_red">名字不能重复<span>').show();
|
$("#check_name_hint").html('<span class="c_red">名字不能重复<span>').show();
|
||||||
<% else%>
|
<% else%>
|
||||||
|
|
|
@ -4,9 +4,11 @@
|
||||||
//如果有N个标签,就将i<=N;
|
//如果有N个标签,就将i<=N;
|
||||||
for(var i=1;i<=3;i++){
|
for(var i=1;i<=3;i++){
|
||||||
g('orgSetting_'+i).className='orgSettingOp';
|
g('orgSetting_'+i).className='orgSettingOp';
|
||||||
g('orgContent_'+i).className='undis';}
|
g('orgContent_'+i).className='undis';
|
||||||
|
}
|
||||||
g('orgContent_'+n).className='dis ml15 mr15';
|
g('orgContent_'+n).className='dis ml15 mr15';
|
||||||
g('orgSetting_'+n).className='orgSettingOp orgOpActive';}
|
g('orgSetting_'+n).className='orgSettingOp orgOpActive';
|
||||||
|
}
|
||||||
//如果要做成点击后再转到请将<li>中的onmouseover 改成 onclick;
|
//如果要做成点击后再转到请将<li>中的onmouseover 改成 onclick;
|
||||||
//]]>
|
//]]>
|
||||||
$checkName = true;
|
$checkName = true;
|
||||||
|
@ -105,7 +107,7 @@
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</ul>
|
</ul>
|
||||||
<div id="org_member_list">
|
<div id="org_member_list">
|
||||||
<%= render :partial=>"org_member_list",:locals=> {:members=>@organization.org_members} %>
|
<%= render :partial => "org_member_list", :locals => {:members => @members} %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="fl ml10 orgMemContainer">
|
<div class="fl ml10 orgMemContainer">
|
||||||
|
@ -178,6 +180,7 @@
|
||||||
<%= render :partial => 'organizations/subfield_list', :locals => {:subfields => subfield_to_addmin?(@organization)} %>
|
<%= render :partial => 'organizations/subfield_list', :locals => {:subfields => subfield_to_addmin?(@organization)} %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<script>
|
<script>
|
||||||
function add_org_subfield(){
|
function add_org_subfield(){
|
||||||
|
@ -246,3 +249,4 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<%= render :partial => 'users/show_detail_info', :locals => {:user => user} %>
|
<%= render :partial => 'users/show_detail_info', :locals => {:user => user} %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostDes">
|
<div class="homepagePostDes">
|
||||||
<div class="homepagePostTo break_word">
|
<div class="homepagePostTo break_word" style="width:620px">
|
||||||
<% if user.try(:realname) == ' ' %>
|
<% if user.try(:realname) == ' ' %>
|
||||||
<%= link_to user, user_path(user), :class => "newsBlue mr15" %>
|
<%= link_to user, user_path(user), :class => "newsBlue mr15" %>
|
||||||
<% else %>
|
<% else %>
|
||||||
|
|
|
@ -25,3 +25,6 @@
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<%= render :partial => 'users/show_detail_info', :locals => {:user => activity.author} %>
|
<%= render :partial => 'users/show_detail_info', :locals => {:user => activity.author} %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostDes">
|
<div class="homepagePostDes">
|
||||||
<div class="homepagePostTo break_word">
|
<div class="homepagePostTo break_word" style="width:620px">
|
||||||
<%= link_to activity.author.show_name, user_path(activity.author_id), :class => "newsBlue mr15" %>
|
<%= link_to activity.author.show_name, user_path(activity.author_id), :class => "newsBlue mr15" %>
|
||||||
TO
|
TO
|
||||||
<%= link_to activity.project.name.to_s+" | 项目新闻", project_news_index_path(activity.project), :class => "newsBlue ml15" %>
|
<%= link_to activity.project.name.to_s+" | 项目新闻", project_news_index_path(activity.project), :class => "newsBlue ml15" %>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<%= render :partial => 'users/show_detail_info', :locals => {:user => activity.author} %>
|
<%= render :partial => 'users/show_detail_info', :locals => {:user => activity.author} %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostDes">
|
<div class="homepagePostDes">
|
||||||
<div class="homepagePostTo break_word">
|
<div class="homepagePostTo break_word" style="width:620px">
|
||||||
<% if activity.try(:author).try(:realname) == ' ' %>
|
<% if activity.try(:author).try(:realname) == ' ' %>
|
||||||
<%= link_to activity.try(:author), user_path(activity.author_id), :class => "newsBlue mr15" %>
|
<%= link_to activity.try(:author), user_path(activity.author_id), :class => "newsBlue mr15" %>
|
||||||
<% else %>
|
<% else %>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<%= render :partial => 'users/show_detail_info', :locals => {:user => activity.author} %>
|
<%= render :partial => 'users/show_detail_info', :locals => {:user => activity.author} %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostDes">
|
<div class="homepagePostDes">
|
||||||
<div class="homepagePostTo break_word">
|
<div class="homepagePostTo break_word" style="width:620px">
|
||||||
<% if activity.try(:author).try(:realname) == ' ' %>
|
<% if activity.try(:author).try(:realname) == ' ' %>
|
||||||
<%= link_to activity.try(:author), user_path(activity.author_id), :class => "newsBlue mr15" %>
|
<%= link_to activity.try(:author), user_path(activity.author_id), :class => "newsBlue mr15" %>
|
||||||
<% else %>
|
<% else %>
|
||||||
|
|
|
@ -1,17 +1,23 @@
|
||||||
<div class="syllabus_category">
|
<div class="syllabus_category">
|
||||||
<% unless projects.empty? %>
|
<% unless projects.empty? %>
|
||||||
<% if @type.to_i == 2 %>
|
<% if @type.to_i == 2 %>
|
||||||
<%= link_to "", {:controller => 'users', :action => 'sort_project_list', :id =>@user,:list_type => list_type, :type => @type, :sort => @c_sort, :order => 2 }, :class => "#{@c_sort.to_i == 1 ? 'sortupbtn' : 'sortdownbtn'} fr", :style => "margin-right: 5px;", :remote => true %>
|
<%= link_to "", {:controller => 'users', :action => 'sort_project_list', :id => @user,:list_type => list_type, :type => @type, :sort => @c_sort, :order => 2 },
|
||||||
|
:class => "#{@c_sort.to_i == 1 ? 'sortupbtn' : 'sortdownbtn'} fr", :style => "margin-right: 5px;", :remote => true %>
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= link_to "", {:controller => 'users', :action => 'sort_project_list', :id =>@user,:list_type => list_type, :type => @type, :sort => @c_sort, :order => 2 }, :class => "sortdownbtn sort_no fr", :style => "margin-right: 5px;", :remote => true %>
|
<%= link_to "", {:controller => 'users', :action => 'sort_project_list', :id => @user,:list_type => list_type, :type => @type, :sort => @c_sort, :order => 2 },
|
||||||
|
:class => "sortdownbtn sort_no fr", :style => "margin-right: 5px;", :remote => true %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<%= link_to "人气", {:controller => 'users', :action => 'sort_project_list', :id =>@user,:list_type => list_type, :type => @type, :sort => @c_sort, :order => 2 }, :class => "sortTxt fr", :remote => true %>
|
<%= link_to "人气", {:controller => 'users', :action => 'sort_project_list', :id => @user,:list_type => list_type, :type => @type, :sort => @c_sort, :order => 2 },
|
||||||
|
:class => "sortTxt fr", :remote => true %>
|
||||||
<% if @type.to_i == 1 %>
|
<% if @type.to_i == 1 %>
|
||||||
<%= link_to "", {:controller => 'users', :action => 'sort_project_list', :id =>@user,:list_type => list_type, :type => @type, :sort => @c_sort, :order => 1 }, :class => "#{@c_sort.to_i == 1 ? 'sortupbtn' : 'sortdownbtn'} fr", :remote => true %>
|
<%= link_to "", {:controller => 'users', :action => 'sort_project_list', :id => @user,:list_type => list_type, :type => @type, :sort => @c_sort, :order => 1 },
|
||||||
|
:class => "#{@c_sort.to_i == 1 ? 'sortupbtn' : 'sortdownbtn'} fr", :remote => true %>
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= link_to "", {:controller => 'users', :action => 'sort_project_list', :id =>@user,:list_type => list_type, :type => @type, :sort => @c_sort, :order => 1 }, :class => "sortdownbtn sort_no fr", :remote => true %>
|
<%= link_to "", {:controller => 'users', :action => 'sort_project_list', :id => @user,:list_type => list_type, :type => @type, :sort => @c_sort, :order => 1 },
|
||||||
|
:class => "sortdownbtn sort_no fr", :remote => true %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<%= link_to "时间", {:controller => 'users', :action => 'sort_project_list', :id =>@user,:list_type => list_type, :type => @type, :sort => @c_sort, :order => 1 }, :class => "sortTxt fr", :remote => true %>
|
<%= link_to "时间", {:controller => 'users', :action => 'sort_project_list', :id => @user,:list_type => list_type, :type => @type, :sort => @c_sort, :order => 1 },
|
||||||
|
:class => "sortTxt fr", :remote => true %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<span class="grayTxt fl "><%= @user == User.current ? "我" : "他" %><%= list_type == 1 ? "创建" : "参与"%>的项目</span>
|
<span class="grayTxt fl "><%= @user == User.current ? "我" : "他" %><%= list_type == 1 ? "创建" : "参与"%>的项目</span>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
@ -31,11 +37,13 @@
|
||||||
<% else %>
|
<% else %>
|
||||||
<% projects.each_with_index do |project, i| %>
|
<% projects.each_with_index do |project, i| %>
|
||||||
<div class="syllabus_courses_list <%= i > 4 ? 'none' : ''%>" style="cursor: default;">
|
<div class="syllabus_courses_list <%= i > 4 ? 'none' : ''%>" style="cursor: default;">
|
||||||
|
<% allow_visit = User.current.member_of?(project) || User.current.admin? || project.is_public? %>
|
||||||
<div class="sy_courses_open">
|
<div class="sy_courses_open">
|
||||||
<span id="collect_project_icon_<%= project.id %>">
|
<span id="collect_project_icon_<%= project.id %>">
|
||||||
<%=render :partial => 'collect_project', :locals => {:project => project} %>
|
<%=render :partial => 'collect_project', :locals => {:project => project} %>
|
||||||
</span>
|
</span>
|
||||||
<h3><%= link_to project.name, project_path(project.id,:host=>Setting.host_name), :target => '_blank', :class => "new_project_title fl",:id => "show_project_#{project.id}", :title => (project.is_public? ? "公开项目:":"私有项目:") + project.name%></h3>
|
<h3><%= link_to project.name, allow_visit ? project_path(project.id,:host=>Setting.host_name) : 'javascript:void(0)', :target => '_blank',
|
||||||
|
:class => "new_project_title fl",:id => "show_project_#{project.id}", :title => (allow_visit ? "#{project.name}" : "私有项目不可访问") %></h3>
|
||||||
<% unless project.is_public? %>
|
<% unless project.is_public? %>
|
||||||
<span class="syllabus_class_private fl ml10 mt3 syllabus_class_property">私有</span>
|
<span class="syllabus_class_private fl ml10 mt3 syllabus_class_property">私有</span>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
@ -58,7 +66,8 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
<% if count > 5 %>
|
<% if count > 5 %>
|
||||||
<div class="syllabus_courses_list">
|
<div class="syllabus_courses_list">
|
||||||
<p class="new_projectlist_more"><a id="project_more_<%=list_type %>" href="javascript:void(0);" data-count="<%= count %>" data-init="0" onclick="expand_projects('#project_more_<%=list_type %>', '#project_li_<%=list_type %>', <%=count%>);">共<%=count %>个项目,点击全部展开</a></p>
|
<p class="new_projectlist_more"><a id="project_more_<%=list_type %>" href="javascript:void(0);" data-count="<%= count %>" data-init="0" onclick="expand_projects('#project_more_<%=list_type %>',
|
||||||
|
'#project_li_<%=list_type %>', <%=count%>);">共<%=count %>个项目,点击全部展开</a></p>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<%= render :partial => 'users/show_detail_info', :locals => {:user => activity.author} %>
|
<%= render :partial => 'users/show_detail_info', :locals => {:user => activity.author} %>
|
||||||
</div>
|
</div>
|
||||||
<div class="homepagePostDes">
|
<div class="homepagePostDes">
|
||||||
<div class="homepagePostTo break_word">
|
<div class="homepagePostTo break_word" style="width:620px">
|
||||||
<%= link_to activity.author.show_name, user_path(activity.author_id), :class => "newsBlue mr15" %>
|
<%= link_to activity.author.show_name, user_path(activity.author_id), :class => "newsBlue mr15" %>
|
||||||
TO
|
TO
|
||||||
<%= link_to activity.project.name.to_s+" | 项目讨论区",project_boards_path(activity.project), :class => "newsBlue ml15 mr5"%>
|
<%= link_to activity.project.name.to_s+" | 项目讨论区",project_boards_path(activity.project), :class => "newsBlue ml15 mr5"%>
|
||||||
|
|
|
@ -30,3 +30,7 @@ button:
|
||||||
type: "click"
|
type: "click"
|
||||||
name: "联系我们"
|
name: "联系我们"
|
||||||
key: "FEEDBACK"
|
key: "FEEDBACK"
|
||||||
|
-
|
||||||
|
type: "view"
|
||||||
|
name: "个人资料"
|
||||||
|
url: "https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx8e1ab05163a28e37&redirect_uri=https://www.trustie.net/wechat/user_activities&response_type=code&scope=snsapi_base&state=edit_userinfo#wechat_redirect"
|
||||||
|
|
|
@ -30,3 +30,7 @@ button:
|
||||||
type: "click"
|
type: "click"
|
||||||
name: "联系我们"
|
name: "联系我们"
|
||||||
key: "FEEDBACK"
|
key: "FEEDBACK"
|
||||||
|
-
|
||||||
|
type: "view"
|
||||||
|
name: "个人资料"
|
||||||
|
url: "https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxc09454f171153c2d&redirect_uri=https://test.forge.trustie.net/wechat/user_activities&response_type=code&scope=snsapi_base&state=edit_userinfo#wechat_redirect"
|
||||||
|
|
|
@ -116,6 +116,7 @@ RedmineApp::Application.routes.draw do
|
||||||
end
|
end
|
||||||
collection do
|
collection do
|
||||||
get 'org_member_autocomplete'
|
get 'org_member_autocomplete'
|
||||||
|
get 'org_member_paging'
|
||||||
get 'deleteOrgMember'
|
get 'deleteOrgMember'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -26,6 +26,7 @@ default: &default
|
||||||
join_project_notice: "TtXvy0XMIQyCgpnXHhoB8t-x0QIfy-78gAJXsGf9afg"
|
join_project_notice: "TtXvy0XMIQyCgpnXHhoB8t-x0QIfy-78gAJXsGf9afg"
|
||||||
project_issue_notice: "HP8JejOnkzmvFopTarc0l1Tp4bU9qnxzdH27x3186lI"
|
project_issue_notice: "HP8JejOnkzmvFopTarc0l1Tp4bU9qnxzdH27x3186lI"
|
||||||
at_notice: "U3kqzgriCaqkPI9qX0NDQOInJ5hiwHCz6wgTsPysSx4"
|
at_notice: "U3kqzgriCaqkPI9qX0NDQOInJ5hiwHCz6wgTsPysSx4"
|
||||||
|
rebind_notice: "OYsiECfqUlHKlzF_X-pz_xsGh_vAAUunX0jYRdHlyFU"
|
||||||
|
|
||||||
auto_openid_url_1: "https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx8e1ab05163a28e37&redirect_uri=https://www.trustie.net/wechat/user_activities"
|
auto_openid_url_1: "https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx8e1ab05163a28e37&redirect_uri=https://www.trustie.net/wechat/user_activities"
|
||||||
auto_openid_url_2: "&response_type=code&scope=snsapi_base&state="
|
auto_openid_url_2: "&response_type=code&scope=snsapi_base&state="
|
||||||
|
|
|
@ -26,6 +26,7 @@ default: &default
|
||||||
join_project_notice: "3KnMQEMUCmQWkB5JvzrpmguEwnN8bvUHUdpOTudxv_M"
|
join_project_notice: "3KnMQEMUCmQWkB5JvzrpmguEwnN8bvUHUdpOTudxv_M"
|
||||||
project_issue_notice: "HAF2aCta7BtnaOd_cotGvU4tErGWwCd9I9aiClFN7w8"
|
project_issue_notice: "HAF2aCta7BtnaOd_cotGvU4tErGWwCd9I9aiClFN7w8"
|
||||||
at_notice: "p4HfyZQuF8O5bP_44RbbJS30SGojLJAuZEqp34iB4JU"
|
at_notice: "p4HfyZQuF8O5bP_44RbbJS30SGojLJAuZEqp34iB4JU"
|
||||||
|
rebind_notice: "B97nOiW9cscB_d078I3k0jaPLHeJThTKUuxMoUnWZ2U"
|
||||||
|
|
||||||
auto_openid_url_1: "https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxc09454f171153c2d&redirect_uri=https://test.forge.trustie.net/wechat/user_activities"
|
auto_openid_url_1: "https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxc09454f171153c2d&redirect_uri=https://test.forge.trustie.net/wechat/user_activities"
|
||||||
auto_openid_url_2: "&response_type=code&scope=snsapi_base&state="
|
auto_openid_url_2: "&response_type=code&scope=snsapi_base&state="
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
<script src="/javascripts/wechat/directives/input_focus.js"></script>
|
<script src="/javascripts/wechat/directives/input_focus.js"></script>
|
||||||
<script src="/javascripts/wechat/directives/at_delete_link.js"></script>
|
<script src="/javascripts/wechat/directives/at_delete_link.js"></script>
|
||||||
<script src="/javascripts/wechat/directives/iphone_recognize.js"></script>
|
<script src="/javascripts/wechat/directives/iphone_recognize.js"></script>
|
||||||
<script src="/javascripts/wechat/directives/submit_start.js"></script>
|
<script src="/javascripts/wechat/directives/multi_reply.js"></script>
|
||||||
<script src="/javascripts/wechat/controllers/reg.js"></script>
|
<script src="/javascripts/wechat/controllers/reg.js"></script>
|
||||||
<script src="/javascripts/wechat/controllers/login.js"></script>
|
<script src="/javascripts/wechat/controllers/login.js"></script>
|
||||||
<script src="/javascripts/wechat/controllers/activity.js"></script>
|
<script src="/javascripts/wechat/controllers/activity.js"></script>
|
||||||
|
|
|
@ -73,7 +73,17 @@
|
||||||
<div ng-if="journal.praise_count && !journal.has_praise" ng-click="addPraise(journal);"><img src="/images/wechat/w_praise.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
<div ng-if="journal.praise_count && !journal.has_praise" ng-click="addPraise(journal);"><img src="/images/wechat/w_praise.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
||||||
<div ng-if="journal.has_praise" ng-click="decreasePraise(journal);"><img src="/images/wechat/w_praised.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
<div ng-if="journal.has_praise" ng-click="decreasePraise(journal);"><img src="/images/wechat/w_praised.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
||||||
</div>
|
</div>
|
||||||
|
<div ng-click="clickReply(journal.act_id,blog)" class="fr mr25 f13 reply-icons multi-hide" >
|
||||||
|
<img src="/images/wechat/w_reply.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span style="vertical-align:top;">回复</span>
|
||||||
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
<div ng-show="journal.showinput" class="post-input-container multi-input-container ml40 mb10">
|
||||||
|
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
||||||
|
<textarea ng-focus="inputfocus(blog)" ng-blur="inputblur(blog)" input-auto type="text" class="post-reply-input" ng-model="journal.comment" placeholder="{{replytip}}" /></textarea>
|
||||||
|
<button ng-click="addReply(journal,1);journal.showinput = false;" ng-disabled="journal.disabled" ng-hide="journal.disabled" class="post-reply-submit fr border-radius">提交</button>
|
||||||
|
<button ng-disabled="journal.disabled" ng-hide="!journal.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -82,13 +92,13 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div ng-if="!blog.locked" id="post_input_1" class="post-input-wrap post-box-shadow" iphone-recognize>
|
<div ng-show="!blog.notshow" ng-if="!blog.locked" id="post_input_1" class="post-input-wrap post-box-shadow" iphone-recognize>
|
||||||
<div class="post-reply-row border-bottom-none">
|
<div class="post-reply-row border-bottom-none">
|
||||||
<div class="post-input-container">
|
<div class="post-input-container">
|
||||||
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
||||||
<textarea input-auto type="text" class="post-reply-input" id="postInput1" ng-model="formData.comment" placeholder="{{replytip}}" /></textarea>
|
<textarea input-auto type="text" class="post-reply-input" id="postInput1" ng-model="blog.comment" placeholder="{{replytip}}" /></textarea>
|
||||||
<button ng-click="addReply(formData)" ng-disabled="formData.disabled" ng-hide="formData.disabled" class="post-reply-submit fr border-radius">提交</button>
|
<button ng-click="addReply(blog,0)" ng-disabled="blog.disabled" ng-hide="blog.disabled" class="post-reply-submit fr border-radius">提交</button>
|
||||||
<button ng-disabled="formData.disabled" ng-hide="!formData.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
<button ng-disabled="blog.disabled" ng-hide="!blog.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -71,7 +71,17 @@
|
||||||
<div ng-if="journal.praise_count && !journal.has_praise" ng-click="addPraise(journal);"><img src="/images/wechat/w_praise.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
<div ng-if="journal.praise_count && !journal.has_praise" ng-click="addPraise(journal);"><img src="/images/wechat/w_praise.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
||||||
<div ng-if="journal.has_praise" ng-click="decreasePraise(journal);"><img src="/images/wechat/w_praised.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
<div ng-if="journal.has_praise" ng-click="decreasePraise(journal);"><img src="/images/wechat/w_praised.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
||||||
</div>
|
</div>
|
||||||
|
<div ng-click="clickReply(journal.act_id,discussion)" class="fr mr25 f13 reply-icons multi-hide">
|
||||||
|
<a><img src="/images/wechat/w_reply.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span style="vertical-align:top;">回复</span></a>
|
||||||
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
<div ng-show="journal.showinput" class="post-input-container multi-input-container ml40 mb10">
|
||||||
|
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
||||||
|
<textarea ng-focus="inputfocus(discussion)" ng-blur="inputblur(discussion)" input-auto type="text" class="post-reply-input" ng-model="journal.comment" placeholder="{{replytip}}" /></textarea>
|
||||||
|
<button ng-click="addReply(journal,1);journal.showinput = false;" ng-disabled="journal.disabled" ng-hide="journal.disabled" class="post-reply-submit fr border-radius">提交</button>
|
||||||
|
<button ng-disabled="journal.disabled" ng-hide="!journal.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div ng-if="has_more">
|
<div ng-if="has_more">
|
||||||
|
@ -79,13 +89,13 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div ng-if="!discussion.locked" id="post_input_1" class="post-input-wrap post-box-shadow" iphone-recognize>
|
<div ng-show="!discussion.notshow" ng-if="!discussion.locked" id="post_input_1" class="post-input-wrap post-box-shadow" iphone-recognize>
|
||||||
<div class="post-reply-row border-bottom-none">
|
<div class="post-reply-row border-bottom-none">
|
||||||
<div class="post-input-container">
|
<div class="post-input-container">
|
||||||
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
||||||
<textarea input-auto type="text" class="post-reply-input" id="postInput1" ng-model="formData.comment" placeholder="输入回复内容~" /></textarea>
|
<textarea input-auto type="text" class="post-reply-input" id="postInput1" ng-model="discussion.comment" placeholder="输入回复内容~" /></textarea>
|
||||||
<button ng-click="addReply(formData)" ng-disabled="formData.disabled" ng-hide="formData.disabled" class="post-reply-submit fr border-radius">提交</button>
|
<button ng-click="addReply(discussion,0)" ng-disabled="discussion.disabled" ng-hide="discussion.disabled" class="post-reply-submit fr border-radius">提交</button>
|
||||||
<button ng-disabled="formData.disabled" ng-hide="!formData.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
<button ng-disabled="discussion.disabled" ng-hide="!discussion.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -86,7 +86,17 @@
|
||||||
<div ng-if="journal.praise_count && !journal.has_praise" ng-click="addPraise(journal);"><img src="/images/wechat/w_praise.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
<div ng-if="journal.praise_count && !journal.has_praise" ng-click="addPraise(journal);"><img src="/images/wechat/w_praise.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
||||||
<div ng-if="journal.has_praise" ng-click="decreasePraise(journal);"><img src="/images/wechat/w_praised.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
<div ng-if="journal.has_praise" ng-click="decreasePraise(journal);"><img src="/images/wechat/w_praised.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
||||||
</div>
|
</div>
|
||||||
|
<div ng-click="clickReply(journal.act_id,news)" class="fr mr25 f13 reply-icons multi-hide">
|
||||||
|
<a><img src="/images/wechat/w_reply.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span style="vertical-align:top;">回复</span></a>
|
||||||
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
<div ng-show="journal.showinput" class="post-input-container multi-input-container ml40 mb10">
|
||||||
|
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
||||||
|
<textarea ng-focus="inputfocus(news)" ng-blur="inputblur(news)" input-auto type="text" class="post-reply-input" ng-model="journal.comment" placeholder="{{replytip}}" /></textarea>
|
||||||
|
<button ng-click="addReply(journal,1);journal.showinput = false;" ng-disabled="journal.disabled" ng-hide="journal.disabled" class="post-reply-submit fr border-radius">提交</button>
|
||||||
|
<button ng-disabled="journal.disabled" ng-hide="!journal.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div ng-if="has_more">
|
<div ng-if="has_more">
|
||||||
|
@ -94,13 +104,13 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="post_input_1" class="post-input-wrap post-box-shadow" iphone-recognize>
|
<div ng-show="!news.notshow" id="post_input_1" class="post-input-wrap post-box-shadow" iphone-recognize>
|
||||||
<div class="post-reply-row border-bottom-none">
|
<div class="post-reply-row border-bottom-none">
|
||||||
<div class="post-input-container">
|
<div class="post-input-container">
|
||||||
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
||||||
<textarea input-auto type="text" class="post-reply-input" id="postInput1" ng-model="formData.comment" placeholder="输入回复内容~" /></textarea>
|
<textarea input-auto type="text" class="post-reply-input" id="postInput1" ng-model="news.comment" placeholder="输入回复内容~" /></textarea>
|
||||||
<button ng-click="addReply(formData)" ng-disabled="formData.disabled" ng-hide="formData.disabled" class="post-reply-submit fr border-radius">提交</button>
|
<button ng-click="addReply(news,0)" ng-disabled="news.disabled" ng-hide="news.disabled" class="post-reply-submit fr border-radius">提交</button>
|
||||||
<button ng-disabled="formData.disabled" ng-hide="!formData.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
<button ng-disabled="news.disabled" ng-hide="!news.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -0,0 +1,44 @@
|
||||||
|
<div class="post-container">
|
||||||
|
<div loading-spinner></div>
|
||||||
|
<div class="blue-title">编辑资料</div>
|
||||||
|
<div class="blank-row mt10">
|
||||||
|
<div class="upload-input-container img-circle fl ml10 mt4">
|
||||||
|
<!--<input class="upload-input" accept="image/*" multiple="" type="file">-->
|
||||||
|
<!--<input class="upload-input" type="file" capture="camera" accept="image/*" load-head>-->
|
||||||
|
<img ng-src="{{replaceUrl(user.img_url)}}" width="30" class="fl img-circle" style="position:absolute;" />
|
||||||
|
</div>
|
||||||
|
<span class="fl ml25">{{user.login}}</span><span ng-click="unbind()" class="fr f13 mr10 c-blue">解除绑定</span><div class="cl"></div></div>
|
||||||
|
|
||||||
|
<form name="regFrm" novalidate>
|
||||||
|
|
||||||
|
<div class="course-list-row f13 c-grey3 mt10"><span class="fl ml15 c-grey3">姓名</span><input class="new-class-input ml25" ng-model="lastname" placeholder="请输入您的姓名全称" maxlength="30" /></div>
|
||||||
|
<div class="course-list-row f13 c-grey3 mt10" style="height:auto;">
|
||||||
|
<div class="mt5" style="line-height:20px">
|
||||||
|
<span class="ml15 c-grey3">性别</span>
|
||||||
|
<span class="ml25">男</span>
|
||||||
|
<span class="login-box fr mr10 mt2" ng-click="sex=0" ng-class="['login-box', 'fr', 'mr10', 'img-circle', {'checked': sex==0}]"></span>
|
||||||
|
</div>
|
||||||
|
<div class="mb5 mt5" style="line-height:20px;">
|
||||||
|
<span class="ml15 c-grey3"></span>
|
||||||
|
<span class="ml55">女</span>
|
||||||
|
<span class="login-box fr mr10 mt2" ng-click="sex=1" ng-class="['login-box', 'fr', 'mr10', 'img-circle', {'checked': sex==1}]"></span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="course-list-row f13 c-grey3 mt10">
|
||||||
|
<span class="fl ml15 c-grey3">邮箱</span>
|
||||||
|
<input class="new-class-input ml25" type="email" name="email" ng-model="mail" placeholder="请输入您的邮箱地址" maxlength="60" />
|
||||||
|
<div ng-show="regFrm.$submitted || regFrm.email.$touched">
|
||||||
|
<span class="f12 c-red fl ml15" ng-show="regFrm.email.$error.required">电子邮箱地址不能为空</span>
|
||||||
|
<span class="f12 c-red fl ml15" ng-show="regFrm.email.$error.email">电子邮箱地址不合法</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="bottom-tab-wrap mt10">
|
||||||
|
<a ng-click="cancel()" class="weixin-tab c-grey border-top">取消</a>
|
||||||
|
<a ng-click="confirm(regFrm)" ng-class="[{'btn-disabled':!regFrm.$valid} ]" class="weixin-tab link-blue2 border-top">确定</a>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
<my-alert message="alertService_1.message" title="alertService_1.title" visible="alertService_1.visible" cb="alertService_1.cb"></my-alert>
|
||||||
|
<my-alert2 message="alertService_2.message" title="alertService_2.title" visible="alertService_2.visible" cb="alertService_2.cb"></my-alert2>
|
||||||
|
</div>
|
|
@ -75,7 +75,17 @@
|
||||||
<div ng-if="journal.praise_count && !journal.has_praise" ng-click="addPraise(journal);"><img src="/images/wechat/w_praise.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
<div ng-if="journal.praise_count && !journal.has_praise" ng-click="addPraise(journal);"><img src="/images/wechat/w_praise.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
||||||
<div ng-if="journal.has_praise" ng-click="decreasePraise(journal);"><img src="/images/wechat/w_praised.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
<div ng-if="journal.has_praise" ng-click="decreasePraise(journal);"><img src="/images/wechat/w_praised.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
||||||
</div>
|
</div>
|
||||||
|
<div ng-click="clickReply(journal.act_id,homework)" class="fr mr25 f13 reply-icons multi-hide">
|
||||||
|
<a><img src="/images/wechat/w_reply.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span style="vertical-align:top;">回复</span></a>
|
||||||
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
<div ng-show="journal.showinput" class="post-input-container multi-input-container ml40 mb10">
|
||||||
|
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
||||||
|
<textarea ng-focus="inputfocus(homework)" ng-blur="inputblur(homework)" input-auto type="text" class="post-reply-input" ng-model="journal.comment" placeholder="{{replytip}}" /></textarea>
|
||||||
|
<button ng-click="addReply(journal,1);journal.showinput = false;" ng-disabled="journal.disabled" ng-hide="journal.disabled" class="post-reply-submit fr border-radius">提交</button>
|
||||||
|
<button ng-disabled="journal.disabled" ng-hide="!journal.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div ng-if="has_more">
|
<div ng-if="has_more">
|
||||||
|
@ -83,13 +93,13 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="post_input_1" class="post-input-wrap post-box-shadow" iphone-recognize>
|
<div ng-show="!homework.notshow" id="post_input_1" class="post-input-wrap post-box-shadow" iphone-recognize>
|
||||||
<div class="post-reply-row border-bottom-none">
|
<div class="post-reply-row border-bottom-none">
|
||||||
<div class="post-input-container">
|
<div class="post-input-container">
|
||||||
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
||||||
<textarea input-auto type="text" class="post-reply-input" id="postInput1" ng-model="formData.comment" placeholder="{{replytip}}" /></textarea>
|
<textarea input-auto type="text" class="post-reply-input" id="postInput1" ng-model="homework.comment" placeholder="{{replytip}}" /></textarea>
|
||||||
<button ng-click="addReply(formData)" ng-disabled="formData.disabled" ng-hide="formData.disabled" class="post-reply-submit fr border-radius">提交</button>
|
<button ng-click="addReply(homework,0)" ng-disabled="homework.disabled" ng-hide="homework.disabled" class="post-reply-submit fr border-radius">提交</button>
|
||||||
<button ng-disabled="formData.disabled" ng-hide="!formData.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
<button ng-disabled="homework.disabled" ng-hide="!homework.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -92,7 +92,17 @@
|
||||||
<div ng-if="journal.praise_count && !journal.has_praise" ng-click="addPraise(journal);"><img src="/images/wechat/w_praise.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
<div ng-if="journal.praise_count && !journal.has_praise" ng-click="addPraise(journal);"><img src="/images/wechat/w_praise.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
||||||
<div ng-if="journal.has_praise" ng-click="decreasePraise(journal);"><img src="/images/wechat/w_praised.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
<div ng-if="journal.has_praise" ng-click="decreasePraise(journal);"><img src="/images/wechat/w_praised.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
||||||
</div>
|
</div>
|
||||||
|
<div ng-click="clickReply(journal.act_id,issue)" class="fr mr25 f13 reply-icons multi-hide">
|
||||||
|
<a><img src="/images/wechat/w_reply.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span style="vertical-align:top;">回复</span></a>
|
||||||
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
<div ng-show="journal.showinput" class="post-input-container multi-input-container ml40 mb10">
|
||||||
|
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
||||||
|
<textarea ng-focus="inputfocus(issue)" ng-blur="inputblur(issue)" input-auto type="text" class="post-reply-input" ng-model="journal.comment" placeholder="{{replytip}}" /></textarea>
|
||||||
|
<button ng-click="addReply(journal,1);journal.showinput = false;" ng-disabled="journal.disabled" ng-hide="journal.disabled" class="post-reply-submit fr border-radius">提交</button>
|
||||||
|
<button ng-disabled="journal.disabled" ng-hide="!journal.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div ng-if="has_more">
|
<div ng-if="has_more">
|
||||||
|
@ -100,13 +110,13 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="post_input_1" class="post-input-wrap post-box-shadow" iphone-recognize>
|
<div ng-show="!issue.notshow" id="post_input_1" class="post-input-wrap post-box-shadow" iphone-recognize>
|
||||||
<div class="post-reply-row border-bottom-none">
|
<div class="post-reply-row border-bottom-none">
|
||||||
<div class="post-input-container">
|
<div class="post-input-container">
|
||||||
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
||||||
<textarea input-auto type="text" class="post-reply-input" id="postInput1" ng-model="formData.comment" placeholder="输入回复内容~" /></textarea>
|
<textarea input-auto type="text" class="post-reply-input" id="postInput1" ng-model="issue.comment" placeholder="输入回复内容~" /></textarea>
|
||||||
<button ng-click="addReply(formData)" ng-disabled="formData.disabled" ng-hide="formData.disabled" class="post-reply-submit fr border-radius">提交</button>
|
<button ng-click="addReply(issue,0)" ng-disabled="issue.disabled" ng-hide="issue.disabled" class="post-reply-submit fr border-radius">提交</button>
|
||||||
<button ng-disabled="formData.disabled" ng-hide="!formData.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
<button ng-disabled="issue.disabled" ng-hide="!issue.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -70,7 +70,17 @@
|
||||||
<div ng-if="journal.praise_count && !journal.has_praise" ng-click="addPraise(journal);"><img src="/images/wechat/w_praise.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
<div ng-if="journal.praise_count && !journal.has_praise" ng-click="addPraise(journal);"><img src="/images/wechat/w_praise.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
||||||
<div ng-if="journal.has_praise" ng-click="decreasePraise(journal);"><img src="/images/wechat/w_praised.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
<div ng-if="journal.has_praise" ng-click="decreasePraise(journal);"><img src="/images/wechat/w_praised.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
||||||
</div>
|
</div>
|
||||||
|
<div ng-click="clickReply(journal.act_id,message)" class="fr mr25 f13 reply-icons multi-hide">
|
||||||
|
<a><img src="/images/wechat/w_reply.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span style="vertical-align:top;">回复</span></a>
|
||||||
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
<div ng-show="journal.showinput" class="post-input-container multi-input-container ml40 mb10">
|
||||||
|
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
||||||
|
<textarea ng-focus="inputfocus(message)" ng-blur="inputblur(message)" input-auto type="text" class="post-reply-input" ng-model="journal.comment" placeholder="{{replytip}}" /></textarea>
|
||||||
|
<button ng-click="addReply(journal,1);journal.showinput = false;" ng-disabled="journal.disabled" ng-hide="journal.disabled" class="post-reply-submit fr border-radius">提交</button>
|
||||||
|
<button ng-disabled="journal.disabled" ng-hide="!journal.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div ng-if="has_more">
|
<div ng-if="has_more">
|
||||||
|
@ -78,13 +88,13 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="post_input_1" class="post-input-wrap post-box-shadow" iphone-recognize>
|
<div ng-show="!message.notshow" id="post_input_1" class="post-input-wrap post-box-shadow" iphone-recognize>
|
||||||
<div class="post-reply-row border-bottom-none">
|
<div class="post-reply-row border-bottom-none">
|
||||||
<div class="post-input-container">
|
<div class="post-input-container">
|
||||||
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
||||||
<textarea input-auto type="text" class="post-reply-input" id="postInput1" ng-model="formData.comment" placeholder="输入回复内容~" /></textarea>
|
<textarea input-auto type="text" class="post-reply-input" id="postInput1" ng-model="message.comment" placeholder="输入回复内容~" /></textarea>
|
||||||
<button ng-click="addReply(formData)" ng-disabled="formData.disabled" ng-hide="formData.disabled" class="post-reply-submit fr border-radius">提交</button>
|
<button ng-click="addReply(message,0)" ng-disabled="message.disabled" ng-hide="message.disabled" class="post-reply-submit fr border-radius">提交</button>
|
||||||
<button ng-disabled="formData.disabled" ng-hide="!formData.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
<button ng-disabled="message.disabled" ng-hide="!message.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -71,20 +71,30 @@
|
||||||
<div ng-if="journal.praise_count && !journal.has_praise" ng-click="addPraise(journal);"><img src="/images/wechat/w_praise.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
<div ng-if="journal.praise_count && !journal.has_praise" ng-click="addPraise(journal);"><img src="/images/wechat/w_praise.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
||||||
<div ng-if="journal.has_praise" ng-click="decreasePraise(journal);"><img src="/images/wechat/w_praised.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
<div ng-if="journal.has_praise" ng-click="decreasePraise(journal);"><img src="/images/wechat/w_praised.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span>{{journal.praise_count}}</span></div>
|
||||||
</div>
|
</div>
|
||||||
|
<div ng-click="clickReply(journal.act_id,discussion)" class="fr mr25 f13 reply-icons multi-hide">
|
||||||
|
<a><img src="/images/wechat/w_reply.png" width="20" style="vertical-align:top; margin-top:2px;" class="mr5" /><span style="vertical-align:top;">回复</span></a>
|
||||||
|
</div>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
|
<div ng-show="journal.showinput" class="post-input-container multi-input-container ml40 mb10">
|
||||||
|
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
||||||
|
<textarea ng-focus="inputfocus(discussion)" ng-blur="inputblur(discussion)" input-auto type="text" class="post-reply-input" ng-model="journal.comment" placeholder="{{replytip}}" /></textarea>
|
||||||
|
<button ng-click="addReply(journal,1);journal.showinput = false;" ng-disabled="journal.disabled" ng-hide="journal.disabled" class="post-reply-submit fr border-radius">提交</button>
|
||||||
|
<button ng-disabled="journal.disabled" ng-hide="!journal.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
||||||
|
<div class="cl"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div ng-if="has_more">
|
<div ng-if="has_more">
|
||||||
<div id="more_reply" class="more-events mt10" ng-click="showMoreReply(0,discussion);">更多</div>
|
<div id="more_reply" class="more-events mt10" ng-click="showMoreReply(0,discussion);">更多</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div ng-if="!discussion.locked" id="post_input_1" class="post-input-wrap post-box-shadow" iphone-recognize>
|
<div ng-show="!discussion.notshow" ng-if="!discussion.locked" id="post_input_1" class="post-input-wrap post-box-shadow" iphone-recognize>
|
||||||
<div class="post-reply-row border-bottom-none">
|
<div class="post-reply-row border-bottom-none">
|
||||||
<div class="post-input-container">
|
<div class="post-input-container">
|
||||||
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
<div class="copy-input-container"><textarea class="copy-input"></textarea></div>
|
||||||
<textarea input-auto type="text" class="post-reply-input" id="postInput1" ng-model="formData.comment" placeholder="输入回复内容~" /></textarea>
|
<textarea input-auto type="text" class="post-reply-input" id="postInput1" ng-model="discussion.comment" placeholder="输入回复内容~" /></textarea>
|
||||||
<button ng-click="addReply(formData)" ng-disabled="formData.disabled" ng-hide="formData.disabled" class="post-reply-submit fr border-radius">提交</button>
|
<button ng-click="addReply(discussion,0)" ng-disabled="discussion.disabled" ng-hide="discussion.disabled" class="post-reply-submit fr border-radius">提交</button>
|
||||||
<button ng-disabled="formData.disabled" ng-hide="!formData.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
<button ng-disabled="discussion.disabled" ng-hide="!discussion.disabled" class="post-reply-submit bg-grey fr border-radius">提交</button>
|
||||||
<div class="cl"></div>
|
<div class="cl"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -550,8 +550,8 @@ function observeSearchfield(fieldId, targetId, url) {
|
||||||
dataType: 'jsonp',
|
dataType: 'jsonp',
|
||||||
data: {q: $this.val()},
|
data: {q: $this.val()},
|
||||||
success: function(data){ if(targetId) $('#'+targetId).html(data); },
|
success: function(data){ if(targetId) $('#'+targetId).html(data); },
|
||||||
beforeSend: function(){ $this.addClass('ajax-loading'); },
|
beforeSend: function(){ $this.addClass('ajax-loading'); }, // 添加成员加载完成前,显示载入中
|
||||||
complete: function(){ $this.removeClass('ajax-loading'); }
|
complete: function(){ $this.removeClass('ajax-loading'); } // 完成后,移除
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
//<2F><><EFBFBD><EFBFBD><EFBFBD>֯<EFBFBD><D6AF>Ա<EFBFBD><D4B1><EFBFBD>ύ<EFBFBD><E1BDBB><EFBFBD><EFBFBD>
|
//<2F><><EFBFBD><EFBFBD><EFBFBD>֯<EFBFBD><D6AF>Ա<EFBFBD><D4B1><EFBFBD>ύ<EFBFBD><E1BDBB><EFBFBD><EFBFBD>
|
||||||
|
// 组织:新增成员
|
||||||
function submit_add_org_members(){
|
function submit_add_org_members(){
|
||||||
$("#org_member_add_form").submit();
|
$("#org_member_add_form").submit();
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,92 @@
|
||||||
|
app.controller('EditUserInfoController', ['$scope', 'config','$http', 'auth','$location','$routeParams','alertService','rms','common','$timeout','wx', function($scope, config, $http, auth, $location, $routeParams,alertService,rms,common,$timeout,wx){
|
||||||
|
// common.checkLogin();
|
||||||
|
|
||||||
|
$scope.replaceUrl = function(url){
|
||||||
|
return url;
|
||||||
|
};
|
||||||
|
|
||||||
|
var vm = $scope;
|
||||||
|
|
||||||
|
//单弹框
|
||||||
|
vm.alertService_1 = alertService.create();
|
||||||
|
|
||||||
|
//双弹框
|
||||||
|
vm.alertService_2 = alertService.create();
|
||||||
|
|
||||||
|
vm.getuserinfo = function(){
|
||||||
|
$http.get(config.apiUrl + 'users/get_userinfo?token='+auth.token()).then(
|
||||||
|
function(response) {
|
||||||
|
console.log(response.data);
|
||||||
|
vm.user = response.data.data;
|
||||||
|
vm.lastname = vm.user.lastname;
|
||||||
|
vm.mail = vm.user.mail;
|
||||||
|
vm.sex = vm.user.gender;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
vm.getuserinfo();
|
||||||
|
|
||||||
|
vm.unbind = function(){
|
||||||
|
vm.alertService_2.showMessage('提示', '是否确认解除绑定', function() {
|
||||||
|
$http.post(config.apiUrl + "users/user_unbind",
|
||||||
|
{token: auth.token()}
|
||||||
|
).then(function (response) {
|
||||||
|
if (response.data.status == 0) {
|
||||||
|
vm.alertService_1.showMessage('提示', '解除绑定成功', function () {
|
||||||
|
wx.closeWindow();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
vm.alertService_1.showMessage('提示', response.data.message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
vm.cancel = function(){
|
||||||
|
vm.alertService_2.showMessage('提示', '是否确认取消', function() {
|
||||||
|
wx.closeWindow();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
vm.confirm = function(frm){
|
||||||
|
frm.$setSubmitted();
|
||||||
|
|
||||||
|
console.log(frm);
|
||||||
|
if (!frm.$valid) {
|
||||||
|
console.log(frm.$error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(vm.lastname == ""){
|
||||||
|
vm.alertService_1.showMessage('提示', '姓名不能为空');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(vm.mail == ""){
|
||||||
|
vm.alertService_1.showMessage('提示', '邮箱不能为空');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// if(!(/\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i.test(vm.mail))){
|
||||||
|
// vm.alertService_1.showMessage('提示', '邮箱不合法');
|
||||||
|
// return;
|
||||||
|
// }
|
||||||
|
|
||||||
|
$http.post(config.apiUrl + "users/edit_userinfo",
|
||||||
|
{token: auth.token(),lastname: vm.lastname, sex: vm.sex, mail: vm.mail}
|
||||||
|
).then(function(response){
|
||||||
|
if(response.data.status == 0)
|
||||||
|
{
|
||||||
|
vm.alertService_1.showMessage('提示', '修改成功',function(){
|
||||||
|
wx.closeWindow();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
vm.alertService_1.showMessage('提示', response.data.message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
}]);
|
|
@ -1,19 +1,40 @@
|
||||||
app.directive('inputAuto',function(){
|
//app.directive('inputAuto',function(){
|
||||||
|
// return{
|
||||||
|
// restrict: 'A',
|
||||||
|
// scope: {},
|
||||||
|
// link: function(scope, element){
|
||||||
|
// var copyContainer = element.parent().children().children().eq(0);
|
||||||
|
// var sendButton = element.next();
|
||||||
|
// element.on('input',function(){
|
||||||
|
// //console.log(sendButton);
|
||||||
|
// copyContainer.html(element[0].value);
|
||||||
|
// var textHeight = copyContainer[0].scrollHeight-10;
|
||||||
|
// element.css('height', textHeight + 'px');
|
||||||
|
// });
|
||||||
|
// sendButton.on('click',function(){
|
||||||
|
// element.css('height','18px');
|
||||||
|
// });
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
//});
|
||||||
|
|
||||||
|
app.directive('inputAuto',["$timeout",function(timer){
|
||||||
return{
|
return{
|
||||||
restrict: 'A',
|
restrict: 'A',
|
||||||
scope: {},
|
scope: {},
|
||||||
link: function(scope, element){
|
link: function(scope, element){
|
||||||
var copyContainer = element.parent().children().children().eq(0);
|
timer(function(){
|
||||||
var sendButton = element.next();
|
$(".post-reply-input").bind("input",function(){
|
||||||
element.on('input',function(){
|
var copyInput = $(this).prev().children();
|
||||||
//console.log(sendButton);
|
var sendButton = $(this).next();
|
||||||
copyContainer.html(element[0].value);
|
copyInput.html($(this).val());
|
||||||
var textHeight = copyContainer[0].scrollHeight-10;
|
var textHeight = copyInput[0].scrollHeight-10;
|
||||||
element.css('height', textHeight + 'px');
|
$(this).css("height",textHeight + "px");
|
||||||
|
sendButton.click(function(){
|
||||||
|
$(this).prev().css("height","18px");
|
||||||
|
})
|
||||||
});
|
});
|
||||||
sendButton.on('click',function(){
|
|
||||||
element.css('height','18px');
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
}]);
|
|
@ -0,0 +1,35 @@
|
||||||
|
app.directive('loadHead',['$http','config','auth','$location','alertService',function($http,config,auth,$location,alertService){
|
||||||
|
return{
|
||||||
|
restrict: 'A',
|
||||||
|
scope: {},
|
||||||
|
link: function (scope, element, attrs) {
|
||||||
|
element.bind('change', function(){
|
||||||
|
var file = event.target.files[0];
|
||||||
|
//判断类型是不是图片
|
||||||
|
if (!/image\/\w+/.test(file.type)) {
|
||||||
|
alert("非图片");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var reader = new FileReader();
|
||||||
|
reader.readAsDataURL(file);
|
||||||
|
reader.onload = function (e) {
|
||||||
|
// alert(this.result);//base64
|
||||||
|
|
||||||
|
$http.post(config.apiUrl + "users/upload_head",
|
||||||
|
{token: auth.token(),imgdata:this.result}
|
||||||
|
).then(function (response) {
|
||||||
|
if(response.data.status == 0){
|
||||||
|
scope.$parent.alertService_1.showMessage('提示',"上传成功",function(){
|
||||||
|
scope.$parent.getuserinfo();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
scope.$parent.alertService_1.showMessage('提示',response.data.message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}]);
|
|
@ -0,0 +1,42 @@
|
||||||
|
/**
|
||||||
|
* Created by ttang on 2016/9/5.
|
||||||
|
*/
|
||||||
|
app.directive('multiReply',["$timeout",function(timer){
|
||||||
|
return{
|
||||||
|
restrict: 'A',
|
||||||
|
scope: {},
|
||||||
|
link: function(scope, element){
|
||||||
|
timer(function(){
|
||||||
|
$(".reply-icons").each(function(){
|
||||||
|
$(this).toggle(function(){
|
||||||
|
$(this).next().next().removeClass("undis");
|
||||||
|
$(this).next().next().focus();
|
||||||
|
},function(){
|
||||||
|
$(this).next().next().addClass("undis");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
// $(".reply-icons").live("click",function(){
|
||||||
|
// if($(this).hasClass("multi-hide")){
|
||||||
|
// $(".multi-input-container").addClass("undis");
|
||||||
|
// $(".reply-icons").addClass("multi-hide");
|
||||||
|
// $(this).next().next().removeClass("undis");
|
||||||
|
// $(this).next().next().focus();
|
||||||
|
// $(this).removeClass("multi-hide");
|
||||||
|
// $(".post-reply-input").val("");
|
||||||
|
// }
|
||||||
|
// else{
|
||||||
|
// $(this).addClass("multi-hide");
|
||||||
|
// $(".post-input-container").addClass("undis");
|
||||||
|
// $(".post-reply-input").val("");
|
||||||
|
// $("#post_input_1, #post_input_1 .post-input-container").show();
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
// $(".post-reply-submit,#more_reply").click(function(){
|
||||||
|
// $(".reply-icons").addClass("multi-hide");
|
||||||
|
// $(".post-input-container").addClass("undis");
|
||||||
|
// $("#post_input_1, #post_input_1 .post-input-container").show();
|
||||||
|
// });
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}]);
|
|
@ -1,17 +0,0 @@
|
||||||
/**
|
|
||||||
* Created by ttang on 2016/8/31.
|
|
||||||
*/
|
|
||||||
app.directive('submitStart',["$timeout",function(timer){
|
|
||||||
return{
|
|
||||||
restrict: 'A',
|
|
||||||
scope: {},
|
|
||||||
link: function(scope, element){
|
|
||||||
timer(function(){
|
|
||||||
$("#manageDelete,.login-box").click(function(){
|
|
||||||
element.removeClass("bg-grey c-white");
|
|
||||||
element.addClass("link-blue2");
|
|
||||||
});
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}]);
|
|
|
@ -94,7 +94,7 @@ app.factory('rms', function(){
|
||||||
});
|
});
|
||||||
|
|
||||||
app.factory('common', ['$http', 'auth', '$routeParams','rms','config','wx','$location', function($http, auth, $routeParams,rms,config,wx,$location){
|
app.factory('common', ['$http', 'auth', '$routeParams','rms','config','wx','$location', function($http, auth, $routeParams,rms,config,wx,$location){
|
||||||
var addCommonReply = function(id, type, data,args, cb){
|
var addCommonReply = function(id, type, data,args,reply_type, cb){
|
||||||
//先判断有没有绑定
|
//先判断有没有绑定
|
||||||
// $http.post(
|
// $http.post(
|
||||||
// '/wechat/is_bind',
|
// '/wechat/is_bind',
|
||||||
|
@ -111,12 +111,12 @@ app.factory('common', ['$http', 'auth', '$routeParams','rms','config','wx','$loc
|
||||||
}
|
}
|
||||||
|
|
||||||
var temp = data.comment.replace(/\n/g,'<br/>');
|
var temp = data.comment.replace(/\n/g,'<br/>');
|
||||||
temp = temp.replace(/^\:[a-z0-9_]+\:$/g, "[表情]");
|
|
||||||
|
|
||||||
var userInfo = {
|
var userInfo = {
|
||||||
type: type,
|
type: type,
|
||||||
content: temp,
|
content: temp,
|
||||||
token: auth.token()
|
token: auth.token(),
|
||||||
|
reply_type:reply_type
|
||||||
};
|
};
|
||||||
//回复按钮禁用
|
//回复按钮禁用
|
||||||
data.disabled = true;
|
data.disabled = true;
|
||||||
|
@ -146,24 +146,26 @@ app.factory('common', ['$http', 'auth', '$routeParams','rms','config','wx','$loc
|
||||||
cb(response.data.subscribe);
|
cb(response.data.subscribe);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var act_id = response.data.act_id;
|
||||||
|
|
||||||
//保证内外回复数一致
|
//保证内外回复数一致
|
||||||
activities = rms.get("activities") || [];
|
activities = rms.get("activities") || [];
|
||||||
course_activities = rms.get("course_activities") || [];
|
course_activities = rms.get("course_activities") || [];
|
||||||
project_activities = rms.get("project_activities") || [];
|
project_activities = rms.get("project_activities") || [];
|
||||||
for(var i in activities){
|
for(var i in activities){
|
||||||
if(activities[i].act_id == id){
|
if(activities[i].act_id == act_id){
|
||||||
activities[i].reply_count += 1;
|
activities[i].reply_count += 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for(var i in course_activities){
|
for(var i in course_activities){
|
||||||
if(course_activities[i].act_id == id){
|
if(course_activities[i].act_id == act_id){
|
||||||
course_activities[i].reply_count += 1;
|
course_activities[i].reply_count += 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for(var i in project_activities){
|
for(var i in project_activities){
|
||||||
if(project_activities[i].act_id == id){
|
if(project_activities[i].act_id == act_id){
|
||||||
project_activities[i].reply_count += 1;
|
project_activities[i].reply_count += 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -222,7 +224,7 @@ app.factory('common', ['$http', 'auth', '$routeParams','rms','config','wx','$loc
|
||||||
|
|
||||||
var init = function(args){
|
var init = function(args){
|
||||||
args.scope.replytip = "输入回复内容~";
|
args.scope.replytip = "输入回复内容~";
|
||||||
args.scope.formData = {comment: ''};
|
// args.scope.formData = {comment: ''};
|
||||||
var loadData = function(id,replytype,page){
|
var loadData = function(id,replytype,page){
|
||||||
loadCommonData(id, args.type,replytype,page).then(function successCallback(response) {
|
loadCommonData(id, args.type,replytype,page).then(function successCallback(response) {
|
||||||
console.log(response.data);
|
console.log(response.data);
|
||||||
|
@ -304,10 +306,10 @@ app.factory('common', ['$http', 'auth', '$routeParams','rms','config','wx','$loc
|
||||||
};
|
};
|
||||||
|
|
||||||
loadData(args.id,0,0);
|
loadData(args.id,0,0);
|
||||||
args.scope.addReply = function(data){
|
args.scope.addReply = function(data,reply_type){
|
||||||
console.log(data.comment);
|
console.log(data.comment);
|
||||||
addCommonReply(args.id, args.replyType, data,args, function(subscribe){
|
addCommonReply(data.act_id, args.replyType, data,args,reply_type, function(subscribe){
|
||||||
args.scope.formData = {comment: ''};
|
// args.scope.formData = {comment: ''};
|
||||||
if(subscribe == 0){
|
if(subscribe == 0){
|
||||||
$location.path("/login_tip");
|
$location.path("/login_tip");
|
||||||
return;
|
return;
|
||||||
|
@ -322,6 +324,27 @@ app.factory('common', ['$http', 'auth', '$routeParams','rms','config','wx','$loc
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
args.scope.inputfocus = function(data){
|
||||||
|
data.notshow = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
args.scope.inputblur = function(data){
|
||||||
|
data.notshow = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
args.scope.clickReply = function(act_id,data) {
|
||||||
|
allchidren = data.all_children;
|
||||||
|
for(var i in allchidren){
|
||||||
|
if(allchidren[i].act_id != act_id ){
|
||||||
|
allchidren[i].showinput = false;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
allchidren[i].showinput = !allchidren[i].showinput;
|
||||||
|
data.notshow = allchidren[i].showinput;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// 动态详情界面点赞与动态界面的数据要同步 保证进入详情点赞后出来显示一致
|
// 动态详情界面点赞与动态界面的数据要同步 保证进入详情点赞后出来显示一致
|
||||||
args.scope.addPraise = function(act){
|
args.scope.addPraise = function(act){
|
||||||
activities = rms.get("activities") || [];
|
activities = rms.get("activities") || [];
|
||||||
|
|
|
@ -51,6 +51,7 @@ app.config(['$routeProvider',"$httpProvider", "$locationProvider",'config', func
|
||||||
.when('/review_project_member', makeRoute('review_project_member.html', 'ReviewProjectMemberController'))
|
.when('/review_project_member', makeRoute('review_project_member.html', 'ReviewProjectMemberController'))
|
||||||
.when('/project_publishnote', makeRoute('project_publishnote.html', 'ProjectPublishNoteController'))
|
.when('/project_publishnote', makeRoute('project_publishnote.html', 'ProjectPublishNoteController'))
|
||||||
.when('/login_tip', makeRoute('login_tip.html', 'LoginTipController'))
|
.when('/login_tip', makeRoute('login_tip.html', 'LoginTipController'))
|
||||||
|
.when('/edit_userinfo', makeRoute('edit_userinfo.html', 'EditUserInfoController'))
|
||||||
.otherwise({
|
.otherwise({
|
||||||
redirectTo: '/activites'
|
redirectTo: '/activites'
|
||||||
});
|
});
|
||||||
|
|
|
@ -258,3 +258,8 @@ a.underline {text-decoration:underline;}
|
||||||
/*发布帖子,通知*/
|
/*发布帖子,通知*/
|
||||||
.full-width-wrap {padding:5px 15px; background-color:#fff; border-top:1px solid #ddd; border-bottom:1px solid #ddd;}
|
.full-width-wrap {padding:5px 15px; background-color:#fff; border-top:1px solid #ddd; border-bottom:1px solid #ddd;}
|
||||||
.full-width-textarea {width:100%; height:180px; line-height:18px; max-height:180px; border:none; resize:none; font-size:13px; color:#555; overflow-y:auto;}
|
.full-width-textarea {width:100%; height:180px; line-height:18px; max-height:180px; border:none; resize:none; font-size:13px; color:#555; overflow-y:auto;}
|
||||||
|
|
||||||
|
/*资料修改*/
|
||||||
|
.blank-row {width:100%; height:38px; line-height:38px; vertical-align:middle;}
|
||||||
|
.upload-input-container {width:30px; height:30px; border:1px solid #ddd; position:relative;}
|
||||||
|
.upload-input {width:30px; height:30px; position:absolute; z-index:1; opacity:0;}
|
Loading…
Reference in New Issue