From 4ffc0db28966ad106ded6ff0058c2dad7850bf78 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期五, 12 十一月 2021 16:19:03 +0800 Subject: [PATCH] TODO#130024 [顧問細節] API 串接 --- PAMapp/components/QuickFilter/QuickFilterConsultantList.vue | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/PAMapp/components/QuickFilter/QuickFilterConsultantList.vue b/PAMapp/components/QuickFilter/QuickFilterConsultantList.vue index cebf8c7..9658e72 100644 --- a/PAMapp/components/QuickFilter/QuickFilterConsultantList.vue +++ b/PAMapp/components/QuickFilter/QuickFilterConsultantList.vue @@ -20,7 +20,7 @@ <el-avatar :size="200" class="mx-auto cursor--pointer" - @click="$router.push('/agentInfo')" + @click.native="showAgentDetail(item.agentNo)" :src="item.img" /> <div class="mdTxt mt-30 mb-30 text--center">{{item.name}}(隡舀��蝬�鈭�)</div> @@ -112,6 +112,9 @@ this.popUpTxt = txt; this.isVisiblePopUp = true; } + showAgentDetail(agentNo: string): void { + this.$router.push(`/agentInfo/${agentNo}`); + } } -- Gitblit v1.8.0