12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <view class="creatingSituations">
- <tm-steps :options="options" :active="active"></tm-steps>
- </view>
- </template>
- <script>
- import theme from "./components/theme.vue";
- import condition from "./components/condition.vue";
-
- export default {
- data() {
- return {
- options: [
- {title: '主题', component: theme},
- {title: '条件', component: condition},
- {title: '查核组'},
- {title: '地图'},
- {title: '计划'},
- {title: '配置'},
- ],
- active: 1
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="less">
- .creatingSituations {
- width: 100%;
- height: 100%;
- background-color: #F5F6FA;
- }
- </style>
|