OTA管理工具
This commit is contained in:
@@ -477,6 +477,11 @@ export const constantRouterMap = [
|
|||||||
name: 'TaskPlanList',
|
name: 'TaskPlanList',
|
||||||
component: () => import(/* webpackChunkName: "user" */ '@/views/projectManagement/projectStatusBoard/components/TaskPlanList')
|
component: () => import(/* webpackChunkName: "user" */ '@/views/projectManagement/projectStatusBoard/components/TaskPlanList')
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path:'/vehicleinformation',
|
||||||
|
name: 'vehicleinformation',
|
||||||
|
component: () => import(/* webpackChunkName: "user" */ '@/views/otamanagement/vehicleinformation/index')
|
||||||
|
},
|
||||||
// {
|
// {
|
||||||
// path: '/',
|
// path: '/',
|
||||||
// name: 'index',
|
// name: 'index',
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
<a-card :bordered="false">
|
<a-card :bordered="false">
|
||||||
<a-tabs v-model="tabActive" @change="callback">
|
<a-tabs v-model="tabActive" @change="callback">
|
||||||
<a-tab-pane :key="$t('toDoProcess')" :tab="$t('toDoProcess')">
|
<a-tab-pane :key="$t('toDoProcess')" :tab="$t('toDoProcess')">
|
||||||
<dealtWith v-if="tabActive == $t('toDoProcess')" ref="dealtWithRef"/>
|
<basicInformation v-if="tabActive == $t('toDoProcess')" ref="dealtWithRef"/>
|
||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
<a-tab-pane :key="$t('processDone')" :tab="$t('processDone')">
|
<a-tab-pane :key="$t('processDone')" :tab="$t('processDone')">
|
||||||
<doneList v-if="tabActive == $t('processDone')" ref="doneListRef"/>
|
<upgradeRequirements v-if="tabActive == $t('processDone')" ref="doneListRef"/>
|
||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
<a-tab-pane :key="$t('sentProcess')" :tab="$t('sentProcess')">
|
<a-tab-pane :key="$t('sentProcess')" :tab="$t('sentProcess')">
|
||||||
<SentList v-if="tabActive == $t('sentProcess')" ref="SentListRef"/>
|
<safetyPrecautions v-if="tabActive == $t('sentProcess')" ref="SentListRef"/>
|
||||||
</a-tab-pane>
|
</a-tab-pane>
|
||||||
</a-tabs>
|
</a-tabs>
|
||||||
</a-card>
|
</a-card>
|
||||||
@@ -16,16 +16,16 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getAction, postAction, deleteAction } from '@/api/manage'
|
import { getAction, postAction, deleteAction } from '@/api/manage'
|
||||||
import dealtWith from './components/dealtWith'
|
import basicInformation from './components/basicInformation'
|
||||||
import doneList from './components/doneList'
|
import upgradeRequirements from './components/upgradeRequirements'
|
||||||
import SentList from './components/SentList'
|
import safetyPrecautions from './components/safetyPrecautions'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'index',
|
name: 'index',
|
||||||
components: {
|
components: {
|
||||||
dealtWith,
|
basicInformation,
|
||||||
doneList,
|
upgradeRequirements,
|
||||||
SentList,
|
safetyPrecautions,
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|||||||
Reference in New Issue
Block a user