-
+
-
-
-
- handleChange(key,val,formVal)">
-
-
-
-
+
+
+
+
+ handleChange(key,val,formVal)">
+
+
+
+
-
- handleChange(key,val,formVal)">
-
-
-
+
+ handleChange(key,val,formVal)">
+
+
+
-
- handleChange(key,val,formVal)">
-
- {{ option.label }}
-
-
-
+
+ handleChange(key,val,formVal)">
+
+ {{ option.label }}
+
+
+
-
- handleChange(key,val,formVal)">
-
- {{ option.label }}
-
-
-
+
+ handleChange(key,val,formVal)">
+
+ {{ option.label }}
+
+
+
-
- handleChange(key,val,formVal)"
- >
-
+
+ handleChange(key,val,formVal)"
+ >
+
-
- handleChange(key,val,formVal)"
- >
-
+
+ handleChange(key,val,formVal)"
+ >
+
-
- handleChange(key,val,formVal)"
- >
-
+
+ handleChange(key,val,formVal)"
+ >
+
-
- handleChange(key,val,formVal)"
- >
-
+
+ handleChange(key,val,formVal)"
+ >
+
-
- handleChange(key,val,formVal)"
- >
-
+
+ handleChange(key,val,formVal)"
+ >
+
-
-
-
-
-
-
-
-
-
-
-
- {{item.title}}
-
-
-
-
- 提交
- 返回
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ {{item.title}}
+
+
+
+
+ 提交
+ 返回
+
+
+
+
@@ -259,5 +262,10 @@
::v-deep .cursorAuto textarea {
cursor: auto!important;
}
+ ::v-deep .el-form-item__label {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
diff --git a/src/plugins/modal.js b/src/plugins/modal.js
index 99cea2e..8c9fa50 100644
--- a/src/plugins/modal.js
+++ b/src/plugins/modal.js
@@ -1,83 +1,84 @@
-import { Message, MessageBox, Notification, Loading } from 'element-ui'
-
-let loadingInstance
-
-export default {
- // 消息提示
- msg(content) {
- Message.info(content)
- },
- // 错误消息
- msgError(content) {
- Message.error(content)
- },
- // 成功消息
- msgSuccess(content) {
- Message.success(content)
- },
- // 警告消息
- msgWarning(content) {
- Message.warning(content)
- },
- // 弹出提示
- alert(content) {
- MessageBox.alert(content, "系统提示")
- },
- // 错误提示
- alertError(content) {
- MessageBox.alert(content, "系统提示", { type: 'error' })
- },
- // 成功提示
- alertSuccess(content) {
- MessageBox.alert(content, "系统提示", { type: 'success' })
- },
- // 警告提示
- alertWarning(content) {
- MessageBox.alert(content, "系统提示", { type: 'warning' })
- },
- // 通知提示
- notify(content) {
- Notification.info(content)
- },
- // 错误通知
- notifyError(content) {
- Notification.error(content)
- },
- // 成功通知
- notifySuccess(content) {
- Notification.success(content)
- },
- // 警告通知
- notifyWarning(content) {
- Notification.warning(content)
- },
- // 确认窗体
- confirm(content) {
- return MessageBox.confirm(content, "系统提示", {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: "warning",
- })
- },
- // 提交内容
- prompt(content) {
- return MessageBox.prompt(content, "系统提示", {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: "warning",
- })
- },
- // 打开遮罩层
- loading(content) {
- loadingInstance = Loading.service({
- lock: true,
- text: content,
- spinner: "el-icon-loading",
- background: "rgba(0, 0, 0, 0.7)",
- })
- },
- // 关闭遮罩层
- closeLoading() {
- loadingInstance.close()
- }
-}
+import { Message, MessageBox, Notification, Loading } from 'element-ui'
+
+let loadingInstance
+
+export default {
+ // 消息提示
+ msg(content) {
+ Message.info(content)
+ },
+ // 错误消息
+ msgError(content) {
+ Message.error(content)
+ },
+ // 成功消息
+ msgSuccess(content) {
+ Message.success(content)
+ },
+ // 警告消息
+ msgWarning(content) {
+ Message.warning(content)
+ },
+ // 弹出提示
+ alert(content) {
+ MessageBox.alert(content, "系统提示")
+ },
+ // 错误提示
+ alertError(content) {
+ MessageBox.alert(content, "系统提示", { type: 'error' })
+ },
+ // 成功提示
+ alertSuccess(content) {
+ MessageBox.alert(content, "系统提示", { type: 'success' })
+ },
+ // 警告提示
+ alertWarning(content) {
+ MessageBox.alert(content, "系统提示", { type: 'warning' })
+ },
+ // 通知提示
+ notify(content) {
+ Notification.info(content)
+ },
+ // 错误通知
+ notifyError(content) {
+ Notification.error(content)
+ },
+ // 成功通知
+ notifySuccess(content) {
+ Notification.success(content)
+ },
+ // 警告通知
+ notifyWarning(content) {
+ Notification.warning(content)
+ },
+ // 确认窗体
+ confirm(content) {
+ return MessageBox.confirm(content, "系统提示", {
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ dangerouslyUseHTMLString: true,
+ type: "warning",
+ })
+ },
+ // 提交内容
+ prompt(content) {
+ return MessageBox.prompt(content, "系统提示", {
+ confirmButtonText: '确定',
+ cancelButtonText: '取消',
+ type: "warning",
+ })
+ },
+ // 打开遮罩层
+ loading(content) {
+ loadingInstance = Loading.service({
+ lock: true,
+ text: content,
+ spinner: "el-icon-loading",
+ background: "rgba(0, 0, 0, 0.7)",
+ })
+ },
+ // 关闭遮罩层
+ closeLoading() {
+ loadingInstance.close()
+ }
+}
diff --git a/src/router/index.js b/src/router/index.js
index 1db175b..73f0024 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -442,6 +442,21 @@ export const dynamicRoutes = [
}
]
},
+ // 文件管理
+ {
+ path: '/disRevenue/resource/fileManage/view',
+ component: Layout,
+ hidden: true,
+ permissions: ['disRevenue:resource:fileManage:view'],
+ children: [
+ {
+ path: ':id?',
+ component: () => import('@/views/disRevenue/resource/fileManage/fileManageView'),
+ name: 'fileManageView',
+ meta: { title: '文件管理信息', activeMenu: '/disRevenue/resource/fileManage' }
+ }
+ ]
+ },
// agent采集数据
{
path: '/agentCollect/cpuData/view',
diff --git a/src/views/disRevenue/resource/alarmLog/alarmLog.vue b/src/views/disRevenue/resource/alarmLog/alarmLog.vue
index 4120a9f..7373dae 100644
--- a/src/views/disRevenue/resource/alarmLog/alarmLog.vue
+++ b/src/views/disRevenue/resource/alarmLog/alarmLog.vue
@@ -1,7 +1,7 @@