Authored by xuqi

tag页路由变更

@@ -68,7 +68,7 @@ exports.init = function() { @@ -68,7 +68,7 @@ exports.init = function() {
68 }); 68 });
69 69
70 //读取模板 70 //读取模板
71 - $.get('/common/matchtpl', function(data) { 71 + $.get('/common/tagtpl', function(data) {
72 tpl = data; 72 tpl = data;
73 Mustache.parse(tpl); 73 Mustache.parse(tpl);
74 }); 74 });
@@ -127,7 +127,7 @@ exports.init = function() { @@ -127,7 +127,7 @@ exports.init = function() {
127 canScroll = false; 127 canScroll = false;
128 $.ajax({ 128 $.ajax({
129 type: 'GET', 129 type: 'GET',
130 - url: '/tag/loadMatchs', 130 + url: '/tag/get',
131 data: setting 131 data: setting
132 }).then(function(data) { 132 }).then(function(data) {
133 var html = '', 133 var html = '',
@@ -16,7 +16,7 @@ module.exports = function(app) { @@ -16,7 +16,7 @@ module.exports = function(app) {
16 app.get('/optimize', saunter.optimize); //优化着陆页 16 app.get('/optimize', saunter.optimize); //优化着陆页
17 17
18 app.get('/tag', tag.show); //标签页 18 app.get('/tag', tag.show); //标签页
19 - app.get('/tag/loadMatchs', tag.loadMatchs); //异步加载搭配内容 19 + app.get('/tag/get', tag.loadMatchs); //异步加载搭配内容
20 app.get('/editor', editor.show); //编辑页 20 app.get('/editor', editor.show); //编辑页
21 21
22 app.get('/ps', ps.show); //plus + star 22 app.get('/ps', ps.show); //plus + star
@@ -33,5 +33,5 @@ module.exports = function(app) { @@ -33,5 +33,5 @@ module.exports = function(app) {
33 app.get('/common/articletpl', ps.readTpl); //获取相关资讯模板 33 app.get('/common/articletpl', ps.readTpl); //获取相关资讯模板
34 app.get('/common/goodinfo', template.readTpl); //读取模板 34 app.get('/common/goodinfo', template.readTpl); //读取模板
35 35
36 - app.get('/common/matchtpl', match.readTpl); 36 + app.get('/common/tagtpl', match.readTpl);
37 }; 37 };