creatingSituations.vue 666 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view class="creatingSituations">
  3. <tm-steps :options="options" :active="active"></tm-steps>
  4. </view>
  5. </template>
  6. <script>
  7. import theme from "./components/theme.vue";
  8. import condition from "./components/condition.vue";
  9. export default {
  10. data() {
  11. return {
  12. options: [
  13. {title: '主题', component: theme},
  14. {title: '条件', component: condition},
  15. {title: '查核组'},
  16. {title: '地图'},
  17. {title: '计划'},
  18. {title: '配置'},
  19. ],
  20. active: 1
  21. }
  22. },
  23. methods: {
  24. }
  25. }
  26. </script>
  27. <style lang="less">
  28. .creatingSituations {
  29. width: 100%;
  30. height: 100%;
  31. background-color: #F5F6FA;
  32. }
  33. </style>