diff --git a/hwe/ts/components/TopBackBar.vue b/hwe/ts/components/TopBackBar.vue index 6cb9ff2f..16587d75 100644 --- a/hwe/ts/components/TopBackBar.vue +++ b/hwe/ts/components/TopBackBar.vue @@ -2,8 +2,16 @@
+ {{ toggleSearch ? "검색 켜짐" : "검색 꺼짐" }}

{{ title }}

+
@@ -25,6 +33,17 @@ export default defineComponent({ } }, }, + data() { + return { + toggleSearch: this.searchable, + }; + }, + emits: ["update:searchable"], + watch: { + toggleSearch(val: boolean) { + this.$emit("update:searchable", val); + }, + }, props: { title: { type: String, @@ -35,6 +54,11 @@ export default defineComponent({ default: "normal", required: false, }, + searchable: { + type: Boolean, + default: undefined, + required: false, + }, }, }); @@ -55,6 +79,12 @@ export default defineComponent({ height: 24pt; } +.btn-toggle-zoom{ + position: absolute; + height: 24pt; + right: 0; +} + .title { text-align: center; line-height: 24pt; diff --git a/hwe/ts/jquery-toast.d.ts b/hwe/ts/jquery-toast.d.ts deleted file mode 100644 index bed348a5..00000000 --- a/hwe/ts/jquery-toast.d.ts +++ /dev/null @@ -1,15 +0,0 @@ -type JQueryBootstrapToast = { - container?: JQuery, - position?: 'top-right' | 'top-left' | 'top-center' | 'bottom-right' | 'bottom-left' | 'bottom-center', - title?: string, - subtitle?: string, - content?: string, - type?: 'info'|'success'|'warning'|'danger'|'error', - delay?: number, - img?: string, - pause_on_hover?: boolean, -} - -interface JQueryStatic { - toast(opt: JQueryBootstrapToast): void; -} \ No newline at end of file diff --git a/hwe/ts/processing/General/che_등용.vue b/hwe/ts/processing/General/che_등용.vue index 9a22ff35..b805ff20 100644 --- a/hwe/ts/processing/General/che_등용.vue +++ b/hwe/ts/processing/General/che_등용.vue @@ -1,5 +1,5 @@