Commit bedfa32b by wangweidong

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

parent 3bca5f0d
......@@ -16,7 +16,7 @@ module.exports = {
** Headers of the page
*/
head: {
title: '鲁丽钢铁',
title: '计量检定LIMS',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
......
{
"name": "nuxt-demo",
"version": "1.0.0",
"description": "鲁丽钢铁",
"author": "jiangwenwen",
"description": "计量检定LIMS",
"author": "wwd",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
......
<template>
<div>
</div>
</template>
<script>
......
<template>
<div>
</div>
</template>
<script>
......
......@@ -4,10 +4,32 @@
// 工作台
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 [
{
path: 'workbench',
component: workbench,
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