PAMapp/components/BackActionBar.vue
@@ -1,3 +1,5 @@ <template> <div>backActionBar</div> <div> <el-button @click="$router.go(-1)">回前頁</el-button> </div> </template> PAMapp/components/NavBar.vue
@@ -1,3 +1,9 @@ <template> <div>navbar</div> <div>Header <el-button @click="$router.push('/login')">登入</el-button> <el-button @click="$router.push('/notification')">通知功能</el-button> <el-button @click="$router.push('/accountSetting')">個人帳號設定</el-button> <el-button @click="$router.push('/record/contactRecord')">查看紀錄</el-button> <el-button @click="$router.push('/contactList/consultantList')">查看聯絡清單</el-button> </div> </template> PAMapp/pages/accountSetting/index.vue
@@ -1,5 +1,5 @@ <template> <div>accountSetting-個人帳號設定</div> <div>個人帳號設定</div> </template> <script> PAMapp/pages/agentInfo/index.vue
@@ -1,3 +1,3 @@ <template> <div>agentInfo-業務員詳細資訊</div> <div>業務員詳細資訊</div> </template> PAMapp/pages/communication/consult.vue
@@ -1,3 +1,3 @@ <template> <div>consult-留言諮詢</div> <div>諮詢</div> </template> PAMapp/pages/communication/index.vue
@@ -1,3 +1,3 @@ <template> <div>communication</div> <div>留言諮詢</div> </template> PAMapp/pages/communication/myDemand.vue
@@ -1,3 +1,3 @@ <template> <div>myDemand-諮詢前輸入基本資料</div> <div>諮詢前輸入基本資料</div> </template> PAMapp/pages/index.vue
@@ -1,6 +1,12 @@ <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> @@ -14,7 +20,7 @@ }) export default class MainComponent extends Vue { routerPush(path: string) { this.$router.push('/' + path); this.$router.push(path); } } PAMapp/pages/login/index.vue
@@ -1,5 +1,5 @@ <template> <div>login</div> <div>登入</div> </template> <script lang="ts"> PAMapp/pages/notification/detail.vue
@@ -1,3 +1,3 @@ <template> <div>notification detail-通知細節</div> <div>通知功能-通知細節</div> </template> PAMapp/pages/notification/index.vue
@@ -1,3 +1,5 @@ <template> <div>notification-通知功能</div> <div>通知功能 <el-button @click="$router.push('/notification/detail')">通知細節</el-button> </div> </template> PAMapp/pages/recommendConsultant/criteria.vue
@@ -1,3 +1,3 @@ <template> <div>criteria-嚴選配對(問項)</div> <div>嚴選配對(問項)</div> </template> PAMapp/pages/recommendConsultant/index.vue
@@ -1,3 +1,5 @@ <template> <div>recommendConsultant</div> <div>嚴選配對-問項 <el-button @click="$router.push('recommendConsultant/result')">馬上配對</el-button> </div> </template> PAMapp/pages/recommendConsultant/result.vue
@@ -1,3 +1,3 @@ <template> <div>result-嚴選配對(結果)</div> <div>嚴選顧問推薦</div> </template> PAMapp/pages/record/contactRecord.vue
@@ -1,3 +1,3 @@ <template> <div>contactRecord-查看紀錄(聯絡紀錄)</div> <div>查看紀錄(回應紀錄)</div> </template> PAMapp/pages/record/reviews.vue
@@ -1,3 +1,3 @@ <template> <div>reviews-查看紀錄(滿意度紀錄)</div> <div>查看紀錄(滿意度紀錄)</div> </template>