| 1234567891011121314151617181920212223242526272829303132 |
- <template>
- <!-- 复诊开方 -->
- <view>
- <view style="padding: 20rpx;">
- <x-steps :current="3" :list="tionList"></x-steps>
- </view>
- <view></view>
- <x-bottomBtn title="立即购买" @buttonClick="buttonClick"></x-bottomBtn>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- tionList: [{
- id: 1,
- title: '填写信息',
- }, {
- id: 2,
- title: '医生开方',
- }, {
- id: 3,
- title: '下单支付',
- }],
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|