addfenpei.html
2.15 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
<!DOCTYPE html>
<html lang="zh-CN"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>后台管理系统</title>
<meta name="keywords" content="">
<meta name="description" content="">
<link rel="stylesheet" type="text/css" href="__PUB__style/pp.css">
<link rel="stylesheet" type="text/css" href="__PUB__style/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="__PUB__style/bootstrap-responsive.min.css">
<script type="text/javascript" src="__PUB__js/bootstrap.min.js"></script>
<script type="text/javascript" src="__PUB__js/jquery.min.js"></script>
<script type="text/javascript" src="__PUB__js/common.js"></script>
<load href='__PUB__js/pp_check.js'/>
</head>
<body style="margin: 10px 0px;">
<div style="margin:0 auto; width:98%;">
<form name="group" action="" method="post">
<table class="table table-condensed table-bordered table-hover">
<tbody>
<tr>
<td colspan="2" style="padding-left:10px;">
<div style="float:left">
<b>添加分配</b>
</div>
<div style="float:right">
[<a href="<{:U('fenpei')}>"><u>返回列表</u></a>]
</div>
</td>
</tr>
<tr>
<td class="text_right_wid_90"><font color="red">管理员名称:</font></td>
<td>
<select name="uid" onChange="select_check('uid');">
<option value="">请选择会员</option>
<volist name="admin" id="v">
<option value="<{$v.id}>"><{$v.username}></option>
</volist>
</select>
</td>
</tr>
<tr>
<td class="text_right_wid_90"><font color="red">角色:</font></td>
<td>
<php>$empty='<a href="'.U('addgroup').'">无用角色,请先添加角色</a>';</php>
<volist name="groups" id="v" empty="$empty">
<input name="group_id" type="radio" value='<{$v.id}>' /> <{$v.title}>
</volist>
</td>
</tr>
<tr>
<td colspan="2" style="text-align:center">
<input name="submit" type="submit" style=" background:url(__PUB__img/button_save.gif); width:60px; height:22px; border:0" value=" "> <a href="javascript:history.go(-1);"><img src="__PUB__img/button_back.gif" width="60" height="22" border="0"></a>
</td>
</tr>
</tbody>
</table>
</form>
</div>
</body>
</html>