forked from wkunzhi/CRM-Manage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
420 additions
and
258 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
<!--用户访问路径追踪--> | ||
<div> | ||
<ol class="breadcrumb no-radius no-margin" style="border-bottom: 1px solid #ddd;"> | ||
{% for item in record_list %} | ||
<!--判断是否是最后一层路径,最后一层为不可选中--> | ||
{% if item.class %} | ||
<li class="{{ item.class }}">{{ item.title }}</li> | ||
{% else %} | ||
<li><a href="{{ item.url }}">{{ item.title }}</a></li> | ||
{% endif %} | ||
{% endfor %} | ||
</ol> | ||
</div> | ||
|
||
<div class="layui-breadcrumb" lay-filter="breadcrumb" style="visibility: visible;"> | ||
{% for item in record_list %} | ||
<!--判断是否是最后一层路径,最后一层为不可选中--> | ||
{% if item.class %} | ||
<a style="text-decoration:none;"><cite>{{ item.title }}</cite></a> | ||
{% else %} | ||
<a style="text-decoration:none;" href="{{ item.url }}">{{ item.title }}</a><span lay-separator="">/</span> | ||
{% endif %} | ||
{% endfor %} | ||
</div> |
Oops, something went wrong.