diff --git a/zheng-cms/zheng-cms-web/src/main/webapp/resources/index.html b/zheng-cms/zheng-cms-web/src/main/webapp/resources/index.html
index de5306a1..e60d9e54 100644
--- a/zheng-cms/zheng-cms-web/src/main/webapp/resources/index.html
+++ b/zheng-cms/zheng-cms-web/src/main/webapp/resources/index.html
@@ -133,37 +133,37 @@
@@ -179,57 +179,12 @@
-
首页
- -
- 系统注册
-
- -
- 新增标签
-
- -
- 内容编辑
-
- -
- 个人详情
-
- -
- 系统注册
-
- -
- 新增标签
-
- -
- 内容编辑
-
- -
- 个人详情
-
- -
- 系统注册
-
- -
- 新增标签
-
- -
- 内容编辑
-
- -
- 个人详情
-
- -
- 系统注册
-
- -
- 新增标签
-
- -
- 内容编辑
-
-
个人详情
diff --git a/zheng-cms/zheng-cms-web/src/main/webapp/resources/js/admin.js b/zheng-cms/zheng-cms-web/src/main/webapp/resources/js/admin.js
index 8a454e57..214b2240 100644
--- a/zheng-cms/zheng-cms-web/src/main/webapp/resources/js/admin.js
+++ b/zheng-cms/zheng-cms-web/src/main/webapp/resources/js/admin.js
@@ -28,8 +28,33 @@ $(function() {
}
});
// 选项卡
- $('.content_tab li').click(function() {
+ $(document).on('click', '.content_tab li', function() {
$('.content_tab li').removeClass('cur');
$(this).addClass('cur');
});
-});
\ No newline at end of file
+ // 控制选项卡滚动位置
+ $('.tab_left>a').click(function() {
+ $('.content_tab>ul').animate({scrollLeft: $('.content_tab>ul').scrollLeft() - 300}, 200);
+ if ($('.content_tab>ul').scrollLeft() == 0) {
+ $('.tab_left>a').removeClass('active');
+ } else {
+ $('.tab_left>a').addClass('active');
+ }
+ });
+ $('.tab_right>a').click(function() {
+ $('.content_tab>ul').animate({scrollLeft: $('.content_tab>ul').scrollLeft() + 300}, 200);
+ if ($('.content_tab>ul').scrollLeft() == 0) {
+ $('.tab_left>a').removeClass('active');
+ } else {
+ $('.tab_left>a').addClass('active');
+ }
+ });
+ // 初始化
+});
+var tab = {
+ addTab: function(title, url) {
+ $('.content_tab li').removeClass('cur');
+ var tab = '- ' + title + '
';
+ $('.content_tab>ul').append(tab);
+ }
+}
\ No newline at end of file