parent
cb23096532
commit
a4bcf1da53
@ -0,0 +1,50 @@
|
|||||||
|
<script setup>
|
||||||
|
import liff from "@line/liff";
|
||||||
|
|
||||||
|
import { showToast,showSuccessToast } from 'vant';
|
||||||
|
|
||||||
|
import { onMounted, reactive, ref, toRefs, computed, watch } from 'vue'
|
||||||
|
|
||||||
|
|
||||||
|
const setShowPicker = ref(false);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="member page">
|
||||||
|
<van-nav-bar
|
||||||
|
class="bg-skyBlue py-1"
|
||||||
|
left-arrow
|
||||||
|
right-arrow
|
||||||
|
@click-left="$router.push('/')"
|
||||||
|
@click-right="setShowPicker = true"
|
||||||
|
>
|
||||||
|
<template #title>
|
||||||
|
<h5 class="text-white mb-1"><strong>通訊錄</strong></h5>
|
||||||
|
</template>
|
||||||
|
<template #left>
|
||||||
|
<h4><i class="fa-solid fa-angle-left text-white" :style="{opacity:0.5}"></i></h4>
|
||||||
|
</template>
|
||||||
|
<template #right>
|
||||||
|
<h4><i class="fa-solid fa-sliders text-white" :style="{opacity:0.5}"></i></h4>
|
||||||
|
</template>
|
||||||
|
</van-nav-bar>
|
||||||
|
|
||||||
|
<van-popup v-model:show="setShowPicker" position="bottom">
|
||||||
|
<van-picker
|
||||||
|
:columns="setColumns"
|
||||||
|
@confirm="setConfirm"
|
||||||
|
@cancel="setShowPicker = false"
|
||||||
|
/>
|
||||||
|
</van-popup>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
Loading…
Reference in new issue