From b0733e169ddcdf67e81f70dcf7f4dc948e85ff19 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期五, 21 一月 2022 22:20:12 +0800 Subject: [PATCH] fixed#134599 修正 [ 顧問管理流程 ] 結案狀態的預約單 : 在結案明細中,點擊「發送滿意度通知」沒有反映。 --- 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