-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblock-edit.html
145 lines (137 loc) · 6.11 KB
/
block-edit.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html class="x-admin-sm">
<head>
<meta charset="UTF-8">
<title>版块编辑-一苇以航</title>
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport"
content="width=device-width,user-scalable=yes, minimum-scale=0.4, initial-scale=0.8,target-densitydpi=low-dpi" />
<link rel="stylesheet" href="./css/font.css">
<link rel="stylesheet" href="./css/xadmin.css">
<script type="text/javascript" src="./lib/layui/layui.js" charset="utf-8"></script>
<script type="text/javascript" src="./js/xadmin.js"></script>
<script src="./js/app.js"></script>
<!-- 让IE8/9支持媒体查询,从而兼容栅格 -->
<!--[if lt IE 9]>
<script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
<script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="layui-fluid">
<div class="layui-row">
<form class="layui-form">
<div class="layui-form-item">
<label for="L_id" class="layui-form-label">
ID</label>
<div class="layui-input-inline">
<input type="text" id="L_id" autocomplete="off" class="layui-input" disabled="disabled"
style="background:#d6d6d6">
</div>
<div class="layui-form-mid layui-word-aux">
<span class="x-red">*</span>ID唯一且不可更改
</div>
</div>
<div class="layui-form-item">
<label for="L_name" class="layui-form-label">
<span class="x-red">*</span>版块名</label>
<div class="layui-input-inline">
<input type="text" id="L_name" name="name" lay-verify="required" autocomplete="off"
class="layui-input">
</div>
</div>
<div class="layui-form-item">
<label for="L_repass" class="layui-form-label"></label>
<button class="layui-btn" lay-filter="add" lay-submit="">提交</button>
</div>
</form>
</div>
</div>
<script>
headers = {'token': localStorage.token};
layui.use(['form', 'layer'],
function () {
var id = localStorage.block_id_edit;
localStorage.removeItem('block_id_edit');
console.log(id);
$ = layui.jquery;
var form = layui.form,
layer = layui.layer;
if (id == null) {
layer.msg('ID错误', { icon: 5 });
}
if (!isNaN(id)) {
var index = layer.open({ type: 3, icon: 1 });
$.ajax(server + `blocks/${id}/`, {
method: 'GET',
headers: headers
}).done(function (data) {
$('#L_id').val(data.id);
$('#L_name').val(data.name);
}).fail(function (xhr, status) {
console.log(xhr);
console.log(status);
if (xhr.status === 404) {
layer.msg('该版块不存在', { icon: 5 });
}
else {
layer.msg("网络错误", { icon: 2 });
}
}).always(function () {
layer.close(index);
});
}
//自定义验证规则
/*form.verify({
nikename: function (value) {
if (value.length < 5) {
return '昵称至少得5个字符啊';
}
},
pass: [/(.+){6,12}$/, '密码必须6到12位'],
repass: function (value) {
if ($('#L_pass').val() != $('#L_repass').val()) {
return '两次密码不一致';
}
}
});*/
//监听提交
form.on('submit(add)',
function (data) {
console.log(data.field);
var index = layer.open({ type: 3, icon: 1 });
$.ajax(server + `blocks/${id}/`, {
method: 'PUT',
contentType: 'application/json',
data: JSON.stringify(data.field),
headers: headers
}).done(function (data) {
//$(obj).parents("tr").remove();
layer.msg('修改成功', { icon: 1, time: 1000 });
}).fail(function (xhr, status) {
console.log(xhr);
console.log(status);
//layer.msg("网络错误");
if (xhr.status === 400) {
layer.msg(`版块 ${data.field.name} 已存在`, { icon: 5 });
}
else {
layer.msg('网络错误', { icon: 2 });
}
}).always(function () {
layer.close(index);
});
/*layer.alert("增加成功", {
icon: 6
}, function () {
// 获得frame索引
var index = parent.layer.getFrameIndex(window.name);
//关闭当前frame
parent.layer.close(index);
});*/
return false;
});
});</script>
</body>
</html>