Commit 72259097 authored by ms group dev's avatar ms group dev

模版更新

parent 258868e2
...@@ -27,12 +27,10 @@ INSERT INTO `mdiy_tag` VALUES (7, 'field', 3, '文章内容'); ...@@ -27,12 +27,10 @@ INSERT INTO `mdiy_tag` VALUES (7, 'field', 3, '文章内容');
INSERT INTO `mdiy_tag` VALUES (8, 'pre', 0, '文章上一篇'); INSERT INTO `mdiy_tag` VALUES (8, 'pre', 0, '文章上一篇');
INSERT INTO `mdiy_tag` VALUES (9, 'page', 2, '通用分页'); INSERT INTO `mdiy_tag` VALUES (9, 'page', 2, '通用分页');
INSERT INTO `mdiy_tag` VALUES (10, 'next', 0, '文章下一篇'); INSERT INTO `mdiy_tag` VALUES (10, 'next', 0, '文章下一篇');
INSERT INTO `mdiy_tag` VALUES (12, 'prclist', 3, '商品列表');
INSERT INTO `mdiy_tag` VALUES (13, 'goods', 3, '商品详情');
COMMIT; COMMIT;
-- ---------------------------- -- ----------------------------
-- Table structure for mdiy_tag_sql -- Table structure for `mdiy_tag_sql`
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS `mdiy_tag_sql`; DROP TABLE IF EXISTS `mdiy_tag_sql`;
CREATE TABLE `mdiy_tag_sql` ( CREATE TABLE `mdiy_tag_sql` (
...@@ -48,16 +46,13 @@ CREATE TABLE `mdiy_tag_sql` ( ...@@ -48,16 +46,13 @@ CREATE TABLE `mdiy_tag_sql` (
-- ---------------------------- -- ----------------------------
-- Records of mdiy_tag_sql -- Records of mdiy_tag_sql
-- ---------------------------- -- ----------------------------
BEGIN; INSERT INTO `mdiy_tag_sql` VALUES ('5', '3', '<#assign _typeid=\"\"/>\r\n<#assign _size=\"20\"/>\r\n<#if column?? && column.categoryId gt 0 >\r\n <#assign _typeid=\"${column.categoryId}\">\r\n</#if>\r\n<#if typeid??>\r\n <#assign _typeid=\"${typeid}\">\r\n</#if>\r\n<#if size??>\r\n <#assign _size=\"${size}\">\r\n</#if>\r\nSELECT\r\n basic_id AS id,\r\n @rownum := @rownum + 1 AS `index`,\r\n LEFT (basic_title, ${titlelen ?default(40)}) AS title,\r\n basic_title AS fulltitle,\r\n article_author AS author,\r\n article_source AS source,\r\n article_content AS content,\r\n category.category_title AS typename,\r\n category.category_id AS typeid,\r\n category.category_smallimg AS typelitpic,\r\n <#--列表页动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/${modelName}/list.do?typeid=\", category.category_id) as typelink,\r\n <#else>\r\n (SELECT \"index.html\") AS typelink,\r\n </#if>\r\n basic.basic_thumbnails AS litpic,\r\n <#--内容页动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/${modelName}/view.do?id=\", basic_id) as link,\r\n <#else>\r\n\r\n CONCAT(basic_column.column_path,\"/\",basic_id,\".html\") AS link,\r\n </#if>\r\n basic_datetime AS date,<#if tableName??>${tableName}.*,</#if>\r\n basic_description AS descrip,\r\n basic_hit AS hit,\r\n article_type AS flag,\r\n category_title AS typetitle,\r\n cms_article.article_keyword AS keyword \r\nFROM\r\n (SELECT @rownum := 0) r,\r\n basic\r\n LEFT JOIN cms_article ON cms_article.article_basicid = basic.basic_id\r\n LEFT JOIN category ON basic_categoryid = category.category_id\r\n LEFT JOIN basic_column ON basic_column.column_category_id = basic.basic_categoryid \r\n <#--判断是否有自定义模型表-->\r\n <#if tableName??>LEFT JOIN ${tableName} ON ${tableName}.basicId=cms_article.article_basicid </#if>\r\nWHERE \r\n basic.basic_display=0 \r\n <#--根据站点编号查询-->\r\n <#if appId?? >\r\n and (basic.basic_appid=${appId} or cms_article.ARTICLE_WEBID=${appId})\r\n and cms_article.article_basicid>0\r\n </#if>\r\n <#--根据模块编号查询分类-->\r\n <#if column?? && column.categoryModelId?has_content>\r\n and category_modelid=${column.categoryModelId}\r\n </#if>\r\n <#--判断是否有搜索分类集合-->\r\n <#if search??>\r\n <#if search.categoryIds??>and FIND_IN_SET(category_categoryid,\'${search.categoryIds}\')</#if>\r\n <#--标题-->\r\n <#if search.basic_title??> and basic_title like CONCAT(\"%\",\'${search.basic_title}\',\"%\")</#if>\r\n <#--作者-->\r\n <#if search.article_author??> and article_author like CONCAT(\"%\",\'${search.article_author}\',\"%\")</#if>\r\n <#--来源-->\r\n <#if search.article_source??> and article_source like CONCAT(\"%\",\'${search.article_source}\',\"%\")</#if>\r\n <#--属性-->\r\n <#if search.article_type??> and article_type like CONCAT(\"%\",\'${search.article_type}\',\"%\")</#if>\r\n <#--图片-->\r\n <#if search.basic_thumbnails??> and basic_thumbnails like CONCAT(\"%\",\'${search.basic_thumbnails}\',\"%\")</#if>\r\n <#--描述-->\r\n <#if search.basic_description??> and basic_description like CONCAT(\"%\",\'${search.basic_description}\',\"%\")</#if>\r\n <#--关键字-->\r\n <#if search.article_keyword??> and article_keyword like CONCAT(\"%\",\'${search.article_keyword}\',\"%\")</#if>\r\n <#--内容-->\r\n <#if search.article_content??> and article_content like CONCAT(\"%\",\'${search.article_content}\',\"%\")</#if>\r\n <#--自定义顺序-->\r\n <#if search.article_freeorder??> and article_freeorder=${search.article_freeorder}</#if>\r\n <#else><#--查询栏目-->\r\n <#if _typeid?has_content> and (basic_categoryid=${_typeid} or basic_categoryid in \r\n (select category_id FROM category where category.del=0 and find_in_set(${_typeid},CATEGORY_PARENT_ID))) </#if>\r\n </#if>\r\n <#--标题-->\r\n <#if basic_title??> and basic_title like CONCAT(\"%\",\'${basic_title}\',\"%\")</#if>\r\n <#--作者-->\r\n <#if article_author??> and article_author like CONCAT(\"%\",\'${article_author}\',\"%\")</#if>\r\n <#--来源-->\r\n <#if article_source??> and article_source like CONCAT(\"%\",\'${article_source}\',\"%\")</#if>\r\n <#--属性-->\r\n <#if article_type??> and article_type like CONCAT(\"%\",\'${article_type}\',\"%\")</#if>\r\n <#--图片-->\r\n <#if basic_thumbnails??> and basic_thumbnails like CONCAT(\"%\",\'${basic_thumbnails}\',\"%\")</#if>\r\n <#--描述-->\r\n <#if basic_description??> and basic_description like CONCAT(\"%\",\'${basic_description}\',\"%\")</#if>\r\n <#--关键字-->\r\n <#if article_keyword??> and article_keyword like CONCAT(\"%\",\'${article_keyword}\',\"%\")</#if>\r\n <#--内容-->\r\n <#if article_content??> and article_content like CONCAT(\"%\",\'${article_content}\',\"%\")</#if>\r\n <#--自定义顺序-->\r\n <#if article_freeorder??> and article_freeorder=${article_freeorder}</#if>\r\n <#--自定义模型-->\r\n <#if diyModel??> \r\n <#list diyModel as dm>\r\n and ${tableName}.${dm.key} = \"${dm.value}\" \r\n </#list>\r\n </#if>\r\n <#--文章属性-->\r\n <#if flag?? >\r\n and cms_article.article_type like CONCAT(\'%\',\'${flag}\',\'%\') \r\n </#if>\r\n <#if noflag?? >\r\n and cms_article.article_type not like CONCAT(\'%\',\'${noflag}\',\'%\') \r\n </#if>\r\n <#--字段排序-->\r\n <#if orderby?? >\r\n ORDER BY \r\n <#if orderby==\"date\"> basic.basic_datetime\r\n <#elseif orderby==\"updatedate\"> basic.basic_updatetime\r\n <#elseif orderby==\"hit\"> basic.basic_hit\r\n <#elseif orderby==\"sort\"> basic.basic_sort\r\n <#else>basic.basic_id</#if>\r\n </#if>\r\n <#if order?? >\r\n <#if order==\"desc\"> desc</#if>\r\n <#if order==\"asc\"> asc</#if>\r\n </#if>\r\n LIMIT \r\n <#--判断是否分页-->\r\n <#if ispaging?? && (pageTag.pageNo)??>${(pageTag.pageNo-1)*_size?eval},${_size?default(20)}\r\n <#else>${_size?default(20)}</#if>', '1');
INSERT INTO `mdiy_tag_sql` VALUES (5, 3, '<#assign _typeid=\"\"/>\r\n<#assign _size=\"20\"/>\r\n<#if column?? && column.categoryId??>\r\n <#assign _typeid=\"${column.categoryId}\">\r\n</#if>\r\n<#if typeid??>\r\n <#assign _typeid=\"${typeid}\">\r\n</#if>\r\n<#if size??>\r\n <#assign _size=\"${size}\">\r\n</#if>\r\nSELECT\r\n basic_id AS id,\r\n @rownum := @rownum + 1 AS `index`,\r\n LEFT (basic_title, ${titlelen ?default(40)}) AS title,\r\n basic_title AS fulltitle,\r\n article_author AS author,\r\n article_source AS source,\r\n article_content AS content,\r\n category.category_title AS typename,\r\n category.category_id AS typeid,\r\n category.category_smallimg AS typelitpic,\r\n <#--列表页动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/${modelName}/list.do?typeid=\", category.category_id) as typelink,\r\n <#else>\r\n (SELECT \"index.html\") AS typelink,\r\n </#if>\r\n basic.basic_thumbnails AS litpic,\r\n <#--内容页动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/${modelName}/view.do?id=\", basic_id) as link,\r\n <#else>\r\n<#--这里拼接文章地址,如果直接取文章表的字段栏目改变会出BUG-->\r\n CONCAT(basic_column.column_path,\"/\",basic_id,\".html\") AS link,\r\n </#if>\r\n basic_datetime AS date,<#if tableName??>${tableName}.*,</#if>\r\n basic_description AS descrip,\r\n basic_hit AS hit,\r\n article_type AS flag,\r\n category_title AS typetitle,\r\n cms_article.article_keyword AS keyword \r\nFROM\r\n (SELECT @rownum := 0) r,\r\n basic\r\n LEFT JOIN cms_article ON cms_article.article_basicid = basic.basic_id\r\n LEFT JOIN category ON basic_categoryid = category.category_id\r\n LEFT JOIN basic_column ON basic_column.column_category_id = basic.basic_categoryid \r\n <#--判断是否有自定义模型表-->\r\n <#if tableName??>LEFT JOIN ${tableName} ON ${tableName}.basicId=cms_article.article_basicid </#if>\r\nWHERE \r\n basic.basic_display=0 \r\n <#--根据站点编号查询-->\r\n <#if appId?? >\r\n and (basic.basic_appid=${appId} or cms_article.ARTICLE_WEBID=${appId})\r\n </#if>\r\n <#--根据模块编号查询分类-->\r\n <#if column?? && column.categoryModelId?has_content>\r\n and category_modelid=${column.categoryModelId}\r\n </#if>\r\n <#--判断是否有搜索分类集合-->\r\n <#if search??>\r\n and FIND_IN_SET(category_categoryid,\'${search.categoryIds}\')\r\n <#else><#--查询栏目-->\r\n <#if _typeid?has_content> and (basic_categoryid=${_typeid} or basic_categoryid in \r\n (select category_id FROM category where category.del=0 and find_in_set(${_typeid},CATEGORY_PARENT_ID))) </#if>\r\n </#if>\r\n <#--标题-->\r\n <#if basic_title??> and basic_title like CONCAT(\"%\",\'${basic_title}\',\"%\")</#if>\r\n <#--作者-->\r\n <#if article_author??> and article_author like CONCAT(\"%\",\'${article_author}\',\"%\")</#if>\r\n <#--来源-->\r\n <#if article_source??> and article_source like CONCAT(\"%\",\'${article_source}\',\"%\")</#if>\r\n <#--属性-->\r\n <#if article_type??> and article_type like CONCAT(\"%\",\'${article_type}\',\"%\")</#if>\r\n <#--图片-->\r\n <#if basic_thumbnails??> and basic_thumbnails like CONCAT(\"%\",\'${basic_thumbnails}\',\"%\")</#if>\r\n <#--描述-->\r\n <#if basic_description??> and basic_description like CONCAT(\"%\",\'${basic_description}\',\"%\")</#if>\r\n <#--关键字-->\r\n <#if article_keyword??> and article_keyword like CONCAT(\"%\",\'${article_keyword}\',\"%\")</#if>\r\n <#--内容-->\r\n <#if article_content??> and article_content like CONCAT(\"%\",\'${article_content}\',\"%\")</#if>\r\n <#--自定义顺序-->\r\n <#if article_freeorder??> and article_freeorder=${article_freeorder}</#if>\r\n <#--自定义模型-->\r\n <#if diyModel??> \r\n <#list diyModel as dm>\r\n and ${tableName}.${dm.key} = \"${dm.value}\" \r\n </#list>\r\n </#if>\r\n <#--文章属性-->\r\n <#if flag?? >\r\n and cms_article.article_type like CONCAT(\'%\',\'${flag}\',\'%\') \r\n </#if>\r\n <#if noflag?? >\r\n and cms_article.article_type not like CONCAT(\'%\',\'${noflag}\',\'%\') \r\n </#if>\r\n <#--字段排序-->\r\n <#if orderby?? >\r\n ORDER BY \r\n <#if orderby==\"date\"> basic.basic_datetime\r\n <#elseif orderby==\"updatedate\"> basic.basic_updatetime\r\n <#elseif orderby==\"hit\"> basic.basic_hit\r\n <#elseif orderby==\"sort\"> basic.basic_sort\r\n <#else>basic.basic_id</#if>\r\n </#if>\r\n <#if order?? >\r\n <#if order==\"desc\"> desc</#if>\r\n <#if order==\"asc\"> asc</#if>\r\n </#if>\r\n LIMIT \r\n <#--判断是否分页-->\r\n <#if ispaging?? && (pageTag.pageNo)??>${(pageTag.pageNo-1)*_size?eval},${_size?default(20)}\r\n <#else>${_size?default(20)}</#if>', 1); INSERT INTO `mdiy_tag_sql` VALUES ('6', '4', '<#assign _typeid=\"\"/>\r\n<#if column?? && column.categoryId gt 0>\r\n <#assign _typeid=\"${column.categoryId}\">\r\n</#if>\r\n<#if typeid??>\r\n <#assign _typeid=\"${typeid}\">\r\n</#if>\r\nselect \r\n @rownum := @rownum + 1 AS typeindex,\r\n category_id as id,\r\n category_id as typeid,\r\n category_title as typetitle,\r\n <#--返回父id集合-->\r\n category_parent_id as pids,\r\n <#--栏目选中的样式-->\r\n IF(<#if _typeid?has_content>${_typeid}<#else>0</#if> = category_id ,\"${class!\'\'}\",\"\") as class,\r\n <#--动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/${modelName}/list.do?typeid=\", category_id) as typelink,\r\n <#else>\r\n CONCAT(column_path,\"/index.html\") as typelink,\r\n </#if>\r\n column_keyword as typekeyword,\r\n column_diy_url as typeurl,\r\n column_flag as flag,\r\n column_descrip as typedescrip,\r\n category_smallimg as typelitpic \r\n from (SELECT @rownum := 0) r,category \r\n LEFT JOIN basic_column bc on bc.column_category_id=category.category_id where \r\n category.del=0 \r\n <#--根据站点编号查询-->\r\n <#if appId?? >\r\n and category.category_appid=${appId}\r\n </#if>\r\n <#--根据模块编号查询分类-->\r\n <#if column?? && column.categoryModelId?has_content>\r\n and category_modelid=${column.categoryModelId}\r\n </#if>\r\n <#--栏目属性-->\r\n <#if flag?? >\r\n and bc.column_flag like CONCAT(\'%\',\'${flag}\',\'%\') \r\n </#if>\r\n <#if noflag?? >\r\n and bc.column_flag not like CONCAT(\'%\',\'${noflag}\',\'%\') \r\n </#if>\r\n<#if type?has_content>\r\n <#--顶级栏目(单个)-->\r\n <#if type==\"top\">\r\n and category_id=(select left(category_parent_id,LOCATE(\",\",category_parent_id)-1) from category where category_id = ${_typeid})\r\n <#elseif type==\"nav\">\r\n and(category_categoryid=0 or category_categoryid is null)\r\n <#--同级栏目(多个)-->\r\n <#elseif type==\"level\">\r\n and\r\n <#if _typeid?has_content>\r\n category_categoryid=(select category_categoryid from category where category_id=${_typeid})\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--当前栏目(单个)-->\r\n <#elseif type==\"self\">\r\n and \r\n <#if _typeid?has_content>\r\n category_id=${_typeid}\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--当前栏目的所属栏目(多个)-->\r\n <#elseif type==\"path\">\r\n and \r\n <#if _typeid?has_content>\r\n category_id in (<#if column?? && column.categoryParentId??>${column.categoryParentId},</#if>${_typeid})\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--子栏目(多个)-->\r\n <#elseif type==\"son\">\r\n and \r\n <#if _typeid?has_content>\r\n category_categoryid=${_typeid}\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--上一级栏目没有则取当前栏目(单个)-->\r\n <#elseif type==\"parent\">\r\n and \r\n <#if _typeid?has_content>\r\n <#if column?? && column.categoryCategoryId?? && column.categoryCategoryId!=0>\r\n category_id=${column.categoryCategoryId}\r\n <#else>\r\n category_id=${_typeid}\r\n </#if>\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--子栏目或同级栏目(多个)-->\r\n <#elseif type==\"sonOrLevel\">\r\n and \r\n <#if _typeid?has_content>\r\n category_categoryid= if((SELECT count(*) FROM category\r\n LEFT JOIN basic_column bc ON bc.column_category_id = category.category_id \r\n WHERE category_categoryid=${_typeid})>0,${_typeid},(select category_categoryid from category where category_id=${_typeid}))\r\n <#else>\r\n 1=1\r\n </#if>\r\n </#if>\r\n<#else> <#--默认son-->\r\n and\r\n <#if _typeid?has_content>\r\n category_categoryid=${_typeid}\r\n <#else>\r\n (category_categoryid=0 or category_categoryid is null)\r\n </#if>\r\n</#if>', '1');
INSERT INTO `mdiy_tag_sql` VALUES (6, 4, '<#assign _typeid=\"\"/>\r\n<#if column?? && column.categoryId??>\r\n <#assign _typeid=\"${column.categoryId}\">\r\n</#if>\r\n<#if typeid??>\r\n <#assign _typeid=\"${typeid}\">\r\n</#if>\r\nselect \r\n @rownum := @rownum + 1 AS typeindex,\r\n category_id as id,\r\n category_id as typeid,\r\n category_title as typetitle,\r\n <#--返回父id集合-->\r\n category_parent_id as pids,\r\n <#--栏目选中的样式-->\r\n IF(<#if _typeid?has_content>${_typeid}<#else>0</#if> = category_id ,\"${class!\'\'}\",\"\") as class,\r\n <#--动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/${modelName}/list.do?typeid=\", category_id) as typelink,\r\n <#else>\r\n CONCAT(column_path,\"/index.html\") as typelink,\r\n </#if>\r\n column_keyword as typekeyword,\n column_diy_url as typeurl,\n column_flag as flag,\r\n column_descrip as typedescrip,\r\n category_smallimg as typelitpic \r\n from (SELECT @rownum := 0) r,category \r\n LEFT JOIN basic_column bc on bc.column_category_id=category.category_id where \r\n category.del=0 \r\n <#--根据站点编号查询-->\r\n <#if appId?? >\r\n and category.category_appid=${appId}\r\n </#if>\r\n <#--根据模块编号查询分类-->\r\n <#if column?? && column.categoryModelId?has_content>\r\n and category_modelid=${column.categoryModelId}\r\n </#if>\n <#--栏目属性-->\n <#if flag?? >\n and bc.column_flag like CONCAT(\'%\',\'${flag}\',\'%\') \n </#if>\n <#if noflag?? >\n and bc.column_flag not like CONCAT(\'%\',\'${noflag}\',\'%\') \n </#if>\r\n<#if type?has_content>\r\n <#--顶级栏目(单个)-->\r\n <#if type==\"top\">\r\n and category_id=(select left(category_parent_id,LOCATE(\",\",category_parent_id)-1) from category where category_id = ${_typeid})\r\n <#elseif type==\"nav\">\r\n and(category_categoryid=0 or category_categoryid is null)\r\n <#--同级栏目(多个)-->\r\n <#elseif type==\"level\">\r\n and\r\n <#if _typeid?has_content>\r\n category_categoryid=(select category_categoryid from category where category_id=${_typeid})\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--当前栏目(单个)-->\r\n <#elseif type==\"self\">\r\n and \r\n <#if _typeid?has_content>\r\n category_id=${_typeid}\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--当前栏目的所属栏目(多个)-->\r\n <#elseif type==\"path\">\r\n and \r\n <#if _typeid?has_content>\r\n category_id in (<#if column?? && column.categoryParentId??>${column.categoryParentId},</#if>${_typeid})\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--子栏目(多个)-->\r\n <#elseif type==\"son\">\r\n and \r\n <#if _typeid?has_content>\r\n category_categoryid=${_typeid}\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--上一级栏目没有则取当前栏目(单个)-->\r\n <#elseif type==\"parent\">\r\n and \r\n <#if _typeid?has_content>\r\n <#if column?? && column.categoryCategoryId?? && column.categoryCategoryId!=0>\r\n category_id=${column.categoryCategoryId}\r\n <#else>\r\n category_id=${_typeid}\r\n </#if>\r\n <#else>\r\n 1=1\r\n </#if>\r\n <#--子栏目或同级栏目(多个)-->\r\n <#elseif type==\"sonOrLevel\">\r\n and \r\n <#if _typeid?has_content>\r\n category_categoryid= if((SELECT count(*) FROM category\r\n LEFT JOIN basic_column bc ON bc.column_category_id = category.category_id \r\n WHERE category_categoryid=${_typeid})>0,${_typeid},(select category_categoryid from category where category_id=${_typeid}))\r\n <#else>\r\n 1=1\r\n </#if>\r\n </#if>\r\n<#else> <#--默认son-->\r\n and\r\n <#if _typeid?has_content>\r\n category_categoryid=${_typeid}\r\n <#else>\r\n (category_categoryid=0 or category_categoryid is null)\r\n </#if>\r\n</#if>', 1); INSERT INTO `mdiy_tag_sql` VALUES ('7', '5', 'select \r\nAPP_NAME as name,\r\napp_logo as logo,\r\napp_keyword as keyword,\r\napp_description as descrip,\r\napp_copyright as copyright,\r\n<#--动态解析 -->\r\n<#if isDo?? && isDo>\r\n\"${url}\" as url,\r\n\"${url}\" as host,\r\n<#--使用地址栏的域名 -->\r\n<#elseif url??>\r\nCONCAT(\"${url}\",\"/${html}/\",app_id,\"/<#if m??>${m}</#if>\") as url,\r\n\"${url}\" as host,\r\n<#else>\r\nCONCAT(REPLACE(REPLACE(TRIM(substring_index(app_url,\"\\n\",1)), CHAR(10),\'\'), CHAR(13),\'\'),\"/html/\",app_id,\"/<#if m??>${m}</#if>\") as url,\r\nREPLACE(REPLACE(TRIM(substring_index(app_url,\"\\n\",1)), CHAR(10),\'\'), CHAR(13),\'\') as host,\r\n</#if>\r\nCONCAT(\"templets/\",app_id,\"/\",<#if m??>CONCAT(app_style,\"/${m}\")<#else>app_style</#if>) as style <#-- 判断是否为手机端 -->\r\nfrom app where app_id = ${appId} limit 1', '1');
INSERT INTO `mdiy_tag_sql` VALUES (7, 5, 'select \r\nAPP_NAME as name,\r\napp_logo as logo,\r\napp_keyword as keyword,\r\napp_description as descrip,\r\napp_copyright as copyright,\r\n<#--动态解析 -->\r\n<#if isDo?? && isDo>\r\n\"${url}\" as url,\r\n\"${url}\" as host,\r\n<#--使用地址栏的域名 -->\r\n<#elseif url??>\r\nCONCAT(\"${url}\",\"/${html}/\",app_id,\"/<#if m??>${m}</#if>\") as url,\r\n\"${url}\" as host,\r\n<#else>\r\nCONCAT(REPLACE(REPLACE(TRIM(substring_index(app_url,\"\\n\",1)), CHAR(10),\'\'), CHAR(13),\'\'),\"/html/\",app_id,\"/<#if m??>${m}</#if>\") as url,\r\nREPLACE(REPLACE(TRIM(substring_index(app_url,\"\\n\",1)), CHAR(10),\'\'), CHAR(13),\'\') as host,\r\n</#if>\r\nCONCAT(\"templets/\",app_id,\"/\",<#if m??>CONCAT(app_style,\"/${m}\")<#else>app_style</#if>) as style <#-- 判断是否为手机端 -->\r\nfrom app where app_id = ${appId} limit 1', 1); INSERT INTO `mdiy_tag_sql` VALUES ('8', '7', 'SELECT \r\nbasic_id as id,\r\nleft(basic_title,${titlelen?default(40)}) as title,\r\nbasic_title as fulltitle,\r\narticle_author as author, \r\narticle_source as source, \r\narticle_content as content,\r\ncategory.category_title as typetitle,\r\ncategory.category_id as typeid,\r\ncategory.category_smallimg AS typelitpic,\r\n<#--动态链接-->\r\n<#if isDo?? && isDo>\r\nCONCAT(\"/${modelName}/list.do?typeid=\", category.category_id) as typelink,\r\n<#else>\r\n(SELECT \"index.html\") as typelink,\r\n</#if>\r\nbasic.basic_thumbnails as litpic,\r\n<#--内容页动态链接-->\r\n<#if isDo?? && isDo>\r\nCONCAT(\"/mcms/view.do?id=\", basic_id) as link,\r\n<#else>\r\ncms_article.article_url AS link,\r\n</#if>\r\nbasic_datetime as date,\r\nbasic_description as descrip,\r\nCONCAT(\"<script type=\'text/javascript\' src=\'${url}/basic/\",basic_id,\"/hit.do\'></script>\") as hit,\r\narticle_type as flag,\r\ncategory_title as typetitle,\r\n<#if tableName??>${tableName}.*,</#if>\r\ncms_article.article_keyword as keyword\r\nFROM basic LEFT JOIN cms_article ON cms_article.article_basicid = basic.basic_id \r\nLEFT JOIN category ON basic_categoryid=category.category_id \r\nLEFT JOIN basic_column ON basic_column.column_category_id=basic.basic_categoryid\r\n<#--判断是否有自定义模型表-->\r\n<#if tableName??>left join ${tableName} on ${tableName}.basicId=cms_article.ARTICLE_BASICID</#if>\r\nWHERE \r\n1=1\r\n<#if id??> and basic_id=${id}</#if>', '1');
INSERT INTO `mdiy_tag_sql` VALUES (8, 7, 'SELECT \r\nbasic_id as id,\r\nleft(basic_title,${titlelen?default(40)}) as title,\r\nbasic_title as fulltitle,\r\narticle_author as author, \r\narticle_source as source, \r\narticle_content as content,\r\ncategory.category_title as typetitle,\r\ncategory.category_id as typeid,\r\ncategory.category_smallimg AS typelitpic,\r\n<#--动态链接-->\r\n<#if isDo?? && isDo>\r\nCONCAT(\"/${modelName}/list.do?typeid=\", category.category_id) as typelink,\r\n<#else>\r\n(SELECT \"index.html\") as typelink,\r\n</#if>\r\nbasic.basic_thumbnails as litpic,\r\n<#--内容页动态链接-->\r\n<#if isDo?? && isDo>\r\nCONCAT(\"/mcms/view.do?id=\", basic_id) as link,\r\n<#else>\r\ncms_article.article_url AS link,\r\n</#if>\r\nbasic_datetime as date,\r\nbasic_description as descrip,\r\nCONCAT(\"<script type=\'text/javascript\' src=\'${url}/basic/\",basic_id,\"/hit.do\'></script>\") as hit,\r\narticle_type as flag,\r\ncategory_title as typetitle,\r\n<#if tableName??>${tableName}.*,</#if>\r\ncms_article.article_keyword as keyword\r\nFROM basic LEFT JOIN cms_article ON cms_article.article_basicid = basic.basic_id \r\nLEFT JOIN category ON basic_categoryid=category.category_id \r\nLEFT JOIN basic_column ON basic_column.column_category_id=basic.basic_categoryid\r\n<#--判断是否有自定义模型表-->\r\n<#if tableName??>left join ${tableName} on ${tableName}.basicId=cms_article.ARTICLE_BASICID</#if>\r\nWHERE \r\n1=1\r\n<#if id??> and basic_id=${id}</#if>', 1); INSERT INTO `mdiy_tag_sql` VALUES ('9', '8', '<#assign select=\"(SELECT \'\')\"/>\r\n<#if (pageTag.preId) gt 0>\r\nSELECT \r\nbasic_id as id,\r\nleft(basic_title,${titlelen?default(40)}) as title,\r\nbasic_title as fulltitle,\r\narticle_author as author, \r\narticle_source as source, \r\narticle_content as content,\r\ncategory.category_title as typename,\r\ncategory.category_id as typeid,\r\n(SELECT \"index.html\") AS typelink,\r\nbasic.basic_thumbnails as litpic,\r\ncms_article.article_url as link,\r\nbasic_datetime as date,\r\nbasic_description as descrip,\r\nbasic_hit as hit,\r\narticle_type as flag,\r\ncms_article.article_keyword as keyword \r\nFROM basic LEFT JOIN cms_article ON cms_article.article_basicid = basic.basic_id \r\nLEFT JOIN category ON basic_categoryid=category.category_id \r\nLEFT JOIN basic_column ON basic_column.column_category_id=basic.basic_categoryid \r\nWHERE basic_id=${pageTag.preId}\r\n<#else><#--没有上一页返回空字符串-->\r\nSELECT \r\n${select} as id,\r\n${select} as title,\r\n${select} as fulltitle,\r\n${select} as author, \r\n${select} as source, \r\n${select} as content,\r\n${select} as typename,\r\n${select} as typeid,\r\n${select} as typelink,\r\n${select} as litpic,\r\n${select} as link,\r\n${select} as date,\r\n${select} as descrip,\r\n${select} as hit,\r\n${select} as flag,\r\n${select} as keyword FROM basic\r\n</#if>', null);
INSERT INTO `mdiy_tag_sql` VALUES (9, 8, '<#assign select=\"(SELECT \'\')\"/>\r\n<#if (pageTag.preId) gt 0>\r\nSELECT \r\nbasic_id as id,\r\nleft(basic_title,${titlelen?default(40)}) as title,\r\nbasic_title as fulltitle,\r\narticle_author as author, \r\narticle_source as source, \r\narticle_content as content,\r\ncategory.category_title as typename,\r\ncategory.category_id as typeid,\r\n(SELECT \"index.html\") AS typelink,\r\nbasic.basic_thumbnails as litpic,\r\ncms_article.article_url as link,\r\nbasic_datetime as date,\r\nbasic_description as descrip,\r\nbasic_hit as hit,\r\narticle_type as flag,\r\ncms_article.article_keyword as keyword \r\nFROM basic LEFT JOIN cms_article ON cms_article.article_basicid = basic.basic_id \r\nLEFT JOIN category ON basic_categoryid=category.category_id \r\nLEFT JOIN basic_column ON basic_column.column_category_id=basic.basic_categoryid \r\nWHERE basic_id=${pageTag.preId}\r\n<#else><#--没有上一页返回空字符串-->\r\nSELECT \r\n${select} as id,\r\n${select} as title,\r\n${select} as fulltitle,\r\n${select} as author, \r\n${select} as source, \r\n${select} as content,\r\n${select} as typename,\r\n${select} as typeid,\r\n${select} as typelink,\r\n${select} as litpic,\r\n${select} as link,\r\n${select} as date,\r\n${select} as descrip,\r\n${select} as hit,\r\n${select} as flag,\r\n${select} as keyword FROM basic\r\n</#if>', NULL); INSERT INTO `mdiy_tag_sql` VALUES ('10', '9', ' select\r\n <#if !(pageTag.indexUrl??)>\r\n <#--判断是否有栏目对象,用于搜索不传栏目-->\r\n <#if column??>\r\n <#--顶级栏目处理-->\r\n <#if column.categoryCategoryId==0>\r\n <#assign path=column.columnPath/>\r\n <#else>\r\n <#assign path=column.columnPath/>\r\n </#if>\r\n <#else>\r\n <#assign path=\"\"/>\r\n </#if>\r\n <#--总记录数、总页数-->\r\n (SELECT ${pageTag.total}) as total,\r\n <#--记录总数-->\r\n (SELECT ${pageTag.size}) as rcount,\r\n <#--当前页码-->\r\n (SELECT ${pageTag.pageNo}) as cur,\r\n <#--首页-->\r\n CONCAT(\"${path}\", \"/index.html\") as `index`,\r\n <#--上一页-->\r\n <#if (pageTag.pageNo?eval-1) gt 1>\r\n CONCAT(\"${path}\",\"/list-${pageTag.pageNo?eval-1}.html\") as pre,\r\n <#else>\r\n CONCAT(\"${path}\",\"/index.html\") as pre,\r\n </#if>\r\n <#--下一页-->\r\n <#if pageTag.total==1>\r\n CONCAT(\"${path}\", \"/index.html\") as `next`,\r\n CONCAT(\"${path}\", \"/index.html\") as `last`\r\n <#else>\r\n <#if pageTag.pageNo?eval gte pageTag.total>\r\n CONCAT(\"${path}\",\"/list-${pageTag.total}.html\") as next,\r\n <#else>\r\n CONCAT(\"${path}\",\"/list-${pageTag.pageNo?eval+1}.html\") as next,\r\n </#if>\r\n <#--最后一页-->\r\n CONCAT(\"${path}\",\"/list-${pageTag.total}.html\") as last\r\n </#if>\r\n<#else><#--判断是否是搜索页面-->\r\n \"${pageTag.indexUrl}\" as `index`,\"${pageTag.lastUrl}\" as `last`,\"${pageTag.preUrl}\" as `pre`,\"${pageTag.nextUrl}\" as `next`,\'${pageTag.total}\' as total,\'${pageTag.size}\' as rcount,\'${pageTag.pageNo}\' as cur\r\n</#if>', null);
INSERT INTO `mdiy_tag_sql` VALUES (10, 9, ' select\r\n <#if !(pageTag.indexUrl??)>\r\n <#--判断是否有栏目对象,用于搜索不传栏目-->\r\n <#if column??>\r\n <#--顶级栏目处理-->\r\n <#if column.categoryCategoryId==0>\r\n <#assign path=column.columnPath/>\r\n <#else>\r\n <#assign path=column.columnPath/>\r\n </#if>\r\n <#else>\r\n <#assign path=\"\"/>\r\n </#if>\r\n <#--总记录数、总页数-->\r\n (SELECT ${pageTag.total}) as total,\r\n <#--记录总数-->\r\n (SELECT ${pageTag.size}) as rcount,\r\n <#--当前页码-->\r\n (SELECT ${pageTag.pageNo}) as cur,\r\n <#--首页-->\r\n CONCAT(\"${path}\", \"/index.html\") as `index`,\r\n <#--上一页-->\r\n <#if (pageTag.pageNo?eval-1) gt 1>\r\n CONCAT(\"${path}\",\"/list-${pageTag.pageNo?eval-1}.html\") as pre,\r\n <#else>\r\n CONCAT(\"${path}\",\"/index.html\") as pre,\r\n </#if>\r\n <#--下一页-->\r\n <#if pageTag.total==1>\r\n CONCAT(\"${path}\", \"/index.html\") as `next`,\r\n CONCAT(\"${path}\", \"/index.html\") as `last`\r\n <#else>\r\n <#if pageTag.pageNo?eval gte pageTag.total>\r\n CONCAT(\"${path}\",\"/list-${pageTag.total}.html\") as next,\r\n <#else>\r\n CONCAT(\"${path}\",\"/list-${pageTag.pageNo?eval+1}.html\") as next,\r\n </#if>\r\n <#--最后一页-->\r\n CONCAT(\"${path}\",\"/list-${pageTag.total}.html\") as last\r\n </#if>\r\n<#else><#--判断是否是搜索页面-->\r\n \"${pageTag.indexUrl}\" as `index`,\"${pageTag.lastUrl}\" as `last`,\"${pageTag.preUrl}\" as `pre`,\"${pageTag.nextUrl}\" as `next`,\'${pageTag.total}\' as total,\'${pageTag.size}\' as rcount,\'${pageTag.pageNo}\' as cur\r\n</#if>', NULL); INSERT INTO `mdiy_tag_sql` VALUES ('11', '10', '<#assign select=\"(SELECT \'\')\"/>\r\n<#if (pageTag.nextId) gt 10>\r\nSELECT \r\nbasic_id as id,\r\nleft(basic_title,${titlelen?default(40)}) as title,\r\nbasic_title as fulltitle,\r\narticle_author as author, \r\narticle_source as source, \r\narticle_content as content,\r\ncategory.category_title as typename,\r\ncategory.category_id as typeid,\r\n(SELECT \"index.html\") as typelink,\r\nbasic.basic_thumbnails as litpic,\r\ncms_article.article_url as link,\r\nbasic_datetime as date,\r\nbasic_description as descrip,\r\nbasic_hit as hit,\r\narticle_type as flag,\r\ncms_article.article_keyword as keyword \r\nFROM basic LEFT JOIN cms_article ON cms_article.article_basicid = basic.basic_id \r\nLEFT JOIN category ON basic_categoryid=category.category_id \r\nLEFT JOIN basic_column ON basic_column.column_category_id=basic.basic_categoryid \r\nWHERE basic_id=${pageTag.nextId}\r\n<#else>\r\nSELECT \r\n${select} as id,\r\n${select} as title,\r\n${select} as fulltitle,\r\n${select} as author, \r\n${select} as source, \r\n${select} as content,\r\n${select} as typename,\r\n${select} as typeid,\r\n${select} as typelink,\r\n${select} as litpic,\r\n${select} as link,\r\n${select} as date,\r\n${select} as descrip,\r\n${select} as hit,\r\n${select} as flag,\r\n${select} as keyword FROM basic\r\n</#if>', null);
INSERT INTO `mdiy_tag_sql` VALUES (11, 10, '<#assign select=\"(SELECT \'\')\"/>\r\n<#if (pageTag.nextId) gt 10>\r\nSELECT \r\nbasic_id as id,\r\nleft(basic_title,${titlelen?default(40)}) as title,\r\nbasic_title as fulltitle,\r\narticle_author as author, \r\narticle_source as source, \r\narticle_content as content,\r\ncategory.category_title as typename,\r\ncategory.category_id as typeid,\r\n(SELECT \"index.html\") as typelink,\r\nbasic.basic_thumbnails as litpic,\r\ncms_article.article_url as link,\r\nbasic_datetime as date,\r\nbasic_description as descrip,\r\nbasic_hit as hit,\r\narticle_type as flag,\r\ncms_article.article_keyword as keyword \r\nFROM basic LEFT JOIN cms_article ON cms_article.article_basicid = basic.basic_id \r\nLEFT JOIN category ON basic_categoryid=category.category_id \r\nLEFT JOIN basic_column ON basic_column.column_category_id=basic.basic_categoryid \r\nWHERE basic_id=${pageTag.nextId}\r\n<#else>\r\nSELECT \r\n${select} as id,\r\n${select} as title,\r\n${select} as fulltitle,\r\n${select} as author, \r\n${select} as source, \r\n${select} as content,\r\n${select} as typename,\r\n${select} as typeid,\r\n${select} as typelink,\r\n${select} as litpic,\r\n${select} as link,\r\n${select} as date,\r\n${select} as descrip,\r\n${select} as hit,\r\n${select} as flag,\r\n${select} as keyword FROM basic\r\n</#if>', NULL);
INSERT INTO `mdiy_tag_sql` VALUES (13, 12, 'SELECT\r\n basic_id AS id,\r\n product_price as price,\r\n product_cost_price AS costprice,\r\n product_content AS content,\r\n product_code AS code,\r\n <#--详情页动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/${modelName}/view.do?id=\", basic_id) as link,\r\n <#else>\r\n product_linkUrl AS link,\r\n </#if>\r\n basic_title AS title,\r\n product_sale AS sale,\r\n product_good AS specification,\r\n product_inventory AS stock,\r\n basic.basic_categoryid AS typeid,\r\n basic_thumbnails AS litpic,\r\n <#--列表页动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/mmall/list.do?typeid=\", category.category_id) as typelink,\r\n <#else>\r\n (SELECT \"index.html\") AS typelink,\r\n </#if>\r\n <#--判断是否有自定义模型表-->\r\n <#if tableNname??>${tableNname}.*,</#if>\r\n category_title AS typetitle\r\nFROM\r\n mall_product \r\n LEFT JOIN basic ON mall_product.product_basicID = basic.basic_id\r\n LEFT JOIN category ON basic_categoryid = category.category_id\r\n <#--判断是否有自定义模型表-->\r\n <#if tableNname??>LEFT JOIN ${tableNname} ON ${tableNname}.basicId=mall_product.product_basicID </#if>\r\nWHERE\r\n 1 = 1 <#--查询栏目-->\r\n <#if (typeid)??> and (basic_categoryid=${typeid} or basic_categoryid in \r\n (select category_id FROM category where find_in_set(${typeid},CATEGORY_PARENT_ID)))\r\n </#if>\r\n <#--模糊查询商品标题-->\r\n <#if basic_title??> and basic_title like CONCAT(\"%\",\'${basic_title}\',\"%\")</#if> \r\n LIMIT <#--判断是否分页-->\r\n <#if ispaging?? && pageNo??>${(pageNo?eval-1)*size?eval},${size?default(20)}\r\n <#else>${size?default(20)}</#if>', NULL);
INSERT INTO `mdiy_tag_sql` VALUES (14, 13, 'SELECT\r\n basic_id AS id,\r\n product_price as price,\r\n product_cost_price AS costprice,\r\n product_content AS content,\r\n product_code AS code,\r\n <#--详情页动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/${modelName}/view.do?id=\", basic_id) as link,\r\n <#else>\r\n product_linkUrl AS link,\r\n </#if>\r\n basic_title AS title,\r\n product_sale AS sale,\r\n product_good AS specification,\r\n product_inventory AS stock,\r\n basic.basic_categoryid AS typeid,\r\n basic_thumbnails AS litpic,\r\n <#--列表页动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\"/mmall/list.do?id=\", category.category_id) as typelink,\r\n <#else>\r\n (SELECT \"index.html\") AS typelink,\r\n </#if>\r\n <#--判断是否有自定义模型表-->\r\n <#if tableNname??>${tableNname}.*,</#if>\r\n category_title AS typetitle\r\nFROM\r\n mall_product \r\n LEFT JOIN basic ON mall_product.product_basicID = basic.basic_id\r\n LEFT JOIN category ON basic_categoryid = category.category_id\r\n LEFT JOIN basic_column ON basic_column.column_category_id = basic.basic_categoryid\r\n <#--判断是否有自定义模型表-->\r\n <#if tableNname??>LEFT JOIN ${tableNname} ON ${tableNname}.basicId=mall_product.product_basicID </#if>\r\nWHERE\r\n 1 = 1 <#if id??> and basic_id=${id} </#if>', NULL);
COMMIT;
SET FOREIGN_KEY_CHECKS = 1; SET FOREIGN_KEY_CHECKS = 1;
\ No newline at end of file
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
<artifactId>mcms</artifactId> <artifactId>mcms</artifactId>
<version>4.7.0-SNAPSHOT</version> <version>4.7.0-SNAPSHOT</version>
<name>ms-mcms</name> <name>ms-mcms</name>
<packaging>jar</packaging>
<properties> <properties>
<java.version>1.8</java.version> <java.version>1.8</java.version>
</properties> </properties>
......
spring: spring:
datasource: datasource:
url: jdbc:mysql://localhost:3306/db-mcms-open?autoReconnect=true&useUnicode=true&characterEncoding=utf8&useSSL=false&allowMultiQueries=true url: jdbc:mysql://imingsoft.cn:3307/db-mcms-open?autoReconnect=true&useUnicode=true&characterEncoding=utf8&useSSL=false&allowMultiQueries=true
username: root username: root
password: root password: root@78
filters: wall,mergeStat filters: wall,mergeStat
type: com.alibaba.druid.pool.DruidDataSource type: com.alibaba.druid.pool.DruidDataSource
\ No newline at end of file
...@@ -3,32 +3,40 @@ ...@@ -3,32 +3,40 @@
<head> <head>
<title>MCMS-OPEN</title> <title>MCMS-OPEN</title>
<meta charset="utf-8"> <meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="http://localhost:8080/ms-mcms/plugins/iconfont/1.0.0/iconfont.css" /> <link rel="stylesheet" type="text/css" href="http://127.0.0.1:8080/ms-mcms/plugins/iconfont/1.0.0/iconfont.css" />
<link rel="stylesheet/less" type="text/css" href="http://localhost:8080/ms-mcms/templets/1/default/less/base.less"> <link rel="stylesheet/less" type="text/css" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/less/base.less">
<link rel="stylesheet/less" type="text/css" href="http://localhost:8080/ms-mcms/templets/1/default/less/index.less"> <link rel="stylesheet/less" type="text/css" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/less/index.less">
<link rel="stylesheet/less" type="text/css" href="http://localhost:8080/ms-mcms/templets/1/default/less/advice.less"> <link rel="stylesheet/less" type="text/css" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/less/advice.less">
<link rel="stylesheet/less" type="text/css" href="http://localhost:8080/ms-mcms/templets/1/default/less/case-list.less"> <link rel="stylesheet/less" type="text/css" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/less/case-list.less">
<link rel="stylesheet/less" type="text/css" href="http://localhost:8080/ms-mcms/templets/1/default/less/about.less"> <link rel="stylesheet/less" type="text/css" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/less/about.less">
<link rel="stylesheet/less" type="text/css" href="http://localhost:8080/ms-mcms/templets/1/default/less/news-list.less"> <link rel="stylesheet/less" type="text/css" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/less/news-list.less">
<link rel="stylesheet/less" type="text/css" href="http://localhost:8080/ms-mcms/templets/1/default/less/news-show.less"> <link rel="stylesheet/less" type="text/css" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/less/news-show.less">
<link rel="stylesheet/less" type="text/css" href="http://localhost:8080/ms-mcms/templets/1/default/less/center.less"> <link rel="stylesheet/less" type="text/css" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/less/center.less">
<script src="http://localhost:8080/ms-mcms/plugins/jquery/1.9.1/jquery-1.9.1.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/plugins/jquery/1.9.1/jquery-1.9.1.js"></script>
<script src="http://localhost:8080/ms-mcms/templets/1/default/js/slider.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/templets/1/default/js/slider.js"></script>
<script src="http://localhost:8080/ms-mcms/static/plugins/less/3.9.0/less.min.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/static/plugins/less/3.9.0/less.min.js"></script>
<!--vue-懒加载-表单验证--> <!--vue-懒加载-表单验证-->
<script src="http://localhost:8080/ms-mcms/plugins/vue/2.3.3/vue.min.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/plugins/vue/2.6.9/vue.min.js"></script>
<script src="http://localhost:8080/ms-mcms/plugins/validator/5.5.0/validator.min.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/plugins/validator/10.8.0/validator.min.js"></script>
<!-- Element -->
<link rel="stylesheet" href="http://127.0.0.1:8080/ms-mcms/plugins/element-ui/2.8.2/index.css">
<script src="http://127.0.0.1:8080/ms-mcms/plugins/element-ui/2.8.2/index.js"></script>
<link rel="stylesheet" type="text/css" href="http://localhost:8080/ms-mcms/templets/1/default/css/animate.css"> <link rel="stylesheet" type="text/css" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/css/animate.css">
<script src="http://localhost:8080/ms-mcms/static/plugins/axios/0.18.0/axios.min.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/static/plugins/axios/0.18.0/axios.min.js"></script>
<script src="http://localhost:8080/ms-mcms/static/plugins/ms/1.0.0/ms.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/static/plugins/ms/1.0.0/ms.js"></script>
<script src="http://localhost:8080/ms-mcms/static/plugins/ms/1.0.0/ms.http.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/static/plugins/ms/1.0.0/ms.http.js"></script>
<script src="http://localhost:8080/ms-mcms/static/plugins/ms/1.0.0/ms.util.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/static/plugins/ms/1.0.0/ms.util.js"></script>
<script type="text/javascript"> <script src="http://127.0.0.1:8080/ms-mcms/api/ms.people.min.js"></script>
<script src="http://127.0.0.1:8080/ms-mcms/static/plugins/plupload/plupload.full.min.js"></script>
<script src="http://127.0.0.1:8080/ms-mcms/static/plugins/qs/6.6.0/qs.min.js"></script>
<script src="http://127.0.0.1:8080/ms-mcms/static/plugins/ms/1.0.0/ms.upload.js"></script>
<script>
window.http = ms.http; window.http = ms.http;
</script> ms.base = "http://127.0.0.1:8080/ms-mcms";
<link rel="stylesheet" type="text/css" href="http://localhost:8080/ms-mcms/plugins/bootstrap/3.3.5/css/bootstrap.min.css"> ms.login = 'http://127.0.0.1:8080/ms-mcms';
<script type="text/javascript" src="http://localhost:8080/ms-mcms/plugins/bootstrap/3.3.5/js/bootstrap.min.js"></script> </script> <link rel="stylesheet" type="text/css" href="http://127.0.0.1:8080/ms-mcms/plugins/bootstrap/3.3.5/css/bootstrap.min.css">
<script type="text/javascript" src="http://127.0.0.1:8080/ms-mcms/plugins/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script> <script>
var ms = { var ms = {
base:"http://mstore.mingsoft.net" base:"http://mstore.mingsoft.net"
...@@ -41,17 +49,17 @@ ...@@ -41,17 +49,17 @@
<div class="ms-head"> <div class="ms-head">
<div class="head-menu"> <div class="head-menu">
<div class="head-men-left head-menu-flex-center"> <div class="head-men-left head-menu-flex-center">
<a href="http://localhost:8080/ms-mcms/html/1/index.html"> <a href="http://127.0.0.1:8080/ms-mcms/html/1/index.html">
<img src="http://cdn.mingsoft.net/images/logo.png" /> <img src="http://cdn.mingsoft.net/images/logo.png" />
</a> </a>
<ul class="head-menu-list"> <ul class="head-menu-list">
<li class="head-menu-list-li">走进铭飞 <li class="head-menu-list-li">走进铭飞
<ul class="head-menu-son-list"> <ul class="head-menu-son-list">
<li> <li>
<a target="_blank" href='http://localhost:8080/ms-mcms/html/1//53/index.html'>关于我们</a> <a target="_blank" href='http://127.0.0.1:8080/ms-mcms/html/1//53/index.html'>关于我们</a>
</li> </li>
<li> <li>
<a target="_blank" href='http://localhost:8080/ms-mcms/html/1//59/index.html'>公司动态</a> <a target="_blank" href='http://127.0.0.1:8080/ms-mcms/html/1//59/index.html'>公司动态</a>
</li> </li>
<li> <li>
<a target="_blank" href='http://mingsoft.net/html/1//5527/index.html#faz'>发展历程</a> <a target="_blank" href='http://mingsoft.net/html/1//5527/index.html#faz'>发展历程</a>
...@@ -60,12 +68,12 @@ ...@@ -60,12 +68,12 @@
<a target="_blank" href='http://mingsoft.net/html/1//5527/index.html#lianx'>加入我们</a> <a target="_blank" href='http://mingsoft.net/html/1//5527/index.html#lianx'>加入我们</a>
</li> </li>
<li> <li>
<a target="_blank" href='http://localhost:8080/ms-mcms/html/1//19/141/index.html'>联系我们</a> <a target="_blank" href='http://127.0.0.1:8080/ms-mcms/html/1//19/141/index.html'>联系我们</a>
</li> </li>
</ul> </ul>
</li> </li>
<li class="head-menu-list-li"> <li class="head-menu-list-li">
<a href='http://localhost:8080/ms-mcms/html/1//149/index.html'>案例</a> <a href='http://127.0.0.1:8080/ms-mcms/html/1//149/index.html'>案例</a>
</li> </li>
<li class="head-menu-list-li"> <li class="head-menu-list-li">
<a target="_blank" href='http://mstore.mingsoft.net/mstoreShow.do'>插件&模板</a> <a target="_blank" href='http://mstore.mingsoft.net/mstoreShow.do'>插件&模板</a>
...@@ -75,7 +83,7 @@ ...@@ -75,7 +83,7 @@
</ul> --> </ul> -->
</li> </li>
<li class="head-menu-list-li"> <li class="head-menu-list-li">
<a target="_blank" href='http://localhost:8080/ms-mcms/html/1//19/142/index.html'>在线留言</a> <a target="_blank" href='http://127.0.0.1:8080/ms-mcms/html/1//19/142/index.html'>在线留言</a>
</li> </li>
<li class="head-menu-list-li">技术支持 <li class="head-menu-list-li">技术支持
<ul class="head-menu-son-list"> <ul class="head-menu-son-list">
...@@ -94,7 +102,7 @@ ...@@ -94,7 +102,7 @@
</div> </div>
<div class="head-men-right head-menu-flex-center"> <div class="head-men-right head-menu-flex-center">
<div class="head-menu-flex-center head-menu-right-search"> <div class="head-menu-flex-center head-menu-right-search">
<form id="searchDataForm" action="http://localhost:8080/ms-mcms/cms/1/search.do" method="post"> <form id="searchDataForm" action="http://127.0.0.1:8080/ms-mcms/cms/1/search.do" method="post">
<input type="text" class='ms-search-input' name="basic_title" placeholder="请输入关键字"> <input type="text" class='ms-search-input' name="basic_title" placeholder="请输入关键字">
<!-- <i class="iconfont ms-search-click">&#xe85e;</i> --> <!-- <i class="iconfont ms-search-click">&#xe85e;</i> -->
<input type="submit" value="" class="ms-search-click"> <input type="submit" value="" class="ms-search-click">
...@@ -103,12 +111,12 @@ ...@@ -103,12 +111,12 @@
<div class="head-menu-right-content" id="ms-login-vue"> <div class="head-menu-right-content" id="ms-login-vue">
<span v-show="!isLogin" style="display: none;"> <span v-show="!isLogin" style="display: none;">
<span> <span>
<a href='http://localhost:8080/ms-mcms/mcms/login.do'>登录</a> <a href='http://127.0.0.1:8080/ms-mcms/mcms/login.do'>登录</a>
</span>|<span><a href='http://localhost:8080/ms-mcms/mcms/register.do'>注册</a></span> </span>|<span><a href='http://127.0.0.1:8080/ms-mcms/mcms/register.do'>注册</a></span>
</span> </span>
<div class="topbar-info J_userInfo loginSuccess hide-default" v-show="isLogin" style="display: none;"> <div class="topbar-info J_userInfo loginSuccess hide-default" v-show="isLogin" style="display: none;">
<a class="user-name" href="http://localhost:8080/ms-mcms/people/center.do"> <a class="user-name" href="http://127.0.0.1:8080/ms-mcms/people/center.do">
<img :src="'http://localhost:8080/ms-mcms'+ peopleInfo.puIcon" class="loginImg user_icon" onerror="this.src='http://cdn.mingsoft.net/global/images/msheader.png'"> <img :src="'http://127.0.0.1:8080/ms-mcms/'+peopleInfo.puIcon" class="loginImg user_icon" onerror="this.src='http://cdn.mingsoft.net/global/images/msheader.png'">
<b class="userName ms-userName" v-text="peopleInfo.puNickname"></b> <b class="userName ms-userName" v-text="peopleInfo.puNickname"></b>
</a> </a>
<a href="javascript:;" class="quitLogin" @click="quitLogin">退出</a> <a href="javascript:;" class="quitLogin" @click="quitLogin">退出</a>
...@@ -123,21 +131,23 @@ ...@@ -123,21 +131,23 @@
data: { data: {
isLogin: "", //登录状态 isLogin: "", //登录状态
peopleInfo: "", //个人信息 peopleInfo: "", //个人信息
imgUrl:"",
}, },
mounted: function() { mounted: function() {
//获取个人信息 //获取个人信息
var target = this; var target = this;
$.ajax({ $.ajax({
type: "POST", type: "POST",
url: "http://localhost:8080/ms-mcms/checkLoginStatus.do", url: "http://127.0.0.1:8080/ms-mcms/checkLoginStatus.do",
success: function(msg) { success: function(msg) {
target.isLogin = msg.result; target.isLogin = msg.result; //判断用户是否登录,如登录,则target.isLogin===true
if(msg.result) { if(msg.result) {
$.ajax({ $.ajax({
type: "GET", type: "GET",
url: "http://localhost:8080/ms-mcms/people/user/info.do", url: "http://127.0.0.1:8080/ms-mcms/people/user/info.do",
success: function(msg) { success: function(msg) {
target.peopleInfo = msg; target.peopleInfo = msg; //target.peopleInfo为当前登录用户的基本信息
} }
}) })
} }
...@@ -150,11 +160,11 @@ ...@@ -150,11 +160,11 @@
var target = this; var target = this;
$.ajax({ $.ajax({
type: "GET", type: "GET",
url: "http://localhost:8080/ms-mcms/people/quit.do", url: "http://127.0.0.1:8080/ms-mcms/people/quit.do",
success: function(msg) { success: function(msg) {
if(msg.result) { if(msg.result) {
$("body").append("<form id='msHeadForm' action=''></form>"); $("body").append("<form id='msHeadForm' action=''></form>");
$("#msHeadForm").attr("action", "http://localhost:8080/ms-mcms").submit(); $("#msHeadForm").attr("action", "http://127.0.0.1:8080/ms-mcms").submit();
} }
} }
}) })
...@@ -188,15 +198,15 @@ ...@@ -188,15 +198,15 @@
<div id="banner_tabs" class="flexslider"> <div id="banner_tabs" class="flexslider">
<ul class="slides"> <ul class="slides">
<template v-for="banner in bannerList"> <template v-for="banner in bannerList">
<li style="background:url(http://localhost:8080/ms-mcms/templets/1/default/images/03.jpg) no-repeat center;"> <li style="background:url(http://127.0.0.1:8080/ms-mcms/templets/1/default/images/03.jpg) no-repeat center;">
<p class="banner_tit animated fadeInLeft">铭飞MS平台</p> <p class="banner_tit animated fadeInLeft">铭飞MS平台</p>
<p class="banner_des animated fadeInRight">MCms系统永久完整开源</p> <p class="banner_des animated fadeInRight">MCms系统永久完整开源</p>
</li> </li>
<li style="background:url(http://localhost:8080/ms-mcms/templets/1/default/images/03.jpg) no-repeat center;"> <li style="background:url(http://127.0.0.1:8080/ms-mcms/templets/1/default/images/03.jpg) no-repeat center;">
<p class="banner_tit animated fadeInLeft">MStore</p> <p class="banner_tit animated fadeInLeft">MStore</p>
<p class="banner_des animated fadeInRight">丰富强大的功能插件、海量精美的行业模板</p> <p class="banner_des animated fadeInRight">丰富强大的功能插件、海量精美的行业模板</p>
</li> </li>
<li style="background:url(http://localhost:8080/ms-mcms/templets/1/default/images/03.jpg) no-repeat center;"> <li style="background:url(http://127.0.0.1:8080/ms-mcms/templets/1/default/images/03.jpg) no-repeat center;">
<p class="banner_tit animated fadeInLeft">优质的服务体验</p> <p class="banner_tit animated fadeInLeft">优质的服务体验</p>
<p class="banner_des animated fadeInRight">人工远程协助服务、永久享受更新升级</p> <p class="banner_des animated fadeInRight">人工远程协助服务、永久享受更新升级</p>
</li> </li>
...@@ -226,23 +236,23 @@ ...@@ -226,23 +236,23 @@
<div class="tab-content"> <div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="model"> <div role="tabpanel" class="tab-pane active" id="model">
<div style="display: none;" class="ms-loading" v-show="!loading"> <div style="display: none;" class="ms-loading" v-show="!loading">
<img src="http://localhost:8080/ms-mcms/templets/1/default/images/loading.gif" /> <img src="http://127.0.0.1:8080/ms-mcms/templets/1/default/images/loading.gif" />
</div> </div>
<div class="ms-model-content" style="display: none;" v-show="loading"> <div class="ms-model-content" style="display: none;" v-show="loading">
<template v-for="model in modelList"> <template v-for="model in modelList">
<div class="ms-model-list"> <div class="ms-model-list">
<a class="ms-model-img" :href="model.upgraderVersionUrl" target="_blank"> <a class="ms-model-img" :href="model.upgraderVersionUrl" target="_blank">
<img @mouseout="imgMout()" @mouseover="imgMover()" :src="'http://mstore.mingsoft.net/'+model.upgraderVersionImg" onerror="this.src='http://localhost:8080/ms-mcms/templets/1/default/images/no-data.png'" /> <img @mouseout="imgMout()" @mouseover="imgMover()" :src="'http://mstore.mingsoft.net/'+model.upgraderVersionImg" onerror="this.src='http://127.0.0.1:8080/ms-mcms/templets/1/default/images/no-data.png'" />
</a> </a>
<div class="ms-model-mobile-img" v-if="model.upgraderVersionMobileImg != '' && model.upgraderVersionMobileImg != undefined" style="background: url(http://localhost:8080/ms-mcms/templets/1/default/images/mobile.png)"> <div class="ms-model-mobile-img" v-if="model.upgraderVersionMobileImg != '' && model.upgraderVersionMobileImg != undefined" style="background: url(http://127.0.0.1:8080/ms-mcms/templets/1/default/images/mobile.png)">
<div> <div>
<img @mouseout="imgMout()" @mouseover="imgMover()" :src="'http://mstore.mingsoft.net/'+model.upgraderVersionMobileImg" onerror="this.src='http://localhost:8080/ms-mcms/templets/1/default/images/no-data.png'" /> <img @mouseout="imgMout()" @mouseover="imgMover()" :src="'http://mstore.mingsoft.net/'+model.upgraderVersionMobileImg" onerror="this.src='http://127.0.0.1:8080/ms-mcms/templets/1/default/images/no-data.png'" />
</div> </div>
</div> </div>
<div class="ms-model-info"> <div class="ms-model-info">
<span v-text="model.upgraderVersionName"></span> <span v-text="model.upgraderVersionName"></span>
<img class="ms-model-info-img" :src="model.upgraderVersionPeopleIcon" onerror="this.src='http://cdn.mingsoft.net/global/images/msheader.png'" /> <img class="ms-model-info-img" :src="model.upgraderVersionPeopleIcon" onerror="this.src='http://cdn.mingsoft.net/global/images/msheader.png'" />
<img :src="'http://localhost:8080/ms-mcms/templets/1/default/images/level-'+model.upgraderVersionStart+'.png'" /> <img :src="'http://127.0.0.1:8080/ms-mcms/templets/1/default/images/level-'+model.upgraderVersionStart+'.png'" />
<div class="ms-model-type">模板</div> <div class="ms-model-type">模板</div>
</div> </div>
</div> </div>
...@@ -259,12 +269,12 @@ ...@@ -259,12 +269,12 @@
<template v-for="pulg in pulgList"> <template v-for="pulg in pulgList">
<div class="ms-model-list"> <div class="ms-model-list">
<a class="ms-model-img" :href="pulg.upgraderVersionUrl" target="_blank"> <a class="ms-model-img" :href="pulg.upgraderVersionUrl" target="_blank">
<img :src="'http://mstore.mingsoft.net/'+pulg.upgraderVersionImg" onerror="this.src='http://localhost:8080/ms-mcms/templets/1/default/images/no-data.png'" /> <img :src="'http://mstore.mingsoft.net/'+pulg.upgraderVersionImg" onerror="this.src='http://127.0.0.1:8080/ms-mcms/templets/1/default/images/no-data.png'" />
</a> </a>
<div class="ms-model-info"> <div class="ms-model-info">
<span v-text="pulg.upgraderVersionName"></span> <span v-text="pulg.upgraderVersionName"></span>
<img class="ms-model-info-img" :src="pulg.upgraderVersionPeopleIcon" onerror="this.src='http://cdn.mingsoft.net/global/images/msheader.png'" /> <img class="ms-model-info-img" :src="pulg.upgraderVersionPeopleIcon" onerror="this.src='http://cdn.mingsoft.net/global/images/msheader.png'" />
<img :src="'http://localhost:8080/ms-mcms/templets/1/default/images/level-'+pulg.upgraderVersionStart+'.png'" /> <img :src="'http://127.0.0.1:8080/ms-mcms/templets/1/default/images/level-'+pulg.upgraderVersionStart+'.png'" />
<div class="ms-model-type">插件</div> <div class="ms-model-type">插件</div>
</div> </div>
</div> </div>
...@@ -285,13 +295,13 @@ ...@@ -285,13 +295,13 @@
<div class="ms-content-case-title"> <div class="ms-content-case-title">
<div class="ms-content-case-title-words">网站案例</div> <div class="ms-content-case-title-words">网站案例</div>
<div class="ms-content-case-more"> <div class="ms-content-case-more">
<a href='http://localhost:8080/ms-mcms/html/1//149/index.html'>MORE>></a> <a href='http://127.0.0.1:8080/ms-mcms/html/1//149/index.html'>MORE>></a>
</div> </div>
</div> </div>
<div class="ms-content-case-list"> <div class="ms-content-case-list">
<div class="ms-content-main-case"> <div class="ms-content-main-case">
<div class="ms-content-main-case-img"> <div class="ms-content-main-case-img">
<img src="http://localhost:8080/ms-mcms/upload/1//article/1531105696938.jpg"> <img src="http://127.0.0.1:8080/ms-mcms/upload/1//article/1531105696938.jpg">
</div> </div>
<div class="ms-content-main-case-explain"> <div class="ms-content-main-case-explain">
<div class="ms-content-main-case-title">攀臣广告</div> <div class="ms-content-main-case-title">攀臣广告</div>
...@@ -308,7 +318,7 @@ ...@@ -308,7 +318,7 @@
</div> </div>
<div class="ms-content-main-case"> <div class="ms-content-main-case">
<div class="ms-content-main-case-img"> <div class="ms-content-main-case-img">
<img src="http://localhost:8080/ms-mcms/upload/1//article/1531105877049.jpg"> <img src="http://127.0.0.1:8080/ms-mcms/upload/1//article/1531105877049.jpg">
</div> </div>
<div class="ms-content-main-case-explain"> <div class="ms-content-main-case-explain">
<div class="ms-content-main-case-title">华赋科创</div> <div class="ms-content-main-case-title">华赋科创</div>
...@@ -325,7 +335,7 @@ ...@@ -325,7 +335,7 @@
</div> </div>
<div class="ms-content-main-case"> <div class="ms-content-main-case">
<div class="ms-content-main-case-img"> <div class="ms-content-main-case-img">
<img src="http://localhost:8080/ms-mcms/upload/1//article/1531105970322.jpg"> <img src="http://127.0.0.1:8080/ms-mcms/upload/1//article/1531105970322.jpg">
</div> </div>
<div class="ms-content-main-case-explain"> <div class="ms-content-main-case-explain">
<div class="ms-content-main-case-title">洛阳洛龙</div> <div class="ms-content-main-case-title">洛阳洛龙</div>
...@@ -389,14 +399,14 @@ ...@@ -389,14 +399,14 @@
<div class="ms-content-news-main-title"> <div class="ms-content-news-main-title">
<div class="ms-content-news-main-title-words">公司动态</div> <div class="ms-content-news-main-title-words">公司动态</div>
<div class="ms-content-news-main-title-more"> <div class="ms-content-news-main-title-more">
<a href='http://localhost:8080/ms-mcms/html/1//59/index.html'>MORE>></a> <a href='http://127.0.0.1:8080/ms-mcms/html/1//59/index.html'>MORE>></a>
</div> </div>
</div> </div>
<div class="ms-content-news-main-img-text"> <div class="ms-content-news-main-img-text">
<img src="http://localhost:8080/ms-mcms/upload/article/1/1461384072200.jpeg"> <img src="http://127.0.0.1:8080/ms-mcms/upload/article/1/1461384072200.jpeg">
<ul class="ms-content-news-main-ul"> <ul class="ms-content-news-main-ul">
<li> <li>
<a href="http://localhost:8080/ms-mcms/html/1//59/69\70.html"> <a href="http://127.0.0.1:8080/ms-mcms/html/1//59/69/70.html">
<div class="ms-content-news-main-li-title"> <div class="ms-content-news-main-li-title">
<!-- <span class="ms-content-news-main-li-span">·</span> --> <!-- <span class="ms-content-news-main-li-span">·</span> -->
<span class="">2015年 铭飞MCms获得最热门开源项目第40位</span> <span class="">2015年 铭飞MCms获得最热门开源项目第40位</span>
...@@ -405,7 +415,7 @@ ...@@ -405,7 +415,7 @@
</a> </a>
</li> </li>
<li> <li>
<a href="http://localhost:8080/ms-mcms/html/1//59/68\71.html"> <a href="http://127.0.0.1:8080/ms-mcms/html/1//59/68/71.html">
<div class="ms-content-news-main-li-title"> <div class="ms-content-news-main-li-title">
<!-- <span class="ms-content-news-main-li-span">·</span> --> <!-- <span class="ms-content-news-main-li-span">·</span> -->
<span class="">国内java开源 cms系统</span> <span class="">国内java开源 cms系统</span>
...@@ -414,7 +424,7 @@ ...@@ -414,7 +424,7 @@
</a> </a>
</li> </li>
<li> <li>
<a href="http://localhost:8080/ms-mcms/html/1//59/68\72.html"> <a href="http://127.0.0.1:8080/ms-mcms/html/1//59/68/72.html">
<div class="ms-content-news-main-li-title"> <div class="ms-content-news-main-li-title">
<!-- <span class="ms-content-news-main-li-span">·</span> --> <!-- <span class="ms-content-news-main-li-span">·</span> -->
<span class="">2016年CMS开源系统排行榜</span> <span class="">2016年CMS开源系统排行榜</span>
...@@ -423,7 +433,7 @@ ...@@ -423,7 +433,7 @@
</a> </a>
</li> </li>
<li> <li>
<a href="http://localhost:8080/ms-mcms/html/1//59/68\73.html"> <a href="http://127.0.0.1:8080/ms-mcms/html/1//59/68/73.html">
<div class="ms-content-news-main-li-title"> <div class="ms-content-news-main-li-title">
<!-- <span class="ms-content-news-main-li-span">·</span> --> <!-- <span class="ms-content-news-main-li-span">·</span> -->
<span class="">国内java开源商城系统</span> <span class="">国内java开源商城系统</span>
...@@ -432,7 +442,7 @@ ...@@ -432,7 +442,7 @@
</a> </a>
</li> </li>
<li> <li>
<a href="http://localhost:8080/ms-mcms/html/1//59/68\74.html"> <a href="http://127.0.0.1:8080/ms-mcms/html/1//59/68/74.html">
<div class="ms-content-news-main-li-title"> <div class="ms-content-news-main-li-title">
<!-- <span class="ms-content-news-main-li-span">·</span> --> <!-- <span class="ms-content-news-main-li-span">·</span> -->
<span class="">国内java开源bbs系统</span> <span class="">国内java开源bbs系统</span>
...@@ -441,7 +451,7 @@ ...@@ -441,7 +451,7 @@
</a> </a>
</li> </li>
<li> <li>
<a href="http://localhost:8080/ms-mcms/html/1//59/70\177.html"> <a href="http://127.0.0.1:8080/ms-mcms/html/1//59/70/177.html">
<div class="ms-content-news-main-li-title"> <div class="ms-content-news-main-li-title">
<!-- <span class="ms-content-news-main-li-span">·</span> --> <!-- <span class="ms-content-news-main-li-span">·</span> -->
<span class="">国内开源 java cms,铭飞MCms</span> <span class="">国内开源 java cms,铭飞MCms</span>
...@@ -460,7 +470,7 @@ ...@@ -460,7 +470,7 @@
<div class="ms-footer-left"> <div class="ms-footer-left">
<div class="ms-footer-left-column"> <div class="ms-footer-left-column">
<span class="ms-footer-left-column-about"> <span class="ms-footer-left-column-about">
<a href='http://localhost:8080/ms-mcms/html/1//53/index.html'>关于我们</a> <a href='http://127.0.0.1:8080/ms-mcms/html/1//53/index.html'>关于我们</a>
</span>| </span>|
<span class="ms-footer-left-column-course"> <span class="ms-footer-left-column-course">
<a target="_blank" href='http://mingsoft.net/html/1//5527/index.html#faz'>发展历程</a> <a target="_blank" href='http://mingsoft.net/html/1//5527/index.html#faz'>发展历程</a>
...@@ -472,12 +482,12 @@ ...@@ -472,12 +482,12 @@
<span class="ms-footer-left-copyright">版权所有&copy;铭飞科技有限公司2012-2018保留一切权利</span> <span class="ms-footer-left-copyright">版权所有&copy;铭飞科技有限公司2012-2018保留一切权利</span>
</div> </div>
<div class="ms-footer-right"> <div class="ms-footer-right">
<img class='ms-footer-right-img-weixin' src="http://localhost:8080/ms-mcms/templets/1/default/images/we-chat.png"> <img class='ms-footer-right-img-weixin' src="http://127.0.0.1:8080/ms-mcms/templets/1/default/images/we-chat.png">
<a target="_blank" href='http://tieba.baidu.com/f?kw=%E9%93%AD%E9%A3%9E%E7%A7%91%E6%8A%80&fr=index&fp=0&ie=utf-8'><img class="ms-footer-right-baidu" src="http://localhost:8080/ms-mcms/templets/1/default/images/baidu.png"></a> <a target="_blank" href='http://tieba.baidu.com/f?kw=%E9%93%AD%E9%A3%9E%E7%A7%91%E6%8A%80&fr=index&fp=0&ie=utf-8'><img class="ms-footer-right-baidu" src="http://127.0.0.1:8080/ms-mcms/templets/1/default/images/baidu.png"></a>
<a target="_blank" href='http://weibo.com/killfen'><img src="http://localhost:8080/ms-mcms/templets/1/default/images/micro-blog.png"></a> <a target="_blank" href='http://weibo.com/killfen'><img src="http://127.0.0.1:8080/ms-mcms/templets/1/default/images/micro-blog.png"></a>
<div class="ms-footer-right-weixin"> <div class="ms-footer-right-weixin">
<p></p> <p></p>
<img alt="" src="http://localhost:8080/ms-mcms/templets/1/default/images/weixin.jpg"> <img alt="" src="http://127.0.0.1:8080/ms-mcms/templets/1/default/images/weixin.jpg">
</div> </div>
</div> </div>
</div> </div>
...@@ -488,7 +498,6 @@ $(function(){ ...@@ -488,7 +498,6 @@ $(function(){
$(".head-menu-list-li").hover(function(){ $(".head-menu-list-li").hover(function(){
$(this).find(".head-menu-son-list").fadeToggle(); $(this).find(".head-menu-son-list").fadeToggle();
}); });
$('.ms-footer-right-img-weixin').hover(function(){ $('.ms-footer-right-img-weixin').hover(function(){
$('.ms-footer-right-weixin').toggle(); $('.ms-footer-right-weixin').toggle();
}); });
......
...@@ -4,46 +4,46 @@ ...@@ -4,46 +4,46 @@
<title>MCMS-OPEN</title> <title>MCMS-OPEN</title>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no"> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no">
<link rel="stylesheet" type="text/css" href="http://localhost:8080/ms-mcms/plugins/amazeui/2.7.2/css/amazeui.min.css" /> <link rel="stylesheet" type="text/css" href="http://127.0.0.1:8080/ms-mcms/plugins/amazeui/2.7.2/css/amazeui.min.css" />
<link rel="stylesheet" type="text/css" href="http://localhost:8080/ms-mcms/plugins/iconfont/1.0.0/iconfont.css" /> <link rel="stylesheet" type="text/css" href="http://127.0.0.1:8080/ms-mcms/plugins/iconfont/1.0.0/iconfont.css" />
<link rel="stylesheet" type="text/less" href="http://localhost:8080/ms-mcms/templets/1/default/m/less/index.less" /> <link rel="stylesheet" type="text/less" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/m/less/index.less" />
<link rel="stylesheet" type="text/less" href="http://localhost:8080/ms-mcms/templets/1/default/m/less/base.less" /> <link rel="stylesheet" type="text/less" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/m/less/base.less" />
<link rel="stylesheet" type="text/less" href="http://localhost:8080/ms-mcms/templets/1/default/m/less/about.less" /> <link rel="stylesheet" type="text/less" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/m/less/about.less" />
<link rel="stylesheet" type="text/less" href="http://localhost:8080/ms-mcms/templets/1/default/m/less/case-list.less" /> <link rel="stylesheet" type="text/less" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/m/less/case-list.less" />
<link rel="stylesheet" type="text/less" href="http://localhost:8080/ms-mcms/templets/1/default/m/less/news-list.less" /> <link rel="stylesheet" type="text/less" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/m/less/news-list.less" />
<link rel="stylesheet" type="text/less" href="http://localhost:8080/ms-mcms/templets/1/default/m/less/news-show.less" /> <link rel="stylesheet" type="text/less" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/m/less/news-show.less" />
<link rel="stylesheet" type="text/less" href="http://localhost:8080/ms-mcms/templets/1/default/m/less/advice.less" /> <link rel="stylesheet" type="text/less" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/m/less/advice.less" />
<script src="http://localhost:8080/ms-mcms/plugins/jquery/1.9.1/jquery-1.9.1.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/plugins/jquery/1.9.1/jquery-1.9.1.js"></script>
<script src="http://localhost:8080/ms-mcms/plugins/amazeui/2.7.2/js/amazeui.min.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/plugins/amazeui/2.7.2/js/amazeui.min.js"></script>
<script src="http://localhost:8080/ms-mcms/templets/1/default/m/js/jiaoben.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/templets/1/default/m/js/jiaoben.js"></script>
<script src="http://localhost:8080/ms-mcms/plugins/seajs/3.0.0/sea.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/plugins/seajs/3.0.0/sea.js"></script>
<!--vue-懒加载-表单验证--> <!--vue-懒加载-表单验证-->
<script src="http://localhost:8080/ms-mcms/plugins/vue/2.3.3/vue.min.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/plugins/vue/2.3.3/vue.min.js"></script>
<script src="http://localhost:8080/ms-mcms/plugins/validator/5.5.0/validator.min.js"></script> <script src="http://127.0.0.1:8080/ms-mcms/plugins/validator/5.5.0/validator.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://localhost:8080/ms-mcms/templets/1/default/m/css/style.css"> <link rel="stylesheet" type="text/css" href="http://127.0.0.1:8080/ms-mcms/templets/1/default/m/css/style.css">
<script> <script>
ms.config({ ms.config({
base: "http://localhost:8080/ms-mcms", base: "http://127.0.0.1:8080/ms-mcms",
filter: { filter: {
people: { people: {
loginUrl: 'http://localhost:8080/ms-mcms' loginUrl: 'http://127.0.0.1:8080/ms-mcms'
} }
} }
}); });
</script> </script>
</head> <link rel="stylesheet" type="text/css" href="http://localhost:8080/ms-mcms/plugins/bootstrap/3.3.5/css/bootstrap.min.css"> </head> <link rel="stylesheet" type="text/css" href="http://127.0.0.1:8080/ms-mcms/plugins/bootstrap/3.3.5/css/bootstrap.min.css">
<script type="text/javascript" src="http://localhost:8080/ms-mcms/plugins/bootstrap/3.3.5/js/bootstrap.min.js"></script> <script type="text/javascript" src="http://127.0.0.1:8080/ms-mcms/plugins/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<body> <body>
<div class="ms-head"> <div class="ms-head">
<header data-am-widget="header" class="am-header am-header-default ms-head-background"> <header data-am-widget="header" class="am-header am-header-default ms-head-background">
<div class="am-header-left am-header-nav"> <div class="am-header-left am-header-nav">
<a href="http://localhost:8080/ms-mcms/" class=""> <a href="http://127.0.0.1:8080/ms-mcms/" class="">
<i class="iconfont">&#xe99b;</i> <i class="iconfont">&#xe99b;</i>
</a> </a>
</div> </div>
<h1 style="height: 100%;" class="am-header-title ms-header-title"> <h1 style="height: 100%;" class="am-header-title ms-header-title">
<a href="http://localhost:8080/ms-mcms" class=""> <a href="http://127.0.0.1:8080/ms-mcms" class="">
<img src="http://localhost:8080/ms-mcms/templets/1/default/m/images/ms.ico"> <img src="http://127.0.0.1:8080/ms-mcms/templets/1/default/m/images/ms.ico">
</a> </a>
</h1> </h1>
<nav data-am-widget="menu" class="am-menu am-menu-offcanvas1" data-am-menu-offcanvas> <nav data-am-widget="menu" class="am-menu am-menu-offcanvas1" data-am-menu-offcanvas>
...@@ -54,16 +54,16 @@ ...@@ -54,16 +54,16 @@
<div class="am-offcanvas-bar"> <div class="am-offcanvas-bar">
<ul class="am-menu-nav am-avg-sm-1"> <ul class="am-menu-nav am-avg-sm-1">
<li class=""> <li class="">
<a href="http://localhost:8080/ms-mcms" class="">首页</a> <a href="http://127.0.0.1:8080/ms-mcms" class="">首页</a>
</li> </li>
<li class="am-parent"> <li class="am-parent">
<a href="##" class="">走进铭飞</a> <a href="##" class="">走进铭飞</a>
<ul class="am-menu-sub am-collapse am-avg-sm-3 "> <ul class="am-menu-sub am-collapse am-avg-sm-3 ">
<li class=""> <li class="">
<a href="http://localhost:8080/ms-mcms/html/1/m/53/index.html" class="">关于我们</a> <a href="http://127.0.0.1:8080/ms-mcms/html/1/m/53/index.html" class="">关于我们</a>
</li> </li>
<li class=""> <li class="">
<a href="http://localhost:8080/ms-mcms/html/1/m/59/index.html" class="">公司动态</a> <a href="http://127.0.0.1:8080/ms-mcms/html/1/m/59/index.html" class="">公司动态</a>
</li> </li>
<li class=""> <li class="">
<a href="http://mingsoft.net/html/1//5527/index.html#faz" class="">发展历程</a> <a href="http://mingsoft.net/html/1//5527/index.html#faz" class="">发展历程</a>
...@@ -72,19 +72,19 @@ ...@@ -72,19 +72,19 @@
<a href="http://mingsoft.net/html/1//5527/index.html#lianx" class="">加入我们</a> <a href="http://mingsoft.net/html/1//5527/index.html#lianx" class="">加入我们</a>
</li> </li>
<li class=""> <li class="">
<a href="http://localhost:8080/ms-mcms/html/1/m/19/index.html" class="">联系我们</a> <a href="http://127.0.0.1:8080/ms-mcms/html/1/m/19/index.html" class="">联系我们</a>
</li> </li>
</ul> </ul>
</li> </li>
<li class=""> <li class="">
<a href="http://localhost:8080/ms-mcms/html/1/m/149/index.html" class="">案例</a> <a href="http://127.0.0.1:8080/ms-mcms/html/1/m/149/index.html" class="">案例</a>
</li> </li>
<li class=""> <li class="">
<a href="http://mstore.mingsoft.net/mstoreShow.do" class="">模板&插件</a> <a href="http://mstore.mingsoft.net/mstoreShow.do" class="">模板&插件</a>
</li> </li>
<li class=""> <li class="">
<a href="http://localhost:8080/ms-mcms/html/1/m/19/142/index.html" class="">在线留言</a> <a href="http://127.0.0.1:8080/ms-mcms/html/1/m/19/142/index.html" class="">在线留言</a>
</li> </li>
<li class="am-parent"> <li class="am-parent">
<a>技术支持</a> <a>技术支持</a>
...@@ -111,7 +111,7 @@ ...@@ -111,7 +111,7 @@
<ul class="am-slides"> <ul class="am-slides">
<template v-for="banner in bannerList"> <template v-for="banner in bannerList">
<li> <li>
<img :src="'http://localhost:8080/ms-mcms/templets/1/default/m/images/'+banner+'.png'"> <img :src="'http://127.0.0.1:8080/ms-mcms/templets/1/default/m/images/'+banner+'.png'">
</li> </li>
</template> </template>
</ul> </ul>
...@@ -131,23 +131,23 @@ ...@@ -131,23 +131,23 @@
<div class="tab-content"> <div class="tab-content">
<div role="tabpanel" class="tab-pane active" id="model"> <div role="tabpanel" class="tab-pane active" id="model">
<div style="display: none;" class="ms-loading" v-show="!loading"> <div style="display: none;" class="ms-loading" v-show="!loading">
<img src="http://localhost:8080/ms-mcms/templets/1/default/m/images/loading.gif" /> <img src="http://127.0.0.1:8080/ms-mcms/templets/1/default/m/images/loading.gif" />
</div> </div>
<div class="ms-model-content" style="display: none;" v-show="loading"> <div class="ms-model-content" style="display: none;" v-show="loading">
<template v-for="model in modelList"> <template v-for="model in modelList">
<div class="ms-model-list"> <div class="ms-model-list">
<a class="ms-model-img" :href="model.upgraderVersionUrl" target="_blank"> <a class="ms-model-img" :href="model.upgraderVersionUrl" target="_blank">
<img :src="'http://mstore.mingsoft.net/'+model.upgraderVersionImg" onerror="this.src='http://localhost:8080/ms-mcms/templets/1/default/m/images/no-data.png'" /> <img :src="'http://mstore.mingsoft.net/'+model.upgraderVersionImg" onerror="this.src='http://127.0.0.1:8080/ms-mcms/templets/1/default/m/images/no-data.png'" />
</a> </a>
<div class="ms-model-mobile-img" v-if="model.upgraderVersionMobileImg != '' && model.upgraderVersionMobileImg != undefined" style="background-image: url(http://localhost:8080/ms-mcms/templets/1/default/m/images/mobile.png)"> <div class="ms-model-mobile-img" v-if="model.upgraderVersionMobileImg != '' && model.upgraderVersionMobileImg != undefined" style="background-image: url(http://127.0.0.1:8080/ms-mcms/templets/1/default/m/images/mobile.png)">
<div> <div>
<img :src="'http://mstore.mingsoft.net/'+model.upgraderVersionMobileImg" onerror="this.src='http://localhost:8080/ms-mcms/templets/1/default/m/images/no-data.png'" /> <img :src="'http://mstore.mingsoft.net/'+model.upgraderVersionMobileImg" onerror="this.src='http://127.0.0.1:8080/ms-mcms/templets/1/default/m/images/no-data.png'" />
</div> </div>
</div> </div>
<div class="ms-model-info"> <div class="ms-model-info">
<span v-text="model.upgraderVersionName"></span> <span v-text="model.upgraderVersionName"></span>
<img class="ms-model-info-img" :src="model.upgraderVersionPeopleIcon" onerror="this.src='http://cdn.mingsoft.net/global/images/msheader.png'" /> <img class="ms-model-info-img" :src="model.upgraderVersionPeopleIcon" onerror="this.src='http://cdn.mingsoft.net/global/images/msheader.png'" />
<img :src="'http://localhost:8080/ms-mcms/templets/1/default/m/images/level-'+model.upgraderVersionStart+'.png'" width="60px" /> <img :src="'http://127.0.0.1:8080/ms-mcms/templets/1/default/m/images/level-'+model.upgraderVersionStart+'.png'" width="60px" />
<div class="ms-model-type">模板</div> <div class="ms-model-type">模板</div>
</div> </div>
</div> </div>
...@@ -164,12 +164,12 @@ ...@@ -164,12 +164,12 @@
<template v-for="pulg in pulgList"> <template v-for="pulg in pulgList">
<div class="ms-model-list"> <div class="ms-model-list">
<a class="ms-model-img" :href="pulg.upgraderVersionUrl" target="_blank"> <a class="ms-model-img" :href="pulg.upgraderVersionUrl" target="_blank">
<img :src="'http://mstore.mingsoft.net/'+pulg.upgraderVersionImg" onerror="this.src='http://localhost:8080/ms-mcms/templets/1/default/m/images/no-data.png'" /> <img :src="'http://mstore.mingsoft.net/'+pulg.upgraderVersionImg" onerror="this.src='http://127.0.0.1:8080/ms-mcms/templets/1/default/m/images/no-data.png'" />
</a> </a>
<div class="ms-model-info"> <div class="ms-model-info">
<span v-text="pulg.upgraderVersionName"></span> <span v-text="pulg.upgraderVersionName"></span>
<img class="ms-model-info-img" :src="'http://localhost:8080/ms-mcms/'+ pulg.upgraderVersionPeopleIcon" onerror="this.src='http://cdn.mingsoft.net/global/images/msheader.png'" /> <img class="ms-model-info-img" :src="'http://127.0.0.1:8080/ms-mcms/'+ pulg.upgraderVersionPeopleIcon" onerror="this.src='http://cdn.mingsoft.net/global/images/msheader.png'" />
<img :src="'http://localhost:8080/ms-mcms/templets/1/default/m/images/level-'+pulg.upgraderVersionStart+'.png'" width="60px"/> <img :src="'http://127.0.0.1:8080/ms-mcms/templets/1/default/m/images/level-'+pulg.upgraderVersionStart+'.png'" width="60px"/>
<div class="ms-model-type">插件</div> <div class="ms-model-type">插件</div>
</div> </div>
</div> </div>
...@@ -191,7 +191,7 @@ ...@@ -191,7 +191,7 @@
<!--列表标题--> <!--列表标题-->
<div class="am-list-news-hd am-cf ms-case-title"> <div class="am-list-news-hd am-cf ms-case-title">
<!--带更多链接--> <!--带更多链接-->
<a href="http://localhost:8080/ms-mcms/html/1/m/149/index.html" class=""> <a href="http://127.0.0.1:8080/ms-mcms/html/1/m/149/index.html" class="">
<h2 class="ms-case-title-h2">网站案例</h2> <h2 class="ms-case-title-h2">网站案例</h2>
<span class="am-list-news-more am-fr ms-case-more">MORE &raquo;</span> <span class="am-list-news-more am-fr ms-case-more">MORE &raquo;</span>
</a> </a>
...@@ -201,21 +201,21 @@ ...@@ -201,21 +201,21 @@
<li> <li>
<div class="am-gallery-item ms-case-div-li"> <div class="am-gallery-item ms-case-div-li">
<a href='http://www.panchen-china.com/'> <a href='http://www.panchen-china.com/'>
<img class="ms-case-list-img" src="http://localhost:8080/ms-mcms/upload/1//article/1531105696938.jpg" alt="攀臣广告" /> <img class="ms-case-list-img" src="http://127.0.0.1:8080/ms-mcms/upload/1//article/1531105696938.jpg" alt="攀臣广告" />
</a> </a>
</div> </div>
</li> </li>
<li> <li>
<div class="am-gallery-item ms-case-div-li"> <div class="am-gallery-item ms-case-div-li">
<a href='http://www.huaful.com/'> <a href='http://www.huaful.com/'>
<img class="ms-case-list-img" src="http://localhost:8080/ms-mcms/upload/1//article/1531105877049.jpg" alt="华赋科创" /> <img class="ms-case-list-img" src="http://127.0.0.1:8080/ms-mcms/upload/1//article/1531105877049.jpg" alt="华赋科创" />
</a> </a>
</div> </div>
</li> </li>
<li> <li>
<div class="am-gallery-item ms-case-div-li"> <div class="am-gallery-item ms-case-div-li">
<a href='http://www.luolong.gov.cn/ '> <a href='http://www.luolong.gov.cn/ '>
<img class="ms-case-list-img" src="http://localhost:8080/ms-mcms/upload/1//article/1531105970322.jpg" alt="洛阳洛龙" /> <img class="ms-case-list-img" src="http://127.0.0.1:8080/ms-mcms/upload/1//article/1531105970322.jpg" alt="洛阳洛龙" />
</a> </a>
</div> </div>
</li> </li>
...@@ -249,7 +249,7 @@ ...@@ -249,7 +249,7 @@
<div data-am-widget="list_news" class="am-list-news am-list-news-default"> <div data-am-widget="list_news" class="am-list-news am-list-news-default">
<div class="am-list-news-hd am-cf ms-news-title"> <div class="am-list-news-hd am-cf ms-news-title">
<!--带更多链接--> <!--带更多链接-->
<a href="http://localhost:8080/ms-mcms/html/1/m/59/index.html" class=""> <a href="http://127.0.0.1:8080/ms-mcms/html/1/m/59/index.html" class="">
<h2 class="ms-news-title-h2">公司动态</h2> <h2 class="ms-news-title-h2">公司动态</h2>
<span class="am-list-news-more am-fr ms-news-more">MORE &raquo;</span> <span class="am-list-news-more am-fr ms-news-more">MORE &raquo;</span>
</a> </a>
...@@ -257,27 +257,27 @@ ...@@ -257,27 +257,27 @@
<div class="am-list-news-bd ms-product-news-list"> <div class="am-list-news-bd ms-product-news-list">
<ul class="am-list"> <ul class="am-list">
<li class="am-g am-list-item-dated ms-product-news-list-li"> <li class="am-g am-list-item-dated ms-product-news-list-li">
<a href="http://localhost:8080/ms-mcms/html/1/m/59/69\70.html" class="am-list-item-hd ">2015年 铭飞MCms获得最热门开源项目第40位</a> <a href="http://127.0.0.1:8080/ms-mcms/html/1/m/59/69/70.html" class="am-list-item-hd ">2015年 铭飞MCms获得最热门开源项目第40位</a>
<span class="am-list-date">2028-00-01</span> <span class="am-list-date">2028-00-01</span>
</li> </li>
<li class="am-g am-list-item-dated ms-product-news-list-li"> <li class="am-g am-list-item-dated ms-product-news-list-li">
<a href="http://localhost:8080/ms-mcms/html/1/m/59/68\71.html" class="am-list-item-hd ">国内java开源 cms系统</a> <a href="http://127.0.0.1:8080/ms-mcms/html/1/m/59/68/71.html" class="am-list-item-hd ">国内java开源 cms系统</a>
<span class="am-list-date">2028-00-01</span> <span class="am-list-date">2028-00-01</span>
</li> </li>
<li class="am-g am-list-item-dated ms-product-news-list-li"> <li class="am-g am-list-item-dated ms-product-news-list-li">
<a href="http://localhost:8080/ms-mcms/html/1/m/59/68\72.html" class="am-list-item-hd ">2016年CMS开源系统排行榜</a> <a href="http://127.0.0.1:8080/ms-mcms/html/1/m/59/68/72.html" class="am-list-item-hd ">2016年CMS开源系统排行榜</a>
<span class="am-list-date">2028-00-01</span> <span class="am-list-date">2028-00-01</span>
</li> </li>
<li class="am-g am-list-item-dated ms-product-news-list-li"> <li class="am-g am-list-item-dated ms-product-news-list-li">
<a href="http://localhost:8080/ms-mcms/html/1/m/59/68\73.html" class="am-list-item-hd ">国内java开源商城系统</a> <a href="http://127.0.0.1:8080/ms-mcms/html/1/m/59/68/73.html" class="am-list-item-hd ">国内java开源商城系统</a>
<span class="am-list-date">2028-00-01</span> <span class="am-list-date">2028-00-01</span>
</li> </li>
<li class="am-g am-list-item-dated ms-product-news-list-li"> <li class="am-g am-list-item-dated ms-product-news-list-li">
<a href="http://localhost:8080/ms-mcms/html/1/m/59/68\74.html" class="am-list-item-hd ">国内java开源bbs系统</a> <a href="http://127.0.0.1:8080/ms-mcms/html/1/m/59/68/74.html" class="am-list-item-hd ">国内java开源bbs系统</a>
<span class="am-list-date">2028-00-01</span> <span class="am-list-date">2028-00-01</span>
</li> </li>
<li class="am-g am-list-item-dated ms-product-news-list-li"> <li class="am-g am-list-item-dated ms-product-news-list-li">
<a href="http://localhost:8080/ms-mcms/html/1/m/59/70\177.html" class="am-list-item-hd ">国内开源 java cms,铭飞MCms</a> <a href="http://127.0.0.1:8080/ms-mcms/html/1/m/59/70/177.html" class="am-list-item-hd ">国内开源 java cms,铭飞MCms</a>
<span class="am-list-date">2028-00-01</span> <span class="am-list-date">2028-00-01</span>
</li> </li>
</ul> </ul>
...@@ -289,11 +289,11 @@ ...@@ -289,11 +289,11 @@
<div class="ms-footer"> <div class="ms-footer">
<footer class="am-footer am-footer-default"> <footer class="am-footer am-footer-default">
<div class="am-footer-switch ms-footer-div"> <div class="am-footer-switch ms-footer-div">
<a id="godesktop" class="am-footer-desktop ms-footer-div-a" href="http://localhost:8080/ms-mcms/html/1/m/53/index.html">关于我们</a> <a id="godesktop" class="am-footer-desktop ms-footer-div-a" href="http://127.0.0.1:8080/ms-mcms/html/1/m/53/index.html">关于我们</a>
<span class="am-footer-divider ms-footer-div-a">|</span> <span class="am-footer-divider ms-footer-div-a">|</span>
<a id="godesktop" class="am-footer-desktop ms-footer-div-a" href="http://mingsoft.net/html/1//5527/index.html#faz">发展历程</a> <a id="godesktop" class="am-footer-desktop ms-footer-div-a" href="http://mingsoft.net/html/1//5527/index.html#faz">发展历程</a>
<span class="am-footer-divider ms-footer-div-a">|</span> <span class="am-footer-divider ms-footer-div-a">|</span>
<a id="godesktop" class="am-footer-desktop ms-footer-div-a" href="http://localhost:8080/ms-mcms/html/1/m/19/index.html">联系我们</a> <a id="godesktop" class="am-footer-desktop ms-footer-div-a" href="http://127.0.0.1:8080/ms-mcms/html/1/m/19/index.html">联系我们</a>
</div> </div>
<div class="am-footer-miscs ms-footer-copyright"> <div class="am-footer-miscs ms-footer-copyright">
<p>版权所有©铭飞科技有限公司2012-2018保留一切权利</p> <p>版权所有©铭飞科技有限公司2012-2018保留一切权利</p>
......
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<#include "m/head-file.htm"/> <#include "/m/head-file.htm"/>
<body> <body>
<#include "m/head.htm"/> <#include "/m/head.htm"/>
<div class="ms-banner"> <div class="ms-banner">
<img src="{ms:global.host/}/{ms:global.style/}/images/about.png" class="am-img-responsive" alt=""/> <img src="{ms:global.host/}/{ms:global.style/}/images/about.png" class="am-img-responsive" alt=""/>
</div> </div>
...@@ -30,6 +30,6 @@ ...@@ -30,6 +30,6 @@
</div> </div>
</div> </div>
</div> </div>
<#include "m/footer.htm"/> <#include "/m/footer.htm"/>
</body> </body>
</html> </html>
\ No newline at end of file
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<#include "m/head-file.htm"/> <#include "/m/head-file.htm"/>
<body> <body>
<#include "m/head.htm"/> <#include "/m/head.htm"/>
<div class="ms-banner"> <div class="ms-banner">
<img src="{ms:global.host/}/{ms:global.style/}/images/message.png" alt="" width="100%" /> <img src="{ms:global.host/}/{ms:global.style/}/images/message.png" alt="" width="100%" />
</div> </div>
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
<button type="button" class="am-btn am-btn-primary ms-content-button">提交</button> <button type="button" class="am-btn am-btn-primary ms-content-button">提交</button>
</form> </form>
</div> </div>
<#include "m/footer.htm"/> <#include "/m/footer.htm"/>
</body> </body>
</html> </html>
<script> <script>
......
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<#include "m/head-file.htm"/> <#include "/m/head-file.htm"/>
<body> <body>
<#include "m/head.htm"/> <#include "/m/head.htm"/>
<div class="ms-banner"> <div class="ms-banner">
<img src="{ms:global.host/}/{ms:global.style/}/images/mo.png" class="am-img-responsive" alt=""/> <img src="{ms:global.host/}/{ms:global.style/}/images/mo.png" class="am-img-responsive" alt=""/>
</div> </div>
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
{/ms:arclist} {/ms:arclist}
</ul> </ul>
</div> </div>
<#include "m/footer.htm"/> <#include "/m/footer.htm"/>
</body> </body>
</html> </html>
<script> <script>
......
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<#include "m/head-file.htm"/> <#include "/m/head-file.htm"/>
<body> <body>
<#include "m/head.htm"/> <#include "/m/head.htm"/>
<div class="ms-banner"> <div class="ms-banner">
<img src="{ms:global.host/}/{ms:global.style/}/images/about.png" class="am-img-responsive" alt=""/> <img src="{ms:global.host/}/{ms:global.style/}/images/about.png" class="am-img-responsive" alt=""/>
</div> </div>
...@@ -30,6 +30,6 @@ ...@@ -30,6 +30,6 @@
</div> </div>
</div> </div>
</div> </div>
<#include "m/footer.htm"/> <#include "/m/footer.htm"/>
</body> </body>
</html> </html>
\ No newline at end of file
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<#include "m/head-file.htm"/> <#include "/m/head-file.htm"/>
<body> <body>
<#include "m/head.htm"/> <#include "/m/head.htm"/>
<div class="ms-banner"> <div class="ms-banner">
<img src="{ms:global.host/}/{ms:global.style/}/images/case.png" class="am-img-responsive" alt=""/> <img src="{ms:global.host/}/{ms:global.style/}/images/case.png" class="am-img-responsive" alt=""/>
</div> </div>
...@@ -20,6 +20,6 @@ ...@@ -20,6 +20,6 @@
</div> </div>
</div> </div>
</div> </div>
<#include "m/footer.htm"/> <#include "/m/footer.htm"/>
</body> </body>
</html> </html>
\ No newline at end of file
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<#include "m/head-file.htm"/> <#include "/m/head-file.htm"/>
<link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/jquery.sinaemotion.css" /> <link rel="stylesheet" type="text/css" href="{ms:global.host/}/{ms:global.style/}/css/jquery.sinaemotion.css" />
<script type="text/javascript" src="{ms:global.host/}/{ms:global.style/}/js/jquery.sinaEmotion.js"></script> <script type="text/javascript" src="{ms:global.host/}/{ms:global.style/}/js/jquery.sinaEmotion.js"></script>
</head> </head>
<body> <body>
<#include "m/head.htm"/> <#include "/m/head.htm"/>
<div class="ms-banner"> <div class="ms-banner">
<img src="{ms:global.host/}/{ms:global.style/}/images/case.png" class="am-img-responsive" alt="" /> <img src="{ms:global.host/}/{ms:global.style/}/images/case.png" class="am-img-responsive" alt="" />
</div> </div>
...@@ -81,7 +81,7 @@ ...@@ -81,7 +81,7 @@
</div> </div>
</div> </div>
</div> </div>
<#include "m/footer.htm"/> <#include "/m/footer.htm"/>
</body> </body>
<script> <script>
var newsShowVue = new Vue({ var newsShowVue = new Vue({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment