| | |
| | | > |
| | | <UiAvatar |
| | | :size="200" |
| | | :fileName="item.img" |
| | | :agentNo="item.agentNo" |
| | | class="mx-auto" |
| | | @click.native="showAgentDetail(item.agentNo)" |
| | | ></UiAvatar> |
| | |
| | | |
| | | @Component |
| | | export default class QuickFilterConsultantList extends Vue { |
| | | @Prop() consultantList!: Consultant[]; |
| | | @Prop() |
| | | consultantList!: Consultant[]; |
| | | |
| | | isVisiblePopUp = false; |
| | | popUpTxt = '成功加入顧問清單'; |
| | | startPosition = 0; |
| | |
| | | hideReviews = hideReviews ; |
| | | |
| | | ////////////////////////////////////////////////////////////////// |
| | | |
| | | moveStart(event: TouchEvent) { |
| | | this.startPosition = event.changedTouches[0].clientX; |
| | | this.startYPosition = event.changedTouches[0].clientY; |
| | |
| | | } |
| | | |
| | | ////////////////////////////////////////////////////////////////// |
| | | |
| | | openPopUp(txt: string) { |
| | | this.popUpTxt = txt; |
| | | this.isVisiblePopUp = true; |