You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
664 B
29 lines
664 B
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<button onclick="pwdfind();">test</button>
|
|
|
|
|
|
<script src="../../lib/layui/layui.js"></script>
|
|
<script>
|
|
layui.extend({
|
|
admin: '{/}../../static/js/admin'
|
|
});
|
|
layui.use(['form', 'jquery', 'admin', 'layer'], function () {
|
|
var form = layui.form,
|
|
$ = layui.jquery,
|
|
admin = layui.admin,
|
|
layer = layui.layer;
|
|
window.pwdfind=function () {
|
|
// WeAdminShow('找回密码','./pwdfind.html',500,360);
|
|
window.open('./pwdfind.html')
|
|
}
|
|
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |