summaryrefslogtreecommitdiffstats
path: root/portal/src/main/webapp/extsys/vim/vimView.html
diff options
context:
space:
mode:
authorLiZi <li.zi30@zte.com.cn>2018-03-01 06:37:23 -0500
committerLiZi <li.zi30@zte.com.cn>2018-03-01 06:37:36 -0500
commit691dad98bb05d412b7c0e293bbf7bb73399fdd4d (patch)
tree9c3de360eb47b2dd6306e85b0a3d3c2303786db5 /portal/src/main/webapp/extsys/vim/vimView.html
parent7f8acd1a0a8ddd3f6aac2301d2499c037ab53557 (diff)
Query physical location id when register VIM.
Query physical location id when register VIM. Change the original complex name into physical location id. Change-Id: I29e4cd634e6ec58688864ef7bfc55597ab4ef59f Issue-ID: AAI-828 Signed-off-by: LiZi <li.zi30@zte.com.cn>
Diffstat (limited to 'portal/src/main/webapp/extsys/vim/vimView.html')
-rw-r--r--portal/src/main/webapp/extsys/vim/vimView.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/portal/src/main/webapp/extsys/vim/vimView.html b/portal/src/main/webapp/extsys/vim/vimView.html
index 8e0e06d..0dce392 100644
--- a/portal/src/main/webapp/extsys/vim/vimView.html
+++ b/portal/src/main/webapp/extsys/vim/vimView.html
@@ -116,11 +116,14 @@
</div>
<div class="form-group">
<label class="control-label col-sm-3">
- <span>Complex Name</span>
+ <span>Physical Location Id</span>
<span class="required" aria-required="true">*</span>
</label>
<div class="col-sm-7">
- <input type="text" ms-duplex="currentElement['complexName']" name="complexName" class="form-control"/>
+ <select ms-duplex="currentElement['physicalLocationId']">
+ <option value="null"></option>
+ <option ms-repeat="physicalLocationIds">{{el}}</option>
+ </select>
<span class="help-block"></span>
</div>
</div>