From 4a8e5d76ff89406d26e36df8538efacb24e16add Mon Sep 17 00:00:00 2001 From: Jack <jack.su@pollex.com.tw> Date: 星期三, 10 十一月 2021 15:14:38 +0800 Subject: [PATCH] Merge branch 'master' of ssh://192.168.0.10:29418/pcalife/PAM --- PAMapp/components/BackActionBar.vue | 38 ++++++++++++++++++++++++++++++++++++-- 1 files changed, 36 insertions(+), 2 deletions(-) diff --git a/PAMapp/components/BackActionBar.vue b/PAMapp/components/BackActionBar.vue index 3b20418..f527239 100644 --- a/PAMapp/components/BackActionBar.vue +++ b/PAMapp/components/BackActionBar.vue @@ -1,3 +1,37 @@ <template> - <div>backActionBar</div> -</template> \ No newline at end of file + <nav class="pam-back-action-bar"> + <a @click="$router.push('/')"> + <i class="icon-left"></i>{{ label }} + </a> + </nav> +</template> + +<script lang="ts"> +import { Vue, Component } from 'vue-property-decorator'; + +@Component +export default class UiCarousel extends Vue { + + label = 'back-action-label-text'; + +} +</script> + +<style lang="scss" scoped> +.pam-back-action-bar { + height: 53px; + border: 1px solid #CCCCCC; + display: flex; + align-items: center; + i { + font-size: 20px; + padding-right: 14px; + } + a { + cursor: pointer; + font-size: 24px; + font-weight: bold; + padding: 20px; + } +} +</style> -- Gitblit v1.8.0