12345678910111213141516171819202122 |
- <ion-view>
- <ion-header-bar align-title="center">
- <div class="button button-icon icon pus_blue" ng-click="goback()"></div>
- <button class="button button-icon icon goback" ng-click="goback()"></button>
- <h3 class="DockingTheme_h3">参与单位</h3>
- <span class="DockingTheme_button" ng-click="saveTempCompany()">保存</span>
- </ion-header-bar>
- <ion-content style="background-color:#ededf0;" class="has-header">
- <div class="TopicType" ng-model="organizationType" ng-click="show()">
- <span>单位类型</span>
- <small ng-bind="typename[index]">需求方</small>
- <i class="ion-ios-arrow-right"></i>
- </div>
- <input class="ParticipatingUnits_main" id="gwt-NoteTitleView-textBox" ng-model="tempcompany.name" maxlength="20" type="text" placeholder="单位名称" style="height: 40px !important;">
- <div class="ParticipatingUnits">
- <div>
- <textarea class="ParticipatingUnits_subtitle" maxlength="300" ng-model="tempcompany.presentation" type="text" placeholder="简要介绍"></textarea>
- <span class="ir-post-long"><small ng-bind="tempcompany.presentation.length"></small><small>/300</small>字</span>
- </div>
- </div>
- </ion-content>
- </ion-view>
|