|
|
|
@ -141,6 +141,7 @@ class AccountController < ApplicationController
|
|
|
|
|
@resubmit = "#{code}"
|
|
|
|
|
@agreement = Help.first
|
|
|
|
|
@cooperation = Cooperation.all
|
|
|
|
|
@url = params[:url]
|
|
|
|
|
|
|
|
|
|
@com_coop_img = CooImg.where(:img_type => 'com_coop').order("position asc")
|
|
|
|
|
@edu_coop_img = CooImg.where(:img_type => 'edu_coop').order("position asc")
|
|
|
|
@ -208,7 +209,7 @@ class AccountController < ApplicationController
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def insert_suggest
|
|
|
|
|
content = "<p>[#{params[:question_kind]}]</p>" + params[:description]
|
|
|
|
|
content = "<p>[#{params[:question_kind]}]</p>" + "<p>问题页面网址:#{params[:url]}</p>" + params[:description]
|
|
|
|
|
PrivateMessage.create(:user_id => User.current.id, :target_id => 1, :sender_id => User.current.id, :receiver_id => 1, :content => content, :send_time => Time.now, :status => 1)
|
|
|
|
|
PrivateMessage.create(:user_id => 1, :target_id => User.current.id, :sender_id => User.current.id, :receiver_id => 1, :content => content, :send_time => Time.now, :status => 0)
|
|
|
|
|
redirect_to message_detail_user_path(User.current, :user_id => 1)
|
|
|
|
|