| | |
| | | </el-dialog> |
| | | </div> |
| | | <div style="width: 100%;height: 100%;" v-if="active >0"> |
| | | <Add :active="active" :currentId="currentId" /> |
| | | <Add :active="active" :currentId="currentId" v-if="active<4" /> |
| | | <fiberOpticConfig :currentId="currentId" v-if="active==4" /> |
| | | </div> |
| | | </div> |
| | | </template> |
| | |
| | | <script> |
| | | import ValueTable from '../tool/value-table.vue' |
| | | import Add from '../do/b1-ins-order/add.vue' |
| | | import fiberOpticConfig from '../do/b1-ins-order/fiberoptic-config.vue' |
| | | export default { |
| | | components: { |
| | | ValueTable, |
| | | Add |
| | | Add, |
| | | fiberOpticConfig |
| | | }, |
| | | data() { |
| | | return { |
| | |
| | | }, |
| | | ], |
| | | tabIndex: 0, |
| | | active: 0, //1:下单,2:查看,3:审核 |
| | | active: 4, //1:下单,2:查看,3:审核,4:光纤配置,默认为0 |
| | | currentId: null |
| | | } |
| | | }, |