| | |
| | | <span>顧問清單</span> |
| | | </el-button> |
| | | <el-button |
| | | @click="$router.push('/communication/myDemand')" |
| | | @click="reserveCommunication" |
| | | type="primary" |
| | | >進行預約</el-button> |
| | | </div> |
| | |
| | | <script lang="ts"> |
| | | import { ElCarousel } from 'element-ui/types/carousel'; |
| | | import { Vue, Component } from 'vue-property-decorator'; |
| | | import { isLogin } from '~/assets/ts/auth'; |
| | | import { isMobileDevice } from '~/assets/ts/device'; |
| | | |
| | | @Component |
| | |
| | | : this.isVisibleDialog = true; |
| | | } |
| | | |
| | | reserveCommunication() { |
| | | isLogin() ? this.$router.push('/questionnaire') : this.$router.push('/login'); |
| | | } |
| | | |
| | | |
| | | } |
| | | </script> |
| | | |