diff --git a/app/controllers/account_controller.rb b/app/controllers/account_controller.rb index 987f2b70..3368da12 100644 --- a/app/controllers/account_controller.rb +++ b/app/controllers/account_controller.rb @@ -1066,12 +1066,14 @@ class AccountController < ApplicationController # end elsif !User.current.user_extensions.school.nil? @tip = "申请已提交,我们将在5分钟内完成审核" - unless apply_action.present? + if !apply_action.present? ApplyAction.create(:user_id => User.current.id, :status => 0, :ip_addr => request.remote_ip, :container_type => "TrialAuthorization", :apply_reason => params[:apply_reason]) - begin - status = Trustie::Sms.send(mobile:17680641960, send_type:'user_apply_auth',name:'管理员' ) - rescue => e - Rails.logger.error "发送验证码出错: #{e}" + if user_ex.identity == 0 || user_ex.identity == 2 + begin + status = Trustie::Sms.send(mobile:17680641960, send_type:'user_apply_auth',name:'管理员' ) + rescue => e + Rails.logger.error "发送验证码出错: #{e}" + end end end end