From 9c1152b86c483c43ed6b7c0665413fbc9064b63e Mon Sep 17 00:00:00 2001 From: fanluyan <754122931@qq.com> Date: Thu, 13 Apr 2023 17:35:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9D=86=E5=A1=94=E4=BF=A1=E6=81=AF=E5=92=8C?= =?UTF-8?q?=E7=BA=BF=E8=B7=AF=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/assets/css/reset.css | 36 +- src/components/common/Sidebar.vue | 517 +-- src/router/index.js | 2 +- src/testjson.js | 2971 ++++++++--------- src/utils/api/index.js | 90 +- src/utils/request.js | 64 +- .../components/addPhotoDialog.vue | 203 ++ .../photographicDevice/index.vue | 244 +- .../components/addLineDialog.vue | 152 + .../userEquipment/lineInformation/index.vue | 344 +- src/views/realTimeMonitor/index.vue | 245 +- vue.config.js | 44 +- 12 files changed, 2769 insertions(+), 2143 deletions(-) create mode 100644 src/views/management/monitoringEquipment/photographicDevice/components/addPhotoDialog.vue create mode 100644 src/views/management/userEquipment/lineInformation/components/addLineDialog.vue diff --git a/src/assets/css/reset.css b/src/assets/css/reset.css index 74c83dc..f1f7cc6 100644 --- a/src/assets/css/reset.css +++ b/src/assets/css/reset.css @@ -1,43 +1,47 @@ * { - margin: 0; - padding: 0; + margin: 0; + padding: 0; } html, body, #app, .wrapper { - width: 100%; - height: 100%; - overflow: hidden; + width: 100%; + height: 100%; + overflow: hidden; } body { - font-family: 'PingFang SC', "Helvetica Neue", Helvetica, "microsoft yahei", arial, STHeiTi, sans-serif; + font-family: "PingFang SC", "Helvetica Neue", Helvetica, "microsoft yahei", + arial, STHeiTi, sans-serif; } a { - text-decoration: none + text-decoration: none; } - +/* 表格样式*/ +.el-table-column--selection .cell { + padding-left: 14px !important; +} /*滚动条样式*/ /* 整个滚动条 */ ::-webkit-scrollbar { - width: 8px; - height: 8px; + width: 8px; + height: 8px; } /* 滚动条上的滚动滑块 */ ::-webkit-scrollbar-thumb { - background-color: #49b1f5; - /* 关键代码 */ - border-radius: 32px; + background-color: #49b1f5; + /* 关键代码 */ + border-radius: 32px; } /* 滚动条轨道 */ ::-webkit-scrollbar-track { - background-color: #f0f0f0; - border-radius: 32px; -} \ No newline at end of file + background-color: #f0f0f0; + border-radius: 32px; +} diff --git a/src/components/common/Sidebar.vue b/src/components/common/Sidebar.vue index d0812dd..f8228e8 100644 --- a/src/components/common/Sidebar.vue +++ b/src/components/common/Sidebar.vue @@ -1,278 +1,295 @@