123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <ion-view view-title="产品信息">
- <div class="bar bar-header" style="background-image: none;background-color: #5BABE6;">
- <div class="button button-icon icon pus_blue" ng-click="goback()"></div>
- <button class="button button-icon icon goback whiteGoBack noneContent" ng-click="goback()"></button>
- <h1 class="bar_title" style="color: #fff">{{pagetitle}}</h1>
- </div>
- <ion-content style="overflow-x:hidden;overflow-y:visible;" class="has-header has-footer">
- <form name="activitySchedule_form" action="" id="activitySchedule_form" class="activitySchedule_form">
- <!--产品信息-->
- <ul>
- <li>
- <span><sup>*</sup>所属单位</span>
- <input type="text" id = "orgname" placeholder="请填写产品所属单位" style="padding-right: 12px;" ng-model="connEnterpriseModuleModel.orgname" ng-change="queryLikeName()"/>
- <!--<ul ng-if="isRelateUl" class="isRelateUl">
- <li ng-repeat="company in companylist" ng-bind-html="ttt(company.name)"
- ng-click="setCompanyName(company)"></li>
- </ul>-->
- </li>
- <li style="height: auto;">
- <ul ng-if="isRelateUl" class="isRelateUl" style="overflow: visible;">
- <li ng-repeat="company in companylist" style="overflow: visible;">
- <span ng-bind-html="ttt(company.name)" ng-click="setCompanyName(company)"></span>
- <em class="goViewResource" ng-if="company.resourcelibrary != undefined && company.resourcelibrary.id > 0"
- ng-click="jumpResourceDetail(company)">查看资源<i class="icon ion-ios-arrow-right"></i></em>
- </li>
- </ul>
- </li>
- </ul>
- <div ng-repeat="produceInfo in produceInfoList track by $index" style="clear: both;">
- <ul>
- <li>
- <span><sup>*</sup>产品名称</span>
- <input type="text" placeholder="请填写产品名称" style="padding-right: 12px;" ng-model="produceInfo.productname"/>
- </li>
- <li style="height: auto;">
- <span>产品描述</span>
- <textarea placeholder="请填写产品描述" ng-model="produceInfo.productdescription" style="top: -1px;position: relative;"></textarea>
- </li>
- <li style="height: auto;">
- <span>备注</span>
- <textarea placeholder="请填写备注信息" ng-model="produceInfo.remark" style="top: -1px;position: relative;"></textarea>
- </li>
- </ul>
- <button type="button" ng-click='AddOrDelProductInfo($index)' class="addOrDelButton">
- <span ng-class="{'addStauesButtonName':$index==0, 'delStauesButtonName':$index>0}"></span>
- <i ng-class="{'icon activity_schedule_i':true,'ion-android-add':$index==0, 'ion-minus-round':$index>0}"></i>
- </button>
- </div>
- </form>
- </ion-content>
- <ion-footer-bar class="footer_buttonWrap">
- <span class="footer_button" ng-click="saveCompanyProduct()">保存产品信息</span>
- </ion-footer-bar>
- </ion-view>
|