From c0946457d311eb1ced63f7dcbcf4bc3f0e33c55a Mon Sep 17 00:00:00 2001
From: Tomas <tomasysh@gmail.com>
Date: 星期三, 19 一月 2022 16:43:01 +0800
Subject: [PATCH] fixed: BackActionBar - 預約單結案後顯示的 lable 應為'結案明細'

---
 PAMapp/components/singleSelectBtn.vue |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/PAMapp/components/singleSelectBtn.vue b/PAMapp/components/singleSelectBtn.vue
index 7de7b0c..b7a4a55 100644
--- a/PAMapp/components/singleSelectBtn.vue
+++ b/PAMapp/components/singleSelectBtn.vue
@@ -20,9 +20,12 @@
 
 <script lang="ts">
   import { Component, Prop, PropSync, Vue } from "nuxt-property-decorator";
+  import { OptionBtnDto } from "~/shared/models/optionBtnDto.model";
   import * as _ from 'lodash';
+
   @Component
   export default class SingleSelectBtn extends Vue {
+
     @PropSync('singleSelected', { default: '' })
     syncSingleSelected!: string | number;
 
@@ -34,10 +37,5 @@
       // 銝餉�圾瘙箸����甈∟��嚗暺������
       this.syncSingleSelected = _.isEqual(this.syncSingleSelected, value) ? "" : value;
     }
-  }
-  export interface OptionBtnDto {
-    title: string,
-    subTitle?: string,
-    label: string | number,
   }
 </script>

--
Gitblit v1.8.0