Compare commits
109 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8daf4d0696 | |||
| 322cfad5d9 | |||
| 2b2dc2021a | |||
| 9b732b19dc | |||
| 654caf58c2 | |||
| 1d62a64014 | |||
| 4447aa4a39 | |||
| 53a317c8cf | |||
| b269e18547 | |||
| 04efd7ef4a | |||
| dc74a1ee10 | |||
| 9b661405c9 | |||
| 1ed900d2b5 | |||
| d6ce8aa2be | |||
| 4b5dae8714 | |||
| cf670b24f8 | |||
| cf1c78c882 | |||
| adef3c1e2e | |||
| 180b5db570 | |||
| a18ff844a4 | |||
| 80d3aa8160 | |||
| d79b418310 | |||
| 816d85a744 | |||
| 2d078033fa | |||
| d430f04b41 | |||
| aaf73a0803 | |||
| 7baac33d0d | |||
| f2f59e9528 | |||
| a9abb16fcb | |||
| 7ff746267b | |||
| bc9f233cb2 | |||
| 2c4eb38495 | |||
| 347ebddb97 | |||
| 93a72c7826 | |||
| 9748a3008e | |||
| 2c20bd2649 | |||
| ff8e23766a | |||
| 81f01e1424 | |||
| b6b5ea5308 | |||
| 62db7e8cb2 | |||
| ba2b343d0a | |||
| 83be5a7c0b | |||
| ce38172cd6 | |||
| 5262ece276 | |||
| 86cc41b78c | |||
| f5a891e00e | |||
| 184e81737e | |||
| eb015c552f | |||
| 685cd53b1a | |||
| 2c3e309d2a | |||
| 853da3c948 | |||
| a68499255d | |||
| 23f9a8fc9a | |||
| 29abb5e230 | |||
| 8a9d66f5d3 | |||
| 90b4bccbcf | |||
| 4c592d9347 | |||
| ebe1c3015e | |||
| 9584b81729 | |||
| 8577877f83 | |||
| be26f2d75b | |||
| 863fdda9a5 | |||
| a1c7ae62ba | |||
| 49240893b5 | |||
| 61728434d3 | |||
| 5736d09dbe | |||
| f4646f1e3a | |||
| 5b3e505e9b | |||
| 624d7fde2f | |||
| a85f2c1b3a | |||
| 7ec97c39a7 | |||
| 67016c4e9a | |||
| 69c3634731 | |||
| 12bc6aeee7 | |||
| 2ca25e083e | |||
| df37a7c00d | |||
| 11e2c4f457 | |||
| edfc27b06a | |||
| fdc9064739 | |||
| 55a75b56b1 | |||
| 005457e13e | |||
| 3664861ef0 | |||
| b1b59a96f2 | |||
| 954ddbf8ba | |||
| 48f3c2b312 | |||
| 48e3d7f846 | |||
| 24e5554bc4 | |||
| 33929b8284 | |||
| c49c3b40d8 | |||
| 2eb7a41732 | |||
| 60177fe0b4 | |||
| c767c20641 | |||
| 64e5c4fe26 | |||
| 77e84f1086 | |||
| 128fb60bad | |||
| 3976ee745d | |||
| e5ccd8d031 | |||
| 991ca5b61c | |||
| d9000fbe1c | |||
| b7e09aeb04 | |||
| 91661b6bb4 | |||
| ded748ca87 | |||
| e4f509a9e5 | |||
| ae51682afe | |||
| be33b21b43 | |||
| db1ad0f88a | |||
| 4d34d76c4f | |||
| 276d901875 | |||
| c9bc2022e6 |
7
.gitignore
vendored
@@ -9,8 +9,8 @@ Thumbs.db
|
||||
.env.prod
|
||||
.htaccess
|
||||
.user.ini
|
||||
404.html
|
||||
index.html
|
||||
/404.html
|
||||
/index.html
|
||||
|
||||
public/dist*
|
||||
public/opendoc
|
||||
@@ -23,3 +23,6 @@ public/.well-known
|
||||
/.settings
|
||||
/.buildpath
|
||||
/.project
|
||||
|
||||
CLAUDE.md
|
||||
/skills
|
||||
|
||||
@@ -201,15 +201,16 @@ class ReceiveProductSync
|
||||
throw new \Exception('产品创建失败');
|
||||
}
|
||||
}
|
||||
else if (strtotime($product['updated_at']) < strtotime($data['created_at'])) {
|
||||
$product->spu = $data['spu'];
|
||||
$product->name = $data['name'];
|
||||
$product->category_id = $product_category['id'];
|
||||
$product->status = Operate_Of_ReceiveSync::Disable == $data['operate'] ? -1 : 1;
|
||||
if (!$product->save()) {
|
||||
throw new \Exception('产品更新失败');
|
||||
}
|
||||
}
|
||||
// 注释更新同步,防止tco同步修改官网手动调整数据
|
||||
// else if (strtotime($product['updated_at']) < strtotime($data['created_at'])) {
|
||||
// $product->spu = $data['spu'];
|
||||
// $product->name = $data['name'];
|
||||
// $product->category_id = $product_category['id'];
|
||||
// $product->status = Operate_Of_ReceiveSync::Disable == $data['operate'] ? -1 : 1;
|
||||
// if (!$product->save()) {
|
||||
// throw new \Exception('产品更新失败');
|
||||
// }
|
||||
// }
|
||||
} catch (\Throwable $th) {
|
||||
return error(sprintf('%s %s:%d', $th->getMessage(), $th->getFile(), $th->getLine()));
|
||||
}
|
||||
|
||||
@@ -91,7 +91,6 @@ class Banner
|
||||
|
||||
$banner = SysBannerModel::withoutField([
|
||||
'at_page',
|
||||
'unique_label',
|
||||
'language_id',
|
||||
'created_at',
|
||||
'updated_at',
|
||||
@@ -142,6 +141,7 @@ class Banner
|
||||
'name',
|
||||
'desc',
|
||||
'recommend',
|
||||
'unique_label',
|
||||
'at_platform' => 'pc',
|
||||
'status' => 1
|
||||
]);
|
||||
|
||||
@@ -67,6 +67,8 @@ class NavigationItem
|
||||
'id',
|
||||
'pid',
|
||||
'name',
|
||||
'desc',
|
||||
'image',
|
||||
'nav_id',
|
||||
'sort',
|
||||
'status',
|
||||
@@ -93,7 +95,9 @@ class NavigationItem
|
||||
'pid',
|
||||
'nav_id',
|
||||
'name',
|
||||
'desc',
|
||||
'icon',
|
||||
'image',
|
||||
'link_to' => 'custom',
|
||||
'link',
|
||||
'sort',
|
||||
@@ -121,7 +125,9 @@ class NavigationItem
|
||||
'pid',
|
||||
'nav_id',
|
||||
'name',
|
||||
'desc',
|
||||
'icon',
|
||||
'image',
|
||||
'link_to',
|
||||
'link',
|
||||
'sort',
|
||||
|
||||
@@ -83,7 +83,7 @@ class Product
|
||||
])
|
||||
->bypk(request()->param('id'))
|
||||
->find()
|
||||
->bindAttr('category', ['category_name'])
|
||||
?->bindAttr('category', ['category_name'])
|
||||
->hidden(['category']);
|
||||
if (empty($product)) {
|
||||
return error('产品不存在');
|
||||
|
||||
203
app/admin/controller/v1/ProductCategoryRecommend.php
Normal file
@@ -0,0 +1,203 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace app\admin\controller\v1;
|
||||
|
||||
use app\admin\model\v1\ProductCategoryRecommendModel;
|
||||
use app\admin\validate\v1\ProductCategoryRecommendValidate;
|
||||
|
||||
/**
|
||||
* 产品分类推荐管理控制器
|
||||
*/
|
||||
class ProductCategoryRecommend
|
||||
{
|
||||
/**
|
||||
* 分页列表
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$param = request()->get([
|
||||
'keywords',
|
||||
'category_name',
|
||||
'page/d' => 1,
|
||||
'size/d' => 10
|
||||
]);
|
||||
|
||||
// 查询数据
|
||||
$data = ProductCategoryRecommendModel::withJoin(['category' => function($query) use ($param) {
|
||||
if (!empty($param['category_name'])) {
|
||||
$query->where('category.name', 'like', '%' . $param['category_name'] . '%');
|
||||
}
|
||||
}])
|
||||
->withSearch(['keywords'], ['keywords' => $param['keywords']??null])
|
||||
->language(request()->lang_id)
|
||||
->order(['sort' => 'asc', 'id' => 'desc'])
|
||||
->paginate([
|
||||
'list_rows' => $param['size'],
|
||||
'page' => $param['page'],
|
||||
])
|
||||
->bindAttr('category', ['category_name' => 'name'])
|
||||
->hidden(['category', 'language_id', 'updated_at', 'deleted_at'])
|
||||
?->each(function($item) {
|
||||
// 列表页面图片输出缩略图
|
||||
if (!empty($item['image'])) {
|
||||
$item['image'] = thumb($item['image']);
|
||||
}
|
||||
});
|
||||
|
||||
return success('获取成功', $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出Excel
|
||||
*/
|
||||
public function export()
|
||||
{
|
||||
$schema = [
|
||||
'id' => 'ID',
|
||||
'image' => '图片',
|
||||
'category_name' => '分类名称',
|
||||
'desc' => '产品介绍',
|
||||
'link' => '链接地址',
|
||||
'sort' => '排序',
|
||||
'disabled' => '状态',
|
||||
'created_at' => '添加时间'
|
||||
];
|
||||
|
||||
// 获取导出数据
|
||||
$data = $this->getProductCategoryRecommendData();
|
||||
|
||||
// 导出
|
||||
return xlsx_writer($data, $schema, '产品推荐列表' . date('YmdHis'));
|
||||
}
|
||||
// 获取要导出的推荐记录数据
|
||||
private function getProductCategoryRecommendData()
|
||||
{
|
||||
$server = request()->server();
|
||||
$image_host = $server['REQUEST_SCHEME'] . "://" . $server['SERVER_NAME'] . '/';
|
||||
$param = request()->get(['keywords']);
|
||||
|
||||
// 查询数据
|
||||
return ProductCategoryRecommendModel::withJoin(['category' => function($query) use ($param) {
|
||||
if (!empty($param['category_name'])) {
|
||||
$query->where('category.name', 'like', '%' . $param['category_name'] . '%');
|
||||
}
|
||||
}])
|
||||
->withSearch(['keywords'], ['keywords' => $param['keywords']??null])
|
||||
->language(request()->lang_id)
|
||||
->order(['sort' => 'asc', 'id' => 'desc'])
|
||||
->select()
|
||||
->bindAttr('category', ['category_name' => 'name'])
|
||||
->hidden(['category', 'language_id', 'updated_at', 'deleted_at'])
|
||||
?->each(function($item) use($image_host) {
|
||||
// 拼接完整图片URL
|
||||
if (!empty($item['image'])) {
|
||||
$item['image'] = url_join($image_host, $item['image']);
|
||||
}
|
||||
// 状态
|
||||
$item['disabled'] = $item['disabled'] == 1 ? '禁用' : '启用';
|
||||
})
|
||||
->toArray();
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取详细数据
|
||||
*/
|
||||
public function read()
|
||||
{
|
||||
$id = request()->param('id/d');
|
||||
$record = ProductCategoryRecommendModel::bypk($id)
|
||||
->withoutField(['language_id', 'created_at', 'updated_at', 'deleted_at'])
|
||||
->find();
|
||||
if (empty($record)) {
|
||||
return error('推荐数据不存在');
|
||||
}
|
||||
|
||||
return success('success', $record);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增数据
|
||||
*/
|
||||
public function save()
|
||||
{
|
||||
$post = request()->post([
|
||||
'category_id',
|
||||
'title',
|
||||
'image',
|
||||
'desc',
|
||||
'link',
|
||||
'sort',
|
||||
'disabled'
|
||||
]);
|
||||
$data = array_merge($post, ['language_id' => request()->lang_id]);
|
||||
|
||||
// 参数校验
|
||||
$validate = new ProductCategoryRecommendValidate();
|
||||
if (!$validate->scene('create')->check($data)) {
|
||||
return error($validate->getError());
|
||||
}
|
||||
|
||||
// 保存推荐数据
|
||||
$recommend = ProductCategoryRecommendModel::create($data);
|
||||
if ($recommend->isEmpty()) {
|
||||
return error('保存失败');
|
||||
}
|
||||
return success('保存成功');
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新数据
|
||||
*/
|
||||
public function update()
|
||||
{
|
||||
$id = request()->param('id/d');
|
||||
$post = request()->post([
|
||||
'category_id',
|
||||
'title',
|
||||
'image',
|
||||
'desc',
|
||||
'link',
|
||||
'sort',
|
||||
'disabled'
|
||||
]);
|
||||
$data = array_merge($post, ['language_id' => request()->lang_id]);
|
||||
|
||||
// 参数校验
|
||||
$validate = new ProductCategoryRecommendValidate();
|
||||
$check_data = array_merge($data, ['id' => $id]);
|
||||
if (!$validate->scene('update')->check($check_data)) {
|
||||
return error($validate->getError());
|
||||
}
|
||||
|
||||
// 更新推荐数据
|
||||
$recommend = ProductCategoryRecommendModel::bypk($id)->find();
|
||||
if (empty($recommend)) {
|
||||
return error('请确认操作对象是否存在');
|
||||
}
|
||||
if (!$recommend->save($data)) {
|
||||
return error('操作失败');
|
||||
}
|
||||
|
||||
return success('操作成功');
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除
|
||||
*/
|
||||
public function delete()
|
||||
{
|
||||
$id = request()->param('id/d');
|
||||
|
||||
// 删除推荐记录数据
|
||||
$record = ProductCategoryRecommendModel::bypk($id)->find();
|
||||
if (empty($record)) {
|
||||
return error('请确认操作对象是否正确');
|
||||
}
|
||||
if (!$record->delete()) {
|
||||
return error('操作失败');
|
||||
}
|
||||
|
||||
return success('操作成功');
|
||||
}
|
||||
}
|
||||
201
app/admin/controller/v1/SysMallStoreEntrance.php
Normal file
@@ -0,0 +1,201 @@
|
||||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace app\admin\controller\v1;
|
||||
|
||||
use app\admin\model\v1\SysMallStoreEntranceModel;
|
||||
use app\admin\validate\v1\SysMallStoreEntranceValidate;
|
||||
|
||||
/**
|
||||
* 系统商城店铺入口管理控制器
|
||||
*/
|
||||
class SysMallStoreEntrance
|
||||
{
|
||||
/**
|
||||
* 分页列表
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$param = request()->get([
|
||||
'name',
|
||||
'page/d' => 1,
|
||||
'size/d' => 10
|
||||
]);
|
||||
|
||||
// 查询数据
|
||||
$data = SysMallStoreEntranceModel::withoutField([
|
||||
'language_id',
|
||||
'hover_image',
|
||||
'updated_at',
|
||||
'deleted_at'
|
||||
])
|
||||
->withSearch(['name'], ['name' => $param['name']??null])
|
||||
->language(request()->lang_id)
|
||||
->order(['sort' => 'asc', 'id' => 'desc'])
|
||||
->paginate([
|
||||
'list_rows' => $param['size'],
|
||||
'page' => $param['page'],
|
||||
])
|
||||
?->each(function($item) {
|
||||
// 列表页面图片输出缩略图
|
||||
if (!empty($item['image'])) {
|
||||
$item['image'] = thumb($item['image']);
|
||||
}
|
||||
});
|
||||
|
||||
return success('获取成功', $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取详情
|
||||
*/
|
||||
public function read()
|
||||
{
|
||||
$id = request()->param('id/d');
|
||||
$record = SysMallStoreEntranceModel::bypk($id)
|
||||
->withoutField(['language_id', 'created_at', 'updated_at', 'deleted_at'])
|
||||
->find();
|
||||
if (empty($record)) {
|
||||
return error('商城店铺入口数据不存在');
|
||||
}
|
||||
|
||||
return success('success', $record);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增数据
|
||||
*/
|
||||
public function save()
|
||||
{
|
||||
$post = request()->post([
|
||||
'name',
|
||||
'image',
|
||||
'hover_image',
|
||||
'link',
|
||||
'sort',
|
||||
'disabled'
|
||||
]);
|
||||
$data = array_merge($post, ['language_id' => request()->lang_id]);
|
||||
|
||||
// 参数校验
|
||||
$validate = new SysMallStoreEntranceValidate();
|
||||
if (!$validate->scene('create')->check($data)) {
|
||||
return error($validate->getError());
|
||||
}
|
||||
|
||||
// 保存数据
|
||||
$entrance = SysMallStoreEntranceModel::create($data);
|
||||
if ($entrance->isEmpty()) {
|
||||
return error('保存失败');
|
||||
}
|
||||
return success('保存成功');
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新数据
|
||||
*/
|
||||
public function update()
|
||||
{
|
||||
$id = request()->param('id/d');
|
||||
$post = request()->post([
|
||||
'name',
|
||||
'image',
|
||||
'hover_image',
|
||||
'link',
|
||||
'sort',
|
||||
'disabled'
|
||||
]);
|
||||
$data = array_merge($post, ['language_id' => request()->lang_id]);
|
||||
|
||||
// 参数校验
|
||||
$validate = new SysMallStoreEntranceValidate();
|
||||
$check_data = array_merge($data, ['id' => $id]);
|
||||
if (!$validate->scene('update')->check($check_data)) {
|
||||
return error($validate->getError());
|
||||
}
|
||||
|
||||
// 更新数据
|
||||
$entrance = SysMallStoreEntranceModel::bypk($id)->find();
|
||||
if (empty($entrance)) {
|
||||
return error('请确认操作对象是否存在');
|
||||
}
|
||||
if (!$entrance->save($data)) {
|
||||
return error('操作失败');
|
||||
}
|
||||
|
||||
return success('操作成功');
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除
|
||||
*/
|
||||
public function delete()
|
||||
{
|
||||
$id = request()->param('id/d');
|
||||
|
||||
// 删除数据
|
||||
$record = SysMallStoreEntranceModel::bypk($id)->find();
|
||||
if (empty($record)) {
|
||||
return error('请确认操作对象是否正确');
|
||||
}
|
||||
if (!$record->delete()) {
|
||||
return error('操作失败');
|
||||
}
|
||||
|
||||
return success('操作成功');
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出Excel
|
||||
*/
|
||||
public function export()
|
||||
{
|
||||
$schema = [
|
||||
'id' => 'ID',
|
||||
'image' => '图片',
|
||||
'hover_image' => '悬浮图',
|
||||
'name' => '名称',
|
||||
'link' => '链接地址',
|
||||
'sort' => '排序',
|
||||
'disabled' => '状态',
|
||||
'created_at' => '添加时间'
|
||||
];
|
||||
|
||||
// 获取导出数据
|
||||
$data = $this->getExportData();
|
||||
|
||||
// 导出
|
||||
return xlsx_writer($data, $schema, '系统商城店铺入口列表' . date('YmdHis'));
|
||||
}
|
||||
|
||||
// 获取要导出的数据
|
||||
private function getExportData()
|
||||
{
|
||||
$server = request()->server();
|
||||
$image_host = $server['REQUEST_SCHEME'] . "://" . $server['SERVER_NAME'] . '/';
|
||||
$param = request()->get(['name']);
|
||||
|
||||
// 查询数据
|
||||
return SysMallStoreEntranceModel::withoutField([
|
||||
'language_id',
|
||||
'updated_at',
|
||||
'deleted_at'
|
||||
])
|
||||
->withSearch(['name'], ['name' => $param['name']??null])
|
||||
->language(request()->lang_id)
|
||||
->order(['sort' => 'asc', 'id' => 'desc'])
|
||||
->select()
|
||||
?->each(function($item) use($image_host) {
|
||||
// 拼接完整图片URL
|
||||
if (!empty($item['image'])) {
|
||||
$item['image'] = url_join($image_host, $item['image']);
|
||||
}
|
||||
if (!empty($item['hover_image'])) {
|
||||
$item['hover_image'] = url_join($image_host, $item['hover_image']);
|
||||
}
|
||||
// 状态转换
|
||||
$item['disabled'] = $item['disabled'] == 1 ? '禁用' : '启用';
|
||||
})
|
||||
->toArray();
|
||||
}
|
||||
}
|
||||
@@ -354,6 +354,18 @@ class System
|
||||
'url' => (string)url('/index/topic/power_prodline/index')
|
||||
],
|
||||
]
|
||||
],
|
||||
[
|
||||
'id' => 9,
|
||||
'name' => '笔记本(AI PC)专题',
|
||||
'url' => '',
|
||||
'children' => [
|
||||
[
|
||||
'id' => 91,
|
||||
'name' => '首页',
|
||||
'url' => (string)url('/index/topic/laptop/index')
|
||||
],
|
||||
]
|
||||
]
|
||||
];
|
||||
}
|
||||
|
||||
@@ -32,7 +32,8 @@ class ProductCategoryModel extends ProductCategoryBaseModel
|
||||
// 所属产品目录分类id查询
|
||||
public function scopeTcoId($query, $value)
|
||||
{
|
||||
$query->where('related_tco_category', '=', $value);
|
||||
// $query->where('related_tco_category', '=', $value);
|
||||
$query->whereRaw('FIND_IN_SET(:ref_id, related_tco_category)', ['ref_id' => $value]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
47
app/admin/model/v1/ProductCategoryRecommendModel.php
Normal file
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace app\admin\model\v1;
|
||||
|
||||
use app\common\model\ProductCategoryRecommendBaseModel;
|
||||
use think\model\concern\SoftDelete;
|
||||
|
||||
/**
|
||||
* 产品分类推荐模型
|
||||
* @mixin \think\Model
|
||||
*/
|
||||
class ProductCategoryRecommendModel extends ProductCategoryRecommendBaseModel
|
||||
{
|
||||
// 启用软件删除
|
||||
use SoftDelete;
|
||||
// 软件删除时间字段
|
||||
protected $deleteTime = 'deleted_at';
|
||||
|
||||
// 关联语言
|
||||
public function language()
|
||||
{
|
||||
return $this->belongsTo(\app\index\model\LanguageModel::class, 'language_id', 'id');
|
||||
}
|
||||
|
||||
// 关联产品分类
|
||||
public function category()
|
||||
{
|
||||
return $this->belongsTo(\app\index\model\ProductCategoryModel::class, 'category_id', 'id');
|
||||
}
|
||||
|
||||
// 所属语言范围查询
|
||||
public function scopeLanguage($query, $language)
|
||||
{
|
||||
$query->where($this->getTable() . '.language_id', '=', $language);
|
||||
}
|
||||
|
||||
// 关键词搜索
|
||||
public function searchKeywordsAttr($query, string|null $keywords)
|
||||
{
|
||||
if (is_null($keywords)) {
|
||||
return;
|
||||
}
|
||||
$query->where($this->getTable() . '.title', 'like', "%{$keywords}%")
|
||||
->whereOr($this->getTable() . '.desc', 'like', "%{$keywords}%");
|
||||
}
|
||||
}
|
||||
61
app/admin/model/v1/SysMallStoreEntranceModel.php
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace app\admin\model\v1;
|
||||
|
||||
use app\common\model\SysMallStoreEntranceBaseModel;
|
||||
use think\model\concern\SoftDelete;
|
||||
|
||||
/**
|
||||
* 系统商城店铺入口模型
|
||||
* @mixin \think\Model
|
||||
*/
|
||||
class SysMallStoreEntranceModel extends SysMallStoreEntranceBaseModel
|
||||
{
|
||||
// 启用软删除
|
||||
use SoftDelete;
|
||||
// 软删除字段
|
||||
protected $deleteTime = 'deleted_at';
|
||||
|
||||
// 关联语言
|
||||
public function language()
|
||||
{
|
||||
return $this->belongsTo(\app\index\model\LanguageModel::class, 'language_id', 'id');
|
||||
}
|
||||
|
||||
// 所属语言范围查询
|
||||
public function scopeLanguage($query, $language)
|
||||
{
|
||||
$query->where($this->getTable() . '.language_id', '=', $language);
|
||||
}
|
||||
|
||||
// 查询启用状态
|
||||
public function scopeEnabled($query)
|
||||
{
|
||||
$query->where('disabled', '=', 0);
|
||||
}
|
||||
|
||||
// 查询禁用状态
|
||||
public function scopeDisabled($query)
|
||||
{
|
||||
$query->where('disabled', '=', 1);
|
||||
}
|
||||
|
||||
// 按名称搜索
|
||||
public function searchNameAttr($query, $value, $data)
|
||||
{
|
||||
if (is_null($value)) {
|
||||
return;
|
||||
}
|
||||
$query->where('name', 'like', "%{$value}%");
|
||||
}
|
||||
|
||||
// 按链接地址搜索
|
||||
public function searchLinkAttr($query, $value, $data)
|
||||
{
|
||||
if (is_null($value)) {
|
||||
return;
|
||||
}
|
||||
$query->where('link_url', 'like', "%{$value}%");
|
||||
}
|
||||
}
|
||||
@@ -311,6 +311,27 @@ Route::group('v1', function () {
|
||||
|
||||
// 分类删除
|
||||
Route::delete('delete/:id', 'ProductCategory/delete');
|
||||
|
||||
// 产品分类推荐数据
|
||||
Route::group('recommend', function () {
|
||||
// 推荐数据分页列表
|
||||
Route::get('index', 'ProductCategoryRecommend/index');
|
||||
|
||||
// 推荐数据导出
|
||||
Route::get('export', 'ProductCategoryRecommend/export');
|
||||
|
||||
// 推荐数据详情
|
||||
Route::get('read/:id', 'ProductCategoryRecommend/read');
|
||||
|
||||
// 推荐数据新增
|
||||
Route::post('save', 'ProductCategoryRecommend/save');
|
||||
|
||||
// 推荐数据更新
|
||||
Route::put('update/:id', 'ProductCategoryRecommend/update');
|
||||
|
||||
// 推荐数据删除
|
||||
Route::delete('delete/:id', 'ProductCategoryRecommend/delete');
|
||||
});
|
||||
});
|
||||
|
||||
// 产品购买链接
|
||||
@@ -574,6 +595,29 @@ Route::group('v1', function () {
|
||||
// 反馈管理 - 产品询盘列表
|
||||
Route::get('product/inquiry/index', 'ProductInquiry/index');
|
||||
|
||||
// 系统商城店铺入口
|
||||
Route::group('mall', function() {
|
||||
Route::group('store', function() {
|
||||
// 店铺入口列表分页
|
||||
Route::get('index', 'SysMallStoreEntrance/index');
|
||||
|
||||
// 店铺入口导出
|
||||
Route::get('export', 'SysMallStoreEntrance/export');
|
||||
|
||||
// 店铺入口详情
|
||||
Route::get('read/:id', 'SysMallStoreEntrance/read');
|
||||
|
||||
// 店铺入口新增
|
||||
Route::post('save', 'SysMallStoreEntrance/save');
|
||||
|
||||
// 店铺入口更新
|
||||
Route::put('update/:id', 'SysMallStoreEntrance/update');
|
||||
|
||||
// 店铺入口删除
|
||||
Route::delete('delete/:id', 'SysMallStoreEntrance/delete');
|
||||
});
|
||||
});
|
||||
|
||||
// 配置项列表
|
||||
Route::group('config', function() {
|
||||
// 配置分组
|
||||
|
||||
@@ -20,7 +20,9 @@ class NavigationItemValidate extends Validate
|
||||
'nav_id' => 'require|integer',
|
||||
'pid' => 'integer|different:id|checkPidNotBeChildren',
|
||||
'name' => 'require|max:64',
|
||||
'desc' => 'max:255',
|
||||
'icon' => 'max:64',
|
||||
'image' => 'max:255',
|
||||
'link_to' => 'require|max:64|in:article,article_category,product,product_category,system_page,custom',
|
||||
'link' => 'max:255',
|
||||
'sort' => 'integer',
|
||||
@@ -44,7 +46,9 @@ class NavigationItemValidate extends Validate
|
||||
'pid.checkPidNotBeChildren' => '父级ID不能为自身的子导航',
|
||||
'name.require' => '导航名称不能为空',
|
||||
'name.max' => '导航名称最多不能超过64个字符',
|
||||
'desc.max' => '导航名称最多不能超过:rule个字符',
|
||||
'icon.max' => '图标最多不能超过64个字符',
|
||||
'image.max' => '图标最多不能超过:rule个字符',
|
||||
'link_to.require' => '链接类型不能为空',
|
||||
'link_to.max' => '链接类型最多不能超过64个字符',
|
||||
'link_to.in' => '链接类型必须是article,article_category,product_category,product,system_page,custom中之一',
|
||||
|
||||
63
app/admin/validate/v1/ProductCategoryRecommendValidate.php
Normal file
@@ -0,0 +1,63 @@
|
||||
<?php
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace app\admin\validate\v1;
|
||||
|
||||
use think\Validate;
|
||||
|
||||
class ProductCategoryRecommendValidate extends Validate
|
||||
{
|
||||
/**
|
||||
* 定义验证规则
|
||||
* 格式:'字段名' => ['规则1','规则2'...]
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $rule = [
|
||||
'language_id' => 'require|integer',
|
||||
'category_id' => 'require|integer',
|
||||
'title' => 'require|max:255',
|
||||
'image' => 'require|max:255',
|
||||
'desc' => 'require|max:255',
|
||||
'link' => 'max:500',
|
||||
'sort' => 'require|integer',
|
||||
'disabled' => 'in:0,1'
|
||||
];
|
||||
|
||||
/**
|
||||
* 定义错误信息
|
||||
* 格式:'字段名.规则名' => '错误信息'
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $message = [
|
||||
'id.require' => 'ID不能为空',
|
||||
'id.integer' => 'ID必须是整数',
|
||||
'language_id.require' => '语言ID不能为空',
|
||||
'language_id.integer' => '语言ID必须是整数',
|
||||
'category_id.require' => '分类ID不能为空',
|
||||
'category_id.integer' => '分类ID必须是整数',
|
||||
'title.require' => '标题不能为空',
|
||||
'title.max' => '标题长度不能超过:rule个字符',
|
||||
'image.require' => '图片不能为空',
|
||||
'image.max' => '图片长度不能超过:rule个字符',
|
||||
'desc.require' => '描述不能为空',
|
||||
'desc.max' => '描述长度不能超过:rule个字符',
|
||||
'link.max' => '链接长度不能超过:rule个字符',
|
||||
'sort.require' => '排序不能为空',
|
||||
'sort.integer' => '排序必须是整数',
|
||||
'disabled.in' => '禁用状态只能是0或1',
|
||||
];
|
||||
|
||||
// 新增场景
|
||||
protected function sceneCreate()
|
||||
{
|
||||
return $this->remove('id', 'require|integer');
|
||||
}
|
||||
|
||||
// 更新场景
|
||||
protected function sceneUpdate()
|
||||
{
|
||||
return $this->append('id', 'require|integer');
|
||||
}
|
||||
}
|
||||
@@ -23,7 +23,7 @@ class ProductCategoryValidate extends Validate
|
||||
'name' => 'require|max:64',
|
||||
'icon' => 'max:125',
|
||||
'desc' => 'max:255',
|
||||
'related_tco_category' => 'integer',
|
||||
'related_tco_category' => 'string|checkRelatedTcoCategory',
|
||||
'sort' => 'integer',
|
||||
'level' => 'integer',
|
||||
'is_show' => 'in:0,1',
|
||||
@@ -51,7 +51,8 @@ class ProductCategoryValidate extends Validate
|
||||
'name.max' => '名称最多不能超过64个字符',
|
||||
'icon.max' => '图标最多不能超过125个字符',
|
||||
'desc.max' => '描述最多不能超过255个字符',
|
||||
'related_tco_category.integer' => '关联TCO分类格式错误',
|
||||
'related_tco_category.string' => '关联TCO分类格式错误',
|
||||
'related_tco_category.checkRelatedTcoCategory' => '该TCO分类已绑定',
|
||||
'sort.integer' => '排序格式错误',
|
||||
'level.integer' => '级别格式错误',
|
||||
'is_show.in' => '是否显示格式错误',
|
||||
@@ -84,4 +85,32 @@ class ProductCategoryValidate extends Validate
|
||||
{
|
||||
return $this->remove('id', 'require|integer')->remove('pid', 'different|checkPidNotBeChildren');
|
||||
}
|
||||
|
||||
// 验证related_tco_category
|
||||
protected function checkRelatedTcoCategory($value, $rule, $data = [])
|
||||
{
|
||||
if (empty($value)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
$val = ProductCategoryModel::where(function($query) use($value) {
|
||||
$arr = explode(",", $value);
|
||||
foreach ($arr as $v) {
|
||||
$query->whereFindInSet('related_tco_category', $v, 'OR');
|
||||
}
|
||||
})->column('id');
|
||||
if (!empty($val)) {
|
||||
$size = count($val);
|
||||
// 如果存在超过一个,直接验证失败
|
||||
if ($size > 1) {
|
||||
return false;
|
||||
}
|
||||
// 如果存在一个,并存在的id不为自身,验证失败(考虑更新场景查到自身情况)
|
||||
if ($size == 1 && $val[0] != $data['id']) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,8 +5,6 @@ namespace app\admin\validate\v1;
|
||||
|
||||
use think\Validate;
|
||||
|
||||
use function PHPSTORM_META\type;
|
||||
|
||||
class ProductValidate extends Validate
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -18,7 +18,7 @@ class SysBannerItemValidate extends Validate
|
||||
'banner_id' => 'require|integer|gt:0',
|
||||
'title' => 'require|max:256',
|
||||
'title_txt_color' => 'max:7',
|
||||
'desc' => 'max:1024',
|
||||
'desc' => 'max:2048',
|
||||
'desc_txt_color' => 'max:7',
|
||||
'type' => 'in:image,video',
|
||||
'image' => 'max:255',
|
||||
@@ -45,7 +45,7 @@ class SysBannerItemValidate extends Validate
|
||||
'title.require' => '名称不能为空',
|
||||
'title.max' => '名称最多不能超过256个字符',
|
||||
'title_txt_color.max' => '名称字体颜色最多不能超过7个字符',
|
||||
'desc.max' => '描述最多不能超过1024个字符',
|
||||
'desc.max' => '描述最多不能超过2048个字符',
|
||||
'desc_txt_color.max' => '描述字体颜色最多不能超过7个字符',
|
||||
'type.in' => '显示类型必须是image或video',
|
||||
'image.max' => '图片地址最多不能超过255个字符',
|
||||
|
||||
@@ -43,7 +43,6 @@ class SysBannerValidate extends BaseValidate
|
||||
'at_platform.in' => '显示端口只能是pc或mobile',
|
||||
'at_page.max' => '页面位置最多255个字符',
|
||||
'unique_label.max' => '唯一标识最多64个字符',
|
||||
'unique_label.mustOmit' => '更新时不能有unique_label字段',
|
||||
'name.require' => '名称不能为空',
|
||||
'name.max' => '名称最多64个字符',
|
||||
'desc.max' => '描述最多255个字符',
|
||||
@@ -61,6 +60,6 @@ class SysBannerValidate extends BaseValidate
|
||||
// 编辑场景
|
||||
public function sceneEdit()
|
||||
{
|
||||
return $this->remove('language_id', 'require|integer')->append('unique_label', 'mustOmit');
|
||||
return $this->remove('language_id', 'require|integer');
|
||||
}
|
||||
}
|
||||
|
||||
61
app/admin/validate/v1/SysMallStoreEntranceValidate.php
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace app\admin\validate\v1;
|
||||
|
||||
use think\Validate;
|
||||
|
||||
class SysMallStoreEntranceValidate extends Validate
|
||||
{
|
||||
/**
|
||||
* 定义验证规则
|
||||
* 格式:'字段名' => ['规则1','规则2'...]
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $rule = [
|
||||
'id' => 'require|integer',
|
||||
'language_id' => 'require|integer',
|
||||
'name' => 'require|max:255',
|
||||
'image' => 'require|max:255',
|
||||
'hover_image' => 'max:255',
|
||||
'link' => 'url|max:500',
|
||||
'sort' => 'require|integer',
|
||||
'disabled' => 'in:0,1',
|
||||
];
|
||||
|
||||
/**
|
||||
* 定义错误信息
|
||||
* 格式:'字段名.规则名' => '错误信息'
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $message = [
|
||||
'id.require' => 'ID不能为空',
|
||||
'id.integer' => 'ID必须是整数',
|
||||
'language_id.require' => '语言ID不能为空',
|
||||
'language_id.integer' => '语言ID必须是整数',
|
||||
'name.require' => '商城名称不能为空',
|
||||
'name.max' => '商城名称长度不能超过:rule个字符',
|
||||
'image.require' => '图片不能为空',
|
||||
'image.max' => '图片长度不能超过:rule个字符',
|
||||
'hover_image.max' => '悬浮图长度不能超过:rule个字符',
|
||||
'link.url' => '链接地址必须是有效的URL',
|
||||
'link.max' => '链接地址长度不能超过:rule个字符',
|
||||
'sort.require' => '排序不能为空',
|
||||
'sort.integer' => '排序必须是整数',
|
||||
'disabled.in' => '禁用状态只能是0或1',
|
||||
];
|
||||
|
||||
// 新增场景
|
||||
protected function sceneCreate()
|
||||
{
|
||||
return $this->remove('id', 'require|integer');
|
||||
}
|
||||
|
||||
// 更新场景
|
||||
protected function sceneUpdate()
|
||||
{
|
||||
return $this->append('id', 'require|integer');
|
||||
}
|
||||
}
|
||||
33
app/common/model/ProductCategoryRecommendBaseModel.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace app\common\model;
|
||||
|
||||
/**
|
||||
* 产品分类推荐模型
|
||||
* @mixin \think\Model
|
||||
*/
|
||||
class ProductCategoryRecommendBaseModel extends BaseModel
|
||||
{
|
||||
// 表名
|
||||
protected $name = 'product_category_recommend';
|
||||
|
||||
// 主键
|
||||
protected $pk = 'id';
|
||||
|
||||
// 字段信息
|
||||
protected $schema = [
|
||||
'id' => 'int',
|
||||
'language_id' => 'int',
|
||||
'category_id' => 'int',
|
||||
'title' => 'string',
|
||||
'image' => 'string',
|
||||
'desc' => 'string',
|
||||
'link' => 'string',
|
||||
'sort' => 'int',
|
||||
'disabled' => 'int',
|
||||
'created_at' => 'datetime',
|
||||
'updated_at' => 'datetime',
|
||||
'deleted_at' => 'datetime'
|
||||
];
|
||||
}
|
||||
32
app/common/model/SysMallStoreEntranceBaseModel.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace app\common\model;
|
||||
|
||||
/**
|
||||
* 系统商城店铺入口模型
|
||||
* @mixin \think\Model
|
||||
*/
|
||||
class SysMallStoreEntranceBaseModel extends BaseModel
|
||||
{
|
||||
// 表名
|
||||
protected $name = 'sys_mall_store_entrance';
|
||||
|
||||
// 主键
|
||||
protected $pk = 'id';
|
||||
|
||||
// 字段信息
|
||||
protected $schema = [
|
||||
'id' => 'int',
|
||||
'language_id' => 'int',
|
||||
'name' => 'string',
|
||||
'image' => 'string',
|
||||
'hover_image' => 'string',
|
||||
'link' => 'string',
|
||||
'sort' => 'int',
|
||||
'disabled' => 'int',
|
||||
'created_at' => 'datetime',
|
||||
'updated_at' => 'datetime',
|
||||
'deleted_at' => 'datetime',
|
||||
];
|
||||
}
|
||||
@@ -21,7 +21,9 @@ class SysNavigationItemBaseModel extends BaseModel
|
||||
'nav_id' => 'int',
|
||||
'pid' => 'int',
|
||||
'name' => 'string',
|
||||
'desc' => 'string',
|
||||
'icon' => 'string',
|
||||
'image' => 'string',
|
||||
'link_to' => 'string',
|
||||
'link' => 'string',
|
||||
'sort' => 'int',
|
||||
|
||||
@@ -8,6 +8,7 @@ use app\index\model\LanguageModel;
|
||||
use app\index\model\ProductCategoryModel;
|
||||
use app\index\model\ProductModel;
|
||||
use app\index\model\SysConfigModel;
|
||||
use app\index\model\SysMallStoreEntranceModel;
|
||||
use app\index\model\SysNavigationItemModel;
|
||||
use think\facade\Lang;
|
||||
use think\facade\View;
|
||||
@@ -38,7 +39,7 @@ abstract class Common extends BaseController
|
||||
}
|
||||
|
||||
// 获取产品分类
|
||||
$categorys = $this->getProductCategory($this->lang_id);
|
||||
$categorys = $this->getProductCategory($this->lang_id, true);
|
||||
// 输出产品分类
|
||||
View::assign('header_categorys', $categorys);
|
||||
|
||||
@@ -47,6 +48,9 @@ abstract class Common extends BaseController
|
||||
// 输出热销产品
|
||||
View::assign('header_hot_products', $hot_products);
|
||||
|
||||
// 获取商品购买入口
|
||||
View::assign("header_mall_entrance", $this->getMallStoreEntrance($this->lang_id));
|
||||
|
||||
// 输出顶部导航
|
||||
View::assign('header_navigation', $this->getNavigation('NAV_67f3701f3e831', $this->lang_id));
|
||||
|
||||
@@ -78,7 +82,7 @@ abstract class Common extends BaseController
|
||||
}
|
||||
|
||||
// 获取产品分类
|
||||
protected function getProductCategory($language = 1)
|
||||
protected function getProductCategory($language = 1, $with_recommends = false)
|
||||
{
|
||||
$categorys = ProductCategoryModel::field([
|
||||
'id',
|
||||
@@ -87,15 +91,48 @@ abstract class Common extends BaseController
|
||||
'icon',
|
||||
'level'
|
||||
])
|
||||
->when($with_recommends, function($query) {
|
||||
$query->with(['recommends' => function($query) {
|
||||
$query->field(['id', 'category_id', 'title', 'image', 'desc', 'link'])->disabled(false)
|
||||
->order(['sort' => 'asc', 'id' => 'desc']);
|
||||
}]);
|
||||
})
|
||||
->language($language)
|
||||
->displayed()
|
||||
->order(['sort' => 'asc', 'id' => 'desc'])
|
||||
->select();
|
||||
->select()
|
||||
->hidden(["recommends.category_id"]);
|
||||
if ($categorys->isEmpty()) {
|
||||
return [];
|
||||
}
|
||||
|
||||
return array_to_tree($categorys->toArray(), 0, 'pid', 1, false);
|
||||
return $this->toTreeAndChunk($categorys->toArray(), 0, 1);
|
||||
}
|
||||
private function toTreeAndChunk(array $categorys, int $pid, int|bool $level): array
|
||||
{
|
||||
$ret = [];
|
||||
foreach ($categorys as $item) {
|
||||
if ($item['pid'] == $pid) {
|
||||
$lv = $level;
|
||||
if ($level !== false) {
|
||||
$item['level'] = $level;
|
||||
$lv = $level + 1;
|
||||
}
|
||||
$children = $this->toTreeAndChunk($categorys, $item['id'], $lv);
|
||||
if (!empty($children)) {
|
||||
if ($lv == 1) {
|
||||
$item['children'] = array_chunk($children, 2);
|
||||
} else if ($lv == 2) {
|
||||
$item['children'] = array_chunk($children, 3);
|
||||
} else {
|
||||
$item['children'] = $children;
|
||||
}
|
||||
}
|
||||
$ret[] = $item;
|
||||
}
|
||||
}
|
||||
|
||||
return $ret;
|
||||
}
|
||||
|
||||
// 获取顶部导航
|
||||
@@ -164,6 +201,26 @@ abstract class Common extends BaseController
|
||||
return $languages;
|
||||
}
|
||||
|
||||
// 获取商品购买入口
|
||||
private function getMallStoreEntrance($language = 1)
|
||||
{
|
||||
return SysMallStoreEntranceModel::field([
|
||||
'id',
|
||||
'name',
|
||||
'image',
|
||||
'hover_image',
|
||||
'link'
|
||||
])
|
||||
->language($language)
|
||||
->enabled()
|
||||
->order(['sort' => 'asc', 'id' => 'desc'])
|
||||
->select()
|
||||
?->each(function($item) {
|
||||
$item->image = thumb($item->image);
|
||||
return $item;
|
||||
});
|
||||
}
|
||||
|
||||
// 获取系统联系方式配置
|
||||
protected function getSysConfig($language, $group = [])
|
||||
{
|
||||
|
||||
@@ -267,6 +267,59 @@ class Product extends Common
|
||||
return View::fetch('subcategory');
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 单纯分类页
|
||||
*/
|
||||
public function classify()
|
||||
{
|
||||
$pid = request()->param('id/d', 0);
|
||||
|
||||
// 获取当前选中的父分类
|
||||
$parent = ProductCategoryModel::field(['id', 'name'])->find($pid);
|
||||
View::assign('parent', $parent);
|
||||
|
||||
// 获取分类及产品信息
|
||||
$categorys = ProductCategoryModel::field(['id', 'pid', 'name', 'path', 'level'])
|
||||
->language($this->lang_id)
|
||||
->displayed(true)
|
||||
->children($pid)
|
||||
->order(['pid' => 'asc', 'sort' => 'asc', 'id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
|
||||
// 组装第三级分类所属产品数据
|
||||
$lv3_id_arr = array_column(array_filter($categorys, fn($item)=> $item['level'] === 3), 'id');
|
||||
$products = ProductModel::field([
|
||||
'id',
|
||||
'category_id',
|
||||
'name',
|
||||
'short_name',
|
||||
'cover_image',
|
||||
'spu'
|
||||
])
|
||||
->byCategory($lv3_id_arr)
|
||||
->language($this->lang_id)
|
||||
->enabled(true)
|
||||
->onSale(true)
|
||||
->onShelves(true)
|
||||
->select()
|
||||
->toArray();
|
||||
$product_groups = [];
|
||||
foreach ($products as $product) {
|
||||
$product_groups[$product['category_id']][] = $product;
|
||||
}
|
||||
foreach ($categorys as $key => $category) {
|
||||
if ($category['level'] < 3) continue;
|
||||
$categorys[$key]['products'] = $product_groups[$category['id']] ?? [];
|
||||
}
|
||||
|
||||
$tree = array_to_tree($categorys, $pid);
|
||||
View::assign('categorys', $tree);
|
||||
|
||||
return View::fetch('classify');
|
||||
}
|
||||
|
||||
/**
|
||||
* 产品搜索
|
||||
*/
|
||||
|
||||
104
app/index/controller/TopicLaptop.php
Normal file
@@ -0,0 +1,104 @@
|
||||
<?php
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace app\index\controller;
|
||||
|
||||
use app\index\model\SysBannerModel;
|
||||
use think\facade\View;
|
||||
|
||||
class TopicLaptop extends Common
|
||||
{
|
||||
/**
|
||||
* 专题 - 笔记本电脑首页
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
|
||||
$banners = SysBannerModel::with([
|
||||
'items' => function ($query) {
|
||||
$query->withoutField(['sort', 'created_at', 'updated_at', 'deleted_at'])
|
||||
->order(['sort' => 'asc', 'id' => 'desc'])
|
||||
->enabled(true);
|
||||
}
|
||||
])
|
||||
->atPlatform(request()->from)
|
||||
->uniqueLabel([
|
||||
'BANNER_693a268c8aa5f', // 专题 - 笔记本首页 - 焦点图
|
||||
'BANNER_693a26b1ad252', // 专题 - 笔记本首页 - 性能介绍
|
||||
'BANNER_693a27b767c8c', // 专题 - 笔记本首页 - CPU介绍
|
||||
'BANNER_693a28740b8a7', // 专题 - 笔记本首页 - 显卡介绍
|
||||
'BANNER_693a28aa8412d', // 专题 - 笔记本首页 - 运行内存介绍
|
||||
'BANNER_693a29009fa72', // 专题 - 笔记本首页 - 硬盘介绍
|
||||
'BANNER_693a29263c609', // 专题 - 笔记本首页 - 散热系统介绍
|
||||
'BANNER_693a2959958bc', // 专题 - 笔记本首页 - 行业App运行介绍
|
||||
'BANNER_693a298342b38', // 专题 - 笔记本首页 - 柔光屏介绍
|
||||
'BANNER_693a2ad31fbe8', // 专题 - 笔记本首页 - 色域介绍
|
||||
'BANNER_693a2b0327ac3', // 专题 - 笔记本首页 - 防眩光介绍
|
||||
'BANNER_693a2cc70c762', // 专题 - 笔记本首页 - 外形质感介绍
|
||||
'BANNER_693a2d3113d14', // 专题 - 笔记本首页 - 网卡介绍
|
||||
'BANNER_693a2d53ac247', // 专题 - 笔记本首页 - 电池续航介绍
|
||||
'BANNER_693a2d7f5fa21', // 专题 - 笔记本首页 - 接口介绍
|
||||
'BANNER_693a2f2114eb3', // 专题 - 笔记本首页 - 使用场景焦点图
|
||||
'BANNER_693a2f92baaa3', // 专题 - 笔记本首页 - 摄像头/麦克风/安全介绍
|
||||
'BANNER_693a2fad26f55', // 专题 - 笔记本首页 - 系统预装介绍
|
||||
'BANNER_693a2ff4629bd', // 专题 - 笔记本首页 - 产品检测介绍
|
||||
'BANNER_693a30e9e4572', // 专题 - 笔记本首页 - 网页脚注
|
||||
])
|
||||
->language($this->lang_id)
|
||||
->enabled(true)
|
||||
->order(['sort' => 'asc', 'id' => 'desc'])
|
||||
->select();
|
||||
|
||||
$data = [];
|
||||
if (!$banners->isEmpty()) {
|
||||
$banners_map = [];
|
||||
foreach ($banners as $banner) {
|
||||
$banners_map[$banner->unique_label] = $banner;
|
||||
}
|
||||
|
||||
// 焦点图轮播图
|
||||
$data['top_focus_images'] = data_get($banners_map, 'BANNER_693a268c8aa5f')?->items->toArray();
|
||||
// 性能介绍
|
||||
$data['perf'] = data_get($banners_map, 'BANNER_693a26b1ad252')?->items->toArray();
|
||||
// CPU介绍
|
||||
$data['cpu'] = data_get($banners_map, 'BANNER_693a27b767c8c')?->items->toArray();
|
||||
// 显卡介绍
|
||||
$data['gpu'] = data_get($banners_map, 'BANNER_693a28740b8a7')?->items->toArray();
|
||||
// 运行内存介绍
|
||||
$data['ram'] = data_get($banners_map, 'BANNER_693a28aa8412d')?->items->first()?->toArray();
|
||||
// 硬盘介绍
|
||||
$data['hard_drive'] = data_get($banners_map, 'BANNER_693a29009fa72')?->items->toArray();
|
||||
// 散热系统介绍
|
||||
$data['cooling_system'] = data_get($banners_map, 'BANNER_693a29263c609')?->items->toArray();
|
||||
// 行业App运行介绍
|
||||
$data['apps'] = data_get($banners_map, 'BANNER_693a2959958bc')?->items->first()?->toArray();
|
||||
// 柔光屏介绍
|
||||
$data['screen_soft_light'] = data_get($banners_map, 'BANNER_693a298342b38')?->items->toArray();
|
||||
// 色域介绍
|
||||
$data['screen_color_gamut'] = data_get($banners_map, 'BANNER_693a2ad31fbe8')?->items->toArray();
|
||||
// 防眩光介绍
|
||||
$data['screen_anti_glare'] = data_get($banners_map, 'BANNER_693a2b0327ac3')?->items->toArray();
|
||||
// 外形质感介绍
|
||||
$data['exterior_texture'] = data_get($banners_map, 'BANNER_693a2cc70c762')?->items->toArray();
|
||||
// 网卡介绍
|
||||
$data['network_card'] = data_get($banners_map, 'BANNER_693a2d3113d14')?->items->toArray();
|
||||
// 电池续航介绍
|
||||
$data['battery_life'] = data_get($banners_map, 'BANNER_693a2d53ac247')?->items->toArray();
|
||||
// 接口介绍
|
||||
$data['interface'] = data_get($banners_map, 'BANNER_693a2d7f5fa21')?->items->toArray();
|
||||
// 使用场景焦点图
|
||||
$data['scene_focus_images'] = data_get($banners_map, 'BANNER_693a2f2114eb3')?->items->toArray();
|
||||
// 摄像头/麦克风/安全介绍
|
||||
$data['camare_microphone_security'] = data_get($banners_map, 'BANNER_693a2f92baaa3')?->items->toArray();
|
||||
// 系统预装介绍
|
||||
$data['unified_preinstall'] = data_get($banners_map, 'BANNER_693a2fad26f55')?->items->first()?->toArray();
|
||||
// 产品检测介绍
|
||||
$data['product_testing'] = data_get($banners_map, 'BANNER_693a2ff4629bd')?->items->toArray();
|
||||
// 网页脚注
|
||||
$data['webpage_footnotes'] = data_get($banners_map, 'BANNER_693a30e9e4572')?->items->first()?->toArray();
|
||||
}
|
||||
View::assign('data', $data);
|
||||
|
||||
return View::fetch('index');
|
||||
}
|
||||
}
|
||||
@@ -6,6 +6,9 @@ return [
|
||||
'产品列表' => 'Products',
|
||||
'搜索' => 'Search',
|
||||
'搜索历史' => 'Search History',
|
||||
'请输入搜索关键词' => 'Please enter a search keyword',
|
||||
'搜索记录' => 'Search History',
|
||||
'清空' => 'Clear',
|
||||
'请择地区' => 'SELECT A REGION',
|
||||
'产品' => 'Product',
|
||||
'联系方式' => 'Contact',
|
||||
@@ -219,4 +222,21 @@ return [
|
||||
'联系我们' => 'Contact US',
|
||||
'目录' => 'Content'
|
||||
],
|
||||
|
||||
// 笔记本专题 - 首页
|
||||
'topiclaptop/index' => [
|
||||
'CineBench R23 多核跑分' => 'Outperforms Ryzen 5 & Intel i5',
|
||||
'*此跑分为ORICO实验室测定所得,请以实际使用为准' => '*Data measured by ORICO Lab. Actual performance may vary.',
|
||||
'3DMARK Time Spy显卡得分' => 'Handles Office & Gaming with Ease',
|
||||
'肯辛通锁孔' => 'Kensington <br/> Lock Slot',
|
||||
'千兆网口' => 'Gigabit <br/> Ethernet',
|
||||
'USB-A<br/>(5Gbps)' => 'USB-A <br/> (5Gbps)',
|
||||
'3.5mm<br/>耳麦合一' => '3.5mm <br/> Combo Audio',
|
||||
'TF口3.0' => 'TF 3.0 <br/> Card Slot',
|
||||
'全功能<br/>USB-C' => 'All-in-One <br/> USB-C',
|
||||
"接口大满贯" => "Full-Featured Ports",
|
||||
"酷睿i5-12450H" => "Core i5-12450H",
|
||||
"锐龙9 6900HX" => "Ryzen9 6900HX",
|
||||
"标配多种接口,会议室连接电脑、</br>U盘传输文件、TF卡读取等,全都轻松搞定" => "Versatile Ports for Easy Connectivity. Effortlessly</br> link to projectors, U disks, TF cards, and more.",
|
||||
],
|
||||
];
|
||||
@@ -5,10 +5,17 @@ return [
|
||||
'产品列表' => 'Products',
|
||||
'店铺' => 'Store',
|
||||
'搜索记录' => 'Search History',
|
||||
'热销产品' => 'Popular Products',
|
||||
'产品' => 'Product',
|
||||
'联系我们' => 'Contact',
|
||||
|
||||
// 新导航栏 - 2023-03-31
|
||||
'搜索' => 'Search',
|
||||
'搜索产品、分类...' => 'Search products and categories...',
|
||||
'最近搜索' => 'Recent Searches',
|
||||
'清空' => 'Clear',
|
||||
'热销产品' => 'Popular Products',
|
||||
'购买' => 'Buy',
|
||||
|
||||
// 返回文本
|
||||
'提交成功' => 'success',
|
||||
'提交失败' => 'fail',
|
||||
@@ -224,4 +231,21 @@ return [
|
||||
'联系我们' => 'Contact US',
|
||||
'目录' => 'Content'
|
||||
],
|
||||
|
||||
// 笔记本专题 - 首页
|
||||
'topiclaptop/index' => [
|
||||
'CineBench R23 多核跑分' => 'Outperforms Ryzen 5 & Intel i5',
|
||||
'*此跑分为ORICO实验室测定所得,请以实际使用为准' => '*Data measured by ORICO Lab. Actual performance may vary.',
|
||||
'3DMARK Time Spy显卡得分' => 'Handles Office & Gaming with Ease',
|
||||
'肯辛通锁孔' => 'Kensington <br/> Lock Slot',
|
||||
'千兆网口' => 'Gigabit <br/> Ethernet',
|
||||
'USB-A<br/>(5Gbps)' => 'USB-A <br/> (5Gbps)',
|
||||
'3.5mm<br/>耳麦合一' => '3.5mm <br/> Combo Audio',
|
||||
'TF口3.0' => 'TF 3.0 <br/> Card Slot',
|
||||
'全功能<br/>USB-C' => 'All-in-One <br/> USB-C',
|
||||
"接口大满贯" => "Full-Featured Ports",
|
||||
"酷睿i5-12450H" => "Core i5-12450H",
|
||||
"锐龙9 6900HX" => "Ryzen9 6900HX",
|
||||
"标配多种接口,会议室连接电脑、U盘传输文件、TF卡读取等,全都轻松搞定" => "Versatile Ports for Easy Connectivity. Effortlessly link to pro",
|
||||
],
|
||||
];
|
||||
@@ -17,6 +17,12 @@ class ProductCategoryModel extends ProductCategoryBaseModel
|
||||
// 软件删除时间字段
|
||||
protected $deleteTime = 'deleted_at';
|
||||
|
||||
// 关联产品推荐
|
||||
public function recommends()
|
||||
{
|
||||
return $this->hasMany(ProductCategoryRecommendModel::class, 'category_id', 'id');
|
||||
}
|
||||
|
||||
// 所属语言范围查询
|
||||
public function scopeLanguage($query, $language)
|
||||
{
|
||||
|
||||
30
app/index/model/ProductCategoryRecommendModel.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace app\index\model;
|
||||
|
||||
use app\common\model\ProductCategoryRecommendBaseModel;
|
||||
use think\model\concern\SoftDelete;
|
||||
|
||||
/**
|
||||
* 产品分类推荐模型
|
||||
* @mixin \think\Model
|
||||
*/
|
||||
class ProductCategoryRecommendModel extends ProductCategoryRecommendBaseModel
|
||||
{
|
||||
// 启用软件删除
|
||||
use SoftDelete;
|
||||
// 软件删除时间字段
|
||||
protected $deleteTime = 'deleted_at';
|
||||
|
||||
// 所属语言范围查询
|
||||
public function scopeLanguage($query, $language)
|
||||
{
|
||||
$query->where($this->getTable() . '.language_id', '=', $language);
|
||||
}
|
||||
|
||||
public function scopeDisabled($query, $disabled = true)
|
||||
{
|
||||
$query->where($this->getTable() . '.disabled', '=', (int)$disabled);
|
||||
}
|
||||
}
|
||||
43
app/index/model/SysMallStoreEntranceModel.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
declare (strict_types = 1);
|
||||
|
||||
namespace app\index\model;
|
||||
|
||||
use app\common\model\SysMallStoreEntranceBaseModel;
|
||||
use think\model\concern\SoftDelete;
|
||||
|
||||
/**
|
||||
* 系统商城店铺入口模型
|
||||
* @mixin \think\Model
|
||||
*/
|
||||
class SysMallStoreEntranceModel extends SysMallStoreEntranceBaseModel
|
||||
{
|
||||
// 启用软删除
|
||||
use SoftDelete;
|
||||
// 软删除字段
|
||||
protected $deleteTime = 'deleted_at';
|
||||
|
||||
// 关联语言
|
||||
public function language()
|
||||
{
|
||||
return $this->belongsTo(\app\index\model\LanguageModel::class, 'language_id', 'id');
|
||||
}
|
||||
|
||||
// 所属语言范围查询
|
||||
public function scopeLanguage($query, $language)
|
||||
{
|
||||
$query->where($this->getTable() . '.language_id', '=', $language);
|
||||
}
|
||||
|
||||
// 查询启用状态
|
||||
public function scopeEnabled($query)
|
||||
{
|
||||
$query->where('disabled', '=', 0);
|
||||
}
|
||||
|
||||
// 查询禁用状态
|
||||
public function scopeDisabled($query)
|
||||
{
|
||||
$query->where('disabled', '=', 1);
|
||||
}
|
||||
}
|
||||
@@ -18,6 +18,8 @@ Route::group('product', function () {
|
||||
Route::get('category/:id', 'Product/category');
|
||||
// 产品分类 - 查看子类
|
||||
Route::get('subcategory/:id', 'Product/subcategory');
|
||||
// 单纯分类页
|
||||
Route::get('classify/:id', 'Product/classify');
|
||||
// 产品详情页
|
||||
Route::get('detail/:id', 'Product/detail');
|
||||
// 产品询盘
|
||||
@@ -107,10 +109,16 @@ Route::group('topic', function () {
|
||||
});
|
||||
|
||||
// 专题 - 电力品线
|
||||
Route::group("power_prodline", function() {
|
||||
Route::group('power_prodline', function() {
|
||||
// 专题 - 电力品线首页
|
||||
Route::get('index', 'TopicPowerProdline/index');
|
||||
});
|
||||
|
||||
// 专题 - 笔记本电脑
|
||||
Route::group('laptop', function() {
|
||||
// 专题 - 笔记本电脑首页
|
||||
Route::get('index', 'TopicLaptop/index');
|
||||
});
|
||||
});
|
||||
|
||||
// 数据迁移
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
<!-- banner-->
|
||||
<div class="oidx-banner">
|
||||
{notempty name="focus_images"}
|
||||
<div class="swiper-container bannerswiper">
|
||||
<div class="swiper-container bannerswiper" style="background: #fff;">
|
||||
<div class="swiper-wrapper">
|
||||
{volist name="focus_images" id="fi"}
|
||||
<div class="swiper-slide">
|
||||
|
||||
225
app/index/view/mobile/product/classify.html
Normal file
@@ -0,0 +1,225 @@
|
||||
{extend name="public/base" /}
|
||||
|
||||
{block name="style"}
|
||||
<link rel="stylesheet" href="__CSS__/category.css">
|
||||
|
||||
<script type="text/javascript">
|
||||
(function (doc, win) {
|
||||
var docEl = doc.documentElement;
|
||||
var resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize';
|
||||
|
||||
function setRootFontSize() {
|
||||
var clientWidth = docEl.clientWidth;
|
||||
if (!clientWidth) return;
|
||||
var fontSize = clientWidth / 8.04; // 750px/7.5=100px,375px/7.5=50px
|
||||
// 直接修改内联样式,优先级最高
|
||||
docEl.setAttribute('style', 'font-size: ' + fontSize + 'px !important;');
|
||||
}
|
||||
|
||||
setRootFontSize();
|
||||
win.addEventListener(resizeEvt, setRootFontSize);
|
||||
doc.addEventListener('DOMContentLoaded', setRootFontSize);
|
||||
})(document, window);
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
{/block}
|
||||
|
||||
{block name="main"}
|
||||
<!-- 顶部返回栏(已完全按图纸修改) -->
|
||||
<div class="top-box">
|
||||
<div class="top-bar">
|
||||
<div class="back">
|
||||
<image src="__IMAGES__/left.png"></image>
|
||||
</div>
|
||||
<div class="title">{$parent.name|default=''}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="main">
|
||||
<!-- 左侧导航 -->
|
||||
{if condition="!empty($categorys)"}
|
||||
<ul class="sidebar">
|
||||
{volist name="categorys" id="category"}
|
||||
<li class="nav-item {eq name='$key' value='0'}active{/eq}" data-tab="tab{$category.id}">{$category.name}</li>
|
||||
{/volist}
|
||||
<li style="background: #fff;" class="li-bottom"></li>
|
||||
</ul>
|
||||
|
||||
<!-- 右侧分区内容 -->
|
||||
<div class="right-content">
|
||||
{volist name="categorys" id="category"}
|
||||
<div class="tab-pane {eq name='$key' value='0'}active{/eq}" id="tab{$category.id}">
|
||||
{if condition="!empty($category.children)"}
|
||||
{volist name="$category.children" id="child"}
|
||||
<section class="sec-box">
|
||||
<div class="sec-header">
|
||||
<div class="sec-title">{$child.name}</div>
|
||||
<a class="sec-arrow" href="{:url('product/subcategory', ['id' => $child.id])}" target="_self">
|
||||
<img src="__IMAGES__/y.png" alt="">
|
||||
</a>
|
||||
</div>
|
||||
{if condition="!empty($child.products)"}
|
||||
<div class="scroll-box">
|
||||
{volist name="$child.products" id="pro"}
|
||||
<a class="card" href="{:url('product/detail', ['id' => $pro.id])}" style="background: #fff;">
|
||||
<div class="card-img">
|
||||
<img src="{$pro.cover_image}" alt="">
|
||||
</div>
|
||||
<div class="card-info">
|
||||
<div class="card-name">{$pro.name}</div>
|
||||
<div class="card-model">{$pro.spu}</div>
|
||||
</div>
|
||||
</a>
|
||||
{/volist}
|
||||
</div>
|
||||
{/if}
|
||||
</section>
|
||||
{/volist}
|
||||
{/if}
|
||||
</div>
|
||||
{/volist}
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
{/block}
|
||||
|
||||
{block name="script"}
|
||||
|
||||
<script>
|
||||
// 点击右侧箭头滚动
|
||||
function scrollNext (el)
|
||||
{
|
||||
const box = el.closest('section')?.querySelector('.scroll-box')
|
||||
|| el.parentElement.nextElementSibling
|
||||
if (box) box.scrollBy({ left: 150, behavior: 'smooth' })
|
||||
}
|
||||
const back = document.querySelector('.back')
|
||||
// 左侧Tab切换
|
||||
const navItems = document.querySelectorAll('.nav-item')
|
||||
const tabPanes = document.querySelectorAll('.tab-pane')
|
||||
|
||||
navItems.forEach(item =>
|
||||
{
|
||||
item.addEventListener('click', () =>
|
||||
{
|
||||
// 切换左侧激活状态
|
||||
navItems.forEach(i => i.classList.remove('active'))
|
||||
item.classList.add('active')
|
||||
// 切换右侧内容
|
||||
const target = item.dataset.tab
|
||||
tabPanes.forEach(p => p.classList.remove('active'))
|
||||
document.getElementById(target)?.classList.add('active')
|
||||
})
|
||||
})
|
||||
|
||||
back.addEventListener('click',()=>{
|
||||
window.location.href = document.referrer;
|
||||
})
|
||||
// 更新侧边栏相邻元素的圆角
|
||||
function updateSidebarAdjacentRadius() {
|
||||
const sidebarItems = document.querySelectorAll('.sidebar li');
|
||||
|
||||
// 先移除所有相邻类名
|
||||
sidebarItems.forEach(item => {
|
||||
item.classList.remove('active-prev', 'active-next');
|
||||
});
|
||||
|
||||
// 找到当前激活的项
|
||||
let activeIndex = -1;
|
||||
sidebarItems.forEach((item, index) => {
|
||||
if (item.classList.contains('active')) {
|
||||
activeIndex = index;
|
||||
}
|
||||
});
|
||||
|
||||
// 添加上一个和下一个的类名(使用requestAnimationFrame确保DOM更新)
|
||||
requestAnimationFrame(() => {
|
||||
if (activeIndex > 0) {
|
||||
sidebarItems[activeIndex - 1].classList.add('active-prev');
|
||||
}
|
||||
if (activeIndex < sidebarItems.length - 1) {
|
||||
sidebarItems[activeIndex + 1].classList.add('active-next');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// 绑定点击事件
|
||||
document.querySelectorAll('.sidebar li').forEach(item => {
|
||||
item.addEventListener('click', function() {
|
||||
// 移除所有active
|
||||
document.querySelectorAll('.sidebar li').forEach(li => {
|
||||
li.classList.remove('active');
|
||||
});
|
||||
// 添加active
|
||||
this.classList.add('active');
|
||||
// 更新相邻圆角
|
||||
updateSidebarAdjacentRadius();
|
||||
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
// 页面初始化时调用
|
||||
if (document.querySelector('.sidebar li.active')) {
|
||||
updateSidebarAdjacentRadius();
|
||||
}
|
||||
|
||||
|
||||
// 动态计算 li-bottom 的高度
|
||||
function setLiBottomHeight() {
|
||||
const sidebar = document.querySelector('.sidebar');
|
||||
const liBottom = document.querySelector('.sidebar .li-bottom');
|
||||
const sidebarItems = document.querySelectorAll('.sidebar li:not(.li-bottom)');
|
||||
|
||||
if (!sidebar || !liBottom || sidebarItems.length === 0) return;
|
||||
|
||||
// 计算所有正常li的总高度
|
||||
let totalHeight = 0;
|
||||
sidebarItems.forEach(item => {
|
||||
totalHeight += item.offsetHeight;
|
||||
});
|
||||
|
||||
// 获取sidebar的高度
|
||||
const sidebarHeight = sidebar.offsetHeight;
|
||||
|
||||
// 计算剩余高度
|
||||
const remainingHeight = sidebarHeight - totalHeight;
|
||||
|
||||
// 赋值给 li-bottom
|
||||
if (remainingHeight > 0) {
|
||||
liBottom.style.height = remainingHeight + 'px';
|
||||
} else {
|
||||
liBottom.style.height = '0px';
|
||||
liBottom.style.display = 'none';
|
||||
}
|
||||
}
|
||||
|
||||
// 页面加载时执行
|
||||
window.addEventListener('load', function() {
|
||||
setLiBottomHeight();
|
||||
});
|
||||
|
||||
// 窗口大小改变时重新计算
|
||||
window.addEventListener('resize', function() {
|
||||
console.log('切换了吗')
|
||||
setLiBottomHeight();
|
||||
});
|
||||
|
||||
// 如果侧边栏内容有动态变化,使用 MutationObserver 监听
|
||||
const observer = new MutationObserver(function() {
|
||||
setLiBottomHeight();
|
||||
});
|
||||
|
||||
// 监听侧边栏变化
|
||||
const sidebar = document.querySelector('.sidebar');
|
||||
if (sidebar) {
|
||||
observer.observe(sidebar, {
|
||||
childList: true,
|
||||
subtree: true,
|
||||
attributes: true
|
||||
});
|
||||
}
|
||||
</script>
|
||||
{/block}
|
||||
@@ -1,161 +1,662 @@
|
||||
<header class="oircoEgapp-head">
|
||||
<div class="headtop">
|
||||
<a href="/"><img src="__IMAGES__/logo.png" class="headerlogimg" /></a>
|
||||
<div class="action-r">
|
||||
<div class="right img-responsive cursor_p">
|
||||
<span class="icon-category cursor_p top-menu-toggle"><i class="icon-menu-svg"></i></span>
|
||||
<span class="icon-keyword cursor_p top-search-toggle"><i class="icon-search-svg"></i></span>
|
||||
<span class="mask-up cursor_p top-country-toggle"><i class="icon-lag-svg"></i></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 顶部菜单-->
|
||||
<div class="top-menu">
|
||||
<div class="it-ct">
|
||||
<div class="it-1"><a href="/">{:lang_i18n('首页')}</a></div>
|
||||
</div>
|
||||
<div class="it-ct">
|
||||
<div class="it-1">
|
||||
<div class="it-1-more">{:lang_i18n('产品列表')}<i class="icon-arrow"></i></div>
|
||||
{notempty name="header_categorys"}
|
||||
{volist name="header_categorys" id="ca"}
|
||||
<div class="it-1-2"><a href="{:url('product/category', ['id' => $ca.id])}">{$ca.name}</a></div>
|
||||
{/volist}
|
||||
{/notempty}
|
||||
</div>
|
||||
</div>
|
||||
{notempty name="header_navigation"}
|
||||
{volist name="header_navigation" id="nav"}
|
||||
<div class="it-ct">
|
||||
<div class="it-1">
|
||||
{empty name="nav.children"}
|
||||
<a href="{$nav.link}">{$nav.name}</a>
|
||||
{else/}
|
||||
<div class="it-1-more">{$nav.name}<i class="icon-arrow"></i></div>
|
||||
{volist name="nav.children" id="ch"}
|
||||
<div class="it-1-2"><a href="{$ch.link}">{$ch.name}</a></div>
|
||||
{/volist}
|
||||
{/empty}
|
||||
</div>
|
||||
</div>
|
||||
{/volist}
|
||||
{/notempty}
|
||||
</div>
|
||||
<!-- 顶部搜索-->
|
||||
<div class="top-search">
|
||||
<div class="marsk-container">
|
||||
<div class="popup-quick">
|
||||
<div class="ac-close float_r "><img src="__IMAGES__/close.png"></div>
|
||||
<div class="search-in">
|
||||
<form action="{:url('product/search')}" method="get">
|
||||
<input type="text" name="keywords" placeholder="{:lang_i18n('产品')} USB 2.0...">
|
||||
<button type="submit" id="search-btnput" class="search-button">{:lang_i18n('搜索')}</button>
|
||||
</form>
|
||||
<div class="title-text">
|
||||
<p><a href="#">{:lang_i18n('搜索历史')}</a></p>
|
||||
<div id="history"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 顶部国家选择-->
|
||||
<div class="top-country">
|
||||
<div class="mask"></div>
|
||||
<div class="action-sheet">
|
||||
<div class="menu-title">
|
||||
<div class="menu-name">{:lang_i18n('请择地区')}</div>
|
||||
<div class="close-icon">
|
||||
<img src="__IMAGES__/close.png">
|
||||
</div>
|
||||
</div>
|
||||
<ul>
|
||||
{volist name="header_languages" id="la"}
|
||||
<li>
|
||||
<a href="{$la.lang_url}" target="_blank">
|
||||
<img src="{$la.lang_icon}">{$la.country_en_name} - {$la.lang_en_name}
|
||||
<link rel="stylesheet" href="__CSS__/new_header.css">
|
||||
<header>
|
||||
<div class="mobile-header-box">
|
||||
<div class="mobile-header-left">
|
||||
<img src="__IMAGES__/header/nav.png" class="nav-img">
|
||||
<img src="__IMAGES__/header/x.png" class="nav-img1">
|
||||
<a href="/" target="_self" style="display: flex; justify-content: center;">
|
||||
<img src="__IMAGES__/logo.png" class="nav-log">
|
||||
</a>
|
||||
</li>
|
||||
</div>
|
||||
<div class="mobile-header-right">
|
||||
<img src="__IMAGES__/header/search.png" class="nav-search">
|
||||
<img src="__IMAGES__/header/lang.png" class="nav-lang">
|
||||
<img src="__IMAGES__/header/card.png" class="nav-card">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="nav-dropdown-menu" style="height: 100vh; overflow-y: scroll;-webkit-overflow-scrolling: touch;padding-bottom:9rem;">
|
||||
<!-- 产品列表 - 有子菜单 -->
|
||||
<div class="menu-item has-child">
|
||||
<div class="menu-item-box">
|
||||
<span>{:lang_i18n('产品列表')}</span>
|
||||
<img src="__IMAGES__/header/b.png" class="menu-item-img">
|
||||
</div>
|
||||
{if condition="!empty($header_categorys)"}
|
||||
<div class="sub-menu" style="overflow-y: auto;">
|
||||
{volist name="header_categorys" id="vo" key="idx"}
|
||||
<div class="sub-item"><a href="{:url('product/classify', ['id' => $vo.id])}" target="_self">{$vo.name}</a></div>
|
||||
{/volist}
|
||||
</ul>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
{if condition="!empty($header_navigation)"}
|
||||
{volist name="header_navigation" id="nav"}
|
||||
{empty name='nav.children'}
|
||||
<div class="menu-item no-child" data-link="{$nav.link}">
|
||||
{else/}
|
||||
<div class="menu-item has-child" data-link="{$nav.link}">
|
||||
{/empty}
|
||||
<div class="menu-item-box">
|
||||
<span>{$nav.name}</span>
|
||||
<img src="__IMAGES__/header/b.png" class="menu-item-img">
|
||||
</div>
|
||||
{if condition="!empty($nav.children)"}
|
||||
<div class="sub-menu" style="border: none;" >
|
||||
{volist name="nav.children" id="child"}
|
||||
<div class="sub-item no-padding ">
|
||||
<a href="{$child.link}" target="{$child.blank==1?'_blank':'_self'}" class="sub-item-card">
|
||||
<img src="{$child.image}" alt="" class="sub-item-card-img">
|
||||
<div class="sub-item-card-title">{$child.name}</div>
|
||||
<div class="sub-item-card-name">{$child.desc}</div>
|
||||
</a>
|
||||
</div>
|
||||
{/volist}
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
{/volist}
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<!-- ====================== 购物车弹窗 ====================== -->
|
||||
<div class="modal-overlay" id="cartModal">
|
||||
<div class="modal-content">
|
||||
<img src="__IMAGES__/header/x.png" class="modal-close">
|
||||
{if condition="!empty($header_mall_entrance)"}
|
||||
<div class="modal-items-list">
|
||||
{volist name="header_mall_entrance" id="ma"}
|
||||
{if condition="!empty($ma.link)"}
|
||||
<a class="modal-item" href="{$ma.link}" target="_self">
|
||||
<img src="{$ma.image}" alt="" class="modal-item-img">
|
||||
<div class="modal-item-title">{$ma.name}</div>
|
||||
</a>
|
||||
{else/}
|
||||
<!--悬浮图-->
|
||||
<div class="modal-item" data-link="{$ma.link}" style="cursor: pointer;">
|
||||
<img src="{$ma.image}" alt="" class="modal-item-img">
|
||||
<div class="modal-item-title">{$ma.name}</div>
|
||||
</div>
|
||||
<div class="modal-item" style="display:none">
|
||||
<img src="{$ma.hover_image}" alt="" class="modal-item-img">
|
||||
</div>
|
||||
{/if}
|
||||
{/volist}
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- ====================== 语言弹窗 ====================== -->
|
||||
<div class="modal-overlay" id="langModal">
|
||||
<div class="lang-modal-content">
|
||||
<img src="__IMAGES__/header/x.png" class="modal-close">
|
||||
<div class="lang-items-list">
|
||||
{volist name="header_languages" id="la"}
|
||||
<a class="lang-item" href="{$la.lang_url}" target="_self">
|
||||
<img src="{$la.lang_icon}" />
|
||||
<div>{$la.country_en_name} - {$la.lang_en_name}</div>
|
||||
</a>
|
||||
{/volist}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- ====================== 搜索弹窗 ====================== -->
|
||||
<div class="modal-overlay" id="searchModal">
|
||||
<div class="search-modal-content">
|
||||
<img src="__IMAGES__/header/x.png" class="modal-close">
|
||||
<div class="search-input-box">
|
||||
<input type="text" placeholder="{:lang_i18n('请输入搜索关键词')}" id="searchInput">
|
||||
|
||||
<div class="search-clear-box">
|
||||
<img src="__IMAGES__/header/x.png" alt="{:lang_i18n('清除')}" class="search-clear-btn" id="searchClearBtn" style="display: none;">
|
||||
</div>
|
||||
<!-- <span style="width: 1px; color:#d9d9d9;margin: 0 10px;">|</span> -->
|
||||
<div class="search-submit-box">
|
||||
<img src="__IMAGES__/header/search.png" alt="{:lang_i18n('搜索')}" class="search-submit-icon" id="searchSubmit">
|
||||
</div>
|
||||
</div>
|
||||
<div class="search-history">
|
||||
<div class="search-history-header">
|
||||
<div class="search-history-title">{:lang_i18n('搜索记录')}</div>
|
||||
<div class="search-history-clear" id="clearAllHistory">{:lang_i18n('清空')}</div>
|
||||
</div>
|
||||
<div class="search-history-list" id="searchHistoryList">
|
||||
<!-- 搜索记录会动态显示在这里 -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
// 点击顶部菜单
|
||||
$(".top-menu-toggle").click(function() {
|
||||
$(".top-menu").slideToggle(800);
|
||||
})
|
||||
// 点击一级菜单显示二级菜单
|
||||
$(".it-1-more").on("click", function() {
|
||||
$('.it-1-2').hide();
|
||||
$('.icon-arrow').removeClass('rotate');
|
||||
$(this).siblings('.it-1-2').slideToggle(800);
|
||||
$(this).find('.icon-arrow').addClass('rotate');
|
||||
});
|
||||
//点击搜索
|
||||
$('.top-search-toggle').click(function() {
|
||||
$(".marsk-container").show();
|
||||
})
|
||||
$('.ac-close').click(function() {
|
||||
$(".marsk-container").hide();
|
||||
})
|
||||
// 顶部国家选择
|
||||
$('.top-country-toggle').click(function(){
|
||||
$(".mask,.action-sheet").show();
|
||||
})
|
||||
$('.top-country .close-icon').click(function(){
|
||||
$(".mask,.action-sheet").hide();
|
||||
})
|
||||
<script>
|
||||
|
||||
// 移动端顶部宽度设置和主体内容宽度一致
|
||||
var pageWidth = $('.oricoEGapp').outerWidth();
|
||||
// 设置.header-PC元素的宽度
|
||||
$('.oircoEgapp-head').css('width', pageWidth + 'px');
|
||||
// 可选:监听窗口大小变化,实时更新宽度
|
||||
$(window).resize(function() {
|
||||
var newWidth = $('.oricoEGapp').outerWidth();
|
||||
$('.oircoEgapp-head').css('width', newWidth + 'px');
|
||||
document.addEventListener('DOMContentLoaded', function ()
|
||||
{
|
||||
const navBtn = document.querySelector('.nav-img');
|
||||
const navBtn1 = document.querySelector('.nav-img1');
|
||||
const dropdownMenu = document.querySelector('.nav-dropdown-menu');
|
||||
|
||||
// 禁止body滚动
|
||||
function disableBodyScroll() {
|
||||
document.body.style.overflow = 'hidden';
|
||||
document.body.style.position = 'fixed';
|
||||
document.body.style.top = `-${window.scrollY}px`;
|
||||
document.body.style.width = '100%';
|
||||
}
|
||||
|
||||
// 恢复body滚动
|
||||
function enableBodyScroll() {
|
||||
const scrollY = document.body.style.top;
|
||||
document.body.style.overflow = '';
|
||||
document.body.style.position = '';
|
||||
document.body.style.top = '';
|
||||
document.body.style.width = '';
|
||||
if (scrollY) {
|
||||
window.scrollTo(0, parseInt(scrollY || '0') * -1);
|
||||
}
|
||||
}
|
||||
|
||||
// 复位所有子菜单(关闭并重置滚动位置)
|
||||
function resetAllSubMenus() {
|
||||
let hasOpenMenu = false;
|
||||
document.querySelectorAll('.has-child .sub-menu').forEach(function(subMenu) {
|
||||
if (subMenu.classList.contains('show')) {
|
||||
hasOpenMenu = true;
|
||||
}
|
||||
subMenu.classList.remove('show');
|
||||
// 重置滚动位置到顶部
|
||||
subMenu.scrollTop = 0;
|
||||
});
|
||||
document.querySelectorAll('.has-child').forEach(function(item) {
|
||||
item.classList.remove('open');
|
||||
});
|
||||
|
||||
// 回显搜索历史记录
|
||||
history();
|
||||
})
|
||||
// 如果没有打开的菜单,恢复body滚动
|
||||
if (!hasOpenMenu) {
|
||||
enableBodyScroll();
|
||||
}
|
||||
}
|
||||
|
||||
function history() {
|
||||
var keywords = new URL(window.location.href).searchParams.get('keywords')
|
||||
var history_keywords = localStorage.getItem('header_search_keywords');
|
||||
if (!history_keywords) {
|
||||
history_keywords = [];
|
||||
// 关闭单个子菜单并重置滚动位置
|
||||
function closeSubMenu(subMenu, menuItem) {
|
||||
if (subMenu) {
|
||||
subMenu.classList.remove('show');
|
||||
subMenu.scrollTop = 0; // 重置滚动位置
|
||||
}
|
||||
if (menuItem) {
|
||||
menuItem.classList.remove('open');
|
||||
}
|
||||
// 检查是否还有其他打开的菜单
|
||||
const anyOpen = document.querySelector('.has-child .sub-menu.show');
|
||||
if (!anyOpen) {
|
||||
enableBodyScroll();
|
||||
}
|
||||
}
|
||||
|
||||
// 打开子菜单
|
||||
function openSubMenu(subMenu, menuItem) {
|
||||
// 禁止body滚动
|
||||
disableBodyScroll();
|
||||
|
||||
subMenu.classList.add('show');
|
||||
menuItem.classList.add('open');
|
||||
// 确保新打开的菜单滚动位置在顶部
|
||||
subMenu.scrollTop = 0;
|
||||
}
|
||||
|
||||
// 打开菜单
|
||||
navBtn.addEventListener('click', function (e)
|
||||
{
|
||||
e.stopPropagation();
|
||||
// 禁止body滚动
|
||||
disableBodyScroll();
|
||||
// 关闭所有弹窗
|
||||
closeAllModals();
|
||||
dropdownMenu.classList.add('show');
|
||||
navBtn.style.display = 'none';
|
||||
navBtn1.style.display = 'block';
|
||||
});
|
||||
|
||||
// 关闭菜单 - 复位所有子菜单
|
||||
navBtn1.addEventListener('click', function (e)
|
||||
{
|
||||
e.stopPropagation();
|
||||
dropdownMenu.classList.remove('show');
|
||||
navBtn.style.display = 'block';
|
||||
navBtn1.style.display = 'none';
|
||||
|
||||
// 复位所有子菜单到初始状态
|
||||
resetAllSubMenus();
|
||||
});
|
||||
|
||||
// ====================== 处理所有菜单项(同一时间只展开一个) ======================
|
||||
document.querySelectorAll('.menu-item').forEach(function (item)
|
||||
{
|
||||
const isHasChild = item.classList.contains('has-child');
|
||||
const subMenu = item.querySelector('.sub-menu');
|
||||
const box = item.querySelector('.menu-item-box');
|
||||
|
||||
if (isHasChild && subMenu) {
|
||||
// 移除原有事件,重新绑定(确保只有一个展开)
|
||||
const newBox = box.cloneNode(true);
|
||||
box.parentNode.replaceChild(newBox, box);
|
||||
|
||||
newBox.addEventListener('click', function (e)
|
||||
{
|
||||
e.stopPropagation();
|
||||
|
||||
// 检查当前是否已展开
|
||||
const isOpen = subMenu.classList.contains('show');
|
||||
|
||||
// 关闭所有其他子菜单并重置滚动位置
|
||||
document.querySelectorAll('.has-child').forEach(function (otherItem) {
|
||||
const otherSubMenu = otherItem.querySelector('.sub-menu');
|
||||
if (otherSubMenu && otherSubMenu !== subMenu) {
|
||||
otherSubMenu.classList.remove('show');
|
||||
otherSubMenu.scrollTop = 0; // 重置滚动位置
|
||||
otherItem.classList.remove('open');
|
||||
}
|
||||
});
|
||||
|
||||
// 切换当前菜单
|
||||
if (!isOpen) {
|
||||
openSubMenu(subMenu, item);
|
||||
} else {
|
||||
history_keywords = JSON.parse(history_keywords);
|
||||
closeSubMenu(subMenu, item);
|
||||
}
|
||||
|
||||
// 记录搜索关键词
|
||||
if (keywords) {
|
||||
if (history_keywords.includes(keywords)) {
|
||||
history_keywords.splice(history_keywords.indexOf(keywords), 1);
|
||||
});
|
||||
} else {
|
||||
const link = item.getAttribute('data-link');
|
||||
if (link) {
|
||||
item.addEventListener('click', function (e)
|
||||
{
|
||||
e.stopPropagation();
|
||||
window.location.href = link;
|
||||
});
|
||||
}
|
||||
history_keywords.unshift(keywords);
|
||||
if (history_keywords.length > 3) {
|
||||
history_keywords.pop();
|
||||
}
|
||||
localStorage.setItem('header_search_keywords', JSON.stringify(history_keywords));
|
||||
}
|
||||
|
||||
// 回显搜索历史
|
||||
history_keywords.forEach(function(item) {
|
||||
$('#history').append(
|
||||
$('<a>')
|
||||
.css({
|
||||
'margin-right': '10px'
|
||||
})
|
||||
.attr('href', '{:url("product/search")}?keywords=' + item)
|
||||
.text(item)
|
||||
);
|
||||
});
|
||||
|
||||
return history_keywords;
|
||||
// 阻止子菜单链接冒泡
|
||||
document.querySelectorAll('.sub-item').forEach(function (sub)
|
||||
{
|
||||
sub.addEventListener('click', function (e)
|
||||
{
|
||||
e.stopPropagation();
|
||||
});
|
||||
});
|
||||
|
||||
dropdownMenu.addEventListener('click', function (e)
|
||||
{
|
||||
e.stopPropagation();
|
||||
});
|
||||
|
||||
navBtn1.style.display = 'none';
|
||||
navBtn.style.display = 'block';
|
||||
|
||||
// 关闭所有弹窗的公共函数
|
||||
function closeAllModals ()
|
||||
{
|
||||
cartModal.classList.remove('show');
|
||||
langModal.classList.remove('show');
|
||||
searchModal.classList.remove('show');
|
||||
if (searchInput) {
|
||||
searchInput.value = '';
|
||||
if (searchClearBtn) searchClearBtn.style.display = 'none';
|
||||
}
|
||||
}
|
||||
|
||||
// ====================== 购物车弹窗交互 ======================
|
||||
const cardBtn = document.querySelector('.nav-card');
|
||||
const cartModal = document.getElementById('cartModal');
|
||||
const cartModalClose = cartModal.querySelector('.modal-close');
|
||||
|
||||
cardBtn.addEventListener('click', function (e)
|
||||
{
|
||||
e.stopPropagation();
|
||||
// 关闭下拉菜单和其他弹窗
|
||||
dropdownMenu.classList.remove('show');
|
||||
navBtn.style.display = 'block';
|
||||
navBtn1.style.display = 'none';
|
||||
closeAllModals();
|
||||
// 复位所有子菜单
|
||||
resetAllSubMenus();
|
||||
cartModal.classList.add('show');
|
||||
});
|
||||
|
||||
cartModalClose.addEventListener('click', function ()
|
||||
{
|
||||
cartModal.classList.remove('show');
|
||||
});
|
||||
|
||||
cartModal.addEventListener('click', function (e)
|
||||
{
|
||||
if (e.target === cartModal) {
|
||||
cartModal.classList.remove('show');
|
||||
}
|
||||
});
|
||||
|
||||
// ====================== 语言弹窗交互 ======================
|
||||
const langBtn = document.querySelector('.nav-lang');
|
||||
const langModal = document.getElementById('langModal');
|
||||
const langModalClose = langModal.querySelector('.modal-close');
|
||||
|
||||
langBtn.addEventListener('click', function (e)
|
||||
{
|
||||
e.stopPropagation();
|
||||
// 关闭下拉菜单和其他弹窗
|
||||
dropdownMenu.classList.remove('show');
|
||||
navBtn.style.display = 'block';
|
||||
navBtn1.style.display = 'none';
|
||||
closeAllModals();
|
||||
// 复位所有子菜单
|
||||
resetAllSubMenus();
|
||||
langModal.classList.add('show');
|
||||
});
|
||||
|
||||
langModalClose.addEventListener('click', function ()
|
||||
{
|
||||
langModal.classList.remove('show');
|
||||
});
|
||||
|
||||
langModal.addEventListener('click', function (e)
|
||||
{
|
||||
if (e.target === langModal) {
|
||||
langModal.classList.remove('show');
|
||||
}
|
||||
});
|
||||
|
||||
document.querySelectorAll('.lang-item').forEach(function (item)
|
||||
{
|
||||
item.addEventListener('click', function (e)
|
||||
{
|
||||
e.stopPropagation();
|
||||
console.log('选择了语言:', this.innerText);
|
||||
langModal.classList.remove('show');
|
||||
});
|
||||
});
|
||||
|
||||
// ====================== 搜索记录功能 ======================
|
||||
// 获取搜索记录
|
||||
function getSearchHistory ()
|
||||
{
|
||||
const history = localStorage.getItem('searchHistory');
|
||||
return history ? JSON.parse(history) : [];
|
||||
}
|
||||
|
||||
// 保存搜索记录
|
||||
function saveSearchHistory (history)
|
||||
{
|
||||
localStorage.setItem('searchHistory', JSON.stringify(history));
|
||||
}
|
||||
|
||||
// 添加搜索记录
|
||||
function addSearchHistory (keyword)
|
||||
{
|
||||
if (!keyword || !keyword.trim()) return;
|
||||
keyword = keyword.trim();
|
||||
let history = getSearchHistory();
|
||||
history = history.filter(item => item !== keyword);
|
||||
history.unshift(keyword);
|
||||
if (history.length > 10) {
|
||||
history = history.slice(0, 10);
|
||||
}
|
||||
saveSearchHistory(history);
|
||||
renderSearchHistory();
|
||||
}
|
||||
|
||||
// 删除单条搜索记录
|
||||
function deleteSearchHistoryItem (keyword)
|
||||
{
|
||||
let history = getSearchHistory();
|
||||
history = history.filter(item => item !== keyword);
|
||||
saveSearchHistory(history);
|
||||
renderSearchHistory();
|
||||
}
|
||||
|
||||
// 清空所有搜索记录
|
||||
function clearAllSearchHistory ()
|
||||
{
|
||||
saveSearchHistory([]);
|
||||
renderSearchHistory();
|
||||
}
|
||||
|
||||
// 渲染搜索记录列表
|
||||
function renderSearchHistory ()
|
||||
{
|
||||
const historyList = document.getElementById('searchHistoryList');
|
||||
const history = getSearchHistory();
|
||||
|
||||
if (!historyList) return;
|
||||
|
||||
if (history.length === 0) {
|
||||
historyList.innerHTML = '<div class="empty-history">暂无搜索记录</div>';
|
||||
return;
|
||||
}
|
||||
|
||||
historyList.innerHTML = '';
|
||||
history.forEach(function (keyword)
|
||||
{
|
||||
const itemDiv = document.createElement('div');
|
||||
itemDiv.className = 'search-history-item';
|
||||
itemDiv.innerHTML = `
|
||||
<span>${escapeHtml(keyword)}</span>
|
||||
<img src="__IMAGES__/header/x.png" class="delete-icon" data-keyword="${escapeHtml(keyword)}">
|
||||
`;
|
||||
itemDiv.addEventListener('click', function (e)
|
||||
{
|
||||
if (e.target.classList && e.target.classList.contains('delete-icon')) {
|
||||
e.stopPropagation();
|
||||
deleteSearchHistoryItem(keyword);
|
||||
} else {
|
||||
e.stopPropagation();
|
||||
searchInput.value = keyword;
|
||||
doSearch(keyword);
|
||||
}
|
||||
});
|
||||
historyList.appendChild(itemDiv);
|
||||
});
|
||||
}
|
||||
|
||||
// 简单的防XSS
|
||||
function escapeHtml (str)
|
||||
{
|
||||
return str.replace(/[&<>]/g, function (m)
|
||||
{
|
||||
if (m === '&') return '&';
|
||||
if (m === '<') return '<';
|
||||
if (m === '>') return '>';
|
||||
return m;
|
||||
});
|
||||
}
|
||||
|
||||
// ====================== 搜索弹窗交互 ======================
|
||||
const searchBtn = document.querySelector('.nav-search');
|
||||
const searchModal = document.getElementById('searchModal');
|
||||
const searchModalClose = searchModal.querySelector('.modal-close');
|
||||
const searchInput = document.getElementById('searchInput');
|
||||
const searchSubmit = document.getElementById('searchSubmit');
|
||||
const searchClearBtn = document.getElementById('searchClearBtn');
|
||||
const clearAllHistoryBtn = document.getElementById('clearAllHistory');
|
||||
|
||||
searchInput.addEventListener('input', function (e)
|
||||
{
|
||||
if (searchInput.value.length > 0) {
|
||||
searchClearBtn.style.display = 'block';
|
||||
} else {
|
||||
searchClearBtn.style.display = 'none';
|
||||
}
|
||||
});
|
||||
|
||||
searchClearBtn.addEventListener('click', function (e)
|
||||
{
|
||||
e.stopPropagation();
|
||||
searchInput.value = '';
|
||||
searchClearBtn.style.display = 'none';
|
||||
searchInput.focus();
|
||||
});
|
||||
|
||||
if (clearAllHistoryBtn) {
|
||||
clearAllHistoryBtn.addEventListener('click', function (e)
|
||||
{
|
||||
e.stopPropagation();
|
||||
clearAllSearchHistory();
|
||||
});
|
||||
}
|
||||
|
||||
searchBtn.addEventListener('click', function (e)
|
||||
{
|
||||
e.stopPropagation();
|
||||
// 关闭下拉菜单和其他弹窗
|
||||
dropdownMenu.classList.remove('show');
|
||||
navBtn.style.display = 'block';
|
||||
navBtn1.style.display = 'none';
|
||||
closeAllModals();
|
||||
// 复位所有子菜单
|
||||
resetAllSubMenus();
|
||||
renderSearchHistory();
|
||||
searchModal.classList.add('show');
|
||||
setTimeout(() =>
|
||||
{
|
||||
searchInput.focus();
|
||||
}, 100);
|
||||
});
|
||||
|
||||
searchModalClose.addEventListener('click', function ()
|
||||
{
|
||||
searchModal.classList.remove('show');
|
||||
searchInput.value = '';
|
||||
searchClearBtn.style.display = 'none';
|
||||
});
|
||||
|
||||
searchModal.addEventListener('click', function (e)
|
||||
{
|
||||
if (e.target === searchModal) {
|
||||
searchModal.classList.remove('show');
|
||||
searchInput.value = '';
|
||||
searchClearBtn.style.display = 'none';
|
||||
}
|
||||
});
|
||||
|
||||
// 执行搜索
|
||||
function doSearch (keyword)
|
||||
{
|
||||
if (keyword && keyword.trim()) {
|
||||
const searchKeyword = keyword.trim();
|
||||
console.log('搜索关键词:', searchKeyword);
|
||||
if (searchKeyword) {
|
||||
addSearchHistory(searchKeyword);
|
||||
window.location.href = "{:url('product/search')}?keywords=" + encodeURIComponent(searchKeyword);
|
||||
searchModal.classList.remove('show');
|
||||
searchInput.value = '';
|
||||
searchClearBtn.style.display = 'none';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
searchSubmit.addEventListener('click', function (e)
|
||||
{
|
||||
e.stopPropagation();
|
||||
doSearch(searchInput.value);
|
||||
});
|
||||
|
||||
searchInput.addEventListener('keypress', function (e)
|
||||
{
|
||||
console.log(e,'========e=============')
|
||||
if (e.key === 'Enter' || e.key === 'enter' || e.keyCode === 13) {
|
||||
e.preventDefault();
|
||||
doSearch(searchInput.value);
|
||||
}
|
||||
});
|
||||
|
||||
// ====================== 添加:点击空白区域关闭所有子菜单 ======================
|
||||
document.addEventListener('click', function(e) {
|
||||
// 如果点击的不是菜单项内部,关闭所有子菜单
|
||||
if (!e.target.closest('.menu-item')) {
|
||||
resetAllSubMenus();
|
||||
}
|
||||
});
|
||||
|
||||
// ====================== 购物车弹窗悬浮图功能 ======================
|
||||
// 处理购物车弹窗中的图片悬浮效果
|
||||
function initCartModalHover() {
|
||||
const modalItems = document.querySelectorAll('#cartModal .modal-item');
|
||||
|
||||
modalItems.forEach(function(item) {
|
||||
// 查找当前item中是否有悬浮图(隐藏的那个)
|
||||
const defaultImg = item.querySelector('.modal-item-img');
|
||||
const hiddenItem = item.nextElementSibling;
|
||||
let hoverImg = null;
|
||||
|
||||
// 检查下一个元素是否是隐藏的悬浮图容器
|
||||
if (hiddenItem && hiddenItem.classList && hiddenItem.classList.contains('modal-item') && hiddenItem.style.display === 'none') {
|
||||
hoverImg = hiddenItem.querySelector('.modal-item-img');
|
||||
}
|
||||
|
||||
// 如果有悬浮图
|
||||
if (hoverImg && defaultImg) {
|
||||
const originalSrc = defaultImg.src;
|
||||
const hoverSrc = hoverImg.src;
|
||||
const link = item.getAttribute('data-link');
|
||||
|
||||
// 移除原有的href,因为需要悬浮图效果
|
||||
item.style.cursor = 'pointer';
|
||||
|
||||
// 鼠标移入:显示悬浮图
|
||||
item.addEventListener('mouseenter', function(e) {
|
||||
e.stopPropagation();
|
||||
defaultImg.src = hoverSrc;
|
||||
});
|
||||
|
||||
// 鼠标移出:恢复普通图
|
||||
item.addEventListener('mouseleave', function(e) {
|
||||
e.stopPropagation();
|
||||
defaultImg.src = originalSrc;
|
||||
});
|
||||
|
||||
// 点击事件:如果有链接就跳转
|
||||
item.addEventListener('click', function(e) {
|
||||
e.stopPropagation();
|
||||
if (link && link !== '#') {
|
||||
window.location.href = link;
|
||||
}
|
||||
});
|
||||
} else {
|
||||
// 没有悬浮图,保持原有链接
|
||||
const link = item.getAttribute('href') || item.getAttribute('data-link');
|
||||
if (link && link !== '#') {
|
||||
item.addEventListener('click', function(e) {
|
||||
e.stopPropagation();
|
||||
window.location.href = link;
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// 在购物车弹窗打开时初始化悬浮图功能
|
||||
const cartModalObserver = new MutationObserver(function(mutations) {
|
||||
mutations.forEach(function(mutation) {
|
||||
if (mutation.attributeName === 'class') {
|
||||
if (cartModal.classList.contains('show')) {
|
||||
setTimeout(function() {
|
||||
initCartModalHover();
|
||||
}, 50);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
if (cartModal) {
|
||||
cartModalObserver.observe(cartModal, { attributes: true });
|
||||
// 如果弹窗默认是打开的,也初始化一次
|
||||
if (cartModal.classList.contains('show')) {
|
||||
initCartModalHover();
|
||||
}
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
1270
app/index/view/mobile/topic_laptop/index.html
Normal file
@@ -31,15 +31,13 @@
|
||||
<link rel="stylesheet" href="__CSS__/topic_power_prodline/footer.css">
|
||||
|
||||
{/block}
|
||||
{block name="header"}
|
||||
<!-- 重置header头为空 -->
|
||||
{/block}
|
||||
|
||||
{block name="main"}
|
||||
<a class="header" href="/">
|
||||
<!-- <a class="header" href="/">
|
||||
<div class="header-img">
|
||||
<img src="__IMAGES__/logo.png" alt="">
|
||||
</div>
|
||||
</a>
|
||||
</a> -->
|
||||
<!-- 轮播核心容器 -->
|
||||
<div class="swiper-container auto-swiper-container" >
|
||||
{notempty name="data.focus_image"}
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
<div class="pageMain">
|
||||
<!-- banner -->
|
||||
{notempty name="focus_images"}
|
||||
<div class="swiper-container bannerswiper">
|
||||
<div class="swiper-container bannerswiper" style="background: #fff;">
|
||||
<div class="swiper-wrapper">
|
||||
{volist name="focus_images" id="focus"}
|
||||
<div class="swiper-slide">
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<div class="orico_Page_category">
|
||||
<!-- banner轮播 -->
|
||||
{notempty name="focus_image"}
|
||||
<div class="opdBanner">
|
||||
<div class="opdBanner" >
|
||||
{volist name="focus_image" id="fi"}
|
||||
<a {notempty name="fi.link" }href="{$fi.link}" {/notempty}>
|
||||
<img src="{$fi.image}" class="opdbannerImg" />
|
||||
|
||||
1499
app/index/view/pc/topic_laptop/index.html
Normal file
@@ -12,7 +12,7 @@
|
||||
{/block}
|
||||
{block name="main"}
|
||||
<!-- 轮播核心容器 -->
|
||||
<div class="swiper-container auto-swiper-container" >
|
||||
<div class="swiper-container auto-swiper-container">
|
||||
{notempty name="data.focus_image"}
|
||||
<div class="swiper-wrapper">
|
||||
{volist name="data.focus_image" id="fo"}
|
||||
|
||||
@@ -31,7 +31,9 @@ class CreateSysNavigationItem extends Migrator
|
||||
$table->addColumn('nav_id', 'string', ['limit' => 64, 'null' => false, 'comment' => '所属导航ID'])
|
||||
->addColumn('pid', 'integer', ['null' => false, 'default' => 0, 'comment' => '父级ID'])
|
||||
->addColumn('name', 'string', ['limit' => 64, 'null' => false, 'comment' => '名称'])
|
||||
->addColumn('desc', 'string', ['limit' => 255, 'null' => true, 'default' => null, 'comment' => '描述'])
|
||||
->addColumn('icon', 'string', ['limit' => 64, 'null' => true, 'default' => null, 'comment' => '图标'])
|
||||
->addColumn('image', 'string', ['limit' => 255, 'null' => true, 'default' => null, 'comment' => '图片'])
|
||||
->addColumn('link_to', 'string', ['limit' => 64, 'null' => true, 'default' => null, 'comment' => '链接到(类型): article:文章, article_category:文章分类, product:产品, product_category:产品分类, custom:自定义链接'])
|
||||
->addColumn('link', 'string', ['limit' => 255, 'null' => true, 'default' => null, 'comment' => '链接'])
|
||||
->addColumn('sort', 'integer', ['limit' => 11, 'null' => false, 'default' => 0, 'comment' => '排序'])
|
||||
|
||||
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
use think\migration\Migrator;
|
||||
use think\migration\db\Column;
|
||||
|
||||
class CreateProductCategoryRecommend extends Migrator
|
||||
{
|
||||
/**
|
||||
* Change Method.
|
||||
*
|
||||
* Write your reversible migrations using this method.
|
||||
*
|
||||
* More information on writing migrations is available here:
|
||||
* http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
|
||||
*
|
||||
* The following commands can be used in this method and Phinx will
|
||||
* automatically reverse them when rolling back:
|
||||
*
|
||||
* createTable
|
||||
* renameTable
|
||||
* addColumn
|
||||
* renameColumn
|
||||
* addIndex
|
||||
* addForeignKey
|
||||
*
|
||||
* Remember to call "create()" or "update()" and NOT "save()" when working
|
||||
* with the Table class.
|
||||
*/
|
||||
public function change()
|
||||
{
|
||||
$table = $this->table('product_category_recommend', [
|
||||
'engine' => 'MyISAM',
|
||||
'collation' => 'utf8mb4_general_ci',
|
||||
'comment' => '产品分类推荐表'
|
||||
]);
|
||||
|
||||
$table->addColumn('language_id', 'integer', ['signed' => false, 'null' => false, 'comment' => '语言ID'])
|
||||
->addColumn('category_id', 'integer', ['signed' => false, 'null' => false, 'comment' => '分类ID'])
|
||||
->addColumn('title', 'string', ['limit' => 255, 'comment' => '标题'])
|
||||
->addColumn('image', 'string', ['limit' => 255, 'default' => '', 'comment' => '图片'])
|
||||
->addColumn('desc', 'string', ['limit' => 255, 'comment' => '描述'])
|
||||
->addColumn('link', 'string', ['limit' => 500, 'default' => '', 'comment' => '外链地址'])
|
||||
->addColumn('sort', 'integer', ['default' => 0, 'comment' => '排序'])
|
||||
->addColumn('disabled', 'boolean', ['default' => 0, 'comment' => '是否禁用 0:启用 1:禁用'])
|
||||
->addColumn('created_at', 'timestamp', ["null" => false,'default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间'])
|
||||
->addColumn('updated_at', 'timestamp', ["null" => false,'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP', 'comment' => '更新时间'])
|
||||
->addColumn('deleted_at', 'timestamp', ['null' => true, 'comment' => '删除时间'])
|
||||
->create();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
use think\migration\Migrator;
|
||||
use think\migration\db\Column;
|
||||
|
||||
class SysMallStoreEntrance extends Migrator
|
||||
{
|
||||
/**
|
||||
* Change Method.
|
||||
*
|
||||
* Write your reversible migrations using this method.
|
||||
*
|
||||
* More information on writing migrations is available here:
|
||||
* http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
|
||||
*
|
||||
* The following commands can be used in this method and Phinx will
|
||||
* automatically reverse them when rolling back:
|
||||
*
|
||||
* createTable
|
||||
* renameTable
|
||||
* addColumn
|
||||
* renameColumn
|
||||
* addIndex
|
||||
* addForeignKey
|
||||
*
|
||||
* Remember to call "create()" or "update()" and NOT "save()" when working
|
||||
* with the Table class.
|
||||
*/
|
||||
public function change()
|
||||
{
|
||||
$table = $this->table('sys_mall_store_entrance', [
|
||||
'engine' => 'MyISAM',
|
||||
'collation' => 'utf8mb4_general_ci',
|
||||
'comment' => '系统商城店铺入口表'
|
||||
]);
|
||||
|
||||
$table->addColumn('language_id', 'integer', ['signed' => false, 'null' => false, 'comment' => '语言ID'])
|
||||
->addColumn('name', 'string', ['limit' => 255, 'null' => false, 'comment' => '商城名称'])
|
||||
->addColumn('image', 'string', ['limit' => 255, 'default' => '', 'comment' => '图片'])
|
||||
->addColumn('hover_image', 'string', ['limit' => 255, 'default' => '', 'comment' => '悬浮图'])
|
||||
->addColumn('link', 'string', ['limit' => 500, 'default' => '', 'comment' => '链接地址'])
|
||||
->addColumn('sort', 'integer', ['default' => 0, 'comment' => '排序'])
|
||||
->addColumn('disabled', 'boolean', ['default' => 0, 'comment' => '是否禁用 0:启用 1:禁用'])
|
||||
->addColumn('created_at', 'timestamp', ['null' => false, 'default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间'])
|
||||
->addColumn('updated_at', 'timestamp', ['null' => false, 'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP', 'comment' => '更新时间'])
|
||||
->addColumn('deleted_at', 'timestamp', ['null' => true, 'comment' => '删除时间'])
|
||||
->addIndex(['language_id'], ['name' => 'idx_language_id'])
|
||||
->create();
|
||||
}
|
||||
}
|
||||
@@ -73,8 +73,8 @@ class SysConfigInit extends Seeder
|
||||
["id" => 56, "group_id" => 12, "title" => "Instagram URL新窗口打开", "name" => "article_share_to_instagram.is_blank", "value" => "1", "extra" => "1:是\n0:否", "type" => "radio", "sort" => 6, "remark" => "", "created_at" => "2025-04-23 17:49:12", "updated_at" => "2025-06-12 09:55:21", "deleted_at" => null],
|
||||
["id" => 57, "group_id" => 12, "title" => "Twitter URL新窗口打开", "name" => "article_share_to_twitter.is_blank", "value" => "1", "extra" => "1:是\n0:否", "type" => "radio", "sort" => 9, "remark" => "", "created_at" => "2025-04-23 17:49:12", "updated_at" => "2025-06-12 09:55:21", "deleted_at" => null],
|
||||
["id" => 58, "group_id" => 12, "title" => "Reddit URL新窗口打开", "name" => "article_share_to_reddit.is_blank", "value" => "1", "extra" => "1:是\n0:否", "type" => "radio", "sort" => 12, "remark" => "", "created_at" => "2025-04-23 17:49:12", "updated_at" => "2025-06-12 09:55:21", "deleted_at" => null],
|
||||
["id" => 59, "group_id" => 1, "title" => "产品询盘可选国家", "name" => "optional_country_for_product_inquiry", "value" => "Afghanistan\nAlbania\nAlgeria\nAmerican Samoa\nAndorra\nAngola\nAnguilla\nAntigua and Barbuda\nArgentina\nArmenia\nAruba\nAustralia\nAustria\nAzerbaijan\nAzores\nBahamas\nBahrain\nBangladesh\nBarbados\nBelarus\nBelgium\nBelize\nBenin\nBermuda\nBhutan\nBolivia\nBosnia and Herzegovina\nBotswana\nBrazil\nBrunei\nBulgaria\nBurkina Faso\nBurundi\nCambodia\nCameroon\nCanada\nCanarias\nCape Verde\nCayman\nCentral African Republic\nChad\nChile\nChina\nColombia\nComoros\nCongo (Congo-Kinshasa)\nCongo\nCook Islands\nCosta Rica\nCote D'Ivoire\nCroatia\nCuba\nCyprus\nCzech\nDenmark\nDjibouti\nDominica\nDominican\nEcuador\nEgypt\nEl Salvador\nEquatorial Guinea\nEritrea\nEstonia\nEthiopia\nFiji\nFinland\nFrance\nFrench Guiana\nFrench Polynesia\nGabon\nGambia\nGeorgia\nGermany\nGhana\nGreece\nGreenland\nGrenada\nGuadeloupe\nGuam\nGuatemala\nGuinea\nGuinea-Bissau\nGuyana\nHaiti\nHonduras\nHungary\nIceland\nIndia\nIndonesia\nIran\nIraq\nIreland\nIsrael\nItaly\nJamaica\nJapan\nJordan\nKazakhstan\nKenya\nKiribati\nKorea (North)\nKorea (South)\nKuwait\nKyrgyzstan\nLaos\nLatvia\nLebanon\nLesotho\nLiberia\nLibya\nLiechtenstein\nLithuania\nLuxembourg\nMacedonia\nMadagascar\nMadeira\nMalawi\nMalaysia\nMaldives\nMali\nMalta\nMarshall Islands\nMartinique\nMauritania\nMauritius\nMexico\nMicronesia\nMoldova\nMonaco\nMongolia\nMetropolis\nMorocco\nMozambique\nMyanmar\nNamibia\nNauru\nNepal\nNetherlands Antilles\nNetherlands\nNew Caledonia\nNew Zealand\nNicaragua\nNiger\nNiue\nNorthern Mariana\nNorway\nOman\nPakistan\nPalau\nPalestine\nPanama\nPapua New Guinea\nParaguay\nPeru\nPhilippines\nPitcairn Islands\nPoland\nPortugal\nPuerto Rico\nQatar\nReunion\nRomania\nRussian Federation\nRwanda\nSaint Helena\nSaint Kitts-Nevis\nSaint Lucia\nSaint Vincent and the Grenadines\nSamoa\nSan Marino\nSao Tome and Principe\nSaudi Arabia\nSenegal\nSerbia\nSeychelles\nSierra Leone\nSingapore\nSlovakia\nSlovenia\nSolomon Islands\nSomalia\nSouth Africa\nSpain\nSri Lanka\nSudan\nSuriname\nSwaziland\nSweden\nSwitzerland\nSyria\nTajikistan\nTanzania\nThailand\nThe British Virgin Islands\nThe United States Virgin Islands\nTimor-Leste\nTogo\nTokelau\nTonga\nTrinidad and Tobago\nTunisia\nTurkey\nTurkmenistan\nTurks and Caicos Islands\nTuvalu\nUganda\nUkraine\nUnited Arab Emirates\nUnited Kingdom\nUnited States\nUruguay\nUzbekistan\nVanuatu\nVatican City\nVenezuela\nVietnam\nWallis and Futuna\nWestern Sahara\nYemen\nZambia\nZimbabwe", "extra" => "", "type" => "textarea", "sort" => 7, "remark" => "", "created_at" => "2025-04-27 11:10:22", "updated_at" => "2025-06-11 17:09:13", "deleted_at" => null],
|
||||
["id" => 60, "group_id" => 4, "title" => "产品询盘可选国家", "name" => "optional_country_for_product_inquiry", "value" => "Afghanistan\nAlbania\nAlgeria\nAmerican Samoa\nAndorra\nAngola\nAnguilla\nAntigua and Barbuda\nArgentina\nArmenia\nAruba\nAustralia\nAustria\nAzerbaijan\nAzores\nBahamas\nBahrain\nBangladesh\nBarbados\nBelarus\nBelgium\nBelize\nBenin\nBermuda\nBhutan\nBolivia\nBosnia and Herzegovina\nBotswana\nBrazil\nBrunei\nBulgaria\nBurkina Faso\nBurundi\nCambodia\nCameroon\nCanada\nCanarias\nCape Verde\nCayman\nCentral African Republic\nChad\nChile\nChina\nColombia\nComoros\nCongo (Congo-Kinshasa)\nCongo\nCook Islands\nCosta Rica\nCote D'Ivoire\nCroatia\nCuba\nCyprus\nCzech\nDenmark\nDjibouti\nDominica\nDominican\nEcuador\nEgypt\nEl Salvador\nEquatorial Guinea\nEritrea\nEstonia\nEthiopia\nFiji\nFinland\nFrance\nFrench Guiana\nFrench Polynesia\nGabon\nGambia\nGeorgia\nGermany\nGhana\nGreece\nGreenland\nGrenada\nGuadeloupe\nGuam\nGuatemala\nGuinea\nGuinea-Bissau\nGuyana\nHaiti\nHonduras\nHungary\nIceland\nIndia\nIndonesia\nIran\nIraq\nIreland\nIsrael\nItaly\nJamaica\nJapan\nJordan\nKazakhstan\nKenya\nKiribati\nKorea (North)\nKorea (South)\nKuwait\nKyrgyzstan\nLaos\nLatvia\nLebanon\nLesotho\nLiberia\nLibya\nLiechtenstein\nLithuania\nLuxembourg\nMacedonia\nMadagascar\nMadeira\nMalawi\nMalaysia\nMaldives\nMali\nMalta\nMarshall Islands\nMartinique\nMauritania\nMauritius\nMexico\nMicronesia\nMoldova\nMonaco\nMongolia\nMetropolis\nMorocco\nMozambique\nMyanmar\nNamibia\nNauru\nNepal\nNetherlands Antilles\nNetherlands\nNew Caledonia\nNew Zealand\nNicaragua\nNiger\nNiue\nNorthern Mariana\nNorway\nOman\nPakistan\nPalau\nPalestine\nPanama\nPapua New Guinea\nParaguay\nPeru\nPhilippines\nPitcairn Islands\nPoland\nPortugal\nPuerto Rico\nQatar\nReunion\nRomania\nRussian Federation\nRwanda\nSaint Helena\nSaint Kitts-Nevis\nSaint Lucia\nSaint Vincent and the Grenadines\nSamoa\nSan Marino\nSao Tome and Principe\nSaudi Arabia\nSenegal\nSerbia\nSeychelles\nSierra Leone\nSingapore\nSlovakia\nSlovenia\nSolomon Islands\nSomalia\nSouth Africa\nSpain\nSri Lanka\nSudan\nSuriname\nSwaziland\nSweden\nSwitzerland\nSyria\nTajikistan\nTanzania\nThailand\nThe British Virgin Islands\nThe United States Virgin Islands\nTimor-Leste\nTogo\nTokelau\nTonga\nTrinidad and Tobago\nTunisia\nTurkey\nTurkmenistan\nTurks and Caicos Islands\nTuvalu\nUganda\nUkraine\nUnited Arab Emirates\nUnited Kingdom\nUnited States\nUruguay\nUzbekistan\nVanuatu\nVatican City\nVenezuela\nVietnam\nWallis and Futuna\nWestern Sahara\nYemen\nZambia\nZimbabwe", "extra" => null, "type" => "textarea", "sort" => 7, "remark" => null, "created_at" => "2025-04-27 11:23:25", "updated_at" => "2025-06-12 09:55:21", "deleted_at" => null],
|
||||
["id" => 59, "group_id" => 1, "title" => "产品询盘可选国家", "name" => "optional_country_for_product_inquiry", "value" => "Afghanistan\nAlbania\nAlgeria\nAmerican Samoa\nAndorra\nAngola\nAnguilla\nAntigua and Barbuda\nArgentina\nArmenia\nAruba\nAustralia\nAustria\nAzerbaijan\nAzores\nBahamas\nBahrain\nBangladesh\nBarbados\nBelarus\nBelgium\nBelize\nBenin\nBermuda\nBhutan\nBolivia\nBosnia and Herzegovina\nBotswana\nBrazil\nBrunei\nBulgaria\nBurkina Faso\nBurundi\nCambodia\nCameroon\nCanada\nCanarias\nCape Verde\nCayman\nCentral African Republic\nChad\nChile\nChina\nColombia\nComoros\nCongo (Congo-Kinshasa)\nCongo\nCook Islands\nCosta Rica\nCote D'Ivoire\nCroatia\nCuba\nCyprus\nCzech\nDenmark\nDjibouti\nDominica\nDominican\nEcuador\nEgypt\nEl Salvador\nEquatorial Guinea\nEritrea\nEstonia\nEthiopia\nFiji\nFinland\nFrance\nFrench Guiana\nFrench Polynesia\nGabon\nGambia\nGeorgia\nGermany\nGhana\nGreece\nGreenland\nGrenada\nGuadeloupe\nGuam\nGuatemala\nGuinea\nGuinea-Bissau\nGuyana\nHaiti\nHonduras\nHungary\nIceland\nIndia\nIndonesia\nIran\nIraq\nIreland\nIsrael\nItaly\nJamaica\nJapan\nJordan\nKazakhstan\nKenya\nKiribati\nKorea (North)\nKorea (South)\nKuwait\nKyrgyzstan\nLaos\nLatvia\nLebanon\nLesotho\nLiberia\nLibya\nLiechtenstein\nLithuania\nLuxembourg\nMacedonia\nMadagascar\nMadeira\nMalawi\nMalaysia\nMaldives\nMali\nMalta\nMarshall Islands\nMartinique\nMauritania\nMauritius\nMexico\nMicronesia\nMoldova\nMonaco\nMongolia\nHarmonyOS\nMorocco\nMozambique\nMyanmar\nNamibia\nNauru\nNepal\nNetherlands Antilles\nNetherlands\nNew Caledonia\nNew Zealand\nNicaragua\nNiger\nNiue\nNorthern Mariana\nNorway\nOman\nPakistan\nPalau\nPalestine\nPanama\nPapua New Guinea\nParaguay\nPeru\nPhilippines\nPitcairn Islands\nPoland\nPortugal\nPuerto Rico\nQatar\nReunion\nRomania\nRussian Federation\nRwanda\nSaint Helena\nSaint Kitts-Nevis\nSaint Lucia\nSaint Vincent and the Grenadines\nSamoa\nSan Marino\nSao Tome and Principe\nSaudi Arabia\nSenegal\nSerbia\nSeychelles\nSierra Leone\nSingapore\nSlovakia\nSlovenia\nSolomon Islands\nSomalia\nSouth Africa\nSpain\nSri Lanka\nSudan\nSuriname\nSwaziland\nSweden\nSwitzerland\nSyria\nTajikistan\nTanzania\nThailand\nThe British Virgin Islands\nThe United States Virgin Islands\nTimor-Leste\nTogo\nTokelau\nTonga\nTrinidad and Tobago\nTunisia\nTurkey\nTurkmenistan\nTurks and Caicos Islands\nTuvalu\nUganda\nUkraine\nUnited Arab Emirates\nUnited Kingdom\nUnited States\nUruguay\nUzbekistan\nVanuatu\nVatican City\nVenezuela\nVietnam\nWallis and Futuna\nWestern Sahara\nYemen\nZambia\nZimbabwe", "extra" => "", "type" => "textarea", "sort" => 7, "remark" => "", "created_at" => "2025-04-27 11:10:22", "updated_at" => "2025-06-11 17:09:13", "deleted_at" => null],
|
||||
["id" => 60, "group_id" => 4, "title" => "产品询盘可选国家", "name" => "optional_country_for_product_inquiry", "value" => "Afghanistan\nAlbania\nAlgeria\nAmerican Samoa\nAndorra\nAngola\nAnguilla\nAntigua and Barbuda\nArgentina\nArmenia\nAruba\nAustralia\nAustria\nAzerbaijan\nAzores\nBahamas\nBahrain\nBangladesh\nBarbados\nBelarus\nBelgium\nBelize\nBenin\nBermuda\nBhutan\nBolivia\nBosnia and Herzegovina\nBotswana\nBrazil\nBrunei\nBulgaria\nBurkina Faso\nBurundi\nCambodia\nCameroon\nCanada\nCanarias\nCape Verde\nCayman\nCentral African Republic\nChad\nChile\nChina\nColombia\nComoros\nCongo (Congo-Kinshasa)\nCongo\nCook Islands\nCosta Rica\nCote D'Ivoire\nCroatia\nCuba\nCyprus\nCzech\nDenmark\nDjibouti\nDominica\nDominican\nEcuador\nEgypt\nEl Salvador\nEquatorial Guinea\nEritrea\nEstonia\nEthiopia\nFiji\nFinland\nFrance\nFrench Guiana\nFrench Polynesia\nGabon\nGambia\nGeorgia\nGermany\nGhana\nGreece\nGreenland\nGrenada\nGuadeloupe\nGuam\nGuatemala\nGuinea\nGuinea-Bissau\nGuyana\nHaiti\nHonduras\nHungary\nIceland\nIndia\nIndonesia\nIran\nIraq\nIreland\nIsrael\nItaly\nJamaica\nJapan\nJordan\nKazakhstan\nKenya\nKiribati\nKorea (North)\nKorea (South)\nKuwait\nKyrgyzstan\nLaos\nLatvia\nLebanon\nLesotho\nLiberia\nLibya\nLiechtenstein\nLithuania\nLuxembourg\nMacedonia\nMadagascar\nMadeira\nMalawi\nMalaysia\nMaldives\nMali\nMalta\nMarshall Islands\nMartinique\nMauritania\nMauritius\nMexico\nMicronesia\nMoldova\nMonaco\nMongolia\nHarmonyOS\nMorocco\nMozambique\nMyanmar\nNamibia\nNauru\nNepal\nNetherlands Antilles\nNetherlands\nNew Caledonia\nNew Zealand\nNicaragua\nNiger\nNiue\nNorthern Mariana\nNorway\nOman\nPakistan\nPalau\nPalestine\nPanama\nPapua New Guinea\nParaguay\nPeru\nPhilippines\nPitcairn Islands\nPoland\nPortugal\nPuerto Rico\nQatar\nReunion\nRomania\nRussian Federation\nRwanda\nSaint Helena\nSaint Kitts-Nevis\nSaint Lucia\nSaint Vincent and the Grenadines\nSamoa\nSan Marino\nSao Tome and Principe\nSaudi Arabia\nSenegal\nSerbia\nSeychelles\nSierra Leone\nSingapore\nSlovakia\nSlovenia\nSolomon Islands\nSomalia\nSouth Africa\nSpain\nSri Lanka\nSudan\nSuriname\nSwaziland\nSweden\nSwitzerland\nSyria\nTajikistan\nTanzania\nThailand\nThe British Virgin Islands\nThe United States Virgin Islands\nTimor-Leste\nTogo\nTokelau\nTonga\nTrinidad and Tobago\nTunisia\nTurkey\nTurkmenistan\nTurks and Caicos Islands\nTuvalu\nUganda\nUkraine\nUnited Arab Emirates\nUnited Kingdom\nUnited States\nUruguay\nUzbekistan\nVanuatu\nVatican City\nVenezuela\nVietnam\nWallis and Futuna\nWestern Sahara\nYemen\nZambia\nZimbabwe", "extra" => null, "type" => "textarea", "sort" => 7, "remark" => null, "created_at" => "2025-04-27 11:23:25", "updated_at" => "2025-06-12 09:55:21", "deleted_at" => null],
|
||||
["id" => 61, "group_id" => 1, "title" => "导航位置店铺URL", "name" => "navigation_store_url", "value" => "https://oricotechs.com/", "extra" => null, "type" => "text", "sort" => 6, "remark" => null, "created_at" => "2025-05-13 17:45:46", "updated_at" => "2025-06-11 17:09:13", "deleted_at" => null],
|
||||
["id" => 62, "group_id" => 4, "title" => "导航位置店铺URL", "name" => "navigation_store_url", "value" => "https://oricotechs.com/", "extra" => null, "type" => "text", "sort" => 6, "remark" => null, "created_at" => "2025-05-13 17:45:46", "updated_at" => "2025-06-12 09:55:21", "deleted_at" => null],
|
||||
["id" => 63, "group_id" => 7, "title" => "邮箱", "name" => "website_email", "value" => "supports@orico.com.cn", "extra" => null, "type" => "text", "sort" => 1, "remark" => null, "created_at" => "2025-05-23 17:06:53", "updated_at" => "2025-06-11 17:09:13", "deleted_at" => null],
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
align-items: center;
|
||||
position: relative;
|
||||
overflow: auto;
|
||||
padding-top: 50px;
|
||||
padding-top: 46px;
|
||||
}
|
||||
|
||||
.iotb_bgw {
|
||||
|
||||
246
public/static/index/mobile/css/category.css
Normal file
@@ -0,0 +1,246 @@
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
font-family: sans-serif;
|
||||
font-size: inherit !important;
|
||||
/* font-size:100% !important; */
|
||||
}
|
||||
|
||||
body {
|
||||
background: #f5f5f5;
|
||||
font-size: inherit !important;
|
||||
/* font-size:100% !important; */
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
max-width: 100vw !important;
|
||||
|
||||
}
|
||||
|
||||
.top-box {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 20px 22px;
|
||||
background: #fff;
|
||||
margin-top: 46px;
|
||||
/* border-bottom: 1px solid #f0f0f0; */
|
||||
box-shadow: 0 2px 8px rgba(217, 217, 217, 0.2);
|
||||
}
|
||||
|
||||
.top-bar {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 0.82rem;
|
||||
background: #F1F2F5;
|
||||
justify-content: space-between;
|
||||
border-radius: 0.2rem;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.back {
|
||||
width: 0.28rem;
|
||||
height: 0.28rem;
|
||||
color: #333;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.back img {
|
||||
width: 0.28rem;
|
||||
height: 0.28rem;
|
||||
}
|
||||
.title {
|
||||
font-size: 0.32rem !important;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/* 主体布局 */
|
||||
.main {
|
||||
display: flex;
|
||||
height: calc(100% - 46px);
|
||||
margin-top:0.018rem;
|
||||
}
|
||||
|
||||
/* 左侧菜单 #FAFAFA;*/
|
||||
.sidebar {
|
||||
width: 114px;
|
||||
background:#fafafa;
|
||||
overflow-y: auto;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.sidebar li {
|
||||
list-style: none;
|
||||
padding: 24px 16px;
|
||||
text-align: center;
|
||||
font-size: 0.28rem !important;
|
||||
color:#686A70; /* #686A70;*/
|
||||
cursor: pointer;
|
||||
background:#fff;
|
||||
/* 分别控制上下圆角的过渡 */
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
transition: border-radius 1s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
.sidebar li.active {
|
||||
color: #004BFA;
|
||||
background: #fafafa;
|
||||
}
|
||||
|
||||
|
||||
.sidebar li.active-prev {
|
||||
border-bottom-right-radius: 0.17rem !important;
|
||||
}
|
||||
|
||||
.sidebar li.active-next {
|
||||
border-top-right-radius: 0.17rem !important;
|
||||
}
|
||||
/* 右侧内容 */
|
||||
.right-content {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
padding-left: 12px;
|
||||
background: #fafafa;
|
||||
/* padding-bottom: 100px; */
|
||||
|
||||
}
|
||||
|
||||
.right-content {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
padding-left: 12px;
|
||||
background: #fafafa;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* 在底部添加占位元素 */
|
||||
.right-content::after {
|
||||
content: '';
|
||||
display: block;
|
||||
height: 80px; /* 根据需要调整 */
|
||||
width: 100%;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
/* 最后一个元素底部留白 */
|
||||
.sec-box:last-child {
|
||||
margin-bottom: 80px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.sec-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding-top: 24px;
|
||||
padding-right: 17px;
|
||||
padding-bottom: 12px;
|
||||
|
||||
}
|
||||
|
||||
.sec-title {
|
||||
font-size: 0.28rem !important;
|
||||
color: #686A70;
|
||||
font-weight: 500
|
||||
}
|
||||
|
||||
.sec-arrow {
|
||||
width: 0.28rem;
|
||||
height: 0.28rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #666;
|
||||
font-size: 20px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.sec-arrow img {
|
||||
width: 0.28rem;
|
||||
height: 0.28rem;
|
||||
}
|
||||
/* 横向滚动容器 */
|
||||
.scroll-box {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
overflow-x: auto;
|
||||
scroll-behavior: smooth;
|
||||
|
||||
scrollbar-width: none;
|
||||
}
|
||||
|
||||
.scroll-box::-webkit-scrollbar {
|
||||
display: none
|
||||
}
|
||||
|
||||
.right-card {
|
||||
flex-shrink: 0;
|
||||
background: #fff;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
padding-top: 8px;
|
||||
}
|
||||
.card {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
border-radius: 12px;
|
||||
padding-left: 19px;
|
||||
padding-right: 19px;
|
||||
|
||||
}
|
||||
.card-img {
|
||||
width: 1.52rem;
|
||||
background: #f1f1f1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #999;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.card-img img {
|
||||
width: 100%;
|
||||
|
||||
}
|
||||
|
||||
.card-info {
|
||||
|
||||
text-align: center;
|
||||
padding-top: 8px;
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.card-name {
|
||||
font-size: 0.2rem !important;
|
||||
width: 1.52rem;
|
||||
height: auto;
|
||||
color: #1D1D1F;
|
||||
line-height: 1.4;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.card-model {
|
||||
font-size: 0.16rem !important;
|
||||
color: #686A70;
|
||||
margin-top: 4px
|
||||
}
|
||||
|
||||
/* 内容区块默认隐藏 */
|
||||
.tab-pane {
|
||||
display: none
|
||||
}
|
||||
|
||||
/* 激活时显示 */
|
||||
.tab-pane.active {
|
||||
display: block;
|
||||
|
||||
}
|
||||
@@ -156,7 +156,7 @@
|
||||
align-items: center;
|
||||
position: relative;
|
||||
overflow: auto;
|
||||
padding-top: 50px;
|
||||
padding-top: 46px;
|
||||
}
|
||||
|
||||
.iotb_bgw {
|
||||
|
||||
@@ -156,7 +156,7 @@
|
||||
align-items: center;
|
||||
position: relative;
|
||||
overflow: auto;
|
||||
padding-top: 50px;
|
||||
padding-top: 46px;
|
||||
}
|
||||
|
||||
.iotb_bgw {
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
overflow-x: hidden;
|
||||
}
|
||||
.oricoEGapp .oricoEGapp-index .oidx-banner {
|
||||
margin-top: 3.5rem;
|
||||
margin-top: 46px;
|
||||
z-index: 9;
|
||||
}
|
||||
.oricoEGapp .oricoEGapp-index .oidx-banner .swiper-container {
|
||||
|
||||
457
public/static/index/mobile/css/new_header.css
Normal file
@@ -0,0 +1,457 @@
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.mobile-header-box {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: 46px;
|
||||
padding: 0 17px;
|
||||
background: #fff;
|
||||
/* position: relative; */
|
||||
position: fixed;
|
||||
top:0;
|
||||
left:0;
|
||||
z-index: 100;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.mobile-header-left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-img,
|
||||
.nav-search,
|
||||
.nav-lang,
|
||||
.nav-img1,
|
||||
.nav-card {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.nav-log {
|
||||
width: 90px;
|
||||
height: 22px;
|
||||
margin-left: 14px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.nav-lang {
|
||||
margin: 0 18px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* 下拉菜单 */
|
||||
.nav-dropdown-menu {
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
border-top: 1px solid #eee;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 46px;
|
||||
left: 0;
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
.nav-dropdown-menu.show {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* 所有菜单项统一用 div */
|
||||
.menu-item {
|
||||
margin: 0 22px;
|
||||
font-size: 15px !important;
|
||||
color: #333;
|
||||
border-bottom: 1px solid #f5f5f5;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.menu-item-box {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 16px 0;
|
||||
}
|
||||
|
||||
.menu-item-img {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* 有子菜单才显示箭头 */
|
||||
.has-child .menu-item-img {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* 无子菜单隐藏箭头 */
|
||||
.no-child .menu-item-img {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* 箭头旋转 */
|
||||
.has-child.open .menu-item-img {
|
||||
transform: rotate(180deg);
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-img1 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* .sub-menu {
|
||||
display: none;
|
||||
} */
|
||||
.sub-menu {
|
||||
display: none;
|
||||
/* height: 100vh; */
|
||||
/* overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
-webkit-overflow-scrolling: touch; */
|
||||
}
|
||||
|
||||
/* .sub-menu-overflow {
|
||||
max-height: calc(100vh - 180px);
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
} */
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.sub-menu.show {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.sub-item {
|
||||
padding: 0 16px;
|
||||
font-size: 14px !important;
|
||||
margin: 16px 0;
|
||||
}
|
||||
|
||||
.sub-item:nth-child(1) {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.sub-item a {
|
||||
color: #686A70;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.sub-item:last-child {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.sub-item-card-img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
aspect-ratio: 358 / 192;
|
||||
}
|
||||
|
||||
.sub-item-card-title {
|
||||
font-size: 16px !important;
|
||||
color: #1D1D1F;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.sub-item-card-name {
|
||||
font-size: 14px !important;
|
||||
color: #686A70;
|
||||
margin-top: 4px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.no-padding {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* ====================== 弹窗样式(不遮盖头部) ====================== */
|
||||
.modal-overlay {
|
||||
position: fixed;
|
||||
top: 46px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: calc(100% - 46px);
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
display: none;
|
||||
justify-content: center;
|
||||
align-items: flex-start;
|
||||
z-index: 98;
|
||||
}
|
||||
|
||||
.modal-overlay.show {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
width: 90%;
|
||||
background: #fff;
|
||||
border-radius: 12px;
|
||||
padding: 66px 24px 8px 24px;
|
||||
margin-top: 20px;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.modal-close {
|
||||
position: absolute;
|
||||
top: 24px;
|
||||
right: 24px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* 写法2:使用 flex 布局实现一行2个 */
|
||||
.modal-items-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.modal-item {
|
||||
width: calc(50% - 16px);
|
||||
|
||||
font-size: 16px !important;
|
||||
color: #1D1D1F;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.modal-item-img {
|
||||
width: clamp(48px, 17vw, 128px);
|
||||
height: auto;
|
||||
aspect-ratio: 64 / 64;
|
||||
object-fit: contain;
|
||||
display: block;
|
||||
|
||||
}
|
||||
|
||||
.modal-item-title {
|
||||
margin-top: 10px;
|
||||
font-size: 16px !important;
|
||||
color: #1D1D1F;
|
||||
}
|
||||
|
||||
.modal-item:hover {
|
||||
/* background-color: #f5f5f5; */
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
/* 语言弹窗样式 - 列表布局 */
|
||||
.lang-modal-content {
|
||||
width: 90%;
|
||||
background: #fff;
|
||||
border-radius: 12px;
|
||||
padding: 68px 24px;
|
||||
margin-top: 20px;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.lang-items-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.lang-item {
|
||||
font-size: 16px !important;
|
||||
color: #1D1D1F;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.lang-item img {
|
||||
width: 29px;
|
||||
height: 20px;
|
||||
margin-right: 16px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.lang-item:last-child {
|
||||
border-bottom: none;
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
||||
.lang-item:hover {
|
||||
background-color: #f5f5f5;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
/* 搜索弹窗样式 */
|
||||
.search-modal-content {
|
||||
width: 90%;
|
||||
background: #fff;
|
||||
border-radius: 12px;
|
||||
padding: 68px 24px;
|
||||
margin-top: 20px;
|
||||
position: relative;
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.search-input-box {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border: 1px solid #e0e0e0;
|
||||
border-radius: 30px;
|
||||
padding-left: 24px;
|
||||
/* padding-right: 13px; */
|
||||
background: #f8f8f8;
|
||||
}
|
||||
|
||||
.search-input-box input {
|
||||
|
||||
border: none;
|
||||
outline: none;
|
||||
background: transparent;
|
||||
font-size: 14px !important;
|
||||
padding: 10px 0;
|
||||
flex:1;
|
||||
}
|
||||
|
||||
.search-input-box input::placeholder {
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
.search-input-box .search-clear-btn {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
cursor: pointer;
|
||||
opacity: 0.6;
|
||||
|
||||
}
|
||||
.search-clear-box {
|
||||
padding-right: 10px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
/* .search-clear-btn {
|
||||
border-right: 1px solid #eee;
|
||||
} */
|
||||
.search-input-box .search-clear-btn:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.search-input-box .search-submit-icon {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
cursor: pointer;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.search-submit-box {
|
||||
border-left: 1px solid #d9d9d9;
|
||||
padding-left:10px;
|
||||
padding-right: 13px;
|
||||
max-height: 18px;
|
||||
}
|
||||
.search-history {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.search-history-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.search-history-title {
|
||||
font-size: 14px !important;
|
||||
color: #888;
|
||||
}
|
||||
|
||||
.search-history-clear {
|
||||
font-size: 12px !important;
|
||||
color: #999;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.search-history-clear:hover {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.search-history-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.search-history-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 12px 0;
|
||||
border-bottom: 1px solid #f0f0f0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.search-history-item:hover {
|
||||
background-color: #f5f5f5;
|
||||
border-radius: 8px;
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
margin-left: -8px;
|
||||
margin-right: -8px;
|
||||
}
|
||||
|
||||
.search-history-item span {
|
||||
font-size: 14px !important;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.search-history-item .delete-icon {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
cursor: pointer;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.search-history-item .delete-icon:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.empty-history {
|
||||
text-align: center;
|
||||
padding: 40px 0;
|
||||
font-size: 14px !important;
|
||||
color: #aaa;
|
||||
}
|
||||
.mobile-header-right {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
/* 产品列表的子菜单不需要滚动 */
|
||||
.menu-item:first-child .sub-menu {
|
||||
max-height: none !important;
|
||||
overflow-y: visible !important;
|
||||
}
|
||||
|
||||
/* 其他导航的子菜单使用JS动态设置高度
|
||||
.has-child:not(:first-child) .sub-menu {
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
} */
|
||||
@@ -2,7 +2,7 @@
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-top: 3.4rem;
|
||||
margin-top:46px;
|
||||
}
|
||||
.oricoEGapp-newarrival .ona-topimg {
|
||||
max-width: 100%;
|
||||
|
||||
@@ -1,28 +1,45 @@
|
||||
|
||||
@font-face {
|
||||
font-family: "HarmonyOS";
|
||||
src: url("../fonts/HarmonyOS-Regular.otf") format("opentype");
|
||||
src: url("//ow.static.f2b211.com/static/fonts/HarmonyOS_Sans_SC_Regular.ttf") format("opentype");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "HarmonyOS-Regular";
|
||||
src: url("//ow.static.f2b211.com/static/fonts/HarmonyOS_Sans_SC_Regular.ttf") format("opentype");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "HarmonyOS-Bold";
|
||||
src: url("../fonts/HarmonyOS-Bold.otf") format("opentype");
|
||||
src: url("//ow.static.f2b211.com/static/fonts/HarmonyOS_Sans_SC_Bold.ttf") format("opentype");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "HarmonyOS-Medium";
|
||||
src: url("../fonts/HarmonyOS-Medium.otf") format("opentype");
|
||||
src: url("//ow.static.f2b211.com/static/fonts/HarmonyOS_Sans_SC_Medium.ttf") format("opentype");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
/* HarmonyOS-SemiBold1 */
|
||||
@font-face {
|
||||
font-family: "HarmonyOS-SemiBold";
|
||||
src: url("//ow.static.f2b211.com/static/fonts/HarmonyOS_Sans_SC_Bold.ttf") format("opentype");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "HarmonyOS-Light";
|
||||
src: url("//ow.static.f2b211.com/static/fonts/HarmonyOS_Sans_SC_Light.ttf") format("opentype");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
/* font-family: 'HarmonyOS'; */
|
||||
font-family: 'HarmonyOS';
|
||||
-ms-overflow-style: none;
|
||||
/* IE 和 Edge */
|
||||
scrollbar-width: none;
|
||||
|
||||
40
public/static/index/mobile/css/topic_laptop/amd.css
Normal file
@@ -0,0 +1,40 @@
|
||||
.amd-box {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
max-width: 6.82rem;
|
||||
margin: 0 auto;
|
||||
margin-top: -0.86rem;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.amd-img-header,
|
||||
.amd-img-main,
|
||||
.amd-img-footer {
|
||||
width: 100%;
|
||||
max-width: 6.82rem;
|
||||
}
|
||||
.amd-img-main {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.amd-img-main-left,
|
||||
.amd-img-main-right {
|
||||
flex: 1;
|
||||
max-width: 3.36rem;
|
||||
display: block;
|
||||
}
|
||||
.amd-img-main-left img,
|
||||
.amd-img-main-right img {
|
||||
width: 3.36rem;
|
||||
display: block;
|
||||
margin-top: 0.1rem;
|
||||
}
|
||||
.amd-img-header img {
|
||||
width: 6.82rem;
|
||||
display: block;
|
||||
}
|
||||
.amd-img-footer img {
|
||||
width: 6.82rem;
|
||||
margin-top: 0.1rem;
|
||||
display: block;
|
||||
}
|
||||
50
public/static/index/mobile/css/topic_laptop/bly.css
Normal file
@@ -0,0 +1,50 @@
|
||||
.bly {
|
||||
margin: 0 0.34rem;
|
||||
aspect-ratio: 682/338;
|
||||
/* max-height: 6.97rem; */
|
||||
padding-top: 1.5rem;
|
||||
}
|
||||
|
||||
.bly .ba-slider .handle:after {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
/* 1. 缩小宽高:从48px改为32px(可根据需求再调,比如28px/30px) */
|
||||
width: 0.32rem;
|
||||
height: 0.32rem;
|
||||
/* 2. 同步调整margin:宽高的一半,保证居中(48px对应-24px,32px对应-16px) */
|
||||
margin: -0.16rem 0 0 -0.16rem;
|
||||
content: '';
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: #fff
|
||||
url('https://dev.ow.f2b211.com/static/index/pc/images/ba-arrow.png')
|
||||
/* 3. 缩小背景箭头:从22px改为16px(匹配整体尺寸) */ center center /
|
||||
0.16rem 0.16rem no-repeat;
|
||||
border: 1px solid #fff;
|
||||
border-radius: 50%;
|
||||
transition: all 0.3s ease;
|
||||
transform: scale(1);
|
||||
z-index: 5;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.bly .ba-slider .handle.ba-draggable:after {
|
||||
transform: scale(0.8);
|
||||
}
|
||||
.bly-t {
|
||||
font-size: 0.48rem;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
.bly-p {
|
||||
font-size: 0.20rem;
|
||||
color: #cbcfd8;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
padding-top: 0.37rem;
|
||||
padding-bottom: 0.56rem;
|
||||
font-family: 'HarmonyOS-Light';
|
||||
line-height: 1.5;
|
||||
}
|
||||
50
public/static/index/mobile/css/topic_laptop/cpu.css
Normal file
@@ -0,0 +1,50 @@
|
||||
.cpu {
|
||||
margin-top: 1.5rem;
|
||||
width: 100%;
|
||||
aspect-ratio: 750/882;
|
||||
position: relative;
|
||||
}
|
||||
.cpu-main {
|
||||
width: 100%;
|
||||
aspect-ratio: 750/882;
|
||||
}
|
||||
.cpu-texts-t {
|
||||
color: #fff;
|
||||
font-size: 0.48rem;
|
||||
line-height: 1;
|
||||
text-align: center;
|
||||
padding-top: 0.19rem;
|
||||
}
|
||||
.cpu-texts-p {
|
||||
color: #cbcfd8;
|
||||
font-size: 0.20rem;
|
||||
margin-top: 0.37rem;
|
||||
line-height: 1;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.cpu-footer {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.cpu-footer-img {
|
||||
display: flex;
|
||||
gap: 0.1rem;
|
||||
}
|
||||
.cpu-footer img {
|
||||
width: 100%;
|
||||
max-width: 1.48rem;
|
||||
display: block;
|
||||
}
|
||||
.cpu-footer-desc {
|
||||
font-size: 0.16rem;
|
||||
color: #cbcfd8;
|
||||
text-align: center;
|
||||
margin-top: 0.38rem;
|
||||
margin-bottom: 0.51rem;
|
||||
width: 100%;
|
||||
}
|
||||
59
public/static/index/mobile/css/topic_laptop/endurance.css
Normal file
@@ -0,0 +1,59 @@
|
||||
.endurance {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
margin-top: 1.78rem;
|
||||
aspect-ratio: 750/778;
|
||||
}
|
||||
.endurance-texts {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
position: absolute;
|
||||
top: -0.4rem;
|
||||
}
|
||||
.endurance-t {
|
||||
width: 100%;
|
||||
font-size: 0.5rem;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
}
|
||||
.endurance-t span:nth-child(1) {
|
||||
font-size: 0.4rem;
|
||||
line-height: 1;
|
||||
}
|
||||
.endurance-t span:nth-child(2) {
|
||||
font-size: 0.48rem;
|
||||
margin-left: 0.11rem;
|
||||
line-height: 1;
|
||||
}
|
||||
.endurance-p {
|
||||
font-size: 0.20rem;
|
||||
color: #cbcfd8;
|
||||
text-align: center;
|
||||
padding-top: 0.37rem;
|
||||
font-family: 'HarmonyOS-Light';
|
||||
}
|
||||
.endurance-img {
|
||||
width: 100%;
|
||||
|
||||
position: absolute;
|
||||
bottom: 0.62rem;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 0.1rem;
|
||||
}
|
||||
.endurance-img img {
|
||||
width: 2.46rem;
|
||||
display: block;
|
||||
}
|
||||
.endurance-footer-p {
|
||||
color: #ffffff;
|
||||
font-size: 0.18rem;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
text-align: center;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 100%;
|
||||
}
|
||||
161
public/static/index/mobile/css/topic_laptop/footer.css
Normal file
@@ -0,0 +1,161 @@
|
||||
.footer-imgs {
|
||||
width: 6.8rem;
|
||||
margin: 0 auto;
|
||||
margin-top: 1.5rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.footer-imgs img {
|
||||
width: 2.22rem;
|
||||
}
|
||||
.footer-imgs img:nth-child(4),
|
||||
.footer-imgs img:nth-child(5),
|
||||
.footer-imgs img:nth-child(6) {
|
||||
margin-top: 0.09rem;
|
||||
}
|
||||
|
||||
.footer-texts {
|
||||
width: 6.8rem;
|
||||
margin: 1.5rem 0.35rem;
|
||||
/* font-size: 0.16rem; */
|
||||
color: #909399;
|
||||
/* white-space: normal; */
|
||||
/* margin-top: 1.5rem;
|
||||
margin-bottom: 1.5rem; */
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.footer-texts p {
|
||||
width: 6.8rem;
|
||||
font-size: 0.16rem;
|
||||
padding-left: 0.1rem;
|
||||
text-indent: -0.2rem;
|
||||
/* line-height: 1.5;
|
||||
margin-bottom: 0.1rem; */
|
||||
font-family: 'HarmonyOS-Light';
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
|
||||
.footer-texts-en {
|
||||
width: 6.8rem;
|
||||
margin: 1.5rem 0.35rem;
|
||||
/* font-size: 0.16rem; */
|
||||
color: #909399;
|
||||
/* white-space: normal; */
|
||||
/* margin-top: 1.5rem;
|
||||
margin-bottom: 1.5rem; */
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.footer-texts-en p {
|
||||
width: 6.8rem;
|
||||
font-size: 0.16rem;
|
||||
padding-left: 0.1rem;
|
||||
text-indent: -0.1rem;
|
||||
/* line-height: 1.5;
|
||||
margin-bottom: 0.1rem; */
|
||||
font-family: 'HarmonyOS-Light';
|
||||
/* letter-spacing: 1px; */
|
||||
}
|
||||
|
||||
|
||||
.oircoEgapp-foot .logo-white img {
|
||||
margin: 0 auto;
|
||||
}
|
||||
.oircoEgapp-foot .m_footer {
|
||||
display: flex;
|
||||
/* flex-direction: row; */
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin:0 4%;
|
||||
padding-top: 0 !important;
|
||||
}
|
||||
/* .oircoEgapp-foot .m_footer .left,
|
||||
.oircoEgapp-foot .foot-con {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
} */
|
||||
.oircoEgapp-foot .m_footer .right {
|
||||
flex:1;
|
||||
width: 50% !important;
|
||||
display: flex !important;
|
||||
justify-content: end !important;
|
||||
/* max-width: 55%; */
|
||||
}
|
||||
.oircoEgapp-foot .m_footer .left {
|
||||
flex:1 !important;
|
||||
/* max-width: 40%;
|
||||
justify-content: end;
|
||||
margin-right: 4%; */
|
||||
width: 50% !important;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.oircoEgapp-foot .foot-con span {
|
||||
width: auto;
|
||||
padding: 0 0.625rem;
|
||||
}
|
||||
.oircoEgapp-foot .foot-cate .clearfix li h3 {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.oircoEgapp-foot .foot-cate .clearfix li p,
|
||||
.oircoEgapp-foot .foot-cate .clearfix li p a {
|
||||
font-size: 12px;
|
||||
}
|
||||
.logo-white {
|
||||
text-align: center;
|
||||
padding: 1rem 0 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.foot-cate {
|
||||
padding: 0.16rem;
|
||||
}
|
||||
.foot-cate h3 {
|
||||
font-size: 0.28rem;
|
||||
}
|
||||
.foot-cate li {
|
||||
padding: 0.16rem 0;
|
||||
min-height: 276px;
|
||||
|
||||
}
|
||||
.foot-cate li p {
|
||||
line-height: 40px;
|
||||
}
|
||||
.m_footer .right {
|
||||
float: right;
|
||||
width: 57%;
|
||||
text-align: left;
|
||||
}
|
||||
.foot-con span {
|
||||
font-size:14px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
-webkit-line-clamp: 1;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
cursor: pointer;
|
||||
font-family: 'HarmonyOS-Medium';
|
||||
}
|
||||
.oircoEgapp-foot .foot-con span {
|
||||
width: auto;
|
||||
padding: 0 0.125rem;
|
||||
}
|
||||
.m_footer .left a{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
}
|
||||
.m_footer .left img {
|
||||
width: 30px;
|
||||
padding-right:0 !important;
|
||||
padding-top: 0;
|
||||
}
|
||||
/* .oircoEgapp-foot .m_footer .right {
|
||||
max-width: 50%;
|
||||
} */
|
||||
.m_footer .right {
|
||||
padding: 0 !important;
|
||||
}
|
||||
69
public/static/index/mobile/css/topic_laptop/fs.css
Normal file
@@ -0,0 +1,69 @@
|
||||
.fs {
|
||||
width: 100%;
|
||||
}
|
||||
.fs-box {
|
||||
width: 100%;
|
||||
aspect-ratio: 16/9;
|
||||
}
|
||||
.fs-img,
|
||||
.fs-video {
|
||||
backface-visibility: hidden; /* 开启硬件加速 */
|
||||
transform: translateZ(0); /* 硬件加速 */
|
||||
}
|
||||
.fs-box img {
|
||||
width: 100%;
|
||||
}
|
||||
.fs-box-img {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.fs-h-img {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 0.11rem;
|
||||
|
||||
}
|
||||
.fs-h-img img {
|
||||
width: 3.35rem;
|
||||
aspect-ratio: 335/95;
|
||||
|
||||
}
|
||||
.fs-b-img {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 0.1rem;
|
||||
aspect-ratio: 681/122;
|
||||
}
|
||||
.fs-b-img img {
|
||||
width: 6.81rem;
|
||||
}
|
||||
.fs-ts {
|
||||
font-size: 0.18rem;
|
||||
text-align: center;
|
||||
color: #cbcfd8;
|
||||
padding: 0.4rem 0;
|
||||
}
|
||||
.dl {
|
||||
width: 100%;
|
||||
padding-top: 1.01rem;
|
||||
}
|
||||
.dl-t {
|
||||
color: #fff;
|
||||
font-size: 0.48rem;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.dl-p {
|
||||
color: #cbcfd8;
|
||||
font-size: 0.20rem;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
padding-top: 0.37rem;
|
||||
/* padding-bottom: 0.37rem; */
|
||||
line-height: 1.5;
|
||||
font-family: 'HarmonyOS-Light';
|
||||
}
|
||||
44
public/static/index/mobile/css/topic_laptop/gpu.css
Normal file
@@ -0,0 +1,44 @@
|
||||
.gpu {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.gpu-texts {
|
||||
color: #fff;
|
||||
font-size: 0.48rem;
|
||||
margin: 0 0.34rem;
|
||||
}
|
||||
.gpu-texts-t {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.gpu-texts-p {
|
||||
font-size: 0.20rem;
|
||||
color: #cbcfd8;
|
||||
line-height: 1.5;
|
||||
margin-top: 0.37rem;
|
||||
}
|
||||
.gpu-main-img {
|
||||
width: 100%;
|
||||
aspect-ratio: 750/780;
|
||||
}
|
||||
.gpu-amd-img {
|
||||
width: 100%;
|
||||
}
|
||||
.gpu-amd-img img {
|
||||
max-width: 2.26rem;
|
||||
width: 100%;
|
||||
margin-top: 2.39rem;
|
||||
margin-left: 0.45rem;
|
||||
}
|
||||
.gpu-footer-imgs {
|
||||
display: flex;
|
||||
position: absolute;
|
||||
bottom: 0.61rem;
|
||||
gap: 0.1rem;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
.gpu-footer-imgs img {
|
||||
max-width: 1.63rem;
|
||||
}
|
||||
233
public/static/index/mobile/css/topic_laptop/header.css
Normal file
@@ -0,0 +1,233 @@
|
||||
.oircoEgapp-head {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
z-index: 1000;
|
||||
width: -webkit-fill-available;
|
||||
}
|
||||
.oircoEgapp-head .headtop {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 0 0.16rem;
|
||||
height:60px;
|
||||
background: #fff;
|
||||
}
|
||||
.oircoEgapp-head .headtop .headerlogimg {
|
||||
|
||||
max-width: 140px;
|
||||
min-width: 123px;
|
||||
height: auto !important;
|
||||
display: block;
|
||||
/* height: 2.25rem; */
|
||||
}
|
||||
.oircoEgapp-head .top-menu {
|
||||
background-color: #fff;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
color: #000;
|
||||
display: none;
|
||||
}
|
||||
.oircoEgapp-head .top-menu .it-ct {
|
||||
font-family: "HarmonyOS-SemiBold";
|
||||
font-weight: bold;
|
||||
}
|
||||
.oircoEgapp-head .top-menu .it-ct .it-1 {
|
||||
padding: 0.16rem 3.5% 0.2rem;
|
||||
border-bottom: 1px solid #e5e5e5;
|
||||
font-size: 14px;
|
||||
position: relative;
|
||||
}
|
||||
.oircoEgapp-head .top-menu .it-ct .it-1-more {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
padding-bottom: 1.5%;
|
||||
}
|
||||
.oircoEgapp-head .top-menu .it-ct .it-1-more i {
|
||||
font-weight: bold;
|
||||
}
|
||||
.oircoEgapp-head .top-menu .it-ct .it-1-2 {
|
||||
padding-left: 0.16rem;
|
||||
font-size: 13px;
|
||||
line-height: 1.8;
|
||||
font-weight: 100;
|
||||
font-weight: bold;
|
||||
display: none;
|
||||
}
|
||||
.oircoEgapp-head .top-menu .it-ct .it-1-2 a {
|
||||
color: #666;
|
||||
}
|
||||
.cursor_p span {
|
||||
font-size: 22px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
-webkit-line-clamp: 1;
|
||||
width: 100%;
|
||||
/* height: 1.2rem; */
|
||||
padding-left: 0.2rem;
|
||||
}
|
||||
.cursor_p span:hover {
|
||||
font-size:22px;
|
||||
white-space: normal;
|
||||
width: 100%;
|
||||
overflow: inherit;
|
||||
line-height: 1.5;
|
||||
}
|
||||
/* .cursor_p {
|
||||
height: 0.38rem !important;
|
||||
} */
|
||||
.img-responsive {
|
||||
display: flex !important;
|
||||
justify-content: center !important;
|
||||
align-items: center !important;
|
||||
}
|
||||
.img-responsive span {
|
||||
display: flex !important;
|
||||
align-items: center !important;
|
||||
}
|
||||
.action-sheet {
|
||||
border-top-left-radius: 10px;
|
||||
border-top-right-radius: 10px;
|
||||
display: none;
|
||||
background: #fff;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
z-index: 11111;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.menu-name {
|
||||
text-indent: 0.2rem;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
color: #000;
|
||||
}
|
||||
.action-sheet ul li {
|
||||
margin: 0 10px;
|
||||
color: #333;
|
||||
font-size: 12px;
|
||||
text-align: left;
|
||||
border-bottom: 1px solid #eee;
|
||||
padding: 12px 14px;
|
||||
}
|
||||
.action-sheet ul li a {
|
||||
color: #333;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
.action-sheet ul li img {
|
||||
margin-right: 14px;
|
||||
}
|
||||
.menu-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin: 0 10px;
|
||||
justify-content: space-between;
|
||||
background: #fff;
|
||||
border-top-left-radius: 6px;
|
||||
border-top-right-radius:6px;
|
||||
padding: 5px 0;
|
||||
}
|
||||
.close-icon {
|
||||
width: 24px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.close-icon img {
|
||||
width: 24px !important;
|
||||
}
|
||||
.title-text {
|
||||
padding-top: 0.24rem;
|
||||
color: #333;
|
||||
font-size: 14px;
|
||||
}
|
||||
.title-text p {
|
||||
line-height: 2;
|
||||
}
|
||||
.title-text p a {
|
||||
color: #989898;
|
||||
|
||||
}
|
||||
.title-text p a:hover {
|
||||
color: #989898;
|
||||
}
|
||||
.marsk-container {
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
display: none;
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
bottom: 0px;
|
||||
z-index: 9999;
|
||||
}
|
||||
.marsk-container-detail {
|
||||
background: rgba(0, 0, 0, 0.8);
|
||||
display: none;
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
bottom: 0px;
|
||||
z-index: 9999;
|
||||
}
|
||||
.search-in {
|
||||
margin-top:0.8rem;
|
||||
}
|
||||
.search-in input {
|
||||
width: 70% !important;
|
||||
height: 0.8rem;
|
||||
background: #ffffff;
|
||||
border: 1px solid #d6d6d6;
|
||||
opacity: 1;
|
||||
border-radius: 20px;
|
||||
padding: 0 14px;
|
||||
font-size: 14px;
|
||||
}
|
||||
::-webkit-input-placeholder {
|
||||
color: #989898;
|
||||
}
|
||||
.search-button {
|
||||
border: none;
|
||||
font-size: 14px;
|
||||
color: #fff;
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
cursor: pointer;
|
||||
background: #0060ff;
|
||||
height:0.7rem;
|
||||
border-radius: 20px;
|
||||
padding: 0 14px;
|
||||
width: 22%;
|
||||
}
|
||||
.search-in form{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
.search-in .title-text p a{
|
||||
font-size: 14px;
|
||||
}
|
||||
/*头部搜索弹窗*/
|
||||
.popup-quick {
|
||||
width: 86%;
|
||||
background-color: #fff;
|
||||
z-index: 9999;
|
||||
box-shadow: 0px 2px 5px rgba(255, 255, 255, 0.2);
|
||||
color: #333;
|
||||
padding: 14px;
|
||||
border-radius: 5px;
|
||||
margin: 14px auto 0;
|
||||
position: relative;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
42
public/static/index/mobile/css/topic_laptop/index.css
Normal file
@@ -0,0 +1,42 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
html {
|
||||
width: 100% !important;
|
||||
overflow-x: hidden;
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
max-width: 100vw !important;
|
||||
}
|
||||
body {
|
||||
width: 100%;
|
||||
background: #000;
|
||||
overflow-x: hidden;
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
max-width: 100vw !important;
|
||||
}
|
||||
|
||||
.f36{
|
||||
font-size: 0.36rem !important;
|
||||
font-family: "HarmonyOS-Medium" !important;
|
||||
/* line-height: 1 !important; */
|
||||
}
|
||||
.f18{
|
||||
font-size: 0.18rem !important;
|
||||
line-height: 1.5 !important;
|
||||
}
|
||||
.lh1 {
|
||||
line-height: 1 !important;
|
||||
}
|
||||
.f28 {
|
||||
font-size: 0.28rem !important;
|
||||
font-family: "HarmonyOS-Medium" !important;
|
||||
}
|
||||
.f48 {
|
||||
font-size: 0.48rem !important;
|
||||
line-height: 1 !important;
|
||||
margin-bottom: 0.6rem !important;
|
||||
font-family: "HarmonyOS-Medium" !important;
|
||||
}
|
||||
43
public/static/index/mobile/css/topic_laptop/ips.css
Normal file
@@ -0,0 +1,43 @@
|
||||
.ips {
|
||||
position: relative;
|
||||
}
|
||||
.ips-t {
|
||||
font-size: 0.48rem;
|
||||
color: #fff;
|
||||
line-height: 1.5;
|
||||
margin-top: 1.5rem;
|
||||
margin-left: 0.38rem;
|
||||
margin-right: 0.38rem;
|
||||
margin-bottom: 0.46rem;
|
||||
}
|
||||
.ips-bg {
|
||||
aspect-ratio: 750/678;
|
||||
position: relative;
|
||||
}
|
||||
.ips-bg p {
|
||||
font-size: 0.20rem;
|
||||
color: #cbcfd8;
|
||||
line-height: 1.5;
|
||||
margin-left: 0.38rem;
|
||||
margin-right: 0.38rem;
|
||||
position: absolute;
|
||||
top: -0.3rem;
|
||||
}
|
||||
.ips-imgs {
|
||||
width: 6.8rem;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.1rem;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
bottom: -3rem;
|
||||
display: flex;
|
||||
}
|
||||
.ips-imgs img {
|
||||
width: 3.35rem;
|
||||
display: block;
|
||||
}
|
||||
/* .ips-imgs img:nth-child(3),
|
||||
.ips-imgs img:nth-child(4) {
|
||||
margin-top: 0.1rem;
|
||||
} */
|
||||
37
public/static/index/mobile/css/topic_laptop/m2.css
Normal file
@@ -0,0 +1,37 @@
|
||||
.m2 {
|
||||
width: 100%;
|
||||
margin-top: 1.09rem;
|
||||
}
|
||||
.m2-bg {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
aspect-ratio: 750/846;
|
||||
}
|
||||
|
||||
.m2-bg-t1 {
|
||||
font-size: 0.48rem;
|
||||
color: #fff;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
line-height: 1.5;
|
||||
padding-top: 1.3rem;
|
||||
}
|
||||
.m2-bg-p {
|
||||
color: #CBCFD8ff;
|
||||
font-size: 0.18rem;
|
||||
padding-top:0.37rem;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
|
||||
}
|
||||
.m2-img-box {
|
||||
position: absolute;
|
||||
bottom: 0.66rem;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 0.11rem;
|
||||
}
|
||||
.m2-img-box img {
|
||||
width: 2.22rem;
|
||||
}
|
||||
39
public/static/index/mobile/css/topic_laptop/memory.css
Normal file
@@ -0,0 +1,39 @@
|
||||
.memory {
|
||||
width: 100%;
|
||||
}
|
||||
.memory-t {
|
||||
font-size: 0.48rem;
|
||||
color: #fff;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
padding-bottom: 0.37rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.memory-img {
|
||||
width: 100%;
|
||||
aspect-ratio: 750/727;
|
||||
position: relative;
|
||||
}
|
||||
.memory-p {
|
||||
width: 100%;
|
||||
font-size: 0.20rem;
|
||||
color: #cbcfd8;
|
||||
text-align: center;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.memory-footer-img {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
bottom: -0.74rem;
|
||||
width: 6.83rem;
|
||||
}
|
||||
.memory-footer-img p {
|
||||
height:0;
|
||||
}
|
||||
.memory-footer-img img {
|
||||
width: 6.83rem;
|
||||
|
||||
display: block;
|
||||
aspect-ratio: 683/148;
|
||||
}
|
||||
129
public/static/index/mobile/css/topic_laptop/progress.css
Normal file
@@ -0,0 +1,129 @@
|
||||
.progress {
|
||||
margin-left: 0.34rem;
|
||||
margin-right: 0.34rem;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
/* .progress-section {
|
||||
margin-left: 0.34rem;
|
||||
margin-right: 0.34rem;
|
||||
box-sizing: border-box;
|
||||
} */
|
||||
|
||||
.progress-title {
|
||||
font-size: 0.24rem;
|
||||
color: #fff;
|
||||
padding: 0.16rem 0 0.36rem 0;
|
||||
font-family: 'HarmonyOS-Medium';
|
||||
}
|
||||
.progress-item .label {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: baseline;
|
||||
line-height: 1;
|
||||
margin-top: 0.13rem;
|
||||
margin-bottom: 0.36rem;
|
||||
}
|
||||
|
||||
.progress-item .label .device-name {
|
||||
flex: 1;
|
||||
font-family: 'HarmonyOS-Medium';
|
||||
margin-left: 0.04rem;
|
||||
}
|
||||
|
||||
.progress-item .label .value {
|
||||
text-align: right;
|
||||
font-family: 'HarmonyOS-Medium';
|
||||
margin-right: 0.04rem;
|
||||
}
|
||||
|
||||
.colorLinearGradient {
|
||||
background: linear-gradient(90deg, #7e51ff, #d5dfff);
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.progress-item .label .value.m4-max {
|
||||
color: #5e5ce6;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
flex: 1;
|
||||
height: 0.1rem;
|
||||
max-height: 0.2rem;
|
||||
min-height: 0.1rem;
|
||||
border-radius: 0.1rem;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
/* 性能优化1:开启硬件加速,减少重绘 */
|
||||
transform: translateZ(0);
|
||||
will-change: transform;
|
||||
}
|
||||
|
||||
.progress-fill {
|
||||
height: 100%;
|
||||
border-radius: 0.05rem;
|
||||
transform: scaleX(0);
|
||||
transform-origin: left center;
|
||||
transition: transform 1.2s ease-out;
|
||||
will-change: transform;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* 保留你所有原始的进度条颜色类 */
|
||||
.progress-fill.m4-max {
|
||||
background: linear-gradient(40deg, #7e51ff, #e1d5ff);
|
||||
}
|
||||
|
||||
.progress-fill.m2-max {
|
||||
background: #bfc5d9;
|
||||
}
|
||||
|
||||
@keyframes shimmer {
|
||||
100% {
|
||||
left: 150%;
|
||||
}
|
||||
}
|
||||
|
||||
.font20 {
|
||||
font-size: 0.2rem !important;
|
||||
}
|
||||
.font18 {
|
||||
font-size: 0.18rem !important;
|
||||
}
|
||||
.colorCBCFD8 {
|
||||
color: #646778 !important;
|
||||
}
|
||||
|
||||
.progress-p {
|
||||
color: #cbcfd8;
|
||||
font-size: 0.18rem;
|
||||
margin-top: 0.51rem;
|
||||
margin-bottom: 1.5rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.progress-p1 {
|
||||
color: #cbcfd8;
|
||||
font-size: 0.18rem;
|
||||
margin-top: 1.56rem;
|
||||
text-align: center;
|
||||
}
|
||||
.w645 {
|
||||
width: 6.45rem;
|
||||
}
|
||||
.w585 {
|
||||
width: 5.85rem;
|
||||
}
|
||||
.w454 {
|
||||
width: 4.54rem;
|
||||
}
|
||||
.w321 {
|
||||
width: 3.21rem;
|
||||
}
|
||||
.w596 {
|
||||
width: 5.96rem;
|
||||
}
|
||||
.w467 {
|
||||
width: 4.67rem;
|
||||
}
|
||||
25
public/static/index/mobile/css/topic_laptop/qb.css
Normal file
@@ -0,0 +1,25 @@
|
||||
/* .qb {
|
||||
position: absolute;
|
||||
top:3rem;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
} */
|
||||
.qb-t {
|
||||
width: 100%;
|
||||
font-size: 0.48rem;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
padding-top: 1.5rem;
|
||||
}
|
||||
.qb-p {
|
||||
font-size: 0.20rem;
|
||||
color: #cbcfd8;
|
||||
text-align: center;
|
||||
padding-top: 0.37rem;
|
||||
padding-bottom: 0.34rem;
|
||||
font-family: 'HarmonyOS-Light';
|
||||
line-height: 1.5;
|
||||
}
|
||||
.qb-bg-img1 {
|
||||
width: 6.9rem;
|
||||
}
|
||||
28
public/static/index/mobile/css/topic_laptop/rgb.css
Normal file
@@ -0,0 +1,28 @@
|
||||
.rgb-t {
|
||||
font-size: 0.48rem;
|
||||
color: #fff;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
margin-top: 4.84rem;
|
||||
margin-bottom: 0.37rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.rgb-bg {
|
||||
aspect-ratio: 750/582;
|
||||
}
|
||||
.rgb-p {
|
||||
font-size: 0.20rem;
|
||||
color: #cbcfd8;
|
||||
line-height: 1.5;
|
||||
text-align: center;
|
||||
}
|
||||
.rgb-imgs {
|
||||
display: flex;
|
||||
gap: 0.1rem;
|
||||
margin-top: 0.28rem;
|
||||
justify-content: center;
|
||||
}
|
||||
.rgb-imgs img {
|
||||
width: 2.17rem;
|
||||
display: block;
|
||||
}
|
||||
86
public/static/index/mobile/css/topic_laptop/swiper.css
Normal file
@@ -0,0 +1,86 @@
|
||||
/* 轮播容器 - 核心:基于视口高度自适应 */
|
||||
.auto-swiper-container {
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
/* 轮播项 - 填充容器高度 */
|
||||
.auto-swiper-slide {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
/* 图片自适应核心:填充屏幕比例高度,保持比例 */
|
||||
.auto-swiper-slide img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover; /* 优先填充容器,裁剪超出部分(无拉伸) */
|
||||
/* object-fit: contain; 可选:完整显示图片,不裁剪(可能留黑边) */
|
||||
display: block;
|
||||
}
|
||||
.swiper-container-texts {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 1.2rem;
|
||||
transform: translateX(-50%);
|
||||
z-index: 10;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.swiper-container-texts-t {
|
||||
font-size: 0.48rem;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
line-height: 1;
|
||||
}
|
||||
.swiper-container-texts-p {
|
||||
padding-top: 0.54rem;
|
||||
font-size: 0.16rem;
|
||||
/* text-align: center; */
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
/* letter-spacing: px; */
|
||||
justify-content: center;
|
||||
}
|
||||
.swiper-container-texts-p div {
|
||||
font-family: 'HarmonyOS-Light';
|
||||
}
|
||||
.swiper-container-texts-line {
|
||||
width: 1px;
|
||||
height: 0.16rem;
|
||||
background: #fff;
|
||||
margin: 0 12px;
|
||||
}
|
||||
.swiper-container-texts-img {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding-top: 0.54rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
.swiper-container-texts-img a {
|
||||
width: 100%;
|
||||
max-width: 1.18rem;
|
||||
}
|
||||
.swiper-container-texts-img img {
|
||||
width: 100%;
|
||||
max-width: 1.18rem;
|
||||
}
|
||||
.swiper-slide-t {
|
||||
padding-top: 0.3rem;
|
||||
font-size: 0.2rem;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
}
|
||||
.swiper-slide-p {
|
||||
font-size: 0.16rem;
|
||||
color: #cbcfd8;
|
||||
text-align: center;
|
||||
margin-top: 0.18rem;
|
||||
}
|
||||
105
public/static/index/mobile/css/topic_laptop/tabs.css
Normal file
@@ -0,0 +1,105 @@
|
||||
.tabs-container {
|
||||
width: 6.03rem;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.tabs-header-box {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 0.48rem;
|
||||
}
|
||||
.tabs-header {
|
||||
display: inline-flex;
|
||||
/* 改为inline-flex,宽度由子元素决定 */
|
||||
position: relative;
|
||||
border-bottom: 1px solid #909399;
|
||||
margin: 0 auto;
|
||||
width: 1.75rem;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.tab-item {
|
||||
/* padding: 12px 24px; */
|
||||
font-size: 0.18rem;
|
||||
cursor: pointer;
|
||||
transition: color 0.2s ease;
|
||||
white-space: nowrap;
|
||||
color: #cbcfd8;
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.tab-item {
|
||||
margin-bottom: 0.08rem;
|
||||
}
|
||||
|
||||
.tab-indicator {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
height:1px;
|
||||
background-color: #fff;
|
||||
transform: translateX(0);
|
||||
width: auto;
|
||||
transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
|
||||
width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
|
||||
will-change: transform, width;
|
||||
backface-visibility: hidden;
|
||||
perspective: 1000px;
|
||||
}
|
||||
|
||||
.tab-content {
|
||||
width: 6.03rem;
|
||||
width: 6.03rem;
|
||||
/* min-width: 1280px; */
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.content-video {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
border-radius: 8px;
|
||||
}
|
||||
.tabs-p {
|
||||
width: 100%;
|
||||
font-size: 0.18rem;
|
||||
color: #cbcfd8;
|
||||
text-align: center;
|
||||
margin-top: 0.48rem;
|
||||
display: none;
|
||||
}
|
||||
.tabs-p.active {
|
||||
display: block;
|
||||
}
|
||||
.tab-panel {
|
||||
display: none;
|
||||
}
|
||||
.tab-panel-img {
|
||||
background: #1c1c1e;
|
||||
width: 5.77rem;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
border-radius: 0.16rem;
|
||||
}
|
||||
.tab-panel-img img {
|
||||
width: 5.77rem;
|
||||
}
|
||||
.tab-panel.active {
|
||||
display: block;
|
||||
}
|
||||
.tab-t {
|
||||
font-size: 0.48rem;
|
||||
color: #cbcfd8;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
margin-top: 1.5rem;
|
||||
margin-bottom: 0.7rem;
|
||||
display: none;
|
||||
}
|
||||
.tab-t.active {
|
||||
display: block;
|
||||
}
|
||||
/* .tab-ts {
|
||||
margin-top: 2.97rem;
|
||||
margin-bottom: 1rem;
|
||||
} */
|
||||
37
public/static/index/mobile/css/topic_laptop/wift.css
Normal file
@@ -0,0 +1,37 @@
|
||||
.wifi {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
aspect-ratio: 750/595;
|
||||
margin-top: 3.45rem;
|
||||
}
|
||||
.wifi-texts {
|
||||
position: absolute;
|
||||
top: -2.3rem;
|
||||
left: 0.42rem;
|
||||
width: 100%;
|
||||
}
|
||||
.wifi-t {
|
||||
width: 100%;
|
||||
font-size: 0.48rem;
|
||||
color: #fff;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.wifi-p {
|
||||
font-size: 0.20rem;
|
||||
color: #cbcfd8;
|
||||
padding-top: 0.37rem;
|
||||
line-height: 1.4;
|
||||
font-family: 'HarmonyOS-Light';
|
||||
}
|
||||
.wifi-img {
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
bottom: -0.22rem;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 0.1rem;
|
||||
}
|
||||
.wifi-img img {
|
||||
width: 3.35rem;
|
||||
display: block;
|
||||
}
|
||||
9
public/static/index/mobile/css/topic_laptop/window.css
Normal file
@@ -0,0 +1,9 @@
|
||||
.window {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
.window img {
|
||||
width: 6.8rem;
|
||||
}
|
||||
64
public/static/index/mobile/css/topic_laptop/xn.css
Normal file
@@ -0,0 +1,64 @@
|
||||
.xn-container {
|
||||
width: 6.8rem;
|
||||
margin: 0 auto;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* 图片容器样式(核心) */
|
||||
.xn-image-section {
|
||||
overflow: hidden;
|
||||
border-radius: 0.16rem;
|
||||
background: #0d0c10;
|
||||
border: 1px solid #3f3f45;
|
||||
width: 6.8rem;
|
||||
}
|
||||
|
||||
.zoom-image {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
/* 调整transform过渡时间为2s,opacity为1.5s,可按需修改 */
|
||||
transition: transform 2s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 1.5s ease;
|
||||
transform: scale(0.8);
|
||||
/* 初始缩放比例 */
|
||||
opacity: 0.9;
|
||||
/* 初始透明度(略暗,放大后变亮) */
|
||||
}
|
||||
|
||||
/* 滚动触发后的放大状态 */
|
||||
.zoom-image.active {
|
||||
transform: scale(1.1);
|
||||
/* 放大5%(官网常用比例,不夸张) */
|
||||
opacity: 1;
|
||||
}
|
||||
.xn-t {
|
||||
font-size: 0.48rem;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
margin-top: 1.5rem;
|
||||
margin-bottom: 0.6rem;
|
||||
|
||||
}
|
||||
.xn-p {
|
||||
padding-top: 0.6rem;
|
||||
font-size: 0.16rem;
|
||||
margin-left: 0.47rem;
|
||||
}
|
||||
.xn-p p {
|
||||
width: 5.84rem;
|
||||
color: #cbcfd8;
|
||||
line-height: 1.5;
|
||||
/* 核心:左内边距控制第二行缩进量 */
|
||||
padding-left: 0.8rem;
|
||||
/* 首行向左偏移,抵消左内边距,实现第二行缩进 */
|
||||
text-indent: -0.8rem;
|
||||
/* 确保p标签是块级,且换行正常 */
|
||||
display: block;
|
||||
word-wrap: break-word;
|
||||
white-space: nowrap;
|
||||
/* 2. 超出元素宽度的内容隐藏 */
|
||||
overflow: hidden;
|
||||
/* 3. 将超出的文本替换为省略号... */
|
||||
text-overflow: ellipsis;
|
||||
/* 可选:给元素设置一个固定宽度(确保省略效果生效) */
|
||||
}
|
||||
122
public/static/index/mobile/css/topic_laptop/zoom.css
Normal file
@@ -0,0 +1,122 @@
|
||||
/* 图片容器:100vw宽,最小宽度1440px,按图片原始比例(2560:1857)定高 */
|
||||
.zoom-container {
|
||||
width: 7.5rem;
|
||||
height: 6.05rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* 图片包裹层:与容器同尺寸,定位参考系,承接缩放变换 */
|
||||
.img-wrapper {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
/* z-index: -10; */
|
||||
}
|
||||
|
||||
/* 图片:按原始比例填充包裹层,不裁切,初始放大+过渡动画 */
|
||||
.bg-img {
|
||||
width: 7.5rem;
|
||||
height: 6.05rem;
|
||||
display: block;
|
||||
transform: scale(1.5);
|
||||
transition: transform 1.8s ease;
|
||||
transform-origin: center center;
|
||||
}
|
||||
|
||||
/* 图片缩小后的状态 */
|
||||
.bg-img.zoom-out {
|
||||
transform: scale(1);
|
||||
}
|
||||
|
||||
/* 标注样式:关键修正 - 基于容器绝对定位,百分比参考图片原始比例 */
|
||||
.annotation {
|
||||
position: absolute;
|
||||
color: #fff;
|
||||
font-size: calc(12px + 0.3vw);
|
||||
opacity: 0;
|
||||
transform: translateY(calc(10px + 0.5vw));
|
||||
transition: opacity 0.8s ease, transform 0.8s ease;
|
||||
pointer-events: none;
|
||||
z-index: 10;
|
||||
white-space: nowrap;
|
||||
/* 关键:标注的定位参考系是容器(与图片同比例),而非缩放后的图片 */
|
||||
top: 0;
|
||||
left: 0;
|
||||
/* 重置默认值,依赖内联style的百分比定位 */
|
||||
}
|
||||
|
||||
/* 标注显示状态 */
|
||||
.annotation.anno-show {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.annotation span {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
/* 确保文字居中对齐 */
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* 标注线条样式:基于文字定位,适配缩放 */
|
||||
.annotation span::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 0.01rem;
|
||||
height: 0;
|
||||
bottom: calc(100% + 6px);
|
||||
background-color: #fff;
|
||||
transition: height 0.8s ease;
|
||||
transform-origin: bottom center;
|
||||
}
|
||||
/* 向上延伸的标注线条(给需要向上的.annotation加anno-up类) */
|
||||
.annotation.anno-up span::before {
|
||||
/* 把线条位置从文字下方,改成文字上方 */
|
||||
bottom: auto;
|
||||
top: 0.3rem; /* 定位到文字顶部外 */
|
||||
/* 线条方向改为向上延伸 */
|
||||
transform-origin: top center;
|
||||
}
|
||||
.annotation.anno-up1 span::before {
|
||||
/* 把线条位置从文字下方,改成文字上方 */
|
||||
bottom: auto;
|
||||
top: 0.5rem; /* 定位到文字顶部外 */
|
||||
/* 线条方向改为向上延伸 */
|
||||
transform-origin: top center;
|
||||
}
|
||||
/* 标注显示时,设置线条最终高度 */
|
||||
.annotation.anno-show span::before {
|
||||
height: 0.57rem;
|
||||
}
|
||||
|
||||
.zoom-t {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-size: 0.48rem;
|
||||
color: #fff;
|
||||
padding-top: 1.5rem;
|
||||
}
|
||||
.zoom-p {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
font-size: 0.20rem;
|
||||
color: #cbcfd8;
|
||||
position: absolute;
|
||||
top: 0.37rem;
|
||||
z-index: 10;
|
||||
line-height: 1.5;
|
||||
font-family: 'HarmonyOS-Light';
|
||||
}
|
||||
|
||||
/* 标注延迟类 */
|
||||
.anno-delay-1 {
|
||||
transition-delay: 0.8s;
|
||||
}
|
||||
.anno-delay-1 span::before {
|
||||
transition-delay: 0.8s;
|
||||
}
|
||||
@@ -9,7 +9,7 @@
|
||||
/* max-height: 900px; */
|
||||
min-height: 300px;
|
||||
position: relative;
|
||||
margin-top:60px;
|
||||
margin-top:46px;
|
||||
|
||||
}
|
||||
/* 轮播项 - 填充容器高度 */
|
||||
|
||||
BIN
public/static/index/mobile/images/header/b.png
Normal file
|
After Width: | Height: | Size: 356 B |
BIN
public/static/index/mobile/images/header/card.png
Normal file
|
After Width: | Height: | Size: 991 B |
BIN
public/static/index/mobile/images/header/lang.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
public/static/index/mobile/images/header/left.png
Normal file
|
After Width: | Height: | Size: 271 B |
BIN
public/static/index/mobile/images/header/nav.png
Normal file
|
After Width: | Height: | Size: 211 B |
BIN
public/static/index/mobile/images/header/s.png
Normal file
|
After Width: | Height: | Size: 40 KiB |
BIN
public/static/index/mobile/images/header/search.png
Normal file
|
After Width: | Height: | Size: 1021 B |
BIN
public/static/index/mobile/images/header/u.png
Normal file
|
After Width: | Height: | Size: 490 B |
BIN
public/static/index/mobile/images/header/x.png
Normal file
|
After Width: | Height: | Size: 521 B |
BIN
public/static/index/mobile/images/header/z.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
public/static/index/mobile/images/left.png
Normal file
|
After Width: | Height: | Size: 271 B |
BIN
public/static/index/mobile/images/topic_laptop/zoom-img-1.png
Normal file
|
After Width: | Height: | Size: 1.2 MiB |
BIN
public/static/index/mobile/images/y.png
Normal file
|
After Width: | Height: | Size: 301 B |
@@ -66,7 +66,7 @@
|
||||
.orico_Page_productxc .productxcMain .culture_top .culture_bril_con .culture_bril_div .title {
|
||||
font-size: 1.125rem;
|
||||
font-weight: 600;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
margin-top: 2rem;
|
||||
width: 90%;
|
||||
margin-left: 5%;
|
||||
@@ -75,7 +75,7 @@
|
||||
width: 80%;
|
||||
font-size: 0.875rem;
|
||||
color: #707070;
|
||||
font-family: Metropolis-Medium, Metropolis;
|
||||
font-family: HarmonyOS-Medium, HarmonyOS;
|
||||
margin-top: 1.375rem;
|
||||
margin-left: 10%;
|
||||
}
|
||||
@@ -93,7 +93,7 @@
|
||||
line-height: 2em;
|
||||
margin-bottom: 2%;
|
||||
font-weight: 600;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
}
|
||||
.orico_Page_productxc .productxcMain .culture_vision .swt-Container {
|
||||
width: 80%;
|
||||
@@ -138,14 +138,14 @@
|
||||
color: #101010;
|
||||
line-height: 2em;
|
||||
margin-bottom: 2%;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
margin-right: 10%;
|
||||
}
|
||||
.orico_Page_productxc .productxcMain .culture_vision .swt-Container .swt-Table .Table-Row .right .des {
|
||||
font-size: 16px;
|
||||
color: #737373;
|
||||
line-height: 1.6rem;
|
||||
font-family: Metropolis-Medium, Metropolis;
|
||||
font-family: HarmonyOS-Medium, HarmonyOS;
|
||||
}
|
||||
.orico_Page_productxc .productxcMain .culture_vision .swt-Container .swt-Table .Table-Row .Table-Cell {
|
||||
display: table-cell;
|
||||
@@ -159,7 +159,7 @@
|
||||
font-size: 1rem;
|
||||
color: #737373;
|
||||
line-height: 1.6rem;
|
||||
font-family: Metropolis-Medium, Metropolis;
|
||||
font-family: HarmonyOS-Medium, HarmonyOS;
|
||||
}
|
||||
.orico_Page_productxc .productxcMain .culture_vision .swt-Container .culture_vision_02 .des,
|
||||
.orico_Page_productxc .productxcMain .culture_vision .swt-Container .culture_vision_02 .subtitle {
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
}
|
||||
.orico_Page_introduction .introductionMain .iotbpage .iotb_bgw .iotbt1 {
|
||||
font-size: 32px;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
padding-bottom: 65px;
|
||||
padding-top: 88px;
|
||||
font-weight: 700;
|
||||
@@ -57,14 +57,14 @@
|
||||
}
|
||||
.orico_Page_introduction .introductionMain .iotbpage .iotb_bgw .iotb_part1 .iotb_p1_item .iotbtp1 {
|
||||
font-size: 18px;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
font-weight: bold;
|
||||
padding-bottom: 18px;
|
||||
}
|
||||
.orico_Page_introduction .introductionMain .iotbpage .iotb_bgw .iotb_part1 .iotb_p1_item .iotbts1 {
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
font-family: Metropolis-Medium, Metropolis;
|
||||
font-family: HarmonyOS-Medium, HarmonyOS;
|
||||
color: #9e9e9f;
|
||||
}
|
||||
.orico_Page_introduction .introductionMain .iotb_part2 {
|
||||
@@ -78,7 +78,7 @@
|
||||
}
|
||||
.orico_Page_introduction .introductionMain .iotb_part2 .iotbt1 {
|
||||
font-size: 32px;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
padding-bottom: 65px;
|
||||
padding-top: 88px;
|
||||
font-weight: 700;
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
height: 11.25rem;
|
||||
line-height: 11.25rem;
|
||||
font-size: 2rem;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
font-weight: bold;
|
||||
color: #000000;
|
||||
text-align: center;
|
||||
@@ -52,7 +52,7 @@
|
||||
.orico_Page_achievement .achievementMain .achInfo .achNums .achive_shuju .title1 {
|
||||
margin-top: 2.5rem;
|
||||
font-size: 2rem;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
font-weight: bold;
|
||||
color: #000000;
|
||||
}
|
||||
@@ -62,7 +62,7 @@
|
||||
.orico_Page_achievement .achievementMain .achInfo .achNums .achive_shuju .subtitle1 {
|
||||
margin-top: 1rem;
|
||||
font-size: 1.125rem;
|
||||
font-family: Metropolis-Regular, Metropolis;
|
||||
font-family: HarmonyOS-Regular, HarmonyOS;
|
||||
font-weight: 400;
|
||||
color: #707070;
|
||||
}
|
||||
@@ -71,7 +71,7 @@
|
||||
height: auto;
|
||||
position: relative;
|
||||
background: #f2f2f2;
|
||||
font-family: Metropolis;
|
||||
font-family: HarmonyOS;
|
||||
padding-bottom: 10%;
|
||||
}
|
||||
.orico_Page_achievement .achievementMain .achTimes .timecontent {
|
||||
@@ -83,7 +83,7 @@
|
||||
height: 11.25rem;
|
||||
line-height: 11.25rem;
|
||||
font-size: 2rem;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
font-weight: bold;
|
||||
color: #000000;
|
||||
text-align: center;
|
||||
@@ -142,7 +142,7 @@
|
||||
background: url(/static/index/pc/images/greyyuandian.png) 3px 3px no-repeat;
|
||||
height: 2.375rem;
|
||||
font-size: 1.25rem;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
font-weight: bold;
|
||||
color: #000000;
|
||||
line-height: 1.875rem;
|
||||
@@ -153,7 +153,7 @@
|
||||
.orico_Page_achievement .achievementMain .achTimes .timecontent .timelist .timeline-con .con_event_list .event_list div li {
|
||||
display: inline-block;
|
||||
width: 94%;
|
||||
font-family: Metropolis-Medium, Metropolis;
|
||||
font-family: HarmonyOS-Medium, HarmonyOS;
|
||||
line-height: 1.5625rem;
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
@@ -181,7 +181,7 @@
|
||||
height: 11.25rem;
|
||||
line-height: 11.25rem;
|
||||
font-size: 2rem;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
font-weight: bold;
|
||||
color: #000000;
|
||||
text-align: center;
|
||||
@@ -211,7 +211,7 @@
|
||||
margin-left: 4.0625rem;
|
||||
margin-top: 2.5rem;
|
||||
font-size: 1.75rem;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
font-weight: bold;
|
||||
color: #000000;
|
||||
line-height: 1.625rem;
|
||||
@@ -220,7 +220,7 @@
|
||||
margin-left: 65px;
|
||||
width: 80%;
|
||||
font-size: 16px;
|
||||
font-family: Metropolis-Medium, Metropolis;
|
||||
font-family: HarmonyOS-Medium, HarmonyOS;
|
||||
font-weight: 500;
|
||||
color: #707070;
|
||||
line-height: 26px;
|
||||
|
||||
@@ -52,10 +52,10 @@
|
||||
font-weight: 600;
|
||||
color: #000000;
|
||||
line-height: 20px;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
}
|
||||
.orico_Page_brand .brandMain .our_brand_con .our_brand_bg .vtext .Table-Cell p {
|
||||
font-family: Metropolis-Medium, Metropolis;
|
||||
font-family: HarmonyOS-Medium, HarmonyOS;
|
||||
font-size: 14px;
|
||||
color: #707070;
|
||||
line-height: 22px;
|
||||
@@ -100,17 +100,17 @@
|
||||
margin-top: 2.5rem;
|
||||
}
|
||||
.orico_Page_brand .brandMain .dis_bril_bg .dis_bril_con .title p {
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
}
|
||||
.orico_Page_brand .brandMain .dis_bril_bg .dis_bril_con .subtitle {
|
||||
width: 80%;
|
||||
font-size: 0.875rem;
|
||||
color: #707070;
|
||||
font-family: Metropolis-Medium, Metropolis;
|
||||
font-family: HarmonyOS-Medium, HarmonyOS;
|
||||
margin-top: 2.5rem;
|
||||
margin-left: 10%;
|
||||
}
|
||||
.orico_Page_brand .brandMain .dis_bril_bg .dis_bril_con .subtitle p {
|
||||
font-family: Metropolis-Medium;
|
||||
font-family: HarmonyOS-Medium;
|
||||
line-height: 22px;
|
||||
}
|
||||
|
||||
@@ -153,7 +153,7 @@
|
||||
border-radius: 8px;
|
||||
height: 48px;
|
||||
box-shadow: none;
|
||||
font-family: Metropolis-Regular, Metropolis;
|
||||
font-family: HarmonyOS-Regular, HarmonyOS;
|
||||
}
|
||||
.orico_Page_articleDetail .articleDetailMain .atmright .repply form {
|
||||
width: auto;
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
height: 56px;
|
||||
line-height: 56px;
|
||||
margin-top: -28px;
|
||||
font-family: "Metropolis-Bold";
|
||||
font-family: "HarmonyOS-Bold";
|
||||
}
|
||||
.orico_Page_download .downloadMain .contact_c {
|
||||
width: 82%;
|
||||
@@ -43,7 +43,7 @@
|
||||
border-radius: 1.5rem;
|
||||
margin: auto;
|
||||
display: flex;
|
||||
font-family: "Metropolis-Medium";
|
||||
font-family: "HarmonyOS-Medium";
|
||||
color: #9e9e9f;
|
||||
z-index: 9;
|
||||
position: relative;
|
||||
@@ -86,7 +86,7 @@
|
||||
font-size: 1.125rem;
|
||||
padding-top: 1.5625rem;
|
||||
padding-bottom: 1.5625rem;
|
||||
font-family: "Metropolis-Bold";
|
||||
font-family: "HarmonyOS-Bold";
|
||||
text-align: center;
|
||||
border-radius: 0.75rem;
|
||||
cursor: pointer;
|
||||
@@ -137,20 +137,20 @@
|
||||
}
|
||||
.orico_Page_download .downloadMain .contact_c .softlist .softit .title {
|
||||
font-size: 1.125rem;
|
||||
font-family: "Metropolis-Bold";
|
||||
font-family: "HarmonyOS-Bold";
|
||||
color: #000;
|
||||
}
|
||||
.orico_Page_download .downloadMain .contact_c .softlist .softit .sub_title {
|
||||
font-size: 0.875rem;
|
||||
margin-top: 0.875rem;
|
||||
font-family: "Metropolis-Regular";
|
||||
font-family: "HarmonyOS-Regular";
|
||||
color: #9e9e9f;
|
||||
}
|
||||
.orico_Page_download .downloadMain .contact_c .softlist .softit .des {
|
||||
line-height: 20px;
|
||||
margin-top: 8px;
|
||||
font-size: 16px;
|
||||
font-family: "Metropolis-Medium";
|
||||
font-family: "HarmonyOS-Medium";
|
||||
color: #000;
|
||||
}
|
||||
.orico_Page_download .downloadMain .contact_c .softlist .softit .l_button {
|
||||
@@ -158,7 +158,7 @@
|
||||
padding: 15px 40px;
|
||||
margin-top: 74px;
|
||||
display: inline-block;
|
||||
font-family: "Metropolis-Bold";
|
||||
font-family: "HarmonyOS-Bold";
|
||||
color: #004bfa;
|
||||
background-color: rgba(0, 75, 250, 0.05);
|
||||
cursor: pointer;
|
||||
@@ -212,7 +212,7 @@
|
||||
font-size: 16px;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
font-family: "Metropolis-Bold";
|
||||
font-family: "HarmonyOS-Bold";
|
||||
color: #000;
|
||||
}
|
||||
.orico_Page_download .downloadMain .contact_c .vidotabs .hd ul li a{
|
||||
@@ -257,7 +257,7 @@
|
||||
height: 114px;
|
||||
}
|
||||
.orico_Page_download .downloadMain .contact_c .vidotabs .bdconten .video_hotul dd .htit .htit1 {
|
||||
font-family: "Metropolis-Regular";
|
||||
font-family: "HarmonyOS-Regular";
|
||||
color: #000;
|
||||
font-size: 16px;
|
||||
margin-top: 40px;
|
||||
@@ -266,7 +266,7 @@
|
||||
white-space: nowrap;
|
||||
}
|
||||
.orico_Page_download .downloadMain .contact_c .vidotabs .bdconten .video_hotul dd .htit .htit2 {
|
||||
font-family: "Metropolis-Regular";
|
||||
font-family: "HarmonyOS-Regular";
|
||||
color: #9e9e9f;
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
}
|
||||
.orico_Page_bussiness .bussinessMain .bd_main .sfbt1 {
|
||||
font-size: 24px;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
padding-bottom: 55px;
|
||||
@@ -52,7 +52,7 @@
|
||||
}
|
||||
.orico_Page_bussiness .bussinessMain .bd_main .bd_ct .bd_from .theit .bditem .itlable {
|
||||
font-size: 14px;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
color: #000000;
|
||||
font-weight: bold;
|
||||
padding-bottom: 10px;
|
||||
@@ -74,7 +74,7 @@
|
||||
height: 48px;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
font-family: Metropolis-Regular, Metropolis;
|
||||
font-family: HarmonyOS-Regular, HarmonyOS;
|
||||
}
|
||||
.orico_Page_bussiness .bussinessMain .bd_main .bd_ct .bd_from .theit .bditem .form-control {
|
||||
display: block;
|
||||
@@ -97,7 +97,7 @@
|
||||
.orico_Page_bussiness .bussinessMain .bd_main .bd_ct .bd_from .theit .bditem .sfbchecks .sfbcheckboxlist .cit {
|
||||
width: 100%;
|
||||
font-size: 14px;
|
||||
font-family: Metropolis-Regular, Metropolis;
|
||||
font-family: HarmonyOS-Regular, HarmonyOS;
|
||||
color: #000;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
@@ -119,11 +119,11 @@
|
||||
background: #f2f2f2;
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
font-family: Metropolis-Regular, Metropolis;
|
||||
font-family: HarmonyOS-Regular, HarmonyOS;
|
||||
}
|
||||
.orico_Page_bussiness .bussinessMain .bd_main .bttj {
|
||||
font-size: 14px;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
font-weight: bold;
|
||||
width: 212px;
|
||||
padding: 15px 15px;
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
color: #004bfa;
|
||||
padding-bottom: 1rem;
|
||||
text-align: center;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
font-weight: 700;
|
||||
}
|
||||
.orico_Page_distributor .distributorMain .s1 {
|
||||
@@ -72,7 +72,7 @@
|
||||
}
|
||||
.orico_Page_distributor .distributorMain .bd_from .theit .bditem .itlable {
|
||||
font-size: 0.875rem;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
color: #000000;
|
||||
font-weight: bold;
|
||||
padding-bottom: 0.625rem;
|
||||
@@ -99,7 +99,7 @@
|
||||
border-radius: 0.5rem;
|
||||
height: 3rem;
|
||||
box-shadow: none;
|
||||
font-family: Metropolis-Regular, Metropolis;
|
||||
font-family: HarmonyOS-Regular, HarmonyOS;
|
||||
}
|
||||
.orico_Page_distributor .distributorMain .ittextarea {
|
||||
height: 6.25rem;
|
||||
@@ -108,11 +108,11 @@
|
||||
border: none;
|
||||
border-radius: 0.5rem;
|
||||
resize: none;
|
||||
font-family: Metropolis-Regular, Metropolis;
|
||||
font-family: HarmonyOS-Regular, HarmonyOS;
|
||||
}
|
||||
.orico_Page_distributor .distributorMain .bttj {
|
||||
font-size: 0.875rem;
|
||||
font-family: Metropolis-Bold, Metropolis;
|
||||
font-family: HarmonyOS-Bold, HarmonyOS;
|
||||
font-weight: bold;
|
||||
width: 10rem;
|
||||
padding: 1.2rem 3.75rem;
|
||||
|
||||
@@ -38,7 +38,7 @@
|
||||
color: #000;
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-family: "Metropolis-Bold";
|
||||
font-family: "HarmonyOS-Bold";
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.orico_Page_contact .contactMain .contact_c .all_contact .info .info_all {
|
||||
@@ -77,7 +77,7 @@
|
||||
}
|
||||
.orico_Page_contact .contactMain .contact_c .all_contact .info .info_all .list .sub_list .title {
|
||||
font-size: 0.875rem;
|
||||
font-family: "Metropolis-Bold";
|
||||
font-family: "HarmonyOS-Bold";
|
||||
}
|
||||
.orico_Page_contact .contactMain .contact_c .all_contact .info .info_all .list .sub_list .des {
|
||||
font-size: 0.875rem;
|
||||
@@ -92,14 +92,14 @@
|
||||
color: #000;
|
||||
display: block;
|
||||
width: 100%;
|
||||
font-family: "Metropolis-Bold";
|
||||
font-family: "HarmonyOS-Bold";
|
||||
}
|
||||
.orico_Page_contact .contactMain .contact_c .all_contact .question .question_form .list {
|
||||
margin-top: 1.5rem;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.orico_Page_contact .contactMain .contact_c .all_contact .question .question_form .list .title {
|
||||
font-family: "Metropolis-Bold";
|
||||
font-family: "HarmonyOS-Bold";
|
||||
font-size: 0.875rem;
|
||||
padding-bottom: 0.3125rem;
|
||||
}
|
||||
@@ -110,13 +110,13 @@
|
||||
background: #f2f2f2;
|
||||
box-shadow: none;
|
||||
border: none;
|
||||
font-family: Metropolis-Regular, Metropolis;
|
||||
font-family: HarmonyOS-Regular, HarmonyOS;
|
||||
}
|
||||
.orico_Page_contact .contactMain .contact_c .all_contact .question .question_form .list .ittextarea {
|
||||
height: 100px;
|
||||
background: #f2f2f2;
|
||||
border: none;
|
||||
font-family: Metropolis-Regular, Metropolis;
|
||||
font-family: HarmonyOS-Regular, HarmonyOS;
|
||||
resize: none;
|
||||
}
|
||||
.orico_Page_contact .contactMain .contact_c .all_contact .question .question_form .list .form_input input,
|
||||
@@ -143,7 +143,7 @@
|
||||
font-size: 0.875rem;
|
||||
background-color: #004bfa;
|
||||
color: #fff;
|
||||
font-family: "Metropolis-Bold";
|
||||
font-family: "HarmonyOS-Bold";
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
}
|
||||
@@ -157,7 +157,7 @@
|
||||
background-color: #fff;
|
||||
border-radius: 0.75rem;
|
||||
margin-top: 1.5rem;
|
||||
font-family: "Metropolis-SemiBold";
|
||||
font-family: "HarmonyOS-SemiBold";
|
||||
}
|
||||
.orico_Page_contact .contactMain .contact_c .become_dis .text_blue {
|
||||
color: #004bfa;
|
||||
|
||||
1049
public/static/index/pc/css/header.css
Normal file
@@ -17,7 +17,6 @@
|
||||
width: 100%;
|
||||
height: auto;
|
||||
position: relative;
|
||||
margin-top: 3.75rem;
|
||||
}
|
||||
|
||||
.orico_Page_index .pageMain .bannerswiper .swiper-slide img {
|
||||
@@ -572,7 +571,7 @@
|
||||
font-size: 1rem;
|
||||
text-align: left;
|
||||
width: 80%;
|
||||
font-family: Metropolis !important;
|
||||
font-family: HarmonyOS !important;
|
||||
color: #004bfa;
|
||||
}
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
flex-direction: column;
|
||||
padding: 2.5rem 0 1.375rem 0;
|
||||
position: relative;
|
||||
margin-top: 3%;
|
||||
/* margin-top: 3%; */
|
||||
}
|
||||
.orico_Page_prdetail .oriprdetail .product_address {
|
||||
width: 70%;
|
||||
|
||||