From 4df02e3b839a30ff2c68243820b48734f585baa1 Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期二, 01 三月 2022 14:29:49 +0800 Subject: [PATCH] [update] [todo 136030] 調整滿意度篩選的機制,改由指定分數扣0.5分作為查詢 --- PAMapp/components/Client/ClientList.vue | 11 ++++++++--- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git a/PAMapp/components/Client/ClientList.vue b/PAMapp/components/Client/ClientList.vue index 2f8285c..820c043 100644 --- a/PAMapp/components/Client/ClientList.vue +++ b/PAMapp/components/Client/ClientList.vue @@ -28,9 +28,14 @@ ////////////////////////////////////////////////////////////////////// get noDataPlaceholder(): string { - return this.title === 'reservedList' - ? '����撌脤��恥�' - : '����撌脰蝯∪恥�'; + let noDataWording = '����撌脩�����'; + if (this.title === 'contactedList') { + noDataWording = '����蝝赤銝剔���'; + } + if (this.title === 'reservedList') { + noDataWording = '������蝯∠���'; + } + return noDataWording; } } </script> -- Gitblit v1.8.0