This commit is contained in:
wangzg 2024-07-03 10:31:16 +08:00
parent 461ffa19e0
commit 25c5c9e95c
5 changed files with 11646 additions and 54 deletions

View File

@ -11,30 +11,8 @@ $ yarn dev
# build for production and launch server
$ yarn build
$ yarn start
# generate static project
$ yarn generate
```
## Special Directories
### mixins
vue混入代码主要是自适应相关的代码
### `assets`
静态资源
### `components`
公共组件目录
### `layouts`
布局目录,多了一个管理页
## 组件库文档地址
https://1x.antdv.com/components/icon/
@ -43,25 +21,36 @@ https://1x.antdv.com/components/icon/
登录页 /login
### 管理页
用户管理 /manager/user
角色管理 /manager/role
菜单管理 /manager/menu
设备管理 /manager/device
工序管理 /manager/organized
|名称|路由|
|---|---|
|用户管理| /manager/user|
|角色管理| /manager/role|
|菜单管理| /manager/menu|
|设备管理 |/manager/device|
|工序管理 |/manager/organized|
### 用户端
首页 /home
|名称|路由|
|---|---|
|首页| /home|
#### 有组织
有组织
#### 无组织
#### 无组织
| 名称 | 路由 |
|-------|----------------------|
| 无组织首页 | /wuzuzhi/home |
| 洗车机管理 | /wuzuzhi/carWasher |
| 环境治理 | /wuzuzhi/environment |
#### 清洁运输
清洁运输 /cleanTravel/home
厂区车辆台账 /cleanTravel/ledger
清洁运输趋势 /cleanTravel/trend
磅秤台账 /cleanTravel/bangcheng
|名称| 路由 |
|---|------------------------|
|清洁运输 | /cleanTravel/home |
|厂区车辆台账| /cleanTravel/ledger |
|清洁运输趋势 | /cleanTravel/trend |
|磅秤台账 | /cleanTravel/bangcheng |
#### 视频广场

11575
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,30 @@
<template>
<div class="car-washer">
<a-page-header
:ghost="false"
style="border-bottom: 1px solid rgb(235, 237, 240)"
title="厂区车辆台账"
@back="() => $router.go(-1)"
/>
<a-row :gutter="16">
<a-col :span="3">
</a-col>
<a-col :span="12">
col-12
</a-col>
<a-col :span="3">
col-12
</a-col>
</a-row>
</div>
</template>
<script>
export default {
name: "list"
}
</script>
<style scoped lang="less">
</style>

View File

@ -75,7 +75,7 @@ import Split from "../../components/smallCommon/Split.vue";
import CusButton3 from "../../components/smallCommon/CusButton3.vue";
export default {
name: "PeakCoalMonitoring",
name: "environment",
components: {
CusButton3,
Split,
@ -133,22 +133,22 @@ export default {
}
],
columnsForTable: [
{
title: '设备掉线',
dataIndex: 'deviceName',
width: '33.333%'
},
{
title: '故障异常',
dataIndex: 'errorName',
width: '33.333%'
},
{
title: '异常报警',
dataIndex: 'errorImg',
width: '33.333%'
}
],
{
title: '设备掉线',
dataIndex: 'deviceName',
width: '33.333%'
},
{
title: '故障异常',
dataIndex: 'errorName',
width: '33.333%'
},
{
title: '异常报警',
dataIndex: 'errorImg',
width: '33.333%'
}
],
columns: [
{
title: '排放标准',

View File

@ -1,7 +1,5 @@
<script>
export default {
name: "list"
}
<script setup>
</script>
<template>