feat: 页面跳转逻辑&语音输入界面

This commit is contained in:
zhangyh
2025-10-16 13:34:30 +08:00
parent 3141fc3640
commit cb63e15aec
7 changed files with 306 additions and 22 deletions

View File

@@ -17,6 +17,9 @@
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { useRouter } from 'vue-router'
const router = useRouter()
const options = ref<any[]>([
{ label: 'Female', value: '1' },
{ label: 'Male', value: '0' }
@@ -24,6 +27,7 @@ const options = ref<any[]>([
const handleSelect = (value: string) => {
console.log(value)
router.push('/stylist/dressfor')
}
</script>
<style lang="less" scoped>