forked from opentiny/tiny-vue
66 lines
1.1 KiB
Vue
66 lines
1.1 KiB
Vue
<template>
|
|
<div class="demo-steps-click">
|
|
<tiny-steps :data="stepsData" :active="defaultActive" @click="normalClick"></tiny-steps>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Steps, Modal } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinySteps: Steps
|
|
},
|
|
data() {
|
|
return {
|
|
stepsData: [
|
|
{
|
|
name: 'Basic Info',
|
|
count: 3,
|
|
status: 'done'
|
|
},
|
|
{
|
|
name: 'BOQ Info',
|
|
count: 0,
|
|
status: 'done'
|
|
},
|
|
{
|
|
name: 'Involved Parties',
|
|
count: 10,
|
|
status: 'doing'
|
|
},
|
|
{
|
|
name: 'Billing',
|
|
count: 0,
|
|
status: 'done'
|
|
}
|
|
],
|
|
defaultActive: 1
|
|
}
|
|
},
|
|
methods: {
|
|
normalClick(index, node) {
|
|
this.defaultActive = index
|
|
|
|
Modal.message({ message: `节点 index: ${index}; 节点信息: ${JSON.stringify(node)}`, status: 'info' })
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.demo-steps-click {
|
|
padding: 20px;
|
|
max-width: 50%;
|
|
min-width: 700px;
|
|
}
|
|
|
|
.demo-steps-click > div:not(:last-child) {
|
|
margin: 0 0 20px 0;
|
|
}
|
|
|
|
span {
|
|
line-height: 1.5;
|
|
}
|
|
</style>
|