From 2873019c713be880e22e61ba4a12e893dd3e822f Mon Sep 17 00:00:00 2001
From: pushuo <229102104@qq.com>
Date: Thu, 30 Jun 2022 14:10:05 +0800
Subject: [PATCH] =?UTF-8?q?=E4=B8=AA=E4=BA=BA=E4=B8=AD=E5=BF=83?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
public/build/beike/css/admin.css | 4 +
public/build/beike/css/bootstrap.css | 28 +-
.../beike/admin/css/bootstrap/bootstrap.scss | 2 +
resources/beike/admin/css/element-ui.scss | 4 +
.../views/pages/customers/form.blade.php | 273 +++++++++++-------
.../admin/views/pages/plugins/index.blade.php | 97 ++++---
6 files changed, 245 insertions(+), 163 deletions(-)
diff --git a/public/build/beike/css/admin.css b/public/build/beike/css/admin.css
index fd5d34f1..7fd239e8 100644
--- a/public/build/beike/css/admin.css
+++ b/public/build/beike/css/admin.css
@@ -433,3 +433,7 @@ table.table.table-striped > tbody > tr:nth-of-type(2n) {
.el-button {
border-radius: 0;
}
+
+.el-tabs__header {
+ margin-bottom: 25px;
+}
diff --git a/public/build/beike/css/bootstrap.css b/public/build/beike/css/bootstrap.css
index 6bf069af..aab6ae1f 100644
--- a/public/build/beike/css/bootstrap.css
+++ b/public/build/beike/css/bootstrap.css
@@ -230,11 +230,11 @@ sup {
}
a {
- color: #fd560f;
- text-decoration: underline;
+ color: #1890ff;
+ text-decoration: none;
}
a:hover {
- color: #ca450c;
+ color: #1373cc;
}
a:not([href]):not([class]), a:not([href]):not([class]):hover {
@@ -2992,7 +2992,6 @@ textarea.form-control-lg {
line-height: 1.5;
color: #212529;
text-align: center;
- text-decoration: none;
vertical-align: middle;
cursor: pointer;
-webkit-user-select: none;
@@ -3465,11 +3464,11 @@ textarea.form-control-lg {
.btn-link {
font-weight: 400;
- color: #fd560f;
- text-decoration: underline;
+ color: #1890ff;
+ text-decoration: none;
}
.btn-link:hover {
- color: #ca450c;
+ color: #1373cc;
}
.btn-link:disabled, .btn-link.disabled {
color: #6c757d;
@@ -3762,7 +3761,6 @@ textarea.form-control-lg {
font-weight: 400;
color: #212529;
text-align: inherit;
- text-decoration: none;
white-space: nowrap;
background-color: transparent;
border: 0;
@@ -3937,8 +3935,7 @@ textarea.form-control-lg {
.nav-link {
display: block;
padding: 0.5rem 1rem;
- color: #fd560f;
- text-decoration: none;
+ color: #1890ff;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
@@ -3947,7 +3944,7 @@ textarea.form-control-lg {
}
}
.nav-link:hover, .nav-link:focus {
- color: #ca450c;
+ color: #1373cc;
}
.nav-link.disabled {
color: #6c757d;
@@ -4048,7 +4045,6 @@ textarea.form-control-lg {
padding-bottom: 0.3125rem;
margin-right: 1rem;
font-size: 1.25rem;
- text-decoration: none;
white-space: nowrap;
}
.navbar-nav {
@@ -4798,8 +4794,7 @@ textarea.form-control-lg {
.page-link {
position: relative;
display: block;
- color: #fd560f;
- text-decoration: none;
+ color: #1890ff;
background-color: #fff;
border: 1px solid #dee2e6;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
@@ -4811,13 +4806,13 @@ textarea.form-control-lg {
}
.page-link:hover {
z-index: 2;
- color: #ca450c;
+ color: #1373cc;
background-color: #e9ecef;
border-color: #dee2e6;
}
.page-link:focus {
z-index: 3;
- color: #ca450c;
+ color: #1373cc;
background-color: #e9ecef;
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(253, 86, 15, 0.25);
@@ -5089,7 +5084,6 @@ textarea.form-control-lg {
display: block;
padding: 0.5rem 1rem;
color: #212529;
- text-decoration: none;
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.125);
}
diff --git a/resources/beike/admin/css/bootstrap/bootstrap.scss b/resources/beike/admin/css/bootstrap/bootstrap.scss
index b8edff90..6fd4e526 100644
--- a/resources/beike/admin/css/bootstrap/bootstrap.scss
+++ b/resources/beike/admin/css/bootstrap/bootstrap.scss
@@ -12,6 +12,8 @@ $primary: #fd560f;
$border-radius: 0;
$form-check-input-width: 1.2em;
$form-switch-width: 2.6em;
+$link-decoration: none;
+$link-color: #1890ff;
@import 'node_modules/bootstrap-5.1.3/scss/bootstrap';
// @import 'node_modules/bootstrap/scss/bootstrap';
diff --git a/resources/beike/admin/css/element-ui.scss b/resources/beike/admin/css/element-ui.scss
index 86ebae20..4e76a071 100644
--- a/resources/beike/admin/css/element-ui.scss
+++ b/resources/beike/admin/css/element-ui.scss
@@ -6,4 +6,8 @@
.el-button {
border-radius: 0;
+}
+
+.el-tabs__header {
+ margin-bottom: 25px;
}
\ No newline at end of file
diff --git a/resources/beike/admin/views/pages/customers/form.blade.php b/resources/beike/admin/views/pages/customers/form.blade.php
index 3b1dc8bd..daa97c13 100644
--- a/resources/beike/admin/views/pages/customers/form.blade.php
+++ b/resources/beike/admin/views/pages/customers/form.blade.php
@@ -3,124 +3,201 @@
@section('title', '顾客管理')
@section('content')
-