From e76717783e872d8302840fec103563c9d9050d4e Mon Sep 17 00:00:00 2001 From: wu ming <569287825@qq.com> Date: Mon, 19 Sep 2016 11:21:41 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6-9.19?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- d.ts/configs/ts/codeSearch.d.ts | 8 +++++++ d.ts/configs/ts/regionalismCodeSearch.d.ts | 8 +++++++ d.ts/configs/ts/systemCodeSearch.d.ts | 8 +++++++ .../configs/html/regionalismCodeSearch.html | 23 +++++++++++++++++++ plugins/configs/html/systemCodeSearch.html | 21 +++++++++++++++++ plugins/configs/ts/regionalismCodeSearch.ts | 18 +++++++++++++++ plugins/configs/ts/systemCodeSearch.ts | 20 ++++++++++++++++ 7 files changed, 106 insertions(+) create mode 100644 d.ts/configs/ts/codeSearch.d.ts create mode 100644 d.ts/configs/ts/regionalismCodeSearch.d.ts create mode 100644 d.ts/configs/ts/systemCodeSearch.d.ts create mode 100644 plugins/configs/html/regionalismCodeSearch.html create mode 100644 plugins/configs/html/systemCodeSearch.html create mode 100644 plugins/configs/ts/regionalismCodeSearch.ts create mode 100644 plugins/configs/ts/systemCodeSearch.ts diff --git a/d.ts/configs/ts/codeSearch.d.ts b/d.ts/configs/ts/codeSearch.d.ts new file mode 100644 index 0000000..a90a739 --- /dev/null +++ b/d.ts/configs/ts/codeSearch.d.ts @@ -0,0 +1,8 @@ +/// +/// +/// +/// +/// +declare module Configs { + var CodeController: ng.IModule; +} diff --git a/d.ts/configs/ts/regionalismCodeSearch.d.ts b/d.ts/configs/ts/regionalismCodeSearch.d.ts new file mode 100644 index 0000000..712469c --- /dev/null +++ b/d.ts/configs/ts/regionalismCodeSearch.d.ts @@ -0,0 +1,8 @@ +/// +/// +/// +/// +/// +declare module Configs { + var RegionalismCodeController: ng.IModule; +} diff --git a/d.ts/configs/ts/systemCodeSearch.d.ts b/d.ts/configs/ts/systemCodeSearch.d.ts new file mode 100644 index 0000000..175496f --- /dev/null +++ b/d.ts/configs/ts/systemCodeSearch.d.ts @@ -0,0 +1,8 @@ +/// +/// +/// +/// +/// +declare module Configs { + var SystemCodeController: ng.IModule; +} diff --git a/plugins/configs/html/regionalismCodeSearch.html b/plugins/configs/html/regionalismCodeSearch.html new file mode 100644 index 0000000..5b2375e --- /dev/null +++ b/plugins/configs/html/regionalismCodeSearch.html @@ -0,0 +1,23 @@ +
+
+
+
+
+
+

当前没有可以查看的数据.

+
+
+ + + + + + +
+ {{row.code}} + {{row.cityName}} + {{row.districtName}}
+
+
+
+
diff --git a/plugins/configs/html/systemCodeSearch.html b/plugins/configs/html/systemCodeSearch.html new file mode 100644 index 0000000..e36ad88 --- /dev/null +++ b/plugins/configs/html/systemCodeSearch.html @@ -0,0 +1,21 @@ +
+
+
+
+
+
+

当前没有可以查看的数据.

+
+
+ + + + + +
+ {{row.code}} + {{row.systemName}}
+
+
+
+
diff --git a/plugins/configs/ts/regionalismCodeSearch.ts b/plugins/configs/ts/regionalismCodeSearch.ts new file mode 100644 index 0000000..4b438e5 --- /dev/null +++ b/plugins/configs/ts/regionalismCodeSearch.ts @@ -0,0 +1,18 @@ +/// +/// +/// +/// +/// +module Configs{ + + export var RegionalismCodeController = controller('RegionalismCodeController', ["$scope", "$templateCache", "$location", "$routeParams", "$http", "$timeout", 'ConfigsModel', 'NgTableParams', + ($scope, $templateCache:ng.ITemplateCacheService, $location, $routeParams, $http, $timeout, ConfigsModel, NgTableParams) =>{ + $scope.subTabConfig = createConfigHelperNavBar($scope, $location, $routeParams); + $scope.model = ConfigsModel; + + $scope.tableParams = new NgTableParams({count: 25}, { + counts: [25, 50, 100], + dataset: $scope.model.regionalismInfo + }); + }]); +} \ No newline at end of file diff --git a/plugins/configs/ts/systemCodeSearch.ts b/plugins/configs/ts/systemCodeSearch.ts new file mode 100644 index 0000000..a1303b5 --- /dev/null +++ b/plugins/configs/ts/systemCodeSearch.ts @@ -0,0 +1,20 @@ +/// +/// +/// +/// +/// +module Configs{ + + + export var SystemCodeController = controller('SystemCodeController', ["$scope", "$templateCache", "$location", "$routeParams", "$http", "$timeout", 'ConfigsModel', 'NgTableParams', + ($scope, $templateCache:ng.ITemplateCacheService, $location, $routeParams, $http, $timeout, ConfigsModel, NgTableParams) =>{ + $scope.subTabConfig = createConfigHelperNavBar($scope, $location, $routeParams); + + $scope.model = ConfigsModel; + + $scope.tableParams = new NgTableParams({count: 25}, { + counts: [25, 50, 100], + dataset: $scope.model.systemInfo + }); + }]); +} \ No newline at end of file