tiny-vue_version0/examples/sites/demos/pc/app/time-line/basic-usage.vue

33 lines
731 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<tiny-time-line :data="data" :active="active" @click="click"></tiny-time-line>
</template>
<script>
import { TimeLine, Modal } from '@opentiny/vue'
export default {
components: {
TinyTimeLine: TimeLine
},
data() {
return {
active: 1,
data: [
{ name: '已下单', time: '2019-11-11 00:01:30' },
{ name: '运输中', time: '2019-11-12 14:20:15' },
{ name: '已签收', time: '2019-11-14 20:45:50' }
]
}
},
methods: {
click(index, node) {
this.active = index
Modal.message({
message: 'click 事件,当前 index' + index + ' 节点信息:' + node.name + ',' + node.time,
status: 'info'
})
}
}
}
</script>