高章伟
2022-03-18 4bfe21c4b5ddc089ae5a95f4b10f6cff148b690d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<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" >选择照片&nbsp;<i class="fa fa-arrow-circle-o-right "></i></a> -->
      <button class="btn btn-default pull-right" ng-click="next()">选择照片&nbsp;<i class="fa fa-arrow-circle-o-right "></i></button>
  </div>
</nav>
</apex:page>