fangshi-detail-6.html 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>新生儿家庭访视记录表</title>
  6. <meta name="author" content="yihu.com" />
  7. <meta name="format-detection" content="telephone=no" />
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0"
  9. />
  10. <meta name="apple-mobile-web-app-capable" content="yes" />
  11. <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  12. <link rel="shortcut icon" href="../../../../favicon.ico">
  13. <link rel="stylesheet" type="text/css" href="../../../../css/element-ui.css" />
  14. <link rel="stylesheet" type="text/css" href="../../../../css/cross.css" />
  15. <link rel="stylesheet" type="text/css" href="../../../../css/bootstrap.min.css" />
  16. <link href="../../../../plugins/toastr/toastr.min.css" rel="stylesheet">
  17. <link href="../css/fangshi-detail.css" rel="stylesheet">
  18. </head>
  19. <style>
  20. .el-radio {
  21. margin-bottom: 0;
  22. }
  23. .setPicker .el-input--prefix .el-input__inner {
  24. text-align: center
  25. }
  26. div.ui-col-1 {
  27. line-height: 27px;
  28. }
  29. .setinput .el-input__inner {
  30. padding: 0;
  31. border-bottom: 1px solid #e1e1e1;
  32. text-align: center;
  33. }
  34. </style>
  35. <body>
  36. <div id="app">
  37. <fangshi-detail-6 :followupId="followupId" :version="version"></fangshi-detail-6>
  38. <follow-bottom :followupId="followupId"></follow-bottom>
  39. </div>
  40. <script src="../../../../js/vue.js" type="text/javascript" charset="utf-8"></script>
  41. <script src="../../../../js/jquery-2.2.4.js" type="text/javascript" charset="utf-8"></script>
  42. <script src="../../../../js/util.js" type="text/javascript" charset="utf-8"></script>
  43. <script src="../../../../plugins/toastr/toastr.min.js"></script>
  44. <script src="../../../../js/es6-promise.js" type="text/javascript" charset="utf-8"></script>
  45. <script src="../../../../js/underscore.js" type="text/javascript" charset="utf-8"></script>
  46. <script src="../../../../js/element-ui.js" type="text/javascript" charset="utf-8"></script>
  47. <!-- 签到信息组件 -->
  48. <script src="../../../../component/followup/follow-bottom.js"></script>
  49. <!-- 完成随访按钮组件 -->
  50. <script src="../../../../component/followup/finish-followup-btn.js"></script>
  51. <!-- 新生儿信息组件 -->
  52. <script src="../../../../component/followup/fangshi-detail-6.js"></script>
  53. <script src="../../../../api/http-request.js" type="text/javascript" charset="utf-8"></script>
  54. <script src="../../../../api/fangshi-api.js"></script>
  55. <script>
  56. var Request = GetRequest();
  57. new Vue({
  58. el: "#app",
  59. data: function () {
  60. return {
  61. followupId: Request['id'],
  62. version: Request['version'],
  63. }
  64. },
  65. computed: {
  66. },
  67. mounted: function () {
  68. // this.getData()
  69. },
  70. methods: {
  71. }
  72. })
  73. </script>
  74. </body>
  75. </html>