Commit bedfa32b by wangweidong

资质管理内容 检测依据管理

parent 3bca5f0d
...@@ -16,7 +16,7 @@ module.exports = { ...@@ -16,7 +16,7 @@ module.exports = {
** Headers of the page ** Headers of the page
*/ */
head: { head: {
title: '鲁丽钢铁', title: '计量检定LIMS',
meta: [ meta: [
{ charset: 'utf-8' }, { charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }, { name: 'viewport', content: 'width=device-width, initial-scale=1' },
......
{ {
"name": "nuxt-demo", "name": "nuxt-demo",
"version": "1.0.0", "version": "1.0.0",
"description": "鲁丽钢铁", "description": "计量检定LIMS",
"author": "jiangwenwen", "author": "wwd",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server", "dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
......
<template> <template>
<div>
</div>
</template> </template>
<script> <script>
......
<template> <template>
<div>
</div>
</template> </template>
<script> <script>
......
...@@ -4,10 +4,32 @@ ...@@ -4,10 +4,32 @@
// 工作台 // 工作台
import workbench from '../pages/workbench/workbench' import workbench from '../pages/workbench/workbench'
/**
*计量检定平台路由
*/
import MeterAptitudeManage from '../pages/meter-aptitude/manage/MeterAptitudeManage'
import MeterAptitudeStandard from '../pages/meter-aptitude/standard/MeterAptitudeStandard'
import Blank from '~/pages/blank'
export default [ export default [
{ {
path: 'workbench', path: 'workbench',
component: workbench, component: workbench,
meta: { title: '工作台' } meta: { title: '工作台' }
},
{
path: 'aptitude',
component: Blank,
children: [
{
path: 'manage',
component: MeterAptitudeManage,
meta: { title: '授权资质管理' }
},
{
path: 'standard',
component: MeterAptitudeStandard,
meta: { title: '检测依据管理' }
}
]
} }
] ]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment