2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-07 08:17:14 +08:00
Files
panel/public/res/modules/user.js
2023-06-22 00:09:56 +08:00

46 lines
1.2 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* user demo
*/
layui.define('form', function (exports) {
var $ = layui.$
, layer = layui.layer
, laytpl = layui.laytpl
, setter = layui.setter
, view = layui.view
, admin = layui.admin
, form = layui.form
var $body = $('body')
//自定义验证
form.verify({
nickname: function (value, item) { //value表单的值、item表单的DOM对象
if (!new RegExp('^[a-zA-Z0-9_\u4e00-\u9fa5\\s·]+$').test(value)) {
return '用户名不能有特殊字符'
}
if (/(^\_)|(\__)|(\_+$)/.test(value)) {
return '用户名首尾不能出现下划线\'_\''
}
if (/^\d+\d+\d$/.test(value)) {
return '用户名不能全为数字'
}
}
//我们既支持上述函数式的方式,也支持下述数组的形式
//数组的两个值分别代表:[正则匹配、匹配不符时的提示文字]
, pass: [
/^[\S]{6,12}$/
, '密码必须6到12位且不能出现空格'
]
})
//更换图形验证码
$body.on('click', '#LAY-user-get-vercode', function () {
var othis = $(this)
this.src = 'https://www.oschina.net/action/user/captcha?t=' + new Date().getTime()
})
//对外暴露的接口
exports('user', {})
})