Files
iblog2/views/admin/cachemanage.jade
2016-03-01 13:50:27 +08:00

50 lines
3.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
extends ../shared/layoutAdmin
block content
link(href='/libs/fuelux/dist/css/fuelux.min.css', rel='stylesheet')
link(href='/libs/sweetalert/dist/sweetalert.css', rel='stylesheet')
.row.wrapper.border-bottom.white-bg.page-heading
.col-lg-8
h2 缓存管理
.wrapper.wrapper-content.animated.fadeIn
.row
.col-md-6.col-md-offset-3
.ibox.m-t-xl
.row
.col-md-10
#keyinput.input-group.input-append.dropdown.combobox(data-initialize='combobox')
input#cacheKey.form-control(type='text', placeholder='缓存key')
.input-group-btn
button.btn.btn-white.dropdown-toggle(type='button', data-toggle='dropdown')
span.caret
ul.dropdown-menu.dropdown-menu-right(style='left:auto;')
li(data-value='categories')
a(href='#') 【文章分类】categories
li(data-value='categories_all')
a(href='#') 【文章分类含全部分类和未分类】categories_all
li(data-value='category_分类alias')
a(href='#') 【由alias获取分类】category_分类alias
li(data-value='posts_cateid_分类id_pageindex_页码_pagesize_每页条数_sortby_排序类型_keyword_关键字_filtertype_查询类型')
a(href='#') 【文章列表数据】posts_cateid_分类id_pageindex_页码_pagesize_每页条数_sortby_排序类型_keyword_关键字_filtertype_查询类型
li(data-value='posts_count_cateid_分类id_pageindex_页码_pagesize_每页条数_sortby_排序类型_keyword_关键字_filtertype_查询类型')
a(href='#') 【文章列表条数】posts_count_cateid_分类id_pageindex_页码_pagesize_每页条数_sortby_排序类型_keyword_关键字_filtertype_查询类型
li(data-value='article_文章alias')
a(href='#') 【由alias获取文章】article_文章alias
.col-md-2.text-right
button#btnQuery.btn.btn-white(type='button')
i.fa.fa-search
| 检索缓存
.row
.col-md-12
textarea#cacheContent.form-control.m-t-sm(rows='20', style='max-width:100%;min-width:100%;')
.row
.col-md-12.text-right
button#btnClear.btn.btn-primary.m-t-sm(type='button')
i.fa.fa-times
| 清除缓存
script(type='text/javascript', src='/libs/jquery/dist/jquery.min.js', charset='utf-8')
script(type='text/javascript', src='/libs/bootstrap/dist/js/bootstrap.min.js', charset='utf-8')
script(type='text/javascript', src='/libs/metisMenu/dist/metisMenu.min.js', charset='utf-8')
script(type='text/javascript', src='/javascripts/admin.js', charset='utf-8')
script(type='text/javascript', src='/libs/fuelux/dist/js/fuelux.min.js', charset='utf-8')
script(type='text/javascript', src='/libs/sweetalert/dist/sweetalert.min.js', charset='utf-8')
script(type='text/javascript', src='/javascripts/cachemanage.js', charset='utf-8')