phone_notification.html
4.8 KB
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
{% extends 'admin/admin.html' %}
{% import "common/admin_page.html" as pg %}
{% block content %}
<!--内容-->
<section class="content-header">
<h1>安监物联管理系统</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> 报警管理</a></li>
<li class="active">短信通知</li>
</ol>
</section>
<section class="content" id="showcontent">
<div class="row">
<div class="col-md-12">
<div class="box box-primary">
<div class="box-header">
<h3 class="box-title">通知列表</h3>
<div class="box-tools">
<form action="" method="GET">
<div class="input-group input-group-sm" style="width: 150px;">
<input type="text" name="keyword" class="form-control pull-right"
placeholder="请输入手机号">
<div class="input-group-btn">
<button type="submit" class="btn btn-default"><i class="fa fa-search"></i>
</button>
</div>
</div>
</form>
</div>
</div>
<div class="box-body table-responsive no-padding">
{% for msg in get_flashed_messages(category_filter=["ok"]) %}
<div class="alert alert-success alert-dismissible">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×
</button>
<h4><i class="icon fa fa-check"></i> 操作成功</h4>
{{ msg }}
</div>
{% endfor %}
<table class="table table-hover" id="table">
<tbody>
<tr>
<th>编号</th>
<th>昵称</th>
<th>手机</th>
<th>头像</th>
<th>选择</th>
<th>操作</th>
</tr>
{% for v in page_data.items %}
<tr>
<td>{{ v.id }}</td>
<td>{{ v.username }}</td>
<td>{{ v.phone }}</td>
<td>
<img style="width: 50px;height: 50px;"
src="{{ url_for('static', filename='uploads/users/huazai.jpg') }}"
class="img-responsive center-block" alt="">
</td>
<td>
{% if v.phonenotification == 1 %}
<input type="checkbox" id="check{{ v.id }}" checked="checked">
{% else %}
<input type="checkbox" id="check{{ v.id }}">
{% endif %}
</td>
<td>
<button onclick="submit_btn(this)" id="{{ v.id }}" class="btn btn-info btn-xs">保存</button>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<div class="box-footer clearfix">
{{ pg.page(page_data,'admin.user_list') }}
</div>
</div>
</div>
</div>
</section>
<!--内容-->
{% endblock %}
{% block js %}
<script>
$(document).ready(function(){
$("#g-5").addClass("active");
$("#g-5-1").addClass("active");
});
function submit_btn(obj) {
var id = $(obj).attr("id");
try {
var check = document.getElementById("check"+id).checked;
var c = 1;
if (check)
{
c = 1;
}
else
{
c = 0;
}
var s_url = "{{ s_url }}";
$.ajax({
type: "GET",
url: s_url + "/phonenotification_edit",
data: {id:id, phone:c},
dataType: "json",
success: function (result) {
alert("保存成功");
},
error: function (e) {
alert("error");
}
});
}
catch (e) {
alert(e);
}
}
</script>
{% endblock %}