修改页面,api文件夹名称

This commit is contained in:
BianLzhaoMin 2024-08-08 15:42:08 +08:00
parent 25f6d12ce4
commit e23954a9de
21 changed files with 21 additions and 10 deletions

View File

@ -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始终使用括号
} }

View File

@ -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 }
} }

View File

@ -0,0 +1,10 @@
<template>
<!-- 分公司管理 -->
<div> 分公司管理 </div>
</template>
<script>
export default {}
</script>
<style></style>

View File

@ -1,5 +1,5 @@
<template> <template>
<!-- 机具供应商 --> <!-- 机具供应商管理 -->
<div> 机具供应商 </div> <div> 机具供应商 </div>
</template> </template>