You've already forked qlg.tsgz.moe
addons
extend
hyhproject
admin
app
common
home
home2
mobile2
common
conf
controller
model
validate
UserAddress.php
view
wechat2
.htaccess
command.php
mobile
oss
static
thinkphp
upload
vendor
wxtmp
.gitignore
.htaccess
.user.ini
404.html
H5B854518.wgt
admin.php
app-release.apk
cash.lock
demo.php
get_startup.php
get_version.php
get_version_new.php
index.html
index.php
reg.lock
robots.txt
24 lines
794 B
PHP
Executable File
24 lines
794 B
PHP
Executable File
<?php
|
|
namespace wstmart\mobile\validate;
|
|
use think\Validate;
|
|
/**
|
|
* ============================================================================
|
|
* WSTMart开源商城
|
|
* 官网地址:http://www.wstmall.com
|
|
* 联系QQ:707563272
|
|
* ============================================================================
|
|
* 用户地址验证器
|
|
*/
|
|
class UserAddress extends Validate{
|
|
protected $rule = [
|
|
['userName' ,'require','请输入联系名称'],
|
|
['userPhone' ,'require','请输入手机号码'],
|
|
['areaId' ,'require','请选择完整地址'],
|
|
['userAddress' ,'require','请输入详细地址']
|
|
];
|
|
|
|
protected $scene = [
|
|
'add' => ['userName','userPhone','areaId','userAddress'],
|
|
'edit' => ['userName','userPhone','areaId','userAddress']
|
|
];
|
|
} |