1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| <template>
| <BaseProdProcess
| v-model:active="active"
| @onStep1="onStep1"
| @onStep2="onStep2"
| @onStep3="onStep3"
| :loading="loading"
| >
| </BaseProdProcess>
| </template>
| <script setup>
| import { ref } from 'vue';
| import BaseProdProcess from '@/views/fysp/data-product/components/BaseProdProcess.vue';
| import dataprodmiddleApi from '@/api/fysp/dataprodmiddleApi.js';
| import { conversionFromTable } from '@/utils/excel';
| import { useProdStepChange } from '@/views/fysp/data-product/prod-step-change.js';
|
| const { active, changeActive } = useProdStepChange();
| const loading = ref(false);
|
| function onStep1(opt) {}
|
| function onStep2() {
| changeActive();
| }
|
| function onStep3(val) {}
| </script>
|
|