From 5e5dd294d6f7b90940ca9e117c4254ab413b4ad8 Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期二, 04 一月 2022 11:31:51 +0800 Subject: [PATCH] update TODO#133355 顧問-增加註記客戶備忘 --- PAMapp/components/loading.vue | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/PAMapp/components/loading.vue b/PAMapp/components/loading.vue index f4099e8..dc4321b 100644 --- a/PAMapp/components/loading.vue +++ b/PAMapp/components/loading.vue @@ -17,16 +17,23 @@ } }) export default class Loading extends Vue { + isLoading = false; + defaultOptions = { animationData: require('@/assets/lottie/loading.json') }; + + ////////////////////////////////////////////////////////////////////// + start(): void { this.isLoading = true; } + finish(): void { this.isLoading = false; } + } </script> -- Gitblit v1.8.0