| | |
| | | <template> |
| | | <div>首頁 |
| | | <Ui-Carousel></Ui-Carousel> |
| | | <h5>預約顧問</h5> |
| | | <el-button @click="routerPush('/recommendConsultant')">嚴選配對</el-button> |
| | | <el-button @click="routerPush('/quickFilter')">快速篩選</el-button> |
| | | <h5>我的聯絡清單</h5> |
| | | <el-button @click="routerPush('/contactList/consultantList')">查看更多</el-button> |
| | | <el-button @click="routerPush('/communication/consult')">諮詢</el-button> |
| | | <h5>推薦顧問</h5> |
| | | <Ui-Swiper></Ui-Swiper> |
| | | </div> |
| | |
| | | }) |
| | | export default class MainComponent extends Vue { |
| | | routerPush(path: string) { |
| | | this.$router.push('/' + path); |
| | | this.$router.push(path); |
| | | } |
| | | } |
| | | |