mirror of
https://github.com/jekip/naive-ui-admin.git
synced 2026-02-12 01:02:27 +08:00
55 lines
1.5 KiB
Vue
55 lines
1.5 KiB
Vue
<template>
|
||
<div>
|
||
<div class="n-layout-page-header">
|
||
<n-card :bordered="false" title="分步表单">
|
||
将一个冗长或用户不熟悉的表单任务分成多个步骤,指导用户完成。
|
||
</n-card>
|
||
</div>
|
||
<n-card :bordered="false" class="mt-4 proCard">
|
||
<n-space vertical class="steps" justify="center">
|
||
<n-steps :current="currentTab" :status="currentStatus">
|
||
<n-step title="填写转账信息" description="确保填写正确" />
|
||
<n-step title="确认转账信息" description="确认转账信息" />
|
||
<n-step title="完成转账" description="恭喜您,转账成功" />
|
||
</n-steps>
|
||
<step1 v-if="currentTab === 1" @nextStep="nextStep" />
|
||
<step2 v-if="currentTab === 2" @nextStep="nextStep" @prevStep="prevStep" />
|
||
<step3 v-if="currentTab === 3" @prevStep="prevStep" @finish="finish" />
|
||
</n-space>
|
||
</n-card>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { defineComponent, ref } from 'vue';
|
||
import step1 from './Step1.vue';
|
||
import step2 from './Step2.vue';
|
||
import step3 from './Step3.vue';
|
||
|
||
const currentTab = ref(1);
|
||
const currentStatus = ref('process');
|
||
|
||
function nextStep() {
|
||
if (currentTab.value < 3) {
|
||
currentTab.value += 1;
|
||
}
|
||
}
|
||
|
||
function prevStep() {
|
||
if (currentTab.value > 1) {
|
||
currentTab.value -= 1;
|
||
}
|
||
}
|
||
|
||
function finish() {
|
||
currentTab.value = 1;
|
||
}
|
||
</script>
|
||
|
||
<style lang="less" scoped>
|
||
.steps {
|
||
max-width: 750px;
|
||
margin: 16px auto;
|
||
}
|
||
</style>
|