mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-28 16:54:16 +00:00
053ea0e874
added complete steps for user added empty get booking status
37 lines
909 B
Vue
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> |