Compare commits
No commits in common. "ee39010d5ea1df952a95afa8fb6c7fca34d7a8cd" and "8f4504441127ffbbb5a82e9d694f28be36b8528e" have entirely different histories.
ee39010d5e
...
8f45044411
@ -37,7 +37,7 @@ class EmailTest extends Form
|
|||||||
'username' => $sysConfig['username'] ?? '',
|
'username' => $sysConfig['username'] ?? '',
|
||||||
'from' => [
|
'from' => [
|
||||||
'address' => $sysConfig['from_address'] ?? '',
|
'address' => $sysConfig['from_address'] ?? '',
|
||||||
'name' => $sysConfig['from_name'] ?? '云泽发卡'
|
'name' => $sysConfig['from_name'] ?? '独角发卡'
|
||||||
],
|
],
|
||||||
'password' => $sysConfig['password'] ?? '',
|
'password' => $sysConfig['password'] ?? '',
|
||||||
'encryption' => $sysConfig['encryption'] ?? 'ssl'
|
'encryption' => $sysConfig['encryption'] ?? 'ssl'
|
||||||
|
|||||||
@ -76,7 +76,7 @@ class BarkPush implements ShouldQueue
|
|||||||
. __('order.fields.order_created') .': '.$this->order->created_at,
|
. __('order.fields.order_created') .': '.$this->order->created_at,
|
||||||
"icon"=>url('assets/common/images/default.jpg'),
|
"icon"=>url('assets/common/images/default.jpg'),
|
||||||
"level"=>"timeSensitive",
|
"level"=>"timeSensitive",
|
||||||
"group"=>dujiaoka_config_get('text_logo', '云泽数卡')
|
"group"=>dujiaoka_config_get('text_logo', '独角数卡')
|
||||||
];
|
];
|
||||||
if (dujiaoka_config_get('is_open_bark_push_url', 0) == BaseModel::STATUS_OPEN) {
|
if (dujiaoka_config_get('is_open_bark_push_url', 0) == BaseModel::STATUS_OPEN) {
|
||||||
$params["url"] = url('detail-order-sn/'.$this->order->order_sn);
|
$params["url"] = url('detail-order-sn/'.$this->order->order_sn);
|
||||||
|
|||||||
@ -65,7 +65,7 @@ class MailSend implements ShouldQueue
|
|||||||
'username' => $sysConfig['username'] ?? '',
|
'username' => $sysConfig['username'] ?? '',
|
||||||
'from' => [
|
'from' => [
|
||||||
'address' => $sysConfig['from_address'] ?? '',
|
'address' => $sysConfig['from_address'] ?? '',
|
||||||
'name' => $sysConfig['from_name'] ?? '云泽发卡'
|
'name' => $sysConfig['from_name'] ?? '独角发卡'
|
||||||
],
|
],
|
||||||
'password' => $sysConfig['password'] ?? '',
|
'password' => $sysConfig['password'] ?? '',
|
||||||
'encryption' => $sysConfig['encryption'] ?? ''
|
'encryption' => $sysConfig['encryption'] ?? ''
|
||||||
|
|||||||
@ -34,7 +34,7 @@ class OrderUpdated
|
|||||||
$order = [
|
$order = [
|
||||||
'created_at' => date('Y-m-d H:i'),
|
'created_at' => date('Y-m-d H:i'),
|
||||||
'ord_title' => $event->order->title,
|
'ord_title' => $event->order->title,
|
||||||
'webname' => $sysCache['text_logo'] ?? '云泽数卡',
|
'webname' => $sysCache['text_logo'] ?? '独角数卡',
|
||||||
'weburl' => config('app.url'),
|
'weburl' => config('app.url'),
|
||||||
'order_id' => $event->order->order_sn,
|
'order_id' => $event->order->order_sn,
|
||||||
'ord_price' => $event->order->actual_price,
|
'ord_price' => $event->order->actual_price,
|
||||||
|
|||||||
@ -459,7 +459,7 @@ class OrderProcessService
|
|||||||
$mailData = [
|
$mailData = [
|
||||||
'created_at' => $order->create_at,
|
'created_at' => $order->create_at,
|
||||||
'product_name' => $order->goods->gd_name,
|
'product_name' => $order->goods->gd_name,
|
||||||
'webname' => dujiaoka_config_get('text_logo', '云泽数卡'),
|
'webname' => dujiaoka_config_get('text_logo', '独角数卡'),
|
||||||
'weburl' => config('app.url') ?? 'http://dujiaoka.com',
|
'weburl' => config('app.url') ?? 'http://dujiaoka.com',
|
||||||
'ord_info' => str_replace(PHP_EOL, '<br/>', $order->info),
|
'ord_info' => str_replace(PHP_EOL, '<br/>', $order->info),
|
||||||
'ord_title' => $order->title,
|
'ord_title' => $order->title,
|
||||||
@ -508,7 +508,7 @@ class OrderProcessService
|
|||||||
$mailData = [
|
$mailData = [
|
||||||
'created_at' => $order->create_at,
|
'created_at' => $order->create_at,
|
||||||
'product_name' => $order->goods->gd_name,
|
'product_name' => $order->goods->gd_name,
|
||||||
'webname' => dujiaoka_config_get('text_logo', '云泽数卡'),
|
'webname' => dujiaoka_config_get('text_logo', '独角数卡'),
|
||||||
'weburl' => config('app.url') ?? 'http://dujiaoka.com',
|
'weburl' => config('app.url') ?? 'http://dujiaoka.com',
|
||||||
'ord_info' => implode('<br/>', $carmisInfo),
|
'ord_info' => implode('<br/>', $carmisInfo),
|
||||||
'ord_title' => $order->title,
|
'ord_title' => $order->title,
|
||||||
|
|||||||
@ -11,7 +11,7 @@ return [
|
|||||||
| login page.
|
| login page.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
'name' => '云泽数卡',
|
'name' => '独角数卡',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
@ -22,7 +22,7 @@ return [
|
|||||||
| `img` tag, eg '<img src="http://logo-url" alt="Admin logo">'.
|
| `img` tag, eg '<img src="http://logo-url" alt="Admin logo">'.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
'logo' => '<img src="/vendor/dujiaoka-admin/images/logo.png" width="35"> 云泽 数卡',
|
'logo' => '<img src="/vendor/dujiaoka-admin/images/logo.jpg" width="35"> 独角 数卡',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
@ -34,7 +34,7 @@ return [
|
|||||||
| '<img src="http://logo-url" alt="Admin logo">'.
|
| '<img src="http://logo-url" alt="Admin logo">'.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
'logo-mini' => '<img src="/vendor/dujiaoka-admin/images/logo.png">',
|
'logo-mini' => '<img src="/vendor/dujiaoka-admin/images/logo.jpg">',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
@ -88,7 +88,7 @@ return [
|
|||||||
| Html title for all pages.
|
| Html title for all pages.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
'title' => '云泽数卡 - 后台控制中心',
|
'title' => '独角数卡 - 后台控制中心',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|||||||
@ -11,7 +11,7 @@ return [
|
|||||||
'dujiaoka_version' => '2.0.6',
|
'dujiaoka_version' => '2.0.6',
|
||||||
// 模板集合
|
// 模板集合
|
||||||
'templates' => [
|
'templates' => [
|
||||||
'unicorn' => '官方[unicorn-云泽兽]',
|
'unicorn' => '官方[unicorn-独角兽]',
|
||||||
'luna' => 'Luna[Julyssn]',
|
'luna' => 'Luna[Julyssn]',
|
||||||
'hyper' => 'hyper[Bimoe]'
|
'hyper' => 'hyper[Bimoe]'
|
||||||
],
|
],
|
||||||
|
|||||||
2
public/assets/hyper/js/hyper.js
vendored
2
public/assets/hyper/js/hyper.js
vendored
@ -63,7 +63,7 @@ $(function() {
|
|||||||
localStorage.setItem("announcement",setTime);
|
localStorage.setItem("announcement",setTime);
|
||||||
}
|
}
|
||||||
// 版权
|
// 版权
|
||||||
console.group("Faka");console.log("Name: 云泽数卡");console.log("Github: https://github.com/assimon/dujiaoka");console.groupEnd();
|
console.group("Faka");console.log("Name: 独角数卡");console.log("Github: https://github.com/assimon/dujiaoka");console.groupEnd();
|
||||||
console.group("Theme");console.log("Name: Hyper Theme");console.log("Author: Bimoes");console.groupEnd();
|
console.group("Theme");console.log("Name: Hyper Theme");console.log("Author: Bimoes");console.groupEnd();
|
||||||
});
|
});
|
||||||
// 图片懒加载
|
// 图片懒加载
|
||||||
|
|||||||
BIN
public/vendor/dujiaoka-admin/images/logo.jpg
vendored
Normal file
BIN
public/vendor/dujiaoka-admin/images/logo.jpg
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
BIN
public/vendor/dujiaoka-admin/images/logo.png
vendored
BIN
public/vendor/dujiaoka-admin/images/logo.png
vendored
Binary file not shown.
|
Before Width: | Height: | Size: 150 KiB |
@ -27,10 +27,10 @@
|
|||||||
<div class="dashboard-title card bg-primary">
|
<div class="dashboard-title card bg-primary">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="text-center ">
|
<div class="text-center ">
|
||||||
<img class="avatar img-circle shadow mt-1" src="/vendor/dujiaoka-admin/images/logo.png">
|
<img class="avatar img-circle shadow mt-1" src="/vendor/dujiaoka-admin/images/logo.jpg">
|
||||||
|
|
||||||
<div class="text-center mb-1">
|
<div class="text-center mb-1">
|
||||||
<h1 class="mb-3 mt-2 text-white">云泽数卡 V{{ config('dujiaoka.dujiaoka_version', '2.0.0') }}</h1>
|
<h1 class="mb-3 mt-2 text-white">独角数卡 V{{ config('dujiaoka.dujiaoka_version', '2.0.0') }}</h1>
|
||||||
<div class="links">
|
<div class="links">
|
||||||
<a href="https://github.com/assimon/dujiaoka" target="_blank">Github</a>
|
<a href="https://github.com/assimon/dujiaoka" target="_blank">Github</a>
|
||||||
<a href="//shang.qq.com/wpa/qunwpa?idkey=37b6b06f7c941dae20dcd5784088905d6461064d7f33478692f0c4215546cee0" id="qq-group-link" target="_blank">
|
<a href="//shang.qq.com/wpa/qunwpa?idkey=37b6b06f7c941dae20dcd5784088905d6461064d7f33478692f0c4215546cee0" id="qq-group-link" target="_blank">
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<title>云泽数卡安装程序</title>
|
<title>独角数卡安装程序</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">
|
||||||
<meta name="renderer" content="webkit">
|
<meta name="renderer" content="webkit">
|
||||||
|
|
||||||
@ -685,7 +685,7 @@ TkSuQmCC" />
|
|||||||
</svg>
|
</svg>
|
||||||
|
|
||||||
</h1>
|
</h1>
|
||||||
<h2>云泽数卡 「{{ config('dujiaoka.dujiaoka_version') }}」</h2>
|
<h2>独角数卡 「{{ config('dujiaoka.dujiaoka_version') }}」</h2>
|
||||||
<div>
|
<div>
|
||||||
|
|
||||||
<p>每个梦想的路上,一起前行....!
|
<p>每个梦想的路上,一起前行....!
|
||||||
@ -745,7 +745,7 @@ TkSuQmCC" />
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="form-field">
|
<div class="form-field">
|
||||||
<label>网站名称</label>
|
<label>网站名称</label>
|
||||||
<input type="title" value="云泽数卡" name="title" required="">
|
<input type="title" value="独角数卡" name="title" required="">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-field">
|
<div class="form-field">
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<div class="footer-links">
|
<div class="footer-links">
|
||||||
Powered by <a href="https://github.com/assimon/dujiaoka">@云泽数卡.</a>
|
Powered by <a href="https://github.com/assimon/dujiaoka">@独角数卡.</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
## 云泽数卡 - Luna模板
|
## 独角数卡 - Luna模板
|
||||||
|
|
||||||
一套简洁的云泽数卡模板
|
一套简洁的独角数卡模板
|
||||||
|
|
||||||
## 特殊用法
|
## 特殊用法
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
<div class="layui-row">
|
<div class="layui-row">
|
||||||
<div class="layui-col-md8 layui-col-md-offset2 layui-col-sm12">
|
<div class="layui-col-md8 layui-col-md-offset2 layui-col-sm12">
|
||||||
<div style="text-align: center">{!! dujiaoka_config_get('footer') !!}</div>
|
<div style="text-align: center">{!! dujiaoka_config_get('footer') !!}</div>
|
||||||
<p>Powered by <a href="https://github.com/assimon/dujiaoka" target="_blank">@云泽数卡.DJK</a></p>
|
<p>Powered by <a href="https://github.com/assimon/dujiaoka" target="_blank">@独角数卡.DJK</a></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-12 text-center">
|
<div class="col-12 text-center">
|
||||||
<div class="author">
|
<div class="author">
|
||||||
Powered by:<a href="http://dujiaoka.com">@云泽数卡</a>
|
Powered by:<a href="http://dujiaoka.com">@独角数卡</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="custom">
|
<div class="custom">
|
||||||
{!! dujiaoka_config_get('footer') !!}
|
{!! dujiaoka_config_get('footer') !!}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user