修改页面,api文件夹名称
This commit is contained in:
parent
25f6d12ce4
commit
e23954a9de
|
|
@ -1,10 +1,11 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
tabWidth: 4,
|
tabWidth: 4, // 每行缩进 默认为2 这里设置4
|
||||||
semi: false,
|
semi: false, // 是否在语句末尾添加分号
|
||||||
vueIndentScriptAndStyle: false,
|
vueIndentScriptAndStyle: false, // 控制 Vue 文件的 <script> 和 <style> 标签下的代码是否需要缩进s
|
||||||
singleQuote: true,
|
singleQuote: true, // 是否使用单引号而不是双引号,默认值为 false
|
||||||
trailingComma: 'all',
|
trailingComma: 'all', // 控制是否在多行表达式末尾添加尾逗号,可选值有 none、es5(仅在对象、数组字面量中添加尾逗号以兼容 ES5)或 all(在对象、数组字面量末尾添加尾逗号)
|
||||||
proseWrap: 'never',
|
proseWrap: 'never',
|
||||||
htmlWhitespaceSensitivity: 'strict',
|
htmlWhitespaceSensitivity: 'strict',
|
||||||
endOfLine: 'auto',
|
endOfLine: 'auto',
|
||||||
|
arrowParens: 'avoid' // 控制单参数的箭头函数是否需要括号,可选值有 avoid(省略括号)或 always(始终使用括号)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -74,25 +74,25 @@ export const constantRoutes = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'ProjectManage',
|
path: 'ProjectManage',
|
||||||
component: () => import('@/views/BasicManage/ProjectManage'),
|
component: () => import('@/views/base/project'),
|
||||||
name: 'ProjectManage',
|
name: 'ProjectManage',
|
||||||
meta: { title: '工程管理', icon: 'dashboard', affix: true }
|
meta: { title: '工程管理', icon: 'dashboard', affix: true }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'ContactUnits',
|
path: 'ContactUnits',
|
||||||
component: () => import('@/views/BasicManage/ContactUnits'),
|
component: () => import('@/views/base/contun'),
|
||||||
name: 'ContactUnits',
|
name: 'ContactUnits',
|
||||||
meta: { title: '往来单位', icon: 'dashboard', affix: true }
|
meta: { title: '往来单位', icon: 'dashboard', affix: true }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'UnitType',
|
path: 'UnitType',
|
||||||
component: () => import('@/views/BasicManage/UnitType'),
|
component: () => import('@/views/base/unitType'),
|
||||||
name: 'UnitType',
|
name: 'UnitType',
|
||||||
meta: { title: '单位类型', icon: 'dashboard', affix: true }
|
meta: { title: '单位类型', icon: 'dashboard', affix: true }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'ProtocolManage',
|
path: 'ProtocolManage',
|
||||||
component: () => import('@/views/BasicManage/ProtocolManage'),
|
component: () => import('@/views/base/agreement'),
|
||||||
name: 'ProtocolManage',
|
name: 'ProtocolManage',
|
||||||
meta: { title: '协议管理', icon: 'dashboard', affix: true }
|
meta: { title: '协议管理', icon: 'dashboard', affix: true }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
<template>
|
||||||
|
<!-- 分公司管理 -->
|
||||||
|
<div> 分公司管理 </div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style></style>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<!-- 机具供应商 -->
|
<!-- 机具供应商管理 -->
|
||||||
<div> 机具供应商 </div>
|
<div> 机具供应商 </div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
Loading…
Reference in New Issue