Files
exchange/resources/assets/js/components/ProgressTrack.vue
T
Jack Goh 053ea0e874 added transfer amount and exchange amount to upload user bank slip
added complete steps for user
added empty get booking status
2018-06-14 15:32:24 +08:00

37 lines
909 B
Vue

<template>
<el-row>
<el-steps :active="1" alignCenter="true" process-status="wait" finish-status="success">
<el-step title="Booking"></el-step>
<el-step title="Wating Payment"></el-step>
<el-step title="Order Confirmation"></el-step>
<el-step title="Processing Transfer"></el-step>
<el-step title="Transfer Complete"></el-step>
<el-step title="Order Complete"></el-step>
</el-steps>
</el-row>
</template>
<style type="text/css">
/* .el-row {
margin: 20px 0;
}
.el-steps {
padding-top: 70px;
}
.el-step .el-step__main {
transform: translateY(-70px);
}
.el-step__title.is-wait {
font-size: 10pt;
}
.el-step__title {
line-height: 1.4;
}
.el-step .is-success .el-step__line {
background-color: #67c23a;
} */
</style>