<apex:page docType="html-5.0" applyHtmlTag="false" showHeader="false" sidebar="false" standardStylesheets="false" controller="OCM_Ctrl2">
|
<head>
|
<title>土地登録 土地情報入力</title>
|
<style type="text/css">
|
.required {
|
transition:0.5s linear all;
|
background: white;
|
}
|
.required.ng-invalid {
|
border-color: #ff4500;
|
/*color:white; 2016.07.0x*/
|
background:white; /* 2016.07.0x */
|
}
|
|
</style>
|
</head>
|
<!-- ローディング中 -->
|
<div ng-show="loading" style="padding-top:40px; text-align:center">
|
<i class="fa fa-spinner fa-pulse fa-2x" style="color:#87ceeb"></i>
|
</div>
|
<!-- ローディング完了 -->
|
<div ng-hide="loading">
|
<section>
|
<form name="landForm" role="form">
|
|
<div class="form-group">
|
<label for="inputName" class="col-sm-2 control-label">日期</label>
|
<div class="row">
|
<div class="col-sm-12">
|
<input type="datetime-local" class="form-control required" id="inputName" placeholder="yyyy-MM-dd" ng-model="land.name" required="true" />
|
</div>
|
</div>
|
</div>
|
</form>
|
<apex:form >
|
<div class="form-group">
|
<span class="col-sm-2 control-label">照片种类</span><br/>
|
<div ng-show="land.pid.substr(0,3)=='a0t'">
|
<apex:inputField value="{!ra.photoType__c }" html-ng-model="type_selecter.ra_type"></apex:inputField>
|
</div>
|
<div ng-show="land.pid.substr(0,3)=='a0J'">
|
<apex:inputField value="{!rp.photoType__c }" html-ng-model="type_selecter.rp_type"></apex:inputField>
|
</div>
|
<div ng-show="land.pid.substr(0,3)=='02i'">
|
<apex:inputField value="{!ast.photoType__c }" html-ng-model="type_selecter.ast_type"></apex:inputField>
|
</div>
|
</div>
|
</apex:form>
|
</section>
|
</div>
|
|
<!-- ボタン -->
|
<nav class="navbar navbar-default navbar-fixed-bottom">
|
<div style="padding:6px;">
|
<!-- <a class="btn btn-default pull-right" role="button" ui-sref="menu.send" ng-disabled="true" >选择照片 <i class="fa fa-arrow-circle-o-right "></i></a> -->
|
<button class="btn btn-default pull-right" ng-click="next()">选择照片 <i class="fa fa-arrow-circle-o-right "></i></button>
|
</div>
|
</nav>
|
</apex:page>
|