index.html 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="utf-8">
  5. <link rel="shortcut icon" href="../../static/favicon/favicon.ico">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <title>医政管理沙龙首页</title>
  9. <!-- Bootstrap -->
  10. <link rel="stylesheet" href="../../static/css/bootstrap-3.3.7.min.css">
  11. <!--[if lt IE 9]>
  12. <script src="../../static/js/html5shiv-3.7.3.min.js"></script>
  13. <script src="../../static/js/respond-1.4.2.min.js"></script>
  14. <![endif]-->
  15. <script src="../../static/js/jquery-1.12.4.min.js"></script>
  16. <script src="../../static/js/bootstrap-3.3.7.min.js"></script>
  17. <script src="../../static/js/common.js"></script>
  18. <script src="../../static/js/config.js"></script>
  19. <script src="../../static/js/jquery.liMarquee.js"></script>
  20. <!-- <script src="../../static/js/jquery-1.8.3.min.js"></script>-->
  21. <link rel="stylesheet" href="../../static/css/liMarquee.css">
  22. <script type="text/javascript">
  23. $(function(){
  24. $('#festival').liMarquee({
  25. direction: 'up'
  26. });
  27. $('#festival').click(function () {
  28. window.location.href=window.root + "menuAndDetail/menuAndDetail.html?rootColumnId=8a2a08425b7aa230015b7ab44ea90013&columnListId=4028814771c6151f0171c626a6e40014&articleId=4028814771ecf1810171f407c9f30033";
  29. });
  30. });
  31. </script>
  32. <script type="text/javascript">
  33. window.rootColumnId = jc.param.get("rootColumnId");
  34. if (!window.rootColumnId) {
  35. window.resource("cmsApiColumnList", {
  36. level: 0
  37. }, function (data) {
  38. /* orderNo 排序 */
  39. if (!data) return false;
  40. data = window.arraySortASC(data, "orderNo");
  41. window.rootColumnId = data[0].id
  42. //window.router("index", { rootColumnId: data[0].id }, true);
  43. }, false);
  44. }
  45. </script>
  46. <script type="text/javascript">
  47. window.indexLayoutRule = [
  48. {
  49. titleClass: "",
  50. titleMore: false,
  51. col: "col-md-4",
  52. ui: "banner",
  53. uiClassName: "",
  54. pageSize: 5
  55. },
  56. {
  57. titleClass: "vh",
  58. titleMore: true,
  59. col: "col-md-4",
  60. ui: "textList",
  61. uiClassName: "",
  62. pageSize: 6
  63. }, {
  64. titleClass: "",
  65. titleMore: true,
  66. col: "col-md-4",
  67. ui: "textList",
  68. uiClassName: "showImg",
  69. pageSize: 3
  70. }
  71. ];
  72. </script>
  73. <script type="text/javascript">
  74. jc.uiReady = function () {
  75. window.resource("cmsApiColumnList", {
  76. rootColumnId: window.rootColumnId
  77. }, function (data) {
  78. data = window.arraySortASC(data, "orderNo");
  79. window.uiIndexSetup(data);
  80. }, false);
  81. };
  82. </script>
  83. <script type="text/javascript">
  84. window.uiIndexSetup = function (data) {
  85. var app = document.getElementById("app");
  86. for (var i = 0, l = data.length; i < l; i++) {
  87. var curData = data[i];
  88. var curDataId = curData.id;
  89. var curDataName = curData.name;
  90. var curDateCode = curData.code;
  91. if (curDateCode == "sy_ad") {
  92. if (jc.hasUI("banner")) {
  93. jc.ui.banner.filter("type=index", "setAttr", { "data-id": curDataId, "data-path": "cmsApiArticleList" });
  94. jc.ui.banner.filter("type=index", "update");
  95. }
  96. continue;
  97. }
  98. var rule = window.indexLayoutRule.shift() || { titleClass: "", titleMore: true, col: "col-md-6", ui: "textList", uiClassName: "", pageSize: 6 };
  99. var colMd = jc.createDOM({
  100. classname: rule.col
  101. });
  102. var titleStyle1 = jc.createDOM({
  103. dataUi: "titleStyle1",
  104. classname: "J_titleStyle1 " + rule.titleClass,
  105. dataId: curDataId,
  106. dataPath: "cmsApiArticleList",
  107. dataTitleText: curDataName,
  108. dataMoreText: rule.titleMore ? "更多>>" : "",
  109. dataMoreHref: "javascript: window.router('menuAndTextlist',{ rootColumnId : '" + window.rootColumnId + "' , columnListId : '" + curDataId + "' });"
  110. });
  111. colMd.appendChild(titleStyle1);
  112. if (rule.ui == "banner") {
  113. var textList = jc.createDOM({
  114. dataUi: "banner",
  115. classname: "J_banner",
  116. dataId: curDataId,
  117. dataPath: "cmsApiArticleList",
  118. dataPageSize: 10
  119. });
  120. colMd.appendChild(textList);
  121. }
  122. if (rule.ui == "textList") {
  123. var textList = jc.createDOM({
  124. dataUi: "textList",
  125. classname: "J_textList notPage " + rule.uiClassName,
  126. dataId: curDataId,
  127. dataPath: "cmsApiArticleList",
  128. dataPageSize: rule.pageSize
  129. });
  130. colMd.appendChild(textList);
  131. }
  132. app.appendChild(colMd);
  133. }
  134. jc.uiUpdate();
  135. };
  136. </script>
  137. </head>
  138. <body class="index">
  139. <!-- 页头 -->
  140. <div id="header" data-ui="header" class="J_header"></div>
  141. <!-- 轮播图 -->
  142. <div data-ui="banner" data-type="index" class="J_banner"></div>
  143. <!-- 页面主体容器 -->
  144. <div class="container">
  145. <div id="app" class="row">
  146. </div>
  147. <!-- <div class="row col-md-6 J_titleStyle1 page-header clearfix pull-left">-->
  148. <!-- -->
  149. <!-- </div>-->
  150. <div>
  151. <div class="J_titleStyle1">
  152. <div class="page-header clearfix">
  153. <div class="pull-left">
  154. <i></i>
  155. <h4>卫生节日一览</h4>
  156. </div>
  157. </div>
  158. <div class="row">
  159. <div id="festival">
  160. <ul>
  161. <table>
  162. <tr>
  163. <td>世界防治麻风病日 1月最后一个星期日</td>
  164. <td>世界癌症日 2月4日</td>
  165. <td>世界罕见病日 2月的最后一天</td>
  166. </tr>
  167. <tr>
  168. <td>全国爱耳日 3月3日</td>
  169. <td>世界青光眼日 3月6日</td>
  170. <td>中国国医节 3月17日</td>
  171. </tr>
  172. <tr>
  173. <td>全国爱肝日 3月18日</td>
  174. <td>世界肾脏日 3月份的第二个星期四</td>
  175. <td>世界睡眠日 3月21日</td>
  176. </tr>
  177. <tr>
  178. <td>世界防治结核病日 3月24日</td>
  179. <td>全国爱国卫生月 4月</td>
  180. <td>世界自闭症日 4月2日</td>
  181. </tr>
  182. <tr>
  183. <td>世界卫生日 4月7日</td>
  184. <td>世界帕金森病日 4月11日</td>
  185. <td>全国肿瘤防治宣传周 4月15日~21日</td>
  186. </tr>
  187. <tr>
  188. <td>全国爱鼻日 4月的第二个星期六</td>
  189. <td>世界血友病日 4月17日</td>
  190. <td>世界防治疟疾日 4月25日</td>
  191. </tr>
  192. <tr>
  193. <td>全国儿童预防接种宣传日 4月25日</td>
  194. <td>世界安全生产与健康日 4月28日</td>
  195. <td>世界防治哮喘日 5月的第一个周二</td>
  196. </tr>
  197. <tr>
  198. <td>世界红十字日 5月8日</td>
  199. <td>国际护士节 5月12日</td>
  200. <td>全国碘缺乏病日 5月15日</td>
  201. </tr>
  202. <tr>
  203. <td>世界高血压日 5月17日</td>
  204. <td>全国学生营养日 5月20日</td>
  205. <td>全国母乳喂养宣传日 5月20日</td>
  206. </tr>
  207. <tr>
  208. <td>世界向人体条件挑战日 5月26日</td>
  209. <td>世界无烟日 5月31日</td>
  210. <td>世界牛奶日 6月1日</td>
  211. </tr>
  212. <tr>
  213. <td>全国爱眼日 6月6日</td>
  214. <td>世界献血日 6月14日</td>
  215. <td>世界渐冻人日 6月21日</td>
  216. </tr>
  217. <tr>
  218. <td>国际禁毒日 6月26日</td>
  219. <td>国际癫痫关爱日 6月28日</td>
  220. <td>全国科普行动日 6月29日</td>
  221. </tr>
  222. <tr>
  223. <td>世界过敏性疾病日 7月8日</td>
  224. <td>世界肝炎日 7月28日</td>
  225. <td>世界母乳喂养周 8月1日至7日</td>
  226. </tr>
  227. <tr>
  228. <td>全民健身日 8月8日</td>
  229. <td>关爱义齿周 8月最后一周</td>
  230. <td>世界预防自杀日 9月10日</td>
  231. </tr>
  232. <tr>
  233. <td>中国预防出生缺陷日 9月12日</td>
  234. <td>世界淋巴瘤日 9月15日</td>
  235. <td>中国脑健康日 9月16日</td>
  236. </tr>
  237. <tr>
  238. <td>世界急救日 9月的第二个周六</td>
  239. <td>爱牙日 9月20日</td>
  240. <td>中华老年痴呆日 9月21日</td>
  241. </tr>
  242. <tr>
  243. <td>世界阿尔茨海默病日 9月21日</td>
  244. <td>国际聋人日 9月28日</td>
  245. <td>世界心脏日 9月的最后一个星期日</td>
  246. </tr>
  247. <tr>
  248. <td>世界精神卫生日 10月10日</td>
  249. <td>世界镇痛日 10月11日</td>
  250. <td>世界关节炎日 10月12日</td>
  251. </tr>
  252. <tr>
  253. <td>世界保健日 10月13日</td>
  254. <td>世界视力日 10月第二个星期四</td>
  255. <td>国际盲人节 10月15日</td>
  256. </tr>
  257. <tr>
  258. <td>全球洗手日 10月15日</td>
  259. <td>世界骨质疏松日 10月20日</td>
  260. <td>世界传统医药日 10月22日</td>
  261. </tr>
  262. <tr>
  263. <td>世界男性健康日 10月28日</td>
  264. <td>世界卒中日 10月29日</td>
  265. <td>全球肺癌关注月 11月</td>
  266. </tr>
  267. <tr>
  268. <td>联合国糖尿病日 11月14日</td>
  269. <td>世界慢阻肺日 11月第三周的周三</td>
  270. <td>世界艾滋病日 12月1日</td>
  271. </tr>
  272. <tr>
  273. <td>国际残疾人日 12月3日</td>
  274. <td>世界强化免疫日 12月15日</td>
  275. <td></td>
  276. </tr>
  277. </table>
  278. <!-- <li><p>世界防治麻风病日 1月最后一个星期日 世界癌症日 2月4日 世界罕见病日 2月的最后一天</li>-->
  279. <!-- <li><p>全国爱耳日 3月3日 世界青光眼日 3月6日 世界罕见病日 2月的最后一天</li>-->
  280. <!-- <li><p>世界防治麻风病日 1月最后一个星期日 世界癌症日 2月4日 世界罕见病日 2月的最后一天</li>-->
  281. <!-- <li><p>世界防治麻风病日 1月最后一个星期日 世界癌症日 2月4日 世界罕见病日 2月的最后一天</li>-->
  282. </ul>
  283. </div>
  284. </div>
  285. </div>
  286. </div>
  287. </div>
  288. <!-- footer -->
  289. <div data-ui="footer" class="J_footer mt40"></div>
  290. <!-- alert -->
  291. <div data-ui="alert" class="J_alert modal fade" tabindex="-1" role="dialog" aria-labelledby="gridSystemModalLabel"></div>
  292. <!-- confirm -->
  293. <div data-ui="confirm" class="J_confirm modal fade" tabindex="-1" role="dialog" aria-labelledby="gridSystemModalLabel"></div>
  294. </body>
  295. </html>