12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <style>
- .xunhuan{
- width: 100%;
- float: left;
- }
- .big{
- float: left;
- width: 508px
- }
- .big .fuzuo{
- width: 255px;
- height: 38px;
- border: 1px #d1d1d1 solid;
- float: left;
- background-color: #fbfbfb;
- text-align: center;
- line-height: 38px;
- margin-left: -1px;
- margin-top: -1px
- }
- .big .fuyou{
- width: 255px;
- height: 38px;
- border: 1px #d1d1d1 solid;
- float: left;
- background-color: white;
- text-align: center;
- line-height: 38px;
- margin-left: -1px;
- margin-top: -1px
- }
- .xunhuan .title{
- font-size: 13px;
- font-weight: bold;
- display: block;
- margin-top: 10px;
- margin-bottom: 5px
- }
- .xiala{
- height: 476px;
- width: 100%;
- overflow: hidden;
- overflow-y: scroll;
- padding-left: 2px;
- }
- </style>
- <div ng-controller="gdzc_attributeCtrl">
- <!-- {{htht}} -->
- <div class="xiala">
- <div class="xunhuan" ng-repeat="n in getKeydata">
- <span class="title">{{n.title}}</span>
- <div>
- <div ng-repeat="c in n.form.fields" class="big">
- <div class="fuzuo">
- {{c.templateOptions.label}}
- </div>
- <div class="fuyou">
- {{val(c.key)}}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
|