SporterMatchDetail.cshtml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. @using MES.Production.Service;
  2. @using Central.Control.Domain;
  3. @using Ant.Service.Common;
  4. @using CommonToolHelper;
  5. @{
  6. ViewBag.Title = "运动员信息";
  7. Layout = "~/Views/Shared/_Layout.cshtml";
  8. }
  9. @model MES.Production.Entity.SporterInfo
  10. <style type="text/css">
  11. html, body {
  12. background: #fff;
  13. font-family: 微软雅黑;
  14. font-weight: normal;
  15. }
  16. .contentMiddle {
  17. display: flex;
  18. justify-content: center;
  19. align-items: center;
  20. padding: 5px 0;
  21. }
  22. .contentMiddle img {
  23. border: none;
  24. outline: none;
  25. }
  26. .contentbox {
  27. display: inline-block;
  28. font-size: 16px;
  29. line-height: 32px;
  30. }
  31. .lblLeft {
  32. font-weight: normal;
  33. display: inline-block;
  34. width: 80px;
  35. text-align: left;
  36. }
  37. .lblRight {
  38. width: 200px;
  39. border: 1px solid #ccc;
  40. padding-left: 5px;
  41. font-weight: normal;
  42. display: inline-block;
  43. }
  44. </style>
  45. <link href="~/Content/uploadfile/CSS/bootstrap.min.css" rel="stylesheet" />
  46. <link href="~/Content/uploadfile/CSS/font-awesome.css" rel="stylesheet" />
  47. <div class="wrapper-content">
  48. <div class="panel-body">
  49. <div class="tab-content">
  50. <div id="tab-1" class="tab-pane active">
  51. <div class="contentMiddle">
  52. <h2>电子参赛卡</h2>
  53. </div>
  54. <div class="contentMiddle">
  55. <div style="border-bottom:1px solid #ccc;margin:5px 0;height:1px;line-height:1px;overflow:hidden;width:100%;"></div>
  56. </div>
  57. <div class="contentMiddle">
  58. <img src="@Model.SporterPicUrl" style="width:200px;" />
  59. </div>
  60. <div class="contentMiddle">
  61. <div class="contentbox">
  62. <label class="lblLeft">姓名:</label>
  63. <label class="lblRight">@Model.Name</label>
  64. </div>
  65. </div>
  66. <div class="contentMiddle">
  67. <div class="contentbox">
  68. <label class="lblLeft">学校:</label>
  69. <label class="lblRight">@Model.SchoolName</label>
  70. </div>
  71. </div>
  72. <div class="contentMiddle">
  73. <div class="contentbox">
  74. <label class="lblLeft">身份证:</label>
  75. <label class="lblRight">@Model.IDCard</label>
  76. </div>
  77. </div>
  78. <div class="contentMiddle">
  79. <div class="contentbox">
  80. <label class="lblLeft">学籍号:</label>
  81. <label class="lblRight">@Model.StudentNo</label>
  82. </div>
  83. </div>
  84. <div class="contentMiddle">
  85. <div class="contentbox">
  86. <label class="lblLeft">参赛项目:</label>
  87. <label class="lblRight">@Model.ItemList</label>
  88. </div>
  89. </div>
  90. <div class="contentMiddle">
  91. <img src="@Model.StudentNoPicUrl" style="width:200px;" />
  92. </div>
  93. </div>
  94. </div>
  95. </div>
  96. </div>