From 2778858705602d729f28c7060bb36f031915afb3 Mon Sep 17 00:00:00 2001 From: carlossa Date: Tue, 30 May 2023 10:27:49 +0200 Subject: [PATCH] refs #5334 search-panel --- modules/worker/front/department/index.js | 2 +- .../front/department/search-panel/index.html | 22 +++++++++++++++++++ .../front/department/search-panel/index.js | 7 ++++++ 3 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 modules/worker/front/department/search-panel/index.html create mode 100644 modules/worker/front/department/search-panel/index.js diff --git a/modules/worker/front/department/index.js b/modules/worker/front/department/index.js index 2553e2865..9becdd5e5 100644 --- a/modules/worker/front/department/index.js +++ b/modules/worker/front/department/index.js @@ -5,4 +5,4 @@ import './card'; import './descriptor'; import './basic-data'; // import './create'; -// import './search-panel'; +import './search-panel'; diff --git a/modules/worker/front/department/search-panel/index.html b/modules/worker/front/department/search-panel/index.html new file mode 100644 index 000000000..4aa762900 --- /dev/null +++ b/modules/worker/front/department/search-panel/index.html @@ -0,0 +1,22 @@ +
+
+ + + + + + + + + + + +
+
\ No newline at end of file diff --git a/modules/worker/front/department/search-panel/index.js b/modules/worker/front/department/search-panel/index.js new file mode 100644 index 000000000..95a6a55ca --- /dev/null +++ b/modules/worker/front/department/search-panel/index.js @@ -0,0 +1,7 @@ +import ngModule from '../../module'; +import SearchPanel from 'core/components/searchbar/search-panel'; + +ngModule.component('vnWorkerDepartmentSearchPanel', { + template: require('./index.html'), + controller: SearchPanel +});