From d519db3c364ef2c18aa0fe520f2c2e8ab88e9993 Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期一, 18 十月 2021 17:45:10 +0800 Subject: [PATCH] TODO#128338/128335 建立流程初稿 UI 元件結構 - Layouts/Pages --- PAMapp/pages/quickFilter/index.vue | 3 + PAMapp/layouts/default.vue | 1 PAMapp/pages/login/index.vue | 12 ++++++ PAMapp/pages/recommendConsultant/result.vue | 3 + PAMapp/pages/communication/myDemand.vue | 3 + PAMapp/pages/accountSetting/index.vue | 13 ++++++ PAMapp/pages/record/index.vue | 3 + PAMapp/pages/record/contactRecord.vue | 3 + PAMapp/pages/agentInfo/index.vue | 3 + PAMapp/pages/notification/detail.vue | 3 + PAMapp/components/BackActionBar.vue | 3 + PAMapp/pages/recommendConsultant/criteria.vue | 3 + PAMapp/components/NavBar.vue | 3 + PAMapp/pages/index.vue | 7 ++- PAMapp/pages/recommendConsultant/index.vue | 3 + PAMapp/components/Footer.vue | 3 + PAMapp/pages/communication/consult.vue | 3 + PAMapp/pages/contactList/index.vue | 3 + PAMapp/pages/communication/index.vue | 3 + PAMapp/pages/notification/index.vue | 3 + PAMapp/layouts/home.vue | 7 +++ PAMapp/pages/record/reviews.vue | 3 + 22 files changed, 89 insertions(+), 2 deletions(-) diff --git a/PAMapp/components/BackActionBar.vue b/PAMapp/components/BackActionBar.vue new file mode 100644 index 0000000..3b20418 --- /dev/null +++ b/PAMapp/components/BackActionBar.vue @@ -0,0 +1,3 @@ +<template> + <div>backActionBar</div> +</template> \ No newline at end of file diff --git a/PAMapp/components/Footer.vue b/PAMapp/components/Footer.vue new file mode 100644 index 0000000..1351098 --- /dev/null +++ b/PAMapp/components/Footer.vue @@ -0,0 +1,3 @@ +<template> + <div>Footer</div> +</template> \ No newline at end of file diff --git a/PAMapp/components/NavBar.vue b/PAMapp/components/NavBar.vue new file mode 100644 index 0000000..1ba5353 --- /dev/null +++ b/PAMapp/components/NavBar.vue @@ -0,0 +1,3 @@ +<template> + <div>navbar</div> +</template> \ No newline at end of file diff --git a/PAMapp/layouts/default.vue b/PAMapp/layouts/default.vue index d9beab5..cc9dcfa 100644 --- a/PAMapp/layouts/default.vue +++ b/PAMapp/layouts/default.vue @@ -1,5 +1,6 @@ <template> <div> + <BackActionBar></BackActionBar> <Nuxt></Nuxt> </div> </template> \ No newline at end of file diff --git a/PAMapp/layouts/home.vue b/PAMapp/layouts/home.vue new file mode 100644 index 0000000..861406b --- /dev/null +++ b/PAMapp/layouts/home.vue @@ -0,0 +1,7 @@ +<template> + <div> + <NavBar></NavBar> + <Nuxt></Nuxt> + <Footer></Footer> + </div> +</template> \ No newline at end of file diff --git a/PAMapp/pages/accountSetting/index.vue b/PAMapp/pages/accountSetting/index.vue new file mode 100644 index 0000000..d187ff7 --- /dev/null +++ b/PAMapp/pages/accountSetting/index.vue @@ -0,0 +1,13 @@ +<template> + <div>accountSetting-�犖撣唾�身摰�</div> +</template> + +<script> +export default { + +} +</script> + +<style lang=""> + +</style> \ No newline at end of file diff --git a/PAMapp/pages/agentInfo/index.vue b/PAMapp/pages/agentInfo/index.vue new file mode 100644 index 0000000..7166e53 --- /dev/null +++ b/PAMapp/pages/agentInfo/index.vue @@ -0,0 +1,3 @@ +<template> + <div>agentInfo-璆剖�閰喟敦鞈��</div> +</template> \ No newline at end of file diff --git a/PAMapp/pages/communication/consult.vue b/PAMapp/pages/communication/consult.vue new file mode 100644 index 0000000..cf6b5df --- /dev/null +++ b/PAMapp/pages/communication/consult.vue @@ -0,0 +1,3 @@ +<template> + <div>consult-���隢株岷</div> +</template> \ No newline at end of file diff --git a/PAMapp/pages/communication/index.vue b/PAMapp/pages/communication/index.vue new file mode 100644 index 0000000..0bb91d5 --- /dev/null +++ b/PAMapp/pages/communication/index.vue @@ -0,0 +1,3 @@ +<template> + <div>communication</div> +</template> \ No newline at end of file diff --git a/PAMapp/pages/communication/myDemand.vue b/PAMapp/pages/communication/myDemand.vue new file mode 100644 index 0000000..37e24df --- /dev/null +++ b/PAMapp/pages/communication/myDemand.vue @@ -0,0 +1,3 @@ +<template> + <div>myDemand-隢株岷��撓���鞈��</div> +</template> \ No newline at end of file diff --git a/PAMapp/pages/contactList/index.vue b/PAMapp/pages/contactList/index.vue new file mode 100644 index 0000000..e702dd3 --- /dev/null +++ b/PAMapp/pages/contactList/index.vue @@ -0,0 +1,3 @@ +<template> + <div>contactList-�蝯⊥�</div> +</template> \ No newline at end of file diff --git a/PAMapp/pages/index.vue b/PAMapp/pages/index.vue index ac0141f..094902d 100644 --- a/PAMapp/pages/index.vue +++ b/PAMapp/pages/index.vue @@ -1,12 +1,15 @@ <template> -<div>PAMapp</div> + <div>PAMapp-Home</div> </template> <script lang="ts"> import { Vue, Component } from 'vue-property-decorator' -@Component +@Component({ + layout: 'home' +}) export default class MainComponent extends Vue { } + </script> diff --git a/PAMapp/pages/login/index.vue b/PAMapp/pages/login/index.vue new file mode 100644 index 0000000..c483bdd --- /dev/null +++ b/PAMapp/pages/login/index.vue @@ -0,0 +1,12 @@ +<template> + <div>login</div> +</template> + +<script lang="ts"> +import { Vue, Component } from 'vue-property-decorator'; + +@Component +export default class Login extends Vue { + +} +</script> \ No newline at end of file diff --git a/PAMapp/pages/notification/detail.vue b/PAMapp/pages/notification/detail.vue new file mode 100644 index 0000000..2983791 --- /dev/null +++ b/PAMapp/pages/notification/detail.vue @@ -0,0 +1,3 @@ +<template> + <div>notification detail-�蝝啁�</div> +</template> \ No newline at end of file diff --git a/PAMapp/pages/notification/index.vue b/PAMapp/pages/notification/index.vue new file mode 100644 index 0000000..689209c --- /dev/null +++ b/PAMapp/pages/notification/index.vue @@ -0,0 +1,3 @@ +<template> + <div>notification-���</div> +</template> \ No newline at end of file diff --git a/PAMapp/pages/quickFilter/index.vue b/PAMapp/pages/quickFilter/index.vue new file mode 100644 index 0000000..24a38fa --- /dev/null +++ b/PAMapp/pages/quickFilter/index.vue @@ -0,0 +1,3 @@ +<template> + <div>quickFilter-敹恍�祟�</div> +</template> \ No newline at end of file diff --git a/PAMapp/pages/recommendConsultant/criteria.vue b/PAMapp/pages/recommendConsultant/criteria.vue new file mode 100644 index 0000000..a84e491 --- /dev/null +++ b/PAMapp/pages/recommendConsultant/criteria.vue @@ -0,0 +1,3 @@ +<template> + <div>criteria-������(����)</div> +</template> \ No newline at end of file diff --git a/PAMapp/pages/recommendConsultant/index.vue b/PAMapp/pages/recommendConsultant/index.vue new file mode 100644 index 0000000..4179263 --- /dev/null +++ b/PAMapp/pages/recommendConsultant/index.vue @@ -0,0 +1,3 @@ +<template> + <div>recommendConsultant</div> +</template> diff --git a/PAMapp/pages/recommendConsultant/result.vue b/PAMapp/pages/recommendConsultant/result.vue new file mode 100644 index 0000000..172d88f --- /dev/null +++ b/PAMapp/pages/recommendConsultant/result.vue @@ -0,0 +1,3 @@ +<template> + <div>result-������(蝯��)</div> +</template> \ No newline at end of file diff --git a/PAMapp/pages/record/contactRecord.vue b/PAMapp/pages/record/contactRecord.vue new file mode 100644 index 0000000..aa711ce --- /dev/null +++ b/PAMapp/pages/record/contactRecord.vue @@ -0,0 +1,3 @@ +<template> + <div>contactRecord-�������(�蝯∠����)</div> +</template> \ No newline at end of file diff --git a/PAMapp/pages/record/index.vue b/PAMapp/pages/record/index.vue new file mode 100644 index 0000000..33da932 --- /dev/null +++ b/PAMapp/pages/record/index.vue @@ -0,0 +1,3 @@ +<template> + <div>record-�������</div> +</template> \ No newline at end of file diff --git a/PAMapp/pages/record/reviews.vue b/PAMapp/pages/record/reviews.vue new file mode 100644 index 0000000..3fe7530 --- /dev/null +++ b/PAMapp/pages/record/reviews.vue @@ -0,0 +1,3 @@ +<template> + <div>reviews-�������(皛踵�漲蝝����)</div> +</template> \ No newline at end of file -- Gitblit v1.8.0