Config.php 787 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 应用配置
  7. */
  8. namespace app\smartbc\validate;
  9. use think\Validate;
  10. class Config extends Validate{
  11. protected $rule = [
  12. 'service_telephone' => 'require',
  13. 'end_time' => 'require|number|between: 0,100',
  14. ];
  15. protected $message = [
  16. 'service_telephone' => '客服电话必须填写',
  17. 'end_time' => '优惠券过期时间必须填写,(0-100)之间',
  18. ];
  19. protected $scene = [
  20. 'article' => ['shore_img','shore_text','mch_text','mch_qrcode'], //文案
  21. 'save' => ['service_telephone','end_time'],
  22. ];
  23. }