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