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="saveTempTheme()">保存</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" maxlength="20" type="text" placeholder="主题名称" ng-model="temptheme.title" style="height: 40px !important;">
- <div class="ParticipatingUnits">
- <div>
- <textarea class="ParticipatingUnits_subtitle" ng-model="temptheme.content" maxlength="300" type="text" placeholder="简要介绍"></textarea>
- <span class="ir-post-long"><small ng-bind="temptheme.content.length"></small><small>/300</small>字</span>
- </div>
- </div>
- </ion-content>
- </ion-view>
|