| 1234567891011121314151617181920212223242526272829303132333435363738394041 | <?php/** * Created by PhpStorm. * User: zhengmingwei * Date: 2019/11/5 * Time: 11:00 下午 */namespace addons\unishop\validate;use think\Validate;class Order extends Validate{    /**     * 验证规则     */    protected $rule = [        'product_id' => 'require',        'number' => 'require',        'remark' => 'max:250',    ];    /**     * 提示消息     */    protected $message = [        'product_id.required' => '产品编号不能为空',        'number.require' => '商品数量不能为空',        'remark.max' => '备注不能超过250个文字',    ];    /**     * 验证场景     */    protected $scene = [        'submit'  => ['product_id', 'number', 'remark'], // 创建订单        'submitFlash'  => ['product_id', 'number', 'city_id', 'remark', 'flash_id'], // 秒杀创建订单    ];}
 |