This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/api/validate/order/Checkout.php

51 lines
801 B
PHP
Raw Normal View History

2020-04-25 22:20:29 +08:00
<?php
namespace app\api\validate\order;
use think\Validate;
class Checkout extends Validate
{
/**
* 验证规则
* @var array
*/
protected $rule = [
// 商品id
'goods_id' => [
'require',
'number',
'gt' => 0
],
// 购买数量
'goods_num' => [
'require',
'number',
'gt' => 0
],
// 商品sku_id
'goods_sku_id' => [
'require',
],
// // 购物车id集
// 'cart_ids' => [
// 'require',
// ],
];
/**
* 验证场景
* @var array
*/
protected $scene = [
'buyNow' => ['goods_id', 'goods_num', 'goods_sku_id'],
// 'cart' => ['cart_ids'],
];
}