diff --git a/src/assets/images/manage-forms/bg/bg-count.png b/src/assets/images/business-supervision/bg/bg-count.png similarity index 100% rename from src/assets/images/manage-forms/bg/bg-count.png rename to src/assets/images/business-supervision/bg/bg-count.png diff --git a/src/assets/images/manage-forms/bg/bg-frame-4.png b/src/assets/images/business-supervision/bg/bg-frame-4.png similarity index 100% rename from src/assets/images/manage-forms/bg/bg-frame-4.png rename to src/assets/images/business-supervision/bg/bg-frame-4.png diff --git a/src/assets/images/manage-forms/bg/device-carriage.png b/src/assets/images/business-supervision/bg/device-carriage.png similarity index 100% rename from src/assets/images/manage-forms/bg/device-carriage.png rename to src/assets/images/business-supervision/bg/device-carriage.png diff --git a/src/assets/images/manage-forms/bg/frame-1.png b/src/assets/images/business-supervision/bg/frame-1.png similarity index 100% rename from src/assets/images/manage-forms/bg/frame-1.png rename to src/assets/images/business-supervision/bg/frame-1.png diff --git a/src/assets/styles/global.scss b/src/assets/styles/global.scss index 942c9c6..f682f52 100644 --- a/src/assets/styles/global.scss +++ b/src/assets/styles/global.scss @@ -1,9 +1,8 @@ @use "animations/animations"; @use "common/common"; -@use "views/views"; :root { - --colot-primary: #027AFF; + --color-primary: #027AFF; --color-primary-secondary: #00FFFF; --color-info: #7CC1FF; --color-info-secondary: #707070; diff --git a/src/assets/styles/views/src/manage-forms.scss b/src/assets/styles/views/src/manage-forms.scss deleted file mode 100644 index 864180b..0000000 --- a/src/assets/styles/views/src/manage-forms.scss +++ /dev/null @@ -1,32 +0,0 @@ -.manage-forms { - padding: 19px 25px; - width: 100%; - height: 100%; - - .manage-forms-slide { - width: 530px; - height: 100%; - color: #fff; - } - - .common-bg { - padding: 10px 15px; - background: rgba(14, 95, 255, 0.20); - } - - .title { - width: 172px; - height: 42px; - font-size: 22px; - color: #fff; - background: url('@/assets/images/manage-forms/bg/bg-frame-4.png') no-repeat; - background-size: cover; - } - - .title-description { - font-size: 12px; - color: var(--color-info-secondary); - } - - -} \ No newline at end of file diff --git a/src/assets/styles/views/views.scss b/src/assets/styles/views/views.scss deleted file mode 100644 index 20428f2..0000000 --- a/src/assets/styles/views/views.scss +++ /dev/null @@ -1 +0,0 @@ -@use "@/assets/styles/views/src/manage-forms"; diff --git a/src/components/CommonHeader/CommonHeader.vue b/src/components/CommonHeader/CommonHeader.vue index dd0b686..50db6a3 100644 --- a/src/components/CommonHeader/CommonHeader.vue +++ b/src/components/CommonHeader/CommonHeader.vue @@ -26,11 +26,11 @@ onMounted(() => { @@ -21,6 +21,9 @@ height: 36px; ul { + display: flex; + justify-content: space-around; + align-items: center; float: left; width: 148px; @@ -30,6 +33,7 @@ } span { + color: var(--color-primary); float: left; font-size: 12px; cursor: pointer; diff --git a/src/components/CommonHeader/LayoutHeader.vue b/src/components/CommonHeader/LayoutHeader.vue index e5dbde4..bd2b7ea 100644 --- a/src/components/CommonHeader/LayoutHeader.vue +++ b/src/components/CommonHeader/LayoutHeader.vue @@ -9,21 +9,22 @@ const route = useRoute(); diff --git a/src/views/business-supervision/business-supervision-right/index.vue b/src/views/business-supervision/business-supervision-right/index.vue new file mode 100644 index 0000000..ee4c72d --- /dev/null +++ b/src/views/business-supervision/business-supervision-right/index.vue @@ -0,0 +1,31 @@ + + + diff --git a/src/views/business-supervision/index.vue b/src/views/business-supervision/index.vue new file mode 100644 index 0000000..ab8b403 --- /dev/null +++ b/src/views/business-supervision/index.vue @@ -0,0 +1,17 @@ + + + + + diff --git a/src/views/business-supervision/style.scss b/src/views/business-supervision/style.scss new file mode 100644 index 0000000..390e0de --- /dev/null +++ b/src/views/business-supervision/style.scss @@ -0,0 +1,52 @@ +.business-supervision { + display: flex; + justify-content: space-between; + align-items: center; + padding: 19px 25px; + width: 100%; + height: 100%; + + &__sidebar { + display: flex; + flex-wrap: wrap; + flex-direction: column; + justify-content: space-between; + align-items: center; + width: 530px; + height: 100%; + color: #fff; + + &-item { + padding: 9px 15px; + width: 100%; + background: rgba(14, 95, 255, 0.20); + } + + &-tag { + float: left; + margin: 0 7px 0 0; + width: 62px; + height: 26px; + line-height: 26px; + font-size: 14px; + text-align: center; + background: rgba(24, 69, 135, 0.55); + color: #fff; + cursor: default; + } + + &-title { + width: 172px; + height: 42px; + font-size: 22px; + color: #fff; + background: url('@/assets/images/business-supervision/bg/bg-frame-4.png') no-repeat; + background-size: cover; + } + + &-title-describe { + font-size: 12px; + color: var(--color-info-secondary); + } + } +} \ No newline at end of file diff --git a/src/views/manage-forms/components/manage-right/index.vue b/src/views/manage-forms/components/manage-right/index.vue deleted file mode 100644 index 1243395..0000000 --- a/src/views/manage-forms/components/manage-right/index.vue +++ /dev/null @@ -1,40 +0,0 @@ - - - - - diff --git a/src/views/manage-forms/index.vue b/src/views/manage-forms/index.vue deleted file mode 100644 index 5096c1c..0000000 --- a/src/views/manage-forms/index.vue +++ /dev/null @@ -1,13 +0,0 @@ - - - diff --git a/src/views/smart-park/smart-park-footer.vue b/src/views/smart-park/smart-park-footer.vue index 7902846..eae3ef7 100644 --- a/src/views/smart-park/smart-park-footer.vue +++ b/src/views/smart-park/smart-park-footer.vue @@ -2,12 +2,8 @@