Commit 502fd06ef3a0255fbf6843d10eb0e596cabb46a6

Authored by xu
1 parent dc472369
Exists in master

domain(v1.0.0 build 5)

1. F 短信模板填错了
common/config/params.php
... ... @@ -2,5 +2,5 @@
2 2 return [
3 3 'adminEmail' => 'admin@example.com',
4 4 'user.passwordResetTokenExpire' => 3600,
5   - 'VERSION' => 'v1.0.0 build 4'
  5 + 'VERSION' => 'v1.0.0 build 5'
6 6 ];
... ...
domain/system/SmsMessage.php
... ... @@ -116,13 +116,13 @@ class SmsMessage
116 116 }
117 117  
118 118 /*
119   - * 模版CODE: SMS_181853499
120   - * 【XX车管家】尊敬的车主,您的爱车正在${maintainer}维修,预计${dateTime}维修完成,预估维修内容:${repairPlan},预估维修费:${repairPrice},维修厂地址:${address},联系电话:${tel}
  119 + * 模版CODE: SMS_181862780
  120 + * 您好,${maintainer}已完成您的爱车维修,点击http://gkauto.jiwork.com/site/t?o=${code} 了解维修详情,同时您可以对本次服务进行评分。如有问题请拨打服务监督电话${tel}
121 121 * */
122 122 public function sendFinishInfo($phone, $postData)
123 123 {
124 124 //return true;
125 125 $signName = $this->getSignName();
126   - return $this->send($phone, $signName, "SMS_181853499", $postData);
  126 + return $this->send($phone, $signName, "SMS_181862780", $postData);
127 127 }
128 128 }
129 129 \ No newline at end of file
... ...