extractionRoot.vue 518 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <!-- 复诊开方 -->
  3. <view>
  4. <view style="padding: 20rpx;">
  5. <x-steps :current="3" :list="tionList"></x-steps>
  6. </view>
  7. <view></view>
  8. <x-bottomBtn title="立即购买" @buttonClick="buttonClick"></x-bottomBtn>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. data() {
  14. return {
  15. tionList: [{
  16. id: 1,
  17. title: '填写信息',
  18. }, {
  19. id: 2,
  20. title: '医生开方',
  21. }, {
  22. id: 3,
  23. title: '下单支付',
  24. }],
  25. }
  26. }
  27. }
  28. </script>
  29. <style lang="scss">
  30. </style>