diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss index fdfd5b2..bc22652 100644 --- a/src/assets/styles/index.scss +++ b/src/assets/styles/index.scss @@ -145,7 +145,7 @@ aside { //main-container全局样式 .app-container { - //height: calc(100vh - 85px); + height: calc(100vh - 85px); padding: 8px 20px 20px; overflow: auto; } diff --git a/src/assets/styles/ruoyi.scss b/src/assets/styles/ruoyi.scss index 1f7b346..5d740c2 100644 --- a/src/assets/styles/ruoyi.scss +++ b/src/assets/styles/ruoyi.scss @@ -108,7 +108,7 @@ /** 表单布局 **/ .form-header { - font-size: 15px; + font-size: 16px; color: #6379bb; border-bottom: 1px solid #ddd; margin: 8px 10px 25px 10px; diff --git a/src/components/form/index.vue b/src/components/form/index.vue index 633ac26..b1f870b 100644 --- a/src/components/form/index.vue +++ b/src/components/form/index.vue @@ -2,7 +2,7 @@
@@ -111,7 +111,7 @@ this.$modal.msgError("操作失败") }); break; - case 'cancle': + case 'cancel': this.$router.push("/resource/fileManage"); break; default: diff --git a/src/views/resource/group/details.vue b/src/views/resource/group/details.vue index bcfcccb..b02465d 100644 --- a/src/views/resource/group/details.vue +++ b/src/views/resource/group/details.vue @@ -85,7 +85,7 @@ this.$modal.msgError("操作失败") }); break; - case 'cancle': + case 'cancel': this.$router.push("/resource/group"); break; // case 'includedDevicesId': diff --git a/src/views/resource/group/index.vue b/src/views/resource/group/index.vue index e77bd8d..93de5ef 100644 --- a/src/views/resource/group/index.vue +++ b/src/views/resource/group/index.vue @@ -60,12 +60,12 @@ ], tableButton: { top: [ - {content: '新增', fnCode: 'add', type: 'primary', icon: 'el-icon-plus', hasPermi: 'disRevenue:resource:register:add'}, - {content: '删除', fnCode: 'delete', type: 'danger', icon: 'el-icon-delete', hasPermi: 'disRevenue:resource:register:detele'}, - {content: '导出', fnCode: 'export', type: 'warning', icon: 'el-icon-download', hasPermi: 'disRevenue:resource:register:export'}, + {content: '新增', fnCode: 'add', type: 'primary', icon: 'el-icon-plus', hasPermi: 'resource:register:add'}, + {content: '删除', fnCode: 'delete', type: 'danger', icon: 'el-icon-delete', hasPermi: 'resource:register:detele'}, + {content: '导出', fnCode: 'export', type: 'warning', icon: 'el-icon-download', hasPermi: 'resource:register:export'}, ], line: [ - {content: '修改', fnCode: 'edit', type: 'text', icon: 'el-icon-edit', hasPermi: 'disRevenue:resource:register:edit'}, + {content: '修改', fnCode: 'edit', type: 'text', icon: 'el-icon-edit', hasPermi: 'resource:register:edit'}, ] } } diff --git a/src/views/resource/monitorTemp/index.vue b/src/views/resource/monitorTemp/index.vue index 33c8dcd..4cf19c1 100644 --- a/src/views/resource/monitorTemp/index.vue +++ b/src/views/resource/monitorTemp/index.vue @@ -59,13 +59,13 @@ ], tableButton: { top: [ - {content: '新增', fnCode: 'add', type: 'primary', icon: 'el-icon-plus', hasPermi: 'disRevenue:resource:monitorTemp:add'}, - {content: '删除', fnCode: 'delete', type: 'danger', icon: 'el-icon-delete', hasPermi: 'disRevenue:resource:monitorTemp:detele'}, - {content: '导出', fnCode: 'export', type: 'warning', icon: 'el-icon-download', hasPermi: 'disRevenue:resource:monitorTemp:export'}, + {content: '新增', fnCode: 'add', type: 'primary', icon: 'el-icon-plus', hasPermi: 'resource:monitorTemp:add'}, + {content: '删除', fnCode: 'delete', type: 'danger', icon: 'el-icon-delete', hasPermi: 'resource:monitorTemp:detele'}, + {content: '导出', fnCode: 'export', type: 'warning', icon: 'el-icon-download', hasPermi: 'resource:monitorTemp:export'}, ], line: [ - {content: '修改', fnCode: 'edit', type: 'text', icon: 'el-icon-edit', hasPermi: 'disRevenue:resource:monitorTemp:edit'}, - {content: '详情', fnCode: 'details', type: 'text', icon: 'el-icon-view', hasPermi: 'disRevenue:resource:monitorTemp:details'}, + {content: '修改', fnCode: 'edit', type: 'text', icon: 'el-icon-edit', hasPermi: 'resource:monitorTemp:edit'}, + {content: '详情', fnCode: 'details', type: 'text', icon: 'el-icon-view', hasPermi: 'resource:monitorTemp:details'}, // {content: '复制', fnCode: 'copy', type: 'text', icon: 'el-icon-document-copy', hasPermi: 'disRevenue:resource:monitorTemp:copy'}, ] } @@ -113,11 +113,11 @@ switch (result.fnCode) { case 'add': this.$router.push({ - path:'/disRevenue/resource/monitorTemp/details/index'}); + path:'/resource/monitorTemp/details/index'}); break; case 'edit': this.$router.push({ - path:'/disRevenue/resource/monitorTemp/details/index', + path:'/resource/monitorTemp/details/index', query:{ id: rowData.id } @@ -125,7 +125,7 @@ break; case 'details': this.$router.push({ - path:'/disRevenue/resource/monitorTemp/view/index', + path:'/resource/monitorTemp/view/index', query:{ id: rowData.id, readonly: true diff --git a/src/views/resource/register/handle.vue b/src/views/resource/register/handle.vue index 2904e89..abfc87f 100644 --- a/src/views/resource/register/handle.vue +++ b/src/views/resource/register/handle.vue @@ -114,7 +114,7 @@ this.$modal.msgError("操作失败") }); break; - case 'cancle': + case 'cancel': this.$router.push("/resource/register") break; default: diff --git a/src/views/resource/register/index.vue b/src/views/resource/register/index.vue index 4204fb0..6850b28 100644 --- a/src/views/resource/register/index.vue +++ b/src/views/resource/register/index.vue @@ -2,14 +2,56 @@
- + + + + + + + + + + + + + + + + + + + + + +
- 返回 + 返回
@@ -114,7 +114,7 @@ // this.$modal.msgError("操作失败") // }); // break; - case 'cancle': + case 'cancel': this.$router.push("/resource/remoteManage"); break; default: diff --git a/src/views/resource/resMonitor/details.vue b/src/views/resource/resMonitor/details.vue index 8c1d862..27f553c 100644 --- a/src/views/resource/resMonitor/details.vue +++ b/src/views/resource/resMonitor/details.vue @@ -156,7 +156,7 @@ this.$modal.msgError("操作失败") }); break; - case 'cancle': + case 'cancel': if (this.paramsData && this.paramsData.resourceType === '1') { this.$router.push("/earnManage/server"); } diff --git a/src/views/resource/resMonitor/index.vue b/src/views/resource/resMonitor/index.vue index 040994b..84b0f07 100644 --- a/src/views/resource/resMonitor/index.vue +++ b/src/views/resource/resMonitor/index.vue @@ -223,14 +223,14 @@ fnDetails(row,type) { if (type && type === '1') { this.$router.push({ - path:'/disRevenue/resource/resMonitor/digitalSuper', + path:'/resource/resMonitor/digitalSuper', query:{ id: row.id } }); } else { this.$router.push({ - path:'/disRevenue/resource/resMonitor/digitalAutoFind', + path:'/resource/resMonitor/digitalAutoFind', query:{ id: row.id } @@ -260,7 +260,7 @@ switch (result.fnCode) { case 'details': this.$router.push({ - path:'/disRevenue/resource/resMonitor/details/index', + path:'/resource/resMonitor/details/index', query:{ id: rowData.id } diff --git a/src/views/resource/switchManage/switchManage.vue b/src/views/resource/switchManage/switchManage.vue deleted file mode 100644 index ee31775..0000000 --- a/src/views/resource/switchManage/switchManage.vue +++ /dev/null @@ -1,160 +0,0 @@ - - - - diff --git a/src/views/resource/switchRegister/firstMonitor.vue b/src/views/resource/switchRegister/firstMonitor.vue new file mode 100644 index 0000000..27f1b6f --- /dev/null +++ b/src/views/resource/switchRegister/firstMonitor.vue @@ -0,0 +1,95 @@ + + + diff --git a/src/views/resource/switchRegister/handle.vue b/src/views/resource/switchRegister/handle.vue new file mode 100644 index 0000000..2f6eac8 --- /dev/null +++ b/src/views/resource/switchRegister/handle.vue @@ -0,0 +1,202 @@ + + + + diff --git a/src/views/resource/switchRegister/index.vue b/src/views/resource/switchRegister/index.vue new file mode 100644 index 0000000..5366248 --- /dev/null +++ b/src/views/resource/switchRegister/index.vue @@ -0,0 +1,239 @@ + + + + + diff --git a/src/views/resource/switchRegister/monitorChart.vue b/src/views/resource/switchRegister/monitorChart.vue new file mode 100644 index 0000000..aaa169b --- /dev/null +++ b/src/views/resource/switchRegister/monitorChart.vue @@ -0,0 +1,41 @@ + + + + + diff --git a/src/views/resource/switchRegister/monitorStrategy.vue b/src/views/resource/switchRegister/monitorStrategy.vue new file mode 100644 index 0000000..3a7195b --- /dev/null +++ b/src/views/resource/switchRegister/monitorStrategy.vue @@ -0,0 +1,239 @@ + + + + + diff --git a/src/views/resource/switchRegister/portRemarks.vue b/src/views/resource/switchRegister/portRemarks.vue new file mode 100644 index 0000000..dd3c424 --- /dev/null +++ b/src/views/resource/switchRegister/portRemarks.vue @@ -0,0 +1,130 @@ + + + + diff --git a/src/views/resource/switchRegister/secondAutoFind.vue b/src/views/resource/switchRegister/secondAutoFind.vue new file mode 100644 index 0000000..ffdccc6 --- /dev/null +++ b/src/views/resource/switchRegister/secondAutoFind.vue @@ -0,0 +1,156 @@ + + + + diff --git a/src/views/resource/topology/details.vue b/src/views/resource/topology/details.vue index ee8fa25..cff5a42 100644 --- a/src/views/resource/topology/details.vue +++ b/src/views/resource/topology/details.vue @@ -165,7 +165,7 @@ this.$modal.msgError("操作失败") }); break; - case 'cancle': + case 'cancel': this.$router.push("/resource/topology"); break; default: diff --git a/src/views/sync/problemRecord/details.vue b/src/views/sync/problemRecord/details.vue index 2a51785..69c6561 100644 --- a/src/views/sync/problemRecord/details.vue +++ b/src/views/sync/problemRecord/details.vue @@ -72,7 +72,7 @@ this.$modal.msgError("操作失败") }); break; - case 'cancle': + case 'cancel': this.$router.push("/problemRecord"); break; default: diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index c7a3c1d..c77978b 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -1,553 +1,553 @@ - - - \ No newline at end of file + + +