attribute.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <style>
  2. .xunhuan{
  3. width: 100%;
  4. float: left;
  5. }
  6. .big{
  7. float: left;
  8. width: 508px
  9. }
  10. .big .fuzuo{
  11. width: 255px;
  12. height: 38px;
  13. border: 1px #d1d1d1 solid;
  14. float: left;
  15. background-color: #fbfbfb;
  16. text-align: center;
  17. line-height: 38px;
  18. margin-left: -1px;
  19. margin-top: -1px
  20. }
  21. .big .fuyou{
  22. width: 255px;
  23. height: 38px;
  24. border: 1px #d1d1d1 solid;
  25. float: left;
  26. background-color: white;
  27. text-align: center;
  28. line-height: 38px;
  29. margin-left: -1px;
  30. margin-top: -1px
  31. }
  32. .xunhuan .title{
  33. font-size: 13px;
  34. font-weight: bold;
  35. display: block;
  36. margin-top: 10px;
  37. margin-bottom: 5px
  38. }
  39. .xiala{
  40. height: 476px;
  41. width: 100%;
  42. overflow: hidden;
  43. overflow-y: scroll;
  44. padding-left: 2px;
  45. }
  46. </style>
  47. <div ng-controller="gdzc_attributeCtrl">
  48. <!-- {{htht}} -->
  49. <div class="xiala">
  50. <div class="xunhuan" ng-repeat="n in getKeydata">
  51. <span class="title">{{n.title}}</span>
  52. <div>
  53. <div ng-repeat="c in n.form.fields" class="big">
  54. <div class="fuzuo">
  55. {{c.templateOptions.label}}
  56. </div>
  57. <div class="fuyou">
  58. {{val(c.key)}}
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. </div>
  64. </div>