show.vm
2.2 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
#set($page_title="详情")
#set($crumbs="首页:/home,详情")
#set($url_save = "/dataAuth/save.do")
<div class="page-content">
<div class="page-header">
<span class="pull-right"><a href="javascript:history.back()" class="btn btn-white btn-default">返回</a></span>
<h1>
管理
<small>
<i class="icon-double-angle-right"></i>
详细信息
</small>
</h1>
</div>
<!-- /.page-header -->
<div class="row">
<div class="col-xs-12">
<!-- PAGE CONTENT BEGINS -->
<div class="profile-user-info profile-user-info-striped">
<div class="profile-info-row">
<div class="profile-info-name"> id</div>
<div class="profile-info-value">
<span >$!{model.id} </span>
</div>
</div>
<div class="profile-info-row">
<div class="profile-info-name"> </div>
<div class="profile-info-value">
<span >$!{model.type} </span>
</div>
</div>
<div class="profile-info-row">
<div class="profile-info-name"> 用户ID </div>
<div class="profile-info-value">
<span >$!{model.userId} </span>
</div>
</div>
<div class="profile-info-row">
<div class="profile-info-name"> 数据权限ID </div>
<div class="profile-info-value">
<span >$!{model.dataId} </span>
</div>
</div>
</div>
<div class="clearfix form-actions">
<div class="col-md-offset-3 col-md-9">
<a class="btn btn-info" href="javascript:history.back()">
<i class="icon-reply bigger-110"></i>
返回
</a>
</div>
</div>
</div>
</div>
</div>