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') -
-
- - - -
- - - - - - - - - - - - - - - - - - - - 提交 - -
-
- - - - - - - - - - - - - - - - - - - - - - -
#名称电话注册来源状态操作
@{{ index }}@{{ address.name }}@{{ address.phone }}222222 - -
-
-
-
-
+
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + 提交 + +
+
+ + + + + + + + + + + + + + + + + + + + + {{-- + --}} + + + + {{-- + --}} + +
#名称电话注册来源状态操作
@{{ index }}@{{ address.name }}@{{ address.phone }}222222 + +
+ 当前账号无地址 新增地址 +
+
+
+
- {{-- {{ admin_route($customer->id ? 'customers.update' : 'customers.store', $customer) }} --}} + + + + + + + + + + + + + + + + + + + + + + + + + + + 保存 + 取消 + + + +
+ {{-- {{ admin_route($customer->id ? 'customers.update' : 'customers.store', $customer) }} --}} @endsection @push('footer') - + @endpush diff --git a/resources/beike/admin/views/pages/plugins/index.blade.php b/resources/beike/admin/views/pages/plugins/index.blade.php index 950fc707..7b70ab98 100644 --- a/resources/beike/admin/views/pages/plugins/index.blade.php +++ b/resources/beike/admin/views/pages/plugins/index.blade.php @@ -3,56 +3,57 @@ @section('title', '插件列表') @section('content') -
-
- 创建插件 -
- - - - - - - - - - - - @foreach ($plugins as $plugin) - - - - - - - - @endforeach - -
#插件类型插件描述状态操作
{{ $plugin->code }}{{ $plugin->type }} -
-
-
-
{{ $plugin->name }}
-
{!! $plugin->description !!}
-
-
-
-
- enabled ? 'checked' : '' }}> - -
-
- 编辑 -
-
-
+
+
+ 创建插件 +
+ + + + + + + + + + + + @foreach ($plugins as $plugin) + + + + + + + + @endforeach + +
#插件类型插件描述状态操作
{{ $plugin->code }}{{ $plugin->type }} +
+
+
+
{{ $plugin->name }}
+
{!! $plugin->description !!}
+
+
+
+
+ enabled ? 'checked' : '' }}> + +
+
+ 编辑 +
+
+
@endsection @push('footer') - + @endpush