提交 9e3b6bd2 编写于 作者: L lepdou

Revert "."

This reverts commit 58d59c1f.
上级 013ca304
......@@ -108,8 +108,7 @@
<div class="checkbox" ng-repeat="env in missEnvs">
<label>
<input type="checkbox" name="selectedEnvs[]" value="{{env}}"
ng-checked="selectedEnvs.indexOf(env) > -1"
ng-click="toggleSelection(env)"><span ng-bind="env"></span>
ng-checked="selectedEnvs.indexOf(env) > -1" ng-click="toggleSelection(env)"><span ng-bind="env"><span/>
</label>
</div>
</div>
......@@ -117,8 +116,7 @@
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
<button type="button" class="btn btn-primary" data-dismiss="modal"
ng-click="createEnvs()">添加
<button type="button" class="btn btn-primary" data-dismiss="modal" ng-click="createEnvs()">添加
</button>
</div>
</div>
......@@ -134,8 +132,7 @@
<div class="row">
<div class="col-md-4">
<b ng-bind="namespace.namespace.namespaceName"></b>
<span class="label label-primary"
ng-show="namespace.itemModifiedCnt > 0">有修改
<span class="label label-primary" ng-show="namespace.itemModifiedCnt > 0">有修改
<span class="badge" ng-bind="namespace.itemModifiedCnt"></span></span>
</div>
<div class="col-md-4">
......@@ -199,12 +196,6 @@
ng-show="namespace.isTextEditing" ng-click="saveDraft(namespace)">
<span class="glyphicon glyphicon-ok" aria-hidden="true"></span>
</a>
<a data-tooltip="tooltip" data-placement="bottom" title="添加配置"
ng-show="namespace.viewType == 'table'"
data-toggle="modal" data-target="#createItem">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
</a>
</div>
</div>
</header>
......@@ -212,8 +203,7 @@
<!--text view-->
<textarea class="form-control" rows="{{namespace.itemCnt}}" style="border-radius: 0px"
ng-show="namespace.viewType == 'text'"
ng-disabled="!namespace.isTextEditing" ng-model="namespace.text"
ng-bind="namespace.text">
ng-disabled="!namespace.isTextEditing" ng-model="namespace.text" ng-bind="namespace.text">
</textarea>
<!--table view-->
......@@ -241,27 +231,25 @@
</thead>
<tbody>
<tr title="点击查看" data-toggle="modal"
data-target="#oldValueModal"
<tr title="点击查看" data-toggle="modal" data-target="#oldValueModal"
ng-repeat="config in namespace.items" ng-class="{warning:config.modified}"
ng-if="config.item.key"
ng-click="watchItem(config.item.key, config.item.value, config.oldValue)">
<td width="25%">
<td width="25%" >
<span ng-bind="config.item.key | limitTo: 20"></span>
<span ng-bind="config.item.key.length > 20 ? '...' :''"></span>
</td>
<td width="30%">
<td width="30%" >
<span ng-bind="config.item.value | limitTo: 20"></span>
<span ng-bind="config.item.value.length > 20 ? '...': ''"></span>
</td>
<td width="20%">
<td width="20%" >
<span ng-bind="config.item.comment | limitTo: 20"></span>
<span ng-bind="config.item.comment.length > 20 ?'...' : ''"></span>
</td>
<td width="10%" ng-bind="config.item.lastModifiedBy">
</td>
<td width="15%"
ng-bind="config.item.lastModifiedTime | date: 'yyyy-MM-dd HH:mm:ss'">
<td width="15%" ng-bind="config.item.lastModifiedTime | date: 'yyyy-MM-dd HH:mm:ss'">
</td>
</tr>
......@@ -349,14 +337,12 @@
<h4 class="modal-title">Commit changes</h4>
</div>
<div class="modal-body">
<textarea rows="4" class="form-control" style="width:570px;"
placeholder="Add an optional extended description..."
<textarea rows="4" class="form-control" style="width:570px;" placeholder="Add an optional extended description..."
ng-model="commitComment"></textarea>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
<button type="button" class="btn btn-primary" data-dismiss="modal"
ng-click="commitChange()">
<button type="button" class="btn btn-primary" data-dismiss="modal" ng-click="commitChange()">
提交
</button>
</div>
......@@ -365,7 +351,7 @@
</div>
<!--create release modal-->
<form class="modal fade form-horizontal" id="releaseModal" tabindex="-1" role="dialog" ng-submit="release()">
<div class="modal fade" id="releaseModal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header panel-primary">
......@@ -374,71 +360,22 @@
<h4 class="modal-title">发布</h4>
</div>
<div class="modal-body">
<div class="form-group">
<label class="col-sm-2 control-label">Release Name:</label>
<div class="col-sm-10">
<input type="text" class="form-control" ng-model="key" ng-required="true">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Key</label>
<div class="col-sm-10">
<input type="text" class="form-control" ng-model="key" ng-required="true">
</div>
</div>
<input type="text" class="form-control" placeholder="input release title"
ng-model="releaseTitle" ng-required="true">
ng-model="releaseTitle" required="required">
<textarea rows="4" class="form-control" style="margin-top: 15px;" ng-model="releaseComment"
placeholder="Add an optional extended description..."></textarea>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">关闭</button>
<button type="submit" class="btn btn-primary" >提交
<button type="submit" class="btn btn-primary" data-dismiss="modal" ng-click="release()">提交
</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<form class="modal fade form-horizontal" id="createItem" role="dialog" ng-controller="ItemCreateController" ng-submit="create()">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header panel-primary">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">&times;</span></button>
<h4 class="modal-title">添加配置项</h4>
</div>
<div class="modal-body">
<div class="form-group">
<label class="col-sm-2 control-label">Key</label>
<div class="col-sm-10">
<input type="text" class="form-control" ng-model="key" ng-required="true">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Value</label>
<div class="col-sm-10">
<input type="text" class="form-control" ng-model="value" ng-required="true">
</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">Comment</label>
<div class="col-sm-10">
<textarea class="form-control" ng-model="comment" rows="4"></textarea>
</div>
</div>
</div>
<div class="modal-footer">
<button type="submit" class="btn btn-primary">提交
</button>
</div>
</div>
</div>
</form>
</div>
</div>
......@@ -482,7 +419,6 @@
<!--controller-->
<script type="application/javascript" src="scripts/controller/app/ConfigNamespaceController.js"></script>
<script type="application/javascript" src="scripts/controller/app/ConfigBaseInfoController.js"></script>
<script type="application/javascript" src="scripts/controller/app/ItemCreateController.js"></script>
<script type="application/javascript" src="scripts/PageCommon.js"></script>
......
......@@ -141,7 +141,6 @@ application_module.controller("ConfigNamespaceController",
releaseNamespace.namespace.namespaceName, $scope.releaseTitle,
$scope.releaseComment).then(
function (result) {
$('#releaseModal').modal('hide');
toastr.success("发布成功");
//refresh all namespace items
$rootScope.refreshNamespaces();
......
application_module.controller("ItemCreateController",
['$rootScope', '$scope', '$location', 'toastr', 'AppService', 'AppUtil',
function ($rootScope, $scope, $location, toastr, AppService, AppUtil) {
$scope.create = function () {
console.log("xx");
};
$scope.key = 'xx';
}]);
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册