VisitorRegistrationForm.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. namespace common\forms;
  3. use common\enums\EmailEnum;
  4. use common\models\HouseEmail;
  5. use mobile\base\Help;
  6. use Yii;
  7. use yii\base\Model;
  8. use \common\models\House;
  9. use \common\models\Enroll;
  10. /**
  11. * Class SignupForm
  12. * @package frontend\models
  13. */
  14. class VisitorRegistrationForm extends Model
  15. {
  16. public $mobile;
  17. public $intention_house;
  18. public $intention_housetype;
  19. public $budget;
  20. public $name;
  21. public $hid;
  22. public $city;
  23. public $intention_city;
  24. public $housename;
  25. public $send_email;
  26. public $city_name; //区域名称
  27. /**
  28. * {@inheritdoc}
  29. */
  30. public function rules()
  31. {
  32. return [
  33. ['mobile', 'match', 'pattern' => '/^1[23456789]\d{9}$/', 'message' => '请输入正确的手机号码'],
  34. [['intention_house', 'intention_housetype', 'budget', 'name', 'hid', 'city', 'intention_city'], 'default', 'value' => ''],
  35. [['intention_house', 'intention_housetype', 'budget', 'name', 'hid', 'city', 'intention_city'], 'string'],
  36. [['city', 'hid', 'intention_city'], 'string'],
  37. ['send_email', 'filter', 'filter' => function ($val) {
  38. $model = House::FindByHid($this->hid);
  39. if ($model) {
  40. $this->housename = $model->name;
  41. $this->city = $model->city;
  42. }
  43. if (!empty($this->intention_city)) {
  44. $city_rows = \common\models\CategoryCity::findOne(['city_name' => $this->intention_city]);
  45. if ($city_rows) {
  46. $this->city = $city_rows->id;
  47. }
  48. }
  49. $catCity = (new \common\models\CategoryCity())->FindById($this->city);
  50. if ($catCity) {
  51. $this->city_name = $catCity->city_name;
  52. }
  53. $cityEmail = new \common\models\Email();
  54. $email = $cityEmail->FindByEmail($this->city);
  55. if ($email) {
  56. //查询该楼盘是否单独设置了邮箱
  57. $HouseEmail = (new HouseEmail())->findEmail($this->hid);
  58. if (!empty($HouseEmail)) {
  59. return $HouseEmail['email'];
  60. }
  61. return $email['email'];
  62. } else {
  63. //查询该楼盘是否单独设置了邮箱
  64. $HouseEmail = (new HouseEmail())->findEmail($this->hid);
  65. if (!empty($HouseEmail)) {
  66. return $HouseEmail['email'];
  67. }
  68. return \Yii::$app->params['default_email'];
  69. }
  70. }],
  71. ];
  72. }
  73. public function attributeLabels()
  74. {
  75. return [
  76. 'mobile' => '联系方式',
  77. 'intention_house' => '意向楼盘',
  78. 'intention_city' => '意向区域',
  79. 'intention_housetype' => '意向户型',
  80. 'budget' => '预算',
  81. 'name' => '姓名',
  82. 'hid' => '楼盘ID',
  83. 'city' => '区域',
  84. 'city_name' => '区域名称',
  85. 'send_email' => '发送邮箱',
  86. ];
  87. }
  88. }