init
This commit is contained in:
commit
7f3db2ed48
19
.editorconfig
Normal file
19
.editorconfig
Normal file
@ -0,0 +1,19 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_size = 4
|
||||
indent_style = space
|
||||
insert_final_newline = true
|
||||
trim_trailing_whitespace = true
|
||||
max_line_length = 150
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
[*.{yml,yaml}]
|
||||
indent_size = 2
|
||||
|
||||
[docker-compose.yml]
|
||||
indent_size = 4
|
79
.env.example
Normal file
79
.env.example
Normal file
@ -0,0 +1,79 @@
|
||||
APP_NAME=Laravel
|
||||
APP_ENV=local
|
||||
APP_KEY=
|
||||
APP_DEBUG=true
|
||||
APP_TIMEZONE=PRC
|
||||
APP_URL=http://localhost
|
||||
APP_VERSION=0.0.0
|
||||
|
||||
APP_LOCALE=en
|
||||
APP_FALLBACK_LOCALE=en
|
||||
APP_FAKER_LOCALE=en_US
|
||||
|
||||
APP_MAINTENANCE_DRIVER=file
|
||||
# APP_MAINTENANCE_STORE=database
|
||||
|
||||
BCRYPT_ROUNDS=12
|
||||
|
||||
LOG_CHANNEL=stack
|
||||
LOG_STACK=single
|
||||
LOG_DEPRECATIONS_CHANNEL=null
|
||||
LOG_LEVEL=debug
|
||||
|
||||
DB_CONNECTION=sqlite
|
||||
# DB_HOST=127.0.0.1
|
||||
# DB_PORT=3306
|
||||
# DB_DATABASE=laravel
|
||||
# DB_USERNAME=root
|
||||
# DB_PASSWORD=
|
||||
|
||||
SESSION_DRIVER=database
|
||||
SESSION_LIFETIME=120
|
||||
SESSION_ENCRYPT=false
|
||||
SESSION_PATH=/
|
||||
SESSION_DOMAIN=null
|
||||
|
||||
BROADCAST_CONNECTION=log
|
||||
FILESYSTEM_DISK=local
|
||||
QUEUE_CONNECTION=database
|
||||
|
||||
CACHE_STORE=database
|
||||
CACHE_PREFIX=
|
||||
|
||||
MEMCACHED_HOST=127.0.0.1
|
||||
|
||||
REDIS_CLIENT=phpredis
|
||||
REDIS_HOST=127.0.0.1
|
||||
REDIS_PASSWORD=null
|
||||
REDIS_PORT=6379
|
||||
|
||||
MAIL_MAILER=log
|
||||
MAIL_HOST=127.0.0.1
|
||||
MAIL_PORT=2525
|
||||
MAIL_USERNAME=null
|
||||
MAIL_PASSWORD=null
|
||||
MAIL_ENCRYPTION=null
|
||||
MAIL_FROM_ADDRESS="hello@example.com"
|
||||
MAIL_FROM_NAME="${APP_NAME}"
|
||||
|
||||
AWS_ACCESS_KEY_ID=
|
||||
AWS_SECRET_ACCESS_KEY=
|
||||
AWS_DEFAULT_REGION=us-east-1
|
||||
AWS_BUCKET=
|
||||
AWS_USE_PATH_STYLE_ENDPOINT=false
|
||||
|
||||
VITE_APP_NAME="${APP_NAME}"
|
||||
|
||||
# 支付宝开放平台
|
||||
ALIPAY_APP_ID=
|
||||
|
||||
CHERY_SCRM_ENDPOINT=
|
||||
CHERY_APP_ID=
|
||||
CHERY_APP_SECRET=
|
||||
|
||||
# 支付宝数字推广平台 token
|
||||
ADOPS_BIZ_TOKEN=
|
||||
# 支付宝数字推广平台 商家标识
|
||||
ADOPS_PRINCIPAL_TAG=
|
||||
|
||||
BAIDU_LBS_AK=
|
11
.gitattributes
vendored
Normal file
11
.gitattributes
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
* text=auto eol=lf
|
||||
|
||||
*.blade.php diff=html
|
||||
*.css diff=css
|
||||
*.html diff=html
|
||||
*.md diff=markdown
|
||||
*.php diff=php
|
||||
|
||||
/.github export-ignore
|
||||
CHANGELOG.md export-ignore
|
||||
.styleci.yml export-ignore
|
20
.gitignore
vendored
Normal file
20
.gitignore
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
/.phpunit.cache
|
||||
/node_modules
|
||||
/public/build
|
||||
/public/hot
|
||||
/public/storage
|
||||
/storage/*.key
|
||||
/vendor
|
||||
.env
|
||||
.env.backup
|
||||
.env.production
|
||||
.phpactor.json
|
||||
.phpunit.result.cache
|
||||
Homestead.json
|
||||
Homestead.yaml
|
||||
auth.json
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
/.fleet
|
||||
/.idea
|
||||
/.vscode
|
69
.php-cs-fixer.php
Normal file
69
.php-cs-fixer.php
Normal file
@ -0,0 +1,69 @@
|
||||
<?php
|
||||
|
||||
return (new PhpCsFixer\Config())
|
||||
->setRiskyAllowed(true)
|
||||
->setRules([
|
||||
'@PSR2' => true,
|
||||
'@Symfony' => true,
|
||||
'@DoctrineAnnotation' => true,
|
||||
'@PhpCsFixer' => true,
|
||||
'array_syntax' => [
|
||||
'syntax' => 'short'
|
||||
],
|
||||
'list_syntax' => [
|
||||
'syntax' => 'short'
|
||||
],
|
||||
'concat_space' => [
|
||||
'spacing' => 'one'
|
||||
],
|
||||
'blank_line_before_statement' => [
|
||||
'statements' => [
|
||||
'declare',
|
||||
],
|
||||
],
|
||||
'general_phpdoc_annotation_remove' => [
|
||||
'annotations' => [
|
||||
'author'
|
||||
],
|
||||
],
|
||||
'ordered_imports' => [
|
||||
'imports_order' => [
|
||||
'class', 'function', 'const',
|
||||
],
|
||||
'sort_algorithm' => 'alpha',
|
||||
],
|
||||
'single_line_comment_style' => [
|
||||
'comment_types' => [],
|
||||
],
|
||||
'yoda_style' => [
|
||||
'always_move_variable' => false,
|
||||
'equal' => false,
|
||||
'identical' => false,
|
||||
],
|
||||
'phpdoc_align' => [
|
||||
'align' => 'left',
|
||||
],
|
||||
'multiline_whitespace_before_semicolons' => [
|
||||
'strategy' => 'no_multi_line',
|
||||
],
|
||||
'constant_case' => [
|
||||
'case' => 'lower',
|
||||
],
|
||||
'class_attributes_separation' => true,
|
||||
'combine_consecutive_unsets' => true,
|
||||
'declare_strict_types' => false,
|
||||
'linebreak_after_opening_tag' => true,
|
||||
'lowercase_static_reference' => true,
|
||||
'no_useless_else' => true,
|
||||
'no_unused_imports' => true,
|
||||
'not_operator_with_successor_space' => false,
|
||||
'not_operator_with_space' => false,
|
||||
'ordered_class_elements' => true,
|
||||
'php_unit_strict' => false,
|
||||
'phpdoc_separation' => false,
|
||||
'single_quote' => false,
|
||||
'standardize_not_equals' => true,
|
||||
'multiline_comment_opening_closing' => true,
|
||||
])
|
||||
->setFinder(PhpCsFixer\Finder::create()->in(__DIR__ . '/app')->in(__DIR__ . '/packages'))
|
||||
->setUsingCache(false);
|
22257
_ide_helper.php
Normal file
22257
_ide_helper.php
Normal file
File diff suppressed because it is too large
Load Diff
48
app/Console/Commands/AppVersionUpdateCommand.php
Normal file
48
app/Console/Commands/AppVersionUpdateCommand.php
Normal file
@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use Illuminate\Console\Command;
|
||||
|
||||
class AppVersionUpdateCommand extends Command
|
||||
{
|
||||
protected $signature = 'app:version {version?} {--auto}';
|
||||
|
||||
protected $description = '更新 .env 文件中的 APP_VERSION 版本号';
|
||||
|
||||
public function handle()
|
||||
{
|
||||
$envPath = base_path('.env');
|
||||
if (!file_exists($envPath)) {
|
||||
$this->error('.env 文件不存在');
|
||||
return;
|
||||
}
|
||||
$current = env('APP_VERSION');
|
||||
$version = $this->argument('version');
|
||||
if ($version) {
|
||||
if (!preg_match('/^\d+\.\d+\.\d+$/', $version)) {
|
||||
$this->error('版本号格式错误');
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
$version = preg_replace_callback('/(\d+)$/', fn ($matches) => $matches[1] + 1, $current);
|
||||
}
|
||||
|
||||
$isAuto = $this->option('auto');
|
||||
if ($isAuto) {
|
||||
file_put_contents($envPath, preg_replace('/APP_VERSION=.*/', 'APP_VERSION=' . $version, file_get_contents($envPath)));
|
||||
$this->info('更新成功 ' . $current . ' -> ' . $version);
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
|
||||
$confirmed = $this->confirm('当前版本号:' . $current . ' 新版号 ' . $version . ' 确认更新么', true);
|
||||
if (!$confirmed) {
|
||||
$this->line('已取消');
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
|
||||
file_put_contents($envPath, preg_replace('/APP_VERSION=.*/', 'APP_VERSION=' . $version, file_get_contents($envPath)));
|
||||
$this->info('更新成功 ' . $current . ' -> ' . $version);
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
}
|
25
app/Foundation/PersonalAccessToken.php
Normal file
25
app/Foundation/PersonalAccessToken.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace App\Foundation;
|
||||
|
||||
use Laravel\Sanctum\PersonalAccessToken as SanctumPersonalAccessToken;
|
||||
|
||||
class PersonalAccessToken extends SanctumPersonalAccessToken
|
||||
{
|
||||
protected $table = 'app_personal_access_tokens';
|
||||
|
||||
protected $fillable = ['name', 'token', 'abilities', 'expires_at', 'meta'];
|
||||
|
||||
protected $casts = [
|
||||
'abilities' => 'json',
|
||||
'meta' => 'json',
|
||||
'last_used_at' => 'datetime',
|
||||
'expires_at' => 'datetime',
|
||||
];
|
||||
|
||||
public function addMeta($data)
|
||||
{
|
||||
$data = array_merge($this->meta, $data);
|
||||
$this->update(['meta' => $data]);
|
||||
}
|
||||
}
|
5
app/Http/Controllers/Controller.php
Normal file
5
app/Http/Controllers/Controller.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
abstract class Controller {}
|
21
app/Http/Middleware/CreateClientTokenMiddlewire.php
Normal file
21
app/Http/Middleware/CreateClientTokenMiddlewire.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
|
||||
class CreateClientTokenMiddlewire
|
||||
{
|
||||
public function handle(Request $request, \Closure $next): Response
|
||||
{
|
||||
$token = $this->createGuestToken($request);
|
||||
$request->merge(['clientToken' => $token]);
|
||||
return $next($request);
|
||||
}
|
||||
|
||||
public function createGuestToken(Request $request)
|
||||
{
|
||||
return sha1($request->ip() . $request->header('User-Agent'));
|
||||
}
|
||||
}
|
29
app/Models/Media.php
Normal file
29
app/Models/Media.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Spatie\MediaLibrary\MediaCollections\Models\Media as SpatieMedia;
|
||||
|
||||
class Media extends SpatieMedia
|
||||
{
|
||||
protected $guarded = ['id'];
|
||||
|
||||
protected $table = 'app_media';
|
||||
|
||||
public function replaceUseKey($key): self
|
||||
{
|
||||
self::delete();
|
||||
return $this->model
|
||||
->addMediaFromDisk($key, 'public')
|
||||
->usingFileName($key)
|
||||
->toMediaCollection($this->collection_name);
|
||||
}
|
||||
|
||||
protected function casts()
|
||||
{
|
||||
return [
|
||||
'created_at' => 'datetime:Y-m-d H:i:s',
|
||||
'updated_at' => 'datetime:Y-m-d H:i:s',
|
||||
];
|
||||
}
|
||||
}
|
48
app/Models/User.php
Normal file
48
app/Models/User.php
Normal file
@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
// use Illuminate\Contracts\Auth\MustVerifyEmail;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
|
||||
class User extends Authenticatable
|
||||
{
|
||||
use HasFactory;
|
||||
use Notifiable;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array<int, string>
|
||||
*/
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'email',
|
||||
'password',
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes that should be hidden for serialization.
|
||||
*
|
||||
* @var array<int, string>
|
||||
*/
|
||||
protected $hidden = [
|
||||
'password',
|
||||
'remember_token',
|
||||
];
|
||||
|
||||
/**
|
||||
* Get the attributes that should be cast.
|
||||
*
|
||||
* @return array<string, string>
|
||||
*/
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'email_verified_at' => 'datetime',
|
||||
'password' => 'hashed',
|
||||
];
|
||||
}
|
||||
}
|
30
app/Providers/AppServiceProvider.php
Normal file
30
app/Providers/AppServiceProvider.php
Normal file
@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use App\Foundation\PersonalAccessToken;
|
||||
use Illuminate\Cache\RateLimiting\Limit;
|
||||
use Illuminate\Support\Facades\RateLimiter;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
use Laravel\Sanctum\Sanctum;
|
||||
|
||||
class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* Register any application services.
|
||||
*/
|
||||
public function register(): void {}
|
||||
|
||||
/**
|
||||
* Bootstrap any application services.
|
||||
*/
|
||||
public function boot(): void
|
||||
{
|
||||
Sanctum::usePersonalAccessTokenModel(PersonalAccessToken::class);
|
||||
|
||||
RateLimiter::for('api', function ($request) {
|
||||
$key = sha1($request->ip() . $request->header('User-Agent'));
|
||||
return Limit::perMinute(10)->by($key);
|
||||
});
|
||||
}
|
||||
}
|
15
artisan
Executable file
15
artisan
Executable file
@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
use Symfony\Component\Console\Input\ArgvInput;
|
||||
|
||||
define('LARAVEL_START', microtime(true));
|
||||
|
||||
// Register the Composer autoloader...
|
||||
require __DIR__.'/vendor/autoload.php';
|
||||
|
||||
// Bootstrap Laravel and handle the command...
|
||||
$status = (require_once __DIR__.'/bootstrap/app.php')
|
||||
->handleCommand(new ArgvInput);
|
||||
|
||||
exit($status);
|
67
bootstrap/app.php
Normal file
67
bootstrap/app.php
Normal file
@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse;
|
||||
use Illuminate\Cookie\Middleware\EncryptCookies;
|
||||
use Illuminate\Foundation\Application;
|
||||
use Illuminate\Foundation\Configuration\Exceptions;
|
||||
use Illuminate\Foundation\Configuration\Middleware;
|
||||
use Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull;
|
||||
use Illuminate\Foundation\Http\Middleware\ValidateCsrfToken;
|
||||
use Illuminate\Http\Exceptions\ThrottleRequestsException;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Session\Middleware\StartSession;
|
||||
use Illuminate\Validation\ValidationException;
|
||||
use Illuminate\View\Middleware\ShareErrorsFromSession;
|
||||
use Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException;
|
||||
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
||||
|
||||
return Application::configure(basePath: dirname(__DIR__))
|
||||
->withRouting(
|
||||
web: __DIR__ . '/../routes/web.php',
|
||||
commands: __DIR__ . '/../routes/console.php',
|
||||
health: '/up',
|
||||
)
|
||||
->withMiddleware(function (Middleware $middleware) {
|
||||
$middleware->redirectGuestsTo(fn(Request $request) => null);
|
||||
|
||||
$middleware->remove([
|
||||
EncryptCookies::class,
|
||||
AddQueuedCookiesToResponse::class,
|
||||
StartSession::class,
|
||||
ShareErrorsFromSession::class,
|
||||
ValidateCsrfToken::class,
|
||||
ConvertEmptyStringsToNull::class,
|
||||
]);
|
||||
|
||||
$middleware->removeFromGroup('web', [
|
||||
EncryptCookies::class,
|
||||
AddQueuedCookiesToResponse::class,
|
||||
StartSession::class,
|
||||
ShareErrorsFromSession::class,
|
||||
ValidateCsrfToken::class,
|
||||
]);
|
||||
})
|
||||
->withExceptions(function (Exceptions $exceptions) {
|
||||
$exceptions->renderable(function (ThrottleRequestsException $e, $request) {
|
||||
return response()->json(['message' => 'Too many requests'], 429);
|
||||
});
|
||||
$exceptions->render(function (Throwable $th, Request $request) {
|
||||
if ($th instanceof NotFoundHttpException) {
|
||||
return response('NotFound', 404);
|
||||
}
|
||||
if ($th instanceof ValidationException) {
|
||||
$message = $th->validator->errors()->first();
|
||||
return response()->json(['code' => 400, 'message' => $message]);
|
||||
}
|
||||
if ($th instanceof MethodNotAllowedHttpException) {
|
||||
return response()->json(['code' => 400, 'message' => 'MethodNotAllowed']);
|
||||
}
|
||||
|
||||
info('===== application exception: ', [get_class($th)]);
|
||||
return response()->json(['message' => 'unknow exception'], 400);
|
||||
});
|
||||
|
||||
// $exceptions->renderable(function(MiniappException $th, $request){});
|
||||
// $exceptions->render([AppException::class, 'render']);
|
||||
// $exceptions->dontReport(AppException::$dontReport);
|
||||
})->create();
|
2
bootstrap/cache/.gitignore
vendored
Normal file
2
bootstrap/cache/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*
|
||||
!.gitignore
|
6
bootstrap/providers.php
Normal file
6
bootstrap/providers.php
Normal file
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
App\Providers\AppServiceProvider::class,
|
||||
BYDAuto\BYDAutoServiceProvider::class,
|
||||
];
|
85
composer.json
Normal file
85
composer.json
Normal file
@ -0,0 +1,85 @@
|
||||
{
|
||||
"name": "laravel/laravel",
|
||||
"type": "project",
|
||||
"description": "The skeleton application for the Laravel framework.",
|
||||
"keywords": [
|
||||
"laravel",
|
||||
"framework"
|
||||
],
|
||||
"license": "MIT",
|
||||
"require": {
|
||||
"php": "^8.2",
|
||||
"alipaysdk/easysdk": "^2.2",
|
||||
"chillerlan/php-qrcode": "^5.0",
|
||||
"intervention/image": "^3.7",
|
||||
"kalnoy/nestedset": "^6.0",
|
||||
"laravel/framework": "^11.9",
|
||||
"laravel/sanctum": "^4.0",
|
||||
"laravel/tinker": "^2.9",
|
||||
"phpoffice/phpspreadsheet": "^2.2",
|
||||
"prettus/l5-repository": "^2.9",
|
||||
"spatie/eloquent-sortable": "^4.4",
|
||||
"spatie/image": "^3.7",
|
||||
"spatie/laravel-medialibrary": "^11.8",
|
||||
"spatie/laravel-permission": "^6.9",
|
||||
"w7corp/easywechat": "^6.15"
|
||||
},
|
||||
"require-dev": {
|
||||
"barryvdh/laravel-ide-helper": "^3.1",
|
||||
"fakerphp/faker": "^1.23",
|
||||
"friendsofphp/php-cs-fixer": "^3.62",
|
||||
"laravel/pint": "^1.13",
|
||||
"laravel/sail": "^1.26",
|
||||
"mockery/mockery": "^1.6",
|
||||
"nunomaduro/collision": "^8.0",
|
||||
"phpunit/phpunit": "^11.0.1",
|
||||
"spatie/laravel-ignition": "^2.8"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"App\\": "app/",
|
||||
"BYDAuto\\": "packages/bydauto/src/",
|
||||
"Database\\Factories\\": "database/factories/",
|
||||
"Database\\Seeders\\": "database/seeders/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Tests\\": "tests/"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"cs-fix": "php-cs-fixer fix $1",
|
||||
"post-autoload-dump": [
|
||||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
||||
"@php artisan package:discover --ansi"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
||||
],
|
||||
"post-root-package-install": [
|
||||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
||||
],
|
||||
"post-create-project-cmd": [
|
||||
"@php artisan key:generate --ansi",
|
||||
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
|
||||
"@php artisan migrate --graceful --ansi"
|
||||
]
|
||||
},
|
||||
"extra": {
|
||||
"laravel": {
|
||||
"dont-discover": []
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
"preferred-install": "dist",
|
||||
"sort-packages": true,
|
||||
"allow-plugins": {
|
||||
"pestphp/pest-plugin": true,
|
||||
"php-http/discovery": true
|
||||
}
|
||||
},
|
||||
"minimum-stability": "stable",
|
||||
"prefer-stable": true
|
||||
}
|
12347
composer.lock
generated
Normal file
12347
composer.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
128
config/app.php
Normal file
128
config/app.php
Normal file
@ -0,0 +1,128 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'version' => env('APP_VERSION', 'unknown'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value is the name of your application, which will be used when the
|
||||
| framework needs to place the application's name in a notification or
|
||||
| other UI elements where an application name needs to be displayed.
|
||||
|
|
||||
*/
|
||||
|
||||
'name' => env('APP_NAME', 'Laravel'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Environment
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value determines the "environment" your application is currently
|
||||
| running in. This may determine how you prefer to configure various
|
||||
| services the application utilizes. Set this in your ".env" file.
|
||||
|
|
||||
*/
|
||||
|
||||
'env' => env('APP_ENV', 'production'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Debug Mode
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When your application is in debug mode, detailed error messages with
|
||||
| stack traces will be shown on every error that occurs within your
|
||||
| application. If disabled, a simple generic error page is shown.
|
||||
|
|
||||
*/
|
||||
|
||||
'debug' => (bool) env('APP_DEBUG', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application URL
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This URL is used by the console to properly generate URLs when using
|
||||
| the Artisan command line tool. You should set this to the root of
|
||||
| the application so that it's available within Artisan commands.
|
||||
|
|
||||
*/
|
||||
|
||||
'url' => env('APP_URL', 'http://localhost'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Timezone
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the default timezone for your application, which
|
||||
| will be used by the PHP date and date-time functions. The timezone
|
||||
| is set to "UTC" by default as it is suitable for most use cases.
|
||||
|
|
||||
*/
|
||||
|
||||
'timezone' => env('APP_TIMEZONE', 'UTC'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Locale Configuration
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The application locale determines the default locale that will be used
|
||||
| by Laravel's translation / localization methods. This option can be
|
||||
| set to any locale for which you plan to have translation strings.
|
||||
|
|
||||
*/
|
||||
|
||||
'locale' => env('APP_LOCALE', 'en'),
|
||||
|
||||
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
|
||||
|
||||
'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Encryption Key
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This key is utilized by Laravel's encryption services and should be set
|
||||
| to a random, 32 character string to ensure that all encrypted values
|
||||
| are secure. You should do this prior to deploying the application.
|
||||
|
|
||||
*/
|
||||
|
||||
'cipher' => 'AES-256-CBC',
|
||||
|
||||
'key' => env('APP_KEY'),
|
||||
|
||||
'previous_keys' => [
|
||||
...array_filter(
|
||||
explode(',', env('APP_PREVIOUS_KEYS', ''))
|
||||
),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Maintenance Mode Driver
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These configuration options determine the driver used to determine and
|
||||
| manage Laravel's "maintenance mode" status. The "cache" driver will
|
||||
| allow maintenance mode to be controlled across multiple machines.
|
||||
|
|
||||
| Supported drivers: "file", "cache"
|
||||
|
|
||||
*/
|
||||
|
||||
'maintenance' => [
|
||||
'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
|
||||
'store' => env('APP_MAINTENANCE_STORE', 'database'),
|
||||
],
|
||||
|
||||
];
|
104
config/auth.php
Normal file
104
config/auth.php
Normal file
@ -0,0 +1,104 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Defaults
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option defines the default authentication "guard" and password
|
||||
| reset "broker" for your application. You may change these values
|
||||
| as required, but they're a perfect start for most applications.
|
||||
|
|
||||
*/
|
||||
|
||||
'defaults' => [
|
||||
'guard' => env('AUTH_GUARD', 'web'),
|
||||
'passwords' => env('AUTH_PASSWORD_BROKER', 'users'),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Authentication Guards
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Next, you may define every authentication guard for your application.
|
||||
| Of course, a great default configuration has been defined for you
|
||||
| which utilizes session storage plus the Eloquent user provider.
|
||||
|
|
||||
| All authentication guards have a user provider, which defines how the
|
||||
| users are actually retrieved out of your database or other storage
|
||||
| system used by the application. Typically, Eloquent is utilized.
|
||||
|
|
||||
| Supported: "session"
|
||||
|
|
||||
*/
|
||||
|
||||
'guards' => [
|
||||
'web' => ['driver' => 'session', 'provider' => 'users'],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| User Providers
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| All authentication guards have a user provider, which defines how the
|
||||
| users are actually retrieved out of your database or other storage
|
||||
| system used by the application. Typically, Eloquent is utilized.
|
||||
|
|
||||
| If you have multiple user tables or models you may configure multiple
|
||||
| providers to represent the model / table. These providers may then
|
||||
| be assigned to any extra authentication guards you have defined.
|
||||
|
|
||||
| Supported: "database", "eloquent"
|
||||
|
|
||||
*/
|
||||
|
||||
'providers' => [
|
||||
'users' => ['driver' => 'eloquent', 'model' => env('AUTH_MODEL', App\Models\User::class)],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Resetting Passwords
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These configuration options specify the behavior of Laravel's password
|
||||
| reset functionality, including the table utilized for token storage
|
||||
| and the user provider that is invoked to actually retrieve users.
|
||||
|
|
||||
| The expiry time is the number of minutes that each reset token will be
|
||||
| considered valid. This security feature keeps tokens short-lived so
|
||||
| they have less time to be guessed. You may change this as needed.
|
||||
|
|
||||
| The throttle setting is the number of seconds a user must wait before
|
||||
| generating more password reset tokens. This prevents the user from
|
||||
| quickly generating a very large amount of password reset tokens.
|
||||
|
|
||||
*/
|
||||
|
||||
'passwords' => [
|
||||
'users' => [
|
||||
'provider' => 'users',
|
||||
'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'app_password_reset_tokens'),
|
||||
'expire' => 60,
|
||||
'throttle' => 60,
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Confirmation Timeout
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may define the amount of seconds before a password confirmation
|
||||
| window expires and users are asked to re-enter their password via the
|
||||
| confirmation screen. By default, the timeout lasts for three hours.
|
||||
|
|
||||
*/
|
||||
|
||||
'password_timeout' => env('AUTH_PASSWORD_TIMEOUT', 10800),
|
||||
|
||||
];
|
108
config/cache.php
Normal file
108
config/cache.php
Normal file
@ -0,0 +1,108 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Cache Store
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the default cache store that will be used by the
|
||||
| framework. This connection is utilized if another isn't explicitly
|
||||
| specified when running a cache operation inside the application.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('CACHE_STORE', 'database'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cache Stores
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may define all of the cache "stores" for your application as
|
||||
| well as their drivers. You may even define multiple stores for the
|
||||
| same cache driver to group types of items stored in your caches.
|
||||
|
|
||||
| Supported drivers: "array", "database", "file", "memcached",
|
||||
| "redis", "dynamodb", "octane", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'stores' => [
|
||||
|
||||
'array' => [
|
||||
'driver' => 'array',
|
||||
'serialize' => false,
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'driver' => 'database',
|
||||
'connection' => env('DB_CACHE_CONNECTION'),
|
||||
'table' => env('DB_CACHE_TABLE', 'app_cache'),
|
||||
'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
|
||||
'lock_table' => env('DB_CACHE_LOCK_TABLE'),
|
||||
],
|
||||
|
||||
'file' => [
|
||||
'driver' => 'file',
|
||||
'path' => storage_path('framework/cache/data'),
|
||||
'lock_path' => storage_path('framework/cache/data'),
|
||||
],
|
||||
|
||||
'memcached' => [
|
||||
'driver' => 'memcached',
|
||||
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
|
||||
'sasl' => [
|
||||
env('MEMCACHED_USERNAME'),
|
||||
env('MEMCACHED_PASSWORD'),
|
||||
],
|
||||
'options' => [
|
||||
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
|
||||
],
|
||||
'servers' => [
|
||||
[
|
||||
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
|
||||
'port' => env('MEMCACHED_PORT', 11211),
|
||||
'weight' => 100,
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
|
||||
'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'),
|
||||
],
|
||||
|
||||
'dynamodb' => [
|
||||
'driver' => 'dynamodb',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
|
||||
'endpoint' => env('DYNAMODB_ENDPOINT'),
|
||||
],
|
||||
|
||||
'octane' => [
|
||||
'driver' => 'octane',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Cache Key Prefix
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When utilizing the APC, database, memcached, Redis, and DynamoDB cache
|
||||
| stores, there might be other applications using the same cache. For
|
||||
| that reason, you may prefix every cache key to avoid collisions.
|
||||
|
|
||||
*/
|
||||
|
||||
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
|
||||
|
||||
];
|
173
config/database.php
Normal file
173
config/database.php
Normal file
@ -0,0 +1,173 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Database Connection Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify which of the database connections below you wish
|
||||
| to use as your default connection for database operations. This is
|
||||
| the connection which will be utilized unless another connection
|
||||
| is explicitly specified when you execute a query / statement.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('DB_CONNECTION', 'sqlite'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Database Connections
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Below are all of the database connections defined for your application.
|
||||
| An example configuration is provided for each database system which
|
||||
| is supported by Laravel. You're free to add / remove connections.
|
||||
|
|
||||
*/
|
||||
|
||||
'connections' => [
|
||||
|
||||
'sqlite' => [
|
||||
'driver' => 'sqlite',
|
||||
'url' => env('DB_URL'),
|
||||
'database' => env('DB_DATABASE', database_path('database.sqlite')),
|
||||
'prefix' => '',
|
||||
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
|
||||
'busy_timeout' => null,
|
||||
'journal_mode' => null,
|
||||
'synchronous' => null,
|
||||
],
|
||||
|
||||
'mysql' => [
|
||||
'driver' => 'mysql',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'unix_socket' => env('DB_SOCKET', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8mb4'),
|
||||
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'strict' => true,
|
||||
'engine' => null,
|
||||
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||
]) : [],
|
||||
],
|
||||
|
||||
'mariadb' => [
|
||||
'driver' => 'mariadb',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'unix_socket' => env('DB_SOCKET', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8mb4'),
|
||||
'collation' => env('DB_COLLATION', 'utf8mb4_unicode_ci'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'strict' => true,
|
||||
'engine' => null,
|
||||
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||
]) : [],
|
||||
],
|
||||
|
||||
'pgsql' => [
|
||||
'driver' => 'pgsql',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '5432'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'search_path' => 'public',
|
||||
'sslmode' => 'prefer',
|
||||
],
|
||||
|
||||
'sqlsrv' => [
|
||||
'driver' => 'sqlsrv',
|
||||
'url' => env('DB_URL'),
|
||||
'host' => env('DB_HOST', 'localhost'),
|
||||
'port' => env('DB_PORT', '1433'),
|
||||
'database' => env('DB_DATABASE', 'laravel'),
|
||||
'username' => env('DB_USERNAME', 'root'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => env('DB_CHARSET', 'utf8'),
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
// 'encrypt' => env('DB_ENCRYPT', 'yes'),
|
||||
// 'trust_server_certificate' => env('DB_TRUST_SERVER_CERTIFICATE', 'false'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Migration Repository Table
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This table keeps track of all the migrations that have already run for
|
||||
| your application. Using this information, we can determine which of
|
||||
| the migrations on disk haven't actually been run on the database.
|
||||
|
|
||||
*/
|
||||
|
||||
'migrations' => [
|
||||
'table' => 'migrations',
|
||||
'update_date_on_publish' => true,
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Redis Databases
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Redis is an open source, fast, and advanced key-value store that also
|
||||
| provides a richer body of commands than a typical key-value system
|
||||
| such as Memcached. You may define your connection settings here.
|
||||
|
|
||||
*/
|
||||
|
||||
'redis' => [
|
||||
|
||||
'client' => env('REDIS_CLIENT', 'phpredis'),
|
||||
|
||||
'options' => [
|
||||
'cluster' => env('REDIS_CLUSTER', 'redis'),
|
||||
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
|
||||
],
|
||||
|
||||
'default' => [
|
||||
'url' => env('REDIS_URL'),
|
||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'username' => env('REDIS_USERNAME'),
|
||||
'password' => env('REDIS_PASSWORD'),
|
||||
'port' => env('REDIS_PORT', '6379'),
|
||||
'database' => env('REDIS_DB', '0'),
|
||||
],
|
||||
|
||||
'cache' => [
|
||||
'url' => env('REDIS_URL'),
|
||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'username' => env('REDIS_USERNAME'),
|
||||
'password' => env('REDIS_PASSWORD'),
|
||||
'port' => env('REDIS_PORT', '6379'),
|
||||
'database' => env('REDIS_CACHE_DB', '1'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
6
config/eloquent-sortable.php
Normal file
6
config/eloquent-sortable.php
Normal file
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'order_column_name' => 'sort',
|
||||
'sort_when_creating' => true,
|
||||
];
|
76
config/filesystems.php
Normal file
76
config/filesystems.php
Normal file
@ -0,0 +1,76 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Filesystem Disk
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the default filesystem disk that should be used
|
||||
| by the framework. The "local" disk, as well as a variety of cloud
|
||||
| based disks are available to your application for file storage.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('FILESYSTEM_DISK', 'local'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Filesystem Disks
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Below you may configure as many filesystem disks as necessary, and you
|
||||
| may even configure multiple disks for the same driver. Examples for
|
||||
| most supported storage drivers are configured here for reference.
|
||||
|
|
||||
| Supported drivers: "local", "ftp", "sftp", "s3"
|
||||
|
|
||||
*/
|
||||
|
||||
'disks' => [
|
||||
|
||||
'local' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app'),
|
||||
'throw' => false,
|
||||
],
|
||||
|
||||
'public' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/public'),
|
||||
'url' => env('APP_URL').'/storage',
|
||||
'visibility' => 'public',
|
||||
'throw' => false,
|
||||
],
|
||||
|
||||
's3' => [
|
||||
'driver' => 's3',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION'),
|
||||
'bucket' => env('AWS_BUCKET'),
|
||||
'url' => env('AWS_URL'),
|
||||
'endpoint' => env('AWS_ENDPOINT'),
|
||||
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
|
||||
'throw' => false,
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Symbolic Links
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the symbolic links that will be created when the
|
||||
| `storage:link` Artisan command is executed. The array keys should be
|
||||
| the locations of the links and the values should be their targets.
|
||||
|
|
||||
*/
|
||||
|
||||
'links' => [
|
||||
public_path('storage') => storage_path('app/public'),
|
||||
],
|
||||
|
||||
];
|
139
config/logging.php
Normal file
139
config/logging.php
Normal file
@ -0,0 +1,139 @@
|
||||
<?php
|
||||
|
||||
use Monolog\Handler\NullHandler;
|
||||
use Monolog\Handler\StreamHandler;
|
||||
use Monolog\Handler\SyslogUdpHandler;
|
||||
use Monolog\Processor\PsrLogMessageProcessor;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Log Channel
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option defines the default log channel that is utilized to write
|
||||
| messages to your logs. The value provided here should match one of
|
||||
| the channels present in the list of "channels" configured below.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('LOG_CHANNEL', 'stack'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Deprecations Log Channel
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the log channel that should be used to log warnings
|
||||
| regarding deprecated PHP and library features. This allows you to get
|
||||
| your application ready for upcoming major versions of dependencies.
|
||||
|
|
||||
*/
|
||||
|
||||
'deprecations' => [
|
||||
'channel' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
|
||||
'trace' => env('LOG_DEPRECATIONS_TRACE', false),
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Log Channels
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the log channels for your application. Laravel
|
||||
| utilizes the Monolog PHP logging library, which includes a variety
|
||||
| of powerful log handlers and formatters that you're free to use.
|
||||
|
|
||||
| Available drivers: "single", "daily", "slack", "syslog",
|
||||
| "errorlog", "monolog", "custom", "stack"
|
||||
|
|
||||
*/
|
||||
|
||||
'channels' => [
|
||||
|
||||
'stack' => [
|
||||
'driver' => 'stack',
|
||||
'channels' => explode(',', env('LOG_STACK', 'single')),
|
||||
'ignore_exceptions' => false,
|
||||
],
|
||||
|
||||
'alipay' => [
|
||||
'driver' => 'single',
|
||||
'path' => storage_path('logs/alipay.log'),
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'single' => [
|
||||
'driver' => 'single',
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'daily' => [
|
||||
'driver' => 'daily',
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'days' => env('LOG_DAILY_DAYS', 14),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'slack' => [
|
||||
'driver' => 'slack',
|
||||
'url' => env('LOG_SLACK_WEBHOOK_URL'),
|
||||
'username' => env('LOG_SLACK_USERNAME', 'Laravel Log'),
|
||||
'emoji' => env('LOG_SLACK_EMOJI', ':boom:'),
|
||||
'level' => env('LOG_LEVEL', 'critical'),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'papertrail' => [
|
||||
'driver' => 'monolog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
|
||||
'handler_with' => [
|
||||
'host' => env('PAPERTRAIL_URL'),
|
||||
'port' => env('PAPERTRAIL_PORT'),
|
||||
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
|
||||
],
|
||||
'processors' => [PsrLogMessageProcessor::class],
|
||||
],
|
||||
|
||||
'stderr' => [
|
||||
'driver' => 'monolog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'handler' => StreamHandler::class,
|
||||
'formatter' => env('LOG_STDERR_FORMATTER'),
|
||||
'with' => [
|
||||
'stream' => 'php://stderr',
|
||||
],
|
||||
'processors' => [PsrLogMessageProcessor::class],
|
||||
],
|
||||
|
||||
'syslog' => [
|
||||
'driver' => 'syslog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'facility' => env('LOG_SYSLOG_FACILITY', LOG_USER),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'errorlog' => [
|
||||
'driver' => 'errorlog',
|
||||
'level' => env('LOG_LEVEL', 'debug'),
|
||||
'replace_placeholders' => true,
|
||||
],
|
||||
|
||||
'null' => [
|
||||
'driver' => 'monolog',
|
||||
'handler' => NullHandler::class,
|
||||
],
|
||||
|
||||
'emergency' => [
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
116
config/mail.php
Normal file
116
config/mail.php
Normal file
@ -0,0 +1,116 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Mailer
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option controls the default mailer that is used to send all email
|
||||
| messages unless another mailer is explicitly specified when sending
|
||||
| the message. All additional mailers can be configured within the
|
||||
| "mailers" array. Examples of each type of mailer are provided.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('MAIL_MAILER', 'log'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Mailer Configurations
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure all of the mailers used by your application plus
|
||||
| their respective settings. Several examples have been configured for
|
||||
| you and you are free to add your own as your application requires.
|
||||
|
|
||||
| Laravel supports a variety of mail "transport" drivers that can be used
|
||||
| when delivering an email. You may specify which one you're using for
|
||||
| your mailers below. You may also add additional mailers if needed.
|
||||
|
|
||||
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
|
||||
| "postmark", "resend", "log", "array",
|
||||
| "failover", "roundrobin"
|
||||
|
|
||||
*/
|
||||
|
||||
'mailers' => [
|
||||
|
||||
'smtp' => [
|
||||
'transport' => 'smtp',
|
||||
'url' => env('MAIL_URL'),
|
||||
'host' => env('MAIL_HOST', '127.0.0.1'),
|
||||
'port' => env('MAIL_PORT', 2525),
|
||||
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
|
||||
'username' => env('MAIL_USERNAME'),
|
||||
'password' => env('MAIL_PASSWORD'),
|
||||
'timeout' => null,
|
||||
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
|
||||
],
|
||||
|
||||
'ses' => [
|
||||
'transport' => 'ses',
|
||||
],
|
||||
|
||||
'postmark' => [
|
||||
'transport' => 'postmark',
|
||||
// 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
|
||||
// 'client' => [
|
||||
// 'timeout' => 5,
|
||||
// ],
|
||||
],
|
||||
|
||||
'resend' => [
|
||||
'transport' => 'resend',
|
||||
],
|
||||
|
||||
'sendmail' => [
|
||||
'transport' => 'sendmail',
|
||||
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
|
||||
],
|
||||
|
||||
'log' => [
|
||||
'transport' => 'log',
|
||||
'channel' => env('MAIL_LOG_CHANNEL'),
|
||||
],
|
||||
|
||||
'array' => [
|
||||
'transport' => 'array',
|
||||
],
|
||||
|
||||
'failover' => [
|
||||
'transport' => 'failover',
|
||||
'mailers' => [
|
||||
'smtp',
|
||||
'log',
|
||||
],
|
||||
],
|
||||
|
||||
'roundrobin' => [
|
||||
'transport' => 'roundrobin',
|
||||
'mailers' => [
|
||||
'ses',
|
||||
'postmark',
|
||||
],
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Global "From" Address
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| You may wish for all emails sent by your application to be sent from
|
||||
| the same address. Here you may specify a name and address that is
|
||||
| used globally for all emails that are sent by your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'from' => [
|
||||
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
|
||||
'name' => env('MAIL_FROM_NAME', 'Example'),
|
||||
],
|
||||
|
||||
];
|
8
config/media-library.php
Normal file
8
config/media-library.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
use App\Models\Media;
|
||||
|
||||
return [
|
||||
'media_model' => Media::class,
|
||||
'custom_path_generators' => []
|
||||
];
|
186
config/permission.php
Normal file
186
config/permission.php
Normal file
@ -0,0 +1,186 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'models' => [
|
||||
|
||||
/*
|
||||
* When using the "HasPermissions" trait from this package, we need to know which
|
||||
* Eloquent model should be used to retrieve your permissions. Of course, it
|
||||
* is often just the "Permission" model but you may use whatever you like.
|
||||
*
|
||||
* The model you want to use as a Permission model needs to implement the
|
||||
* `Spatie\Permission\Contracts\Permission` contract.
|
||||
*/
|
||||
|
||||
'permission' => Spatie\Permission\Models\Permission::class,
|
||||
|
||||
/*
|
||||
* When using the "HasRoles" trait from this package, we need to know which
|
||||
* Eloquent model should be used to retrieve your roles. Of course, it
|
||||
* is often just the "Role" model but you may use whatever you like.
|
||||
*
|
||||
* The model you want to use as a Role model needs to implement the
|
||||
* `Spatie\Permission\Contracts\Role` contract.
|
||||
*/
|
||||
|
||||
'role' => Spatie\Permission\Models\Role::class,
|
||||
|
||||
],
|
||||
|
||||
'table_names' => [
|
||||
|
||||
/*
|
||||
* When using the "HasRoles" trait from this package, we need to know which
|
||||
* table should be used to retrieve your roles. We have chosen a basic
|
||||
* default value but you may easily change it to any table you like.
|
||||
*/
|
||||
|
||||
'roles' => 'hub_roles',
|
||||
|
||||
/*
|
||||
* When using the "HasPermissions" trait from this package, we need to know which
|
||||
* table should be used to retrieve your permissions. We have chosen a basic
|
||||
* default value but you may easily change it to any table you like.
|
||||
*/
|
||||
|
||||
'permissions' => 'hub_permissions',
|
||||
|
||||
/*
|
||||
* When using the "HasPermissions" trait from this package, we need to know which
|
||||
* table should be used to retrieve your models permissions. We have chosen a
|
||||
* basic default value but you may easily change it to any table you like.
|
||||
*/
|
||||
|
||||
'model_has_permissions' => 'hub_model_has_permissions',
|
||||
|
||||
/*
|
||||
* When using the "HasRoles" trait from this package, we need to know which
|
||||
* table should be used to retrieve your models roles. We have chosen a
|
||||
* basic default value but you may easily change it to any table you like.
|
||||
*/
|
||||
|
||||
'model_has_roles' => 'hub_model_has_roles',
|
||||
|
||||
/*
|
||||
* When using the "HasRoles" trait from this package, we need to know which
|
||||
* table should be used to retrieve your roles permissions. We have chosen a
|
||||
* basic default value but you may easily change it to any table you like.
|
||||
*/
|
||||
|
||||
'role_has_permissions' => 'hub_role_has_permissions',
|
||||
],
|
||||
|
||||
'column_names' => [
|
||||
/*
|
||||
* Change this if you want to name the related pivots other than defaults
|
||||
*/
|
||||
'role_pivot_key' => null, //default 'role_id',
|
||||
'permission_pivot_key' => null, //default 'permission_id',
|
||||
|
||||
/*
|
||||
* Change this if you want to name the related model primary key other than
|
||||
* `model_id`.
|
||||
*
|
||||
* For example, this would be nice if your primary keys are all UUIDs. In
|
||||
* that case, name this `model_uuid`.
|
||||
*/
|
||||
|
||||
'model_morph_key' => 'model_id',
|
||||
|
||||
/*
|
||||
* Change this if you want to use the teams feature and your related model's
|
||||
* foreign key is other than `team_id`.
|
||||
*/
|
||||
|
||||
'team_foreign_key' => 'team_id',
|
||||
],
|
||||
|
||||
/*
|
||||
* When set to true, the method for checking permissions will be registered on the gate.
|
||||
* Set this to false if you want to implement custom logic for checking permissions.
|
||||
*/
|
||||
|
||||
'register_permission_check_method' => true,
|
||||
|
||||
/*
|
||||
* When set to true, Laravel\Octane\Events\OperationTerminated event listener will be registered
|
||||
* this will refresh permissions on every TickTerminated, TaskTerminated and RequestTerminated
|
||||
* NOTE: This should not be needed in most cases, but an Octane/Vapor combination benefited from it.
|
||||
*/
|
||||
'register_octane_reset_listener' => false,
|
||||
|
||||
/*
|
||||
* Teams Feature.
|
||||
* When set to true the package implements teams using the 'team_foreign_key'.
|
||||
* If you want the migrations to register the 'team_foreign_key', you must
|
||||
* set this to true before doing the migration.
|
||||
* If you already did the migration then you must make a new migration to also
|
||||
* add 'team_foreign_key' to 'roles', 'model_has_roles', and 'model_has_permissions'
|
||||
* (view the latest version of this package's migration file)
|
||||
*/
|
||||
|
||||
'teams' => false,
|
||||
|
||||
/*
|
||||
* Passport Client Credentials Grant
|
||||
* When set to true the package will use Passports Client to check permissions
|
||||
*/
|
||||
|
||||
'use_passport_client_credentials' => false,
|
||||
|
||||
/*
|
||||
* When set to true, the required permission names are added to exception messages.
|
||||
* This could be considered an information leak in some contexts, so the default
|
||||
* setting is false here for optimum safety.
|
||||
*/
|
||||
|
||||
'display_permission_in_exception' => false,
|
||||
|
||||
/*
|
||||
* When set to true, the required role names are added to exception messages.
|
||||
* This could be considered an information leak in some contexts, so the default
|
||||
* setting is false here for optimum safety.
|
||||
*/
|
||||
|
||||
'display_role_in_exception' => false,
|
||||
|
||||
/*
|
||||
* By default wildcard permission lookups are disabled.
|
||||
* See documentation to understand supported syntax.
|
||||
*/
|
||||
|
||||
'enable_wildcard_permission' => false,
|
||||
|
||||
/*
|
||||
* The class to use for interpreting wildcard permissions.
|
||||
* If you need to modify delimiters, override the class and specify its name here.
|
||||
*/
|
||||
// 'permission.wildcard_permission' => Spatie\Permission\WildcardPermission::class,
|
||||
|
||||
/* Cache-specific settings */
|
||||
|
||||
'cache' => [
|
||||
|
||||
/*
|
||||
* By default all permissions are cached for 24 hours to speed up performance.
|
||||
* When permissions or roles are updated the cache is flushed automatically.
|
||||
*/
|
||||
|
||||
'expiration_time' => \DateInterval::createFromDateString('24 hours'),
|
||||
|
||||
/*
|
||||
* The cache key used to store all permissions.
|
||||
*/
|
||||
|
||||
'key' => 'spatie.permission.cache',
|
||||
|
||||
/*
|
||||
* You may optionally indicate a specific cache driver to use for permission and
|
||||
* role caching using any of the `store` drivers listed in the cache.php config
|
||||
* file. Using 'default' here means to use the `default` set in cache.php.
|
||||
*/
|
||||
|
||||
'store' => 'default',
|
||||
],
|
||||
];
|
112
config/queue.php
Normal file
112
config/queue.php
Normal file
@ -0,0 +1,112 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Queue Connection Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Laravel's queue supports a variety of backends via a single, unified
|
||||
| API, giving you convenient access to each backend using identical
|
||||
| syntax for each. The default queue connection is defined below.
|
||||
|
|
||||
*/
|
||||
|
||||
'default' => env('QUEUE_CONNECTION', 'database'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Queue Connections
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may configure the connection options for every queue backend
|
||||
| used by your application. An example configuration is provided for
|
||||
| each backend supported by Laravel. You're also free to add more.
|
||||
|
|
||||
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'connections' => [
|
||||
|
||||
'sync' => [
|
||||
'driver' => 'sync',
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'driver' => 'database',
|
||||
'connection' => env('DB_QUEUE_CONNECTION'),
|
||||
'table' => env('DB_QUEUE_TABLE', 'app_jobs'),
|
||||
'queue' => env('DB_QUEUE', 'default'),
|
||||
'retry_after' => (int) env('DB_QUEUE_RETRY_AFTER', 90),
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'beanstalkd' => [
|
||||
'driver' => 'beanstalkd',
|
||||
'host' => env('BEANSTALKD_QUEUE_HOST', 'localhost'),
|
||||
'queue' => env('BEANSTALKD_QUEUE', 'default'),
|
||||
'retry_after' => (int) env('BEANSTALKD_QUEUE_RETRY_AFTER', 90),
|
||||
'block_for' => 0,
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'sqs' => [
|
||||
'driver' => 'sqs',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
|
||||
'queue' => env('SQS_QUEUE', 'default'),
|
||||
'suffix' => env('SQS_SUFFIX'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => env('REDIS_QUEUE_CONNECTION', 'default'),
|
||||
'queue' => env('REDIS_QUEUE', 'default'),
|
||||
'retry_after' => (int) env('REDIS_QUEUE_RETRY_AFTER', 90),
|
||||
'block_for' => null,
|
||||
'after_commit' => false,
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Job Batching
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The following options configure the database and table that store job
|
||||
| batching information. These options can be updated to any database
|
||||
| connection and table which has been defined by your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'batching' => [
|
||||
'database' => env('DB_CONNECTION', 'sqlite'),
|
||||
'table' => 'app_job_batches',
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Failed Queue Jobs
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These options configure the behavior of failed queue job logging so you
|
||||
| can control how and where failed jobs are stored. Laravel ships with
|
||||
| support for storing failed jobs in a simple file or in a database.
|
||||
|
|
||||
| Supported drivers: "database-uuids", "dynamodb", "file", "null"
|
||||
|
|
||||
*/
|
||||
|
||||
'failed' => [
|
||||
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
|
||||
'database' => env('DB_CONNECTION', 'sqlite'),
|
||||
'table' => 'app_failed_jobs',
|
||||
],
|
||||
|
||||
];
|
83
config/sanctum.php
Normal file
83
config/sanctum.php
Normal file
@ -0,0 +1,83 @@
|
||||
<?php
|
||||
|
||||
use Laravel\Sanctum\Sanctum;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Stateful Domains
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Requests from the following domains / hosts will receive stateful API
|
||||
| authentication cookies. Typically, these should include your local
|
||||
| and production domains which access your API via a frontend SPA.
|
||||
|
|
||||
*/
|
||||
|
||||
'stateful' => explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf(
|
||||
'%s%s',
|
||||
'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1',
|
||||
Sanctum::currentApplicationUrlWithPort()
|
||||
))),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Sanctum Guards
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This array contains the authentication guards that will be checked when
|
||||
| Sanctum is trying to authenticate a request. If none of these guards
|
||||
| are able to authenticate the request, Sanctum will use the bearer
|
||||
| token that's present on an incoming request for authentication.
|
||||
|
|
||||
*/
|
||||
|
||||
'guard' => ['web'],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Expiration Minutes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value controls the number of minutes until an issued token will be
|
||||
| considered expired. This will override any values set in the token's
|
||||
| "expires_at" attribute, but first-party sessions are not affected.
|
||||
|
|
||||
*/
|
||||
|
||||
'expiration' => null,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Token Prefix
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Sanctum can prefix new tokens in order to take advantage of numerous
|
||||
| security scanning initiatives maintained by open source platforms
|
||||
| that notify developers if they commit tokens into repositories.
|
||||
|
|
||||
| See: https://docs.github.com/en/code-security/secret-scanning/about-secret-scanning
|
||||
|
|
||||
*/
|
||||
|
||||
'token_prefix' => env('SANCTUM_TOKEN_PREFIX', ''),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Sanctum Middleware
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When authenticating your first-party SPA with Sanctum you may need to
|
||||
| customize some of the middleware Sanctum uses while processing the
|
||||
| request. You may change the middleware listed below as required.
|
||||
|
|
||||
*/
|
||||
|
||||
'middleware' => [
|
||||
'authenticate_session' => Laravel\Sanctum\Http\Middleware\AuthenticateSession::class,
|
||||
'encrypt_cookies' => Illuminate\Cookie\Middleware\EncryptCookies::class,
|
||||
'validate_csrf_token' => Illuminate\Foundation\Http\Middleware\ValidateCsrfToken::class,
|
||||
],
|
||||
|
||||
];
|
42
config/services.php
Normal file
42
config/services.php
Normal file
@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Third Party Services
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This file is for storing the credentials for third party services such
|
||||
| as Mailgun, Postmark, AWS and more. This file provides the de facto
|
||||
| location for this type of information, allowing packages to have
|
||||
| a conventional file to locate the various service credentials.
|
||||
|
|
||||
*/
|
||||
|
||||
'postmark' => [
|
||||
'token' => env('POSTMARK_TOKEN'),
|
||||
],
|
||||
|
||||
'ses' => [
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
],
|
||||
|
||||
'resend' => [
|
||||
'key' => env('RESEND_KEY'),
|
||||
],
|
||||
|
||||
'slack' => [
|
||||
'notifications' => [
|
||||
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
|
||||
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
|
||||
],
|
||||
],
|
||||
|
||||
'baidulbs' => [
|
||||
'ak' => env('BAIDU_LBS_AK'),
|
||||
],
|
||||
|
||||
];
|
217
config/session.php
Normal file
217
config/session.php
Normal file
@ -0,0 +1,217 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Default Session Driver
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option determines the default session driver that is utilized for
|
||||
| incoming requests. Laravel supports a variety of storage options to
|
||||
| persist session data. Database storage is a great default choice.
|
||||
|
|
||||
| Supported: "file", "cookie", "database", "apc",
|
||||
| "memcached", "redis", "dynamodb", "array"
|
||||
|
|
||||
*/
|
||||
|
||||
'driver' => env('SESSION_DRIVER', 'database'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Lifetime
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the number of minutes that you wish the session
|
||||
| to be allowed to remain idle before it expires. If you want them
|
||||
| to expire immediately when the browser is closed then you may
|
||||
| indicate that via the expire_on_close configuration option.
|
||||
|
|
||||
*/
|
||||
|
||||
'lifetime' => env('SESSION_LIFETIME', 120),
|
||||
|
||||
'expire_on_close' => env('SESSION_EXPIRE_ON_CLOSE', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Encryption
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option allows you to easily specify that all of your session data
|
||||
| should be encrypted before it's stored. All encryption is performed
|
||||
| automatically by Laravel and you may use the session like normal.
|
||||
|
|
||||
*/
|
||||
|
||||
'encrypt' => env('SESSION_ENCRYPT', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session File Location
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When utilizing the "file" session driver, the session files are placed
|
||||
| on disk. The default storage location is defined here; however, you
|
||||
| are free to provide another location where they should be stored.
|
||||
|
|
||||
*/
|
||||
|
||||
'files' => storage_path('framework/sessions'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Database Connection
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using the "database" or "redis" session drivers, you may specify a
|
||||
| connection that should be used to manage these sessions. This should
|
||||
| correspond to a connection in your database configuration options.
|
||||
|
|
||||
*/
|
||||
|
||||
'connection' => env('SESSION_CONNECTION'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Database Table
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using the "database" session driver, you may specify the table to
|
||||
| be used to store sessions. Of course, a sensible default is defined
|
||||
| for you; however, you're welcome to change this to another table.
|
||||
|
|
||||
*/
|
||||
|
||||
'table' => env('SESSION_TABLE', 'app_sessions'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cache Store
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| When using one of the framework's cache driven session backends, you may
|
||||
| define the cache store which should be used to store the session data
|
||||
| between requests. This must match one of your defined cache stores.
|
||||
|
|
||||
| Affects: "apc", "dynamodb", "memcached", "redis"
|
||||
|
|
||||
*/
|
||||
|
||||
'store' => env('SESSION_STORE'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Sweeping Lottery
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Some session drivers must manually sweep their storage location to get
|
||||
| rid of old sessions from storage. Here are the chances that it will
|
||||
| happen on a given request. By default, the odds are 2 out of 100.
|
||||
|
|
||||
*/
|
||||
|
||||
'lottery' => [2, 100],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Name
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may change the name of the session cookie that is created by
|
||||
| the framework. Typically, you should not need to change this value
|
||||
| since doing so does not grant a meaningful security improvement.
|
||||
|
|
||||
*/
|
||||
|
||||
'cookie' => env(
|
||||
'SESSION_COOKIE',
|
||||
Str::slug(env('APP_NAME', 'laravel'), '_').'_session'
|
||||
),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Path
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The session cookie path determines the path for which the cookie will
|
||||
| be regarded as available. Typically, this will be the root path of
|
||||
| your application, but you're free to change this when necessary.
|
||||
|
|
||||
*/
|
||||
|
||||
'path' => env('SESSION_PATH', '/'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Session Cookie Domain
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value determines the domain and subdomains the session cookie is
|
||||
| available to. By default, the cookie will be available to the root
|
||||
| domain and all subdomains. Typically, this shouldn't be changed.
|
||||
|
|
||||
*/
|
||||
|
||||
'domain' => env('SESSION_DOMAIN'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| HTTPS Only Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| By setting this option to true, session cookies will only be sent back
|
||||
| to the server if the browser has a HTTPS connection. This will keep
|
||||
| the cookie from being sent to you when it can't be done securely.
|
||||
|
|
||||
*/
|
||||
|
||||
'secure' => env('SESSION_SECURE_COOKIE'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| HTTP Access Only
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Setting this value to true will prevent JavaScript from accessing the
|
||||
| value of the cookie and the cookie will only be accessible through
|
||||
| the HTTP protocol. It's unlikely you should disable this option.
|
||||
|
|
||||
*/
|
||||
|
||||
'http_only' => env('SESSION_HTTP_ONLY', true),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Same-Site Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This option determines how your cookies behave when cross-site requests
|
||||
| take place, and can be used to mitigate CSRF attacks. By default, we
|
||||
| will set this value to "lax" to permit secure cross-site requests.
|
||||
|
|
||||
| See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie#samesitesamesite-value
|
||||
|
|
||||
| Supported: "lax", "strict", "none", null
|
||||
|
|
||||
*/
|
||||
|
||||
'same_site' => env('SESSION_SAME_SITE', 'lax'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Partitioned Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Setting this value to true will tie the cookie to the top-level site for
|
||||
| a cross-site context. Partitioned cookies are accepted by the browser
|
||||
| when flagged "secure" and the Same-Site attribute is set to "none".
|
||||
|
|
||||
*/
|
||||
|
||||
'partitioned' => env('SESSION_PARTITIONED_COOKIE', false),
|
||||
|
||||
];
|
1
database/.gitignore
vendored
Normal file
1
database/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
*.sqlite*
|
44
database/factories/UserFactory.php
Normal file
44
database/factories/UserFactory.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
/**
|
||||
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
|
||||
*/
|
||||
class UserFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* The current password being used by the factory.
|
||||
*/
|
||||
protected static ?string $password;
|
||||
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
'name' => fake()->name(),
|
||||
'email' => fake()->unique()->safeEmail(),
|
||||
'email_verified_at' => now(),
|
||||
'password' => static::$password ??= Hash::make('password'),
|
||||
'remember_token' => Str::random(10),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Indicate that the model's email address should be unverified.
|
||||
*/
|
||||
public function unverified(): static
|
||||
{
|
||||
return $this->state(fn (array $attributes) => [
|
||||
'email_verified_at' => null,
|
||||
]);
|
||||
}
|
||||
}
|
49
database/migrations/0001_01_01_000000_create_users_table.php
Normal file
49
database/migrations/0001_01_01_000000_create_users_table.php
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('app_users', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->string('email')->unique();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('password');
|
||||
$table->rememberToken();
|
||||
$table->timestamps();
|
||||
});
|
||||
|
||||
Schema::create('app_password_reset_tokens', function (Blueprint $table) {
|
||||
$table->string('email')->primary();
|
||||
$table->string('token');
|
||||
$table->timestamp('created_at')->nullable();
|
||||
});
|
||||
|
||||
Schema::create('app_sessions', function (Blueprint $table) {
|
||||
$table->string('id')->primary();
|
||||
$table->foreignId('user_id')->nullable()->index();
|
||||
$table->string('ip_address', 45)->nullable();
|
||||
$table->text('user_agent')->nullable();
|
||||
$table->longText('payload');
|
||||
$table->integer('last_activity')->index();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('app_users');
|
||||
Schema::dropIfExists('app_password_reset_tokens');
|
||||
Schema::dropIfExists('app_sessions');
|
||||
}
|
||||
};
|
35
database/migrations/0001_01_01_000001_create_cache_table.php
Normal file
35
database/migrations/0001_01_01_000001_create_cache_table.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('app_cache', function (Blueprint $table) {
|
||||
$table->string('key')->primary();
|
||||
$table->mediumText('value');
|
||||
$table->integer('expiration');
|
||||
});
|
||||
|
||||
Schema::create('app_cache_locks', function (Blueprint $table) {
|
||||
$table->string('key')->primary();
|
||||
$table->string('owner');
|
||||
$table->integer('expiration');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('app_cache');
|
||||
Schema::dropIfExists('app_cache_locks');
|
||||
}
|
||||
};
|
57
database/migrations/0001_01_01_000002_create_jobs_table.php
Normal file
57
database/migrations/0001_01_01_000002_create_jobs_table.php
Normal file
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('app_jobs', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('queue')->index();
|
||||
$table->longText('payload');
|
||||
$table->unsignedTinyInteger('attempts');
|
||||
$table->unsignedInteger('reserved_at')->nullable();
|
||||
$table->unsignedInteger('available_at');
|
||||
$table->unsignedInteger('created_at');
|
||||
});
|
||||
|
||||
Schema::create('app_job_batches', function (Blueprint $table) {
|
||||
$table->string('id')->primary();
|
||||
$table->string('name');
|
||||
$table->integer('total_jobs');
|
||||
$table->integer('pending_jobs');
|
||||
$table->integer('failed_jobs');
|
||||
$table->longText('failed_job_ids');
|
||||
$table->mediumText('options')->nullable();
|
||||
$table->integer('cancelled_at')->nullable();
|
||||
$table->integer('created_at');
|
||||
$table->integer('finished_at')->nullable();
|
||||
});
|
||||
|
||||
Schema::create('app_failed_jobs', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('uuid')->unique();
|
||||
$table->text('connection');
|
||||
$table->text('queue');
|
||||
$table->longText('payload');
|
||||
$table->longText('exception');
|
||||
$table->timestamp('failed_at')->useCurrent();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('app_jobs');
|
||||
Schema::dropIfExists('app_job_batches');
|
||||
Schema::dropIfExists('app_failed_jobs');
|
||||
}
|
||||
};
|
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('app_personal_access_tokens', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->morphs('tokenable');
|
||||
$table->string('name');
|
||||
$table->string('token', 64)->unique();
|
||||
$table->text('abilities')->nullable();
|
||||
$table->jsonb('meta')->nullable();
|
||||
$table->timestamp('last_used_at')->nullable();
|
||||
$table->timestamp('expires_at')->nullable();
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('app_personal_access_tokens');
|
||||
}
|
||||
};
|
31
database/migrations/2024_08_15_165944_create_media_table.php
Normal file
31
database/migrations/2024_08_15_165944_create_media_table.php
Normal file
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('app_media', function (Blueprint $table) {
|
||||
$table->id();
|
||||
|
||||
$table->morphs('model');
|
||||
$table->uuid()->nullable()->unique();
|
||||
$table->string('collection_name');
|
||||
$table->string('name');
|
||||
$table->string('file_name');
|
||||
$table->string('mime_type')->nullable();
|
||||
$table->string('disk');
|
||||
$table->string('conversions_disk')->nullable();
|
||||
$table->unsignedBigInteger('size');
|
||||
$table->json('manipulations');
|
||||
$table->json('custom_properties');
|
||||
$table->json('generated_conversions');
|
||||
$table->json('responsive_images');
|
||||
$table->unsignedInteger('order_column')->nullable()->index();
|
||||
$table->nullableTimestamps();
|
||||
});
|
||||
}
|
||||
};
|
23
database/seeders/DatabaseSeeder.php
Normal file
23
database/seeders/DatabaseSeeder.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\User;
|
||||
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class DatabaseSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Seed the application's database.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
// User::factory(10)->create();
|
||||
|
||||
User::factory()->create([
|
||||
'name' => 'Test User',
|
||||
'email' => 'test@example.com',
|
||||
]);
|
||||
}
|
||||
}
|
13
package.json
Normal file
13
package.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"axios": "^1.6.4",
|
||||
"laravel-vite-plugin": "^1.0",
|
||||
"vite": "^5.0"
|
||||
}
|
||||
}
|
1
packages/README.md
Normal file
1
packages/README.md
Normal file
@ -0,0 +1 @@
|
||||
# some packages
|
1
packages/bydauto/README.md
Normal file
1
packages/bydauto/README.md
Normal file
@ -0,0 +1 @@
|
||||
# some api service
|
14
packages/bydauto/cluepackage-send.sh
Normal file
14
packages/bydauto/cluepackage-send.sh
Normal file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
sign="xxxxxx"
|
||||
now=$(date +%s)
|
||||
|
||||
curl -X POST "https://dev.energytrust.com.cn/pkg/dataservice/cluepackage?sign=${sign}&method=spi.alipay.data.dataservice.ad.cluepackage.send&charset=UTF-8&version=1.0&utc_timestamp=${now}&sign_type=RSA2" \
|
||||
--header "Content-Type: application/x-www-form-urlencoded;charset=UTF-8" \
|
||||
--data-urlencode "id=123456" \
|
||||
--data-urlencode "user_name=黄丫" \
|
||||
--data-urlencode "user_mobile_no=18000000000" \
|
||||
--data-urlencode "user_province=浙江省" \
|
||||
--data-urlencode "user_city=杭州市" \
|
||||
--data-urlencode "clue_time=2024-07-24 11:44:16" \
|
||||
--data-urlencode "extend_info=行业拓展字段"
|
9
packages/bydauto/composer.json
Normal file
9
packages/bydauto/composer.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"name": "pkg/bydauto",
|
||||
"type": "metapackage",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"BYDAuto\\": "src/"
|
||||
}
|
||||
}
|
||||
}
|
4
packages/bydauto/config/bydauto.php
Normal file
4
packages/bydauto/config/bydauto.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
];
|
@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
Schema::create('bydauto_contact', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->timestamp('date_created');
|
||||
$table->timestamp('date_updated');
|
||||
$table->string('status')->nullable();
|
||||
$table->string('email')->nullable();
|
||||
$table->string('remark')->nullable();
|
||||
});
|
||||
|
||||
Schema::create('bydauto_testdrive', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->timestamp('date_created');
|
||||
$table->timestamp('date_updated');
|
||||
$table->string('status')->nullable();
|
||||
$table->string('name')->nullable();
|
||||
$table->string('mobile')->nullable();
|
||||
$table->string('platform')->nullable();
|
||||
$table->string('source')->nullable();
|
||||
$table->string('request_id')->nullable();
|
||||
$table->jsonb('meta')->nullable();
|
||||
$table->jsonb('rawdata')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('bydauto_testdrive');
|
||||
}
|
||||
};
|
14
packages/bydauto/routes/api.php
Normal file
14
packages/bydauto/routes/api.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
use BYDAuto\Controllers\BYDAutoController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
$prefix = '/pkg/bydauto';
|
||||
|
||||
Route::group(['prefix' => $prefix, 'middleware' => ['api']], function () {
|
||||
Route::get('vehicle', [BYDAutoController::class, 'vehicle']);
|
||||
Route::get('dealer', [BYDAutoController::class, 'dealer']);
|
||||
Route::get('province', [BYDAutoController::class, 'province']);
|
||||
Route::get('city', [BYDAutoController::class, 'city']);
|
||||
Route::post('testdrive', [BYDAutoController::class, 'testdrive']);
|
||||
});
|
23
packages/bydauto/src/Actions/TestdriveCreateAction.php
Normal file
23
packages/bydauto/src/Actions/TestdriveCreateAction.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Actions;
|
||||
|
||||
use BYDAuto\Models\Testdrive;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class TestdriveCreateAction
|
||||
{
|
||||
public function execute(Request $request)
|
||||
{
|
||||
$data = $request->all();
|
||||
$data['request_id'] = $request->request_id;
|
||||
return $this->createTestdrive($data);
|
||||
}
|
||||
|
||||
public function createTestdrive($data)
|
||||
{
|
||||
$model = new Testdrive($data);
|
||||
$model->save();
|
||||
return $model;
|
||||
}
|
||||
}
|
40
packages/bydauto/src/BYDAutoServiceProvider.php
Normal file
40
packages/bydauto/src/BYDAutoServiceProvider.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto;
|
||||
|
||||
use BYDAuto\Commands\BYDAutoCommand;
|
||||
use BYDAuto\Commands\BYDAutoNoticeCommand;
|
||||
use BYDAuto\Commands\CheryTransferCommand;
|
||||
use BYDAuto\Commands\GeocodingCommand;
|
||||
use Illuminate\Console\Scheduling\Schedule;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class BYDAutoServiceProvider extends ServiceProvider
|
||||
{
|
||||
public function register()
|
||||
{
|
||||
$root = dirname(__DIR__);
|
||||
|
||||
// migrate
|
||||
$this->loadMigrationsFrom($root . '/migrations');
|
||||
|
||||
$this->commands([
|
||||
CheryTransferCommand::class,
|
||||
BYDAutoCommand::class,
|
||||
GeocodingCommand::class,
|
||||
BYDAutoNoticeCommand::class,
|
||||
]);
|
||||
|
||||
$this->mergeConfigFrom($root . '/config/bydauto.php', 'bydauto');
|
||||
$this->loadRoutesFrom($root . '/routes/api.php');
|
||||
$this->loadViewsFrom($root . '/views', 'bydauto');
|
||||
}
|
||||
|
||||
public function boot()
|
||||
{
|
||||
$this->app->booted(function () {
|
||||
$schedule = $this->app->make(Schedule::class);
|
||||
$schedule->command('BYDAuto:notice')->dailyAt('09:00');
|
||||
});
|
||||
}
|
||||
}
|
71
packages/bydauto/src/CheryClueApi.php
Normal file
71
packages/bydauto/src/CheryClueApi.php
Normal file
@ -0,0 +1,71 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto;
|
||||
|
||||
use GuzzleHttp\Client;
|
||||
|
||||
class CheryClueApi
|
||||
{
|
||||
protected $appId;
|
||||
|
||||
protected $appSecret;
|
||||
|
||||
protected $endpoint;
|
||||
|
||||
protected $httpClient;
|
||||
|
||||
private static $instance;
|
||||
|
||||
private function __construct()
|
||||
{
|
||||
$this->appId = config('chery-crm.scrm.app_id');
|
||||
$this->appSecret = config('chery-crm.scrm.secret');
|
||||
$this->endpoint = config('chery-crm.scrm.endpoint');
|
||||
$this->httpClient = new Client(['base_uri' => $this->endpoint, 'timeout' => 10]);
|
||||
}
|
||||
|
||||
public static function getInstance(): self
|
||||
{
|
||||
if (!self::$instance) {
|
||||
self::$instance = new self();
|
||||
}
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
/**
|
||||
* 线索推送
|
||||
*
|
||||
* @param array $data
|
||||
* @return CheryResult
|
||||
*/
|
||||
public function cluePush($data)
|
||||
{
|
||||
$token = $this->getToken();
|
||||
$response = $this->httpClient->post('/api/app/chery-clue/api/clue/push/channel', ['json' => $data, 'headers' => ['x-csrf-token' => $token]]);
|
||||
$content = json_decode($response->getBody()->getContents(), true);
|
||||
$result = new CheryResult($content);
|
||||
if ($result->code !== '0') {
|
||||
$message = $result->get('msg', '推送线索失败');
|
||||
throw new \Exception($message);
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
public function getToken($force = false)
|
||||
{
|
||||
$token = cache('pkg:chery-scrm-token');
|
||||
if ($force || !$token) {
|
||||
$response = $this->httpClient->get('/api/app/chery-clue/api/clue/channel/getToken', ['query' => ['appId' => $this->appId, 'appSecret' => $this->appSecret]]);
|
||||
$json = json_decode($response->getBody()->getContents(), true);
|
||||
if ($json['code'] === '0') {
|
||||
$token = $json['data'];
|
||||
// 有效期4小时,提前10分钟刷新
|
||||
cache(['pkg:chery-scrm-token' => $token], now()->addSeconds(4 * 3600 - 600));
|
||||
} else {
|
||||
$message = $json['msg'] ?? 'pkg:chery-scrm-token 获取失败';
|
||||
throw new \Exception($message);
|
||||
}
|
||||
}
|
||||
return $token;
|
||||
}
|
||||
}
|
26
packages/bydauto/src/CheryResult.php
Normal file
26
packages/bydauto/src/CheryResult.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto;
|
||||
|
||||
use BYDAuto\Foundation\DataTransfer;
|
||||
use Illuminate\Support\Arr;
|
||||
|
||||
class CheryResult extends DataTransfer
|
||||
{
|
||||
public $code;
|
||||
|
||||
public $msg;
|
||||
|
||||
public $data;
|
||||
|
||||
public $reqId;
|
||||
|
||||
public function __construct($attributes)
|
||||
{
|
||||
$this->code = Arr::get($attributes, 'code');
|
||||
$this->msg = Arr::get($attributes, 'msg');
|
||||
$this->data = Arr::get($attributes, 'data');
|
||||
$this->reqId = Arr::get($attributes, 'reqId');
|
||||
$this->attributes = $attributes;
|
||||
}
|
||||
}
|
59
packages/bydauto/src/Commands/BYDAutoCommand.php
Normal file
59
packages/bydauto/src/Commands/BYDAutoCommand.php
Normal file
@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Commands;
|
||||
|
||||
use BYDAuto\Models\Contact;
|
||||
use BYDAuto\Models\Testdrive;
|
||||
use Illuminate\Console\Command;
|
||||
|
||||
class BYDAutoCommand extends Command
|
||||
{
|
||||
protected $signature = 'bydauto {action?}';
|
||||
|
||||
protected $description = 'BYDAuto Command';
|
||||
|
||||
public function handle()
|
||||
{
|
||||
$action = $this->argument('action');
|
||||
$method = "action_{$action}";
|
||||
if (method_exists($this, $method)) {
|
||||
$this->{$method}();
|
||||
} else {
|
||||
$this->error("不支持的操作 {$action}");
|
||||
}
|
||||
}
|
||||
|
||||
public function action_init()
|
||||
{
|
||||
$this->call('db:wipe');
|
||||
$this->call('migrate');
|
||||
}
|
||||
|
||||
public function action_testdrive()
|
||||
{
|
||||
$items = Testdrive::query()->orderBy('id', 'desc')->get();
|
||||
$this->table(['id', 'date_created', 'status', 'name', 'mobile'], $items->map(function (Testdrive $v) {
|
||||
return [$v->id, $v->date_created, $v->status, $v->name, $v->mobile];
|
||||
}));
|
||||
}
|
||||
|
||||
public function action_contact()
|
||||
{
|
||||
$items = Contact::all();
|
||||
$this->table(['id', 'email', 'remark', 'status'], $items->map(function (Contact $v) {
|
||||
return [$v->id, $v->email, $v->remark, $v->status];
|
||||
}));
|
||||
}
|
||||
|
||||
public function action_contact_add()
|
||||
{
|
||||
$data['email'] = $this->ask('Email');
|
||||
$data['remark'] = $this->ask('Remark');
|
||||
$data['status'] = Contact::STATUS_PUBLISHED;
|
||||
|
||||
$contact = new Contact($data);
|
||||
$contact->save();
|
||||
|
||||
$this->info('Contact added');
|
||||
}
|
||||
}
|
61
packages/bydauto/src/Commands/BYDAutoNoticeCommand.php
Normal file
61
packages/bydauto/src/Commands/BYDAutoNoticeCommand.php
Normal file
@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Commands;
|
||||
|
||||
use BYDAuto\Models\Testdrive;
|
||||
use Illuminate\Console\Command;
|
||||
use Illuminate\Support\Carbon;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Mail;
|
||||
|
||||
class BYDAutoNoticeCommand extends Command
|
||||
{
|
||||
protected $signature = 'bydauto:notice {date?}';
|
||||
|
||||
protected $description = '线索日报';
|
||||
|
||||
public function handle()
|
||||
{
|
||||
$date = $this->argument('date') ?: Carbon::yesterday()->toDateString();
|
||||
$table = (new Testdrive())->getTable();
|
||||
|
||||
$items = DB::table($table)
|
||||
->selectRaw('source, COUNT(*) AS total')
|
||||
->groupByRaw('source')
|
||||
->whereDate('date_created', $date)
|
||||
->get();
|
||||
$count = $items->sum('total');
|
||||
$sourceMap = [
|
||||
'alipromote:99800024' => '自建站99800024',
|
||||
'alipromote:100000006' => '自建站100000006',
|
||||
'alipromote:cluepackage' => '车生活推送',
|
||||
'alipromote:isaas' => '小程序',
|
||||
];
|
||||
|
||||
$users = config('chery-crm.daily_mail_users');
|
||||
$users = explode(',', $users);
|
||||
$html = \View::make('chery-crm::notice.salesleads-day', compact('items', 'date', 'sourceMap', 'count'))->render();
|
||||
Mail::html($html, function ($message) use ($date, $users) {
|
||||
$message->subject('线索日报 ' . $date)->to($users);
|
||||
});
|
||||
}
|
||||
|
||||
public function sourceGroup()
|
||||
{
|
||||
$table = (new Testdrive())->getTable();
|
||||
|
||||
$items = DB::table($table)
|
||||
->selectRaw('DATE(date_created) AS day, source, COUNT(*) AS total')
|
||||
->groupByRaw('DATE(date_created), source')
|
||||
->orderByRaw('DATE(date_created), source')
|
||||
->get();
|
||||
|
||||
$sourceGroup = $items->groupBy('source');
|
||||
$html = \View::make('chery-crm::notice.salesleads', compact('sourceGroup'))->render();
|
||||
Mail::html($html, function ($message) {
|
||||
$message
|
||||
->subject('销售线索每日通知')
|
||||
->to('ifme.in@gmail.com');
|
||||
});
|
||||
}
|
||||
}
|
80
packages/bydauto/src/Commands/CheryTransferCommand.php
Normal file
80
packages/bydauto/src/Commands/CheryTransferCommand.php
Normal file
@ -0,0 +1,80 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Commands;
|
||||
|
||||
use BYDAuto\Jobs\TestdrivePushJob;
|
||||
use BYDAuto\Models\Testdrive;
|
||||
use BYDAuto\Models\Vehicle;
|
||||
use Illuminate\Console\Command;
|
||||
|
||||
class CheryTransferCommand extends Command
|
||||
{
|
||||
// php artisan BYDAuto:transfer vehicle_alias_update
|
||||
// php artisan BYDAuto:transfer dispatch_by_mobile
|
||||
// php artisan BYDAuto:transfer dispatch_all_draft
|
||||
protected $signature = 'bydauto:transfer {action}';
|
||||
|
||||
protected $description = '奇瑞SCRM数据传输';
|
||||
|
||||
public function handle()
|
||||
{
|
||||
$action = $this->argument('action');
|
||||
$this->{'action_' . $action}();
|
||||
}
|
||||
|
||||
public function action_dispatch_all_draft()
|
||||
{
|
||||
$items = Testdrive::query()
|
||||
->where('status', Testdrive::STATUS_DRAFT)
|
||||
->get();
|
||||
$this->showTable($items);
|
||||
|
||||
$confirm = $this->confirm('是否确认推送?', true);
|
||||
if (!$confirm) {
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
foreach ($items as $model) {
|
||||
TestdrivePushJob::dispatch($model);
|
||||
}
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
|
||||
public function action_vehicle_alias_update()
|
||||
{
|
||||
$items = Vehicle::query()->get();
|
||||
$items->each(function ($item) {
|
||||
$cleanName = preg_replace('/\s+/', '', $item->name);
|
||||
$alias = [$item->name];
|
||||
if ($item->name !== $cleanName) {
|
||||
$alias[] = $cleanName;
|
||||
}
|
||||
$item->update(['alias' => $alias]);
|
||||
});
|
||||
}
|
||||
|
||||
public function action_dispatch_by_mobile()
|
||||
{
|
||||
$mobiles = $this->ask('请输入手机号码,多个用逗号分隔');
|
||||
$mobiles = explode(',', $mobiles);
|
||||
|
||||
$items = Testdrive::query()
|
||||
->whereIn('mobile', $mobiles)
|
||||
->get();
|
||||
$this->showTable($items);
|
||||
|
||||
$confirm = $this->confirm('是否确认推送?', true);
|
||||
if (!$confirm) {
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
foreach ($items as $model) {
|
||||
TestdrivePushJob::dispatch($model);
|
||||
}
|
||||
return Command::SUCCESS;
|
||||
}
|
||||
|
||||
protected function showTable($items)
|
||||
{
|
||||
$columns = ['id', 'status', 'name', 'mobile'];
|
||||
$this->table($columns, $items->map(fn($item) => $item->only($columns)));
|
||||
}
|
||||
}
|
206
packages/bydauto/src/Commands/GeocodingCommand.php
Normal file
206
packages/bydauto/src/Commands/GeocodingCommand.php
Normal file
@ -0,0 +1,206 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Commands;
|
||||
|
||||
use BYDAuto\Models\Dealer;
|
||||
use Illuminate\Console\Command;
|
||||
use Illuminate\Support\Facades\Http;
|
||||
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
||||
use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
|
||||
|
||||
class GeocodingCommand extends Command
|
||||
{
|
||||
protected $signature = 'bydauto:geocoding {action}';
|
||||
|
||||
protected $description = '使用百度地图 API 把地址转换为经纬度';
|
||||
|
||||
public function handle()
|
||||
{
|
||||
$action = $this->argument('action');
|
||||
if (method_exists($this, 'action_' . $action)) {
|
||||
$this->{'action_' . $action}();
|
||||
} else {
|
||||
$this->error('Action not found');
|
||||
}
|
||||
}
|
||||
|
||||
public function action_update()
|
||||
{
|
||||
$items = Dealer::query()->orderBy('id')->get();
|
||||
dump($items[0]);
|
||||
}
|
||||
|
||||
public function xlsx($chunk, $index)
|
||||
{
|
||||
$spreadsheet = new Spreadsheet();
|
||||
$sheet = $spreadsheet->getActiveSheet();
|
||||
$sheet->setCellValue('A1', '门店名称(必填)');
|
||||
$sheet->setCellValue('B1', '门店编码');
|
||||
$sheet->setCellValue('C1', '省份名称(必填)');
|
||||
$sheet->setCellValue('D1', '城市名称(必填)');
|
||||
$sheet->setCellValue('E1', '描述');
|
||||
$sheet->setCellValue('F1', '地址(必填)');
|
||||
$sheet->setCellValue('G1', '经度(必填)');
|
||||
$sheet->setCellValue('H1', '纬度(必填)');
|
||||
$sheet->setCellValue('I1', '电话(必填)');
|
||||
$sheet->setCellValue('J1', '营业时间(必填)');
|
||||
$sheet->setCellValue('K1', '标签');
|
||||
$sheet->setCellValue('L1', '业务扩展字段');
|
||||
|
||||
$sn = 2;
|
||||
foreach ($chunk as $dealer) {
|
||||
$except1 = ['北京', '上海', '天津', '重庆']; // 直辖市
|
||||
$except2 = ['内蒙古', '内蒙古(蒙东)', '内蒙古(蒙西)']; // 内蒙古自治区
|
||||
$except3 = ['新疆']; // 新疆维吾尔自治区
|
||||
$except4 = ['西藏']; // 西藏自治区
|
||||
$except5 = ['广西']; // 广西壮族自治区
|
||||
$except6 = ['宁夏']; // 宁夏回族自治区
|
||||
$except7 = ['香港', '澳门']; // 香港特别行政区、澳门特别行政区
|
||||
|
||||
$province = $dealer->province;
|
||||
if (in_array($province, $except1)) {
|
||||
$province .= '市';
|
||||
} elseif (in_array($province, $except2)) {
|
||||
$province = '内蒙古自治区';
|
||||
} elseif (in_array($province, $except3)) {
|
||||
$province = '新疆维吾尔自治区';
|
||||
} elseif (in_array($province, $except4)) {
|
||||
$province = '西藏自治区';
|
||||
} elseif (in_array($province, $except5)) {
|
||||
$province = '广西壮族自治区';
|
||||
} elseif (in_array($province, $except6)) {
|
||||
$province = '宁夏回族自治区';
|
||||
} elseif (in_array($province, $except7)) {
|
||||
$province .= '特别行政区';
|
||||
} else {
|
||||
$province .= '省';
|
||||
}
|
||||
|
||||
$lng = $dealer->lng ? number_format($dealer->lng, 6) : '';
|
||||
$lat = $dealer->lat ? number_format($dealer->lat, 6) : '';
|
||||
|
||||
$sheet->setCellValue('A' . $sn, $dealer->name);
|
||||
$sheet->setCellValue('B' . $sn, $dealer->erp);
|
||||
$sheet->setCellValue('C' . $sn, $province);
|
||||
$sheet->setCellValue('D' . $sn, $dealer->city);
|
||||
$sheet->setCellValue('E' . $sn, $dealer->alias);
|
||||
$sheet->setCellValue('F' . $sn, $dealer->address);
|
||||
$sheet->setCellValue('G' . $sn, $lng);
|
||||
$sheet->setCellValue('H' . $sn, $lat);
|
||||
$sheet->setCellValue('I' . $sn, '13000000000');
|
||||
$sheet->setCellValue('J' . $sn, '09:00-18:00');
|
||||
$sheet->setCellValue('K' . $sn, '');
|
||||
|
||||
$vehicles = $dealer->vehicles->map(fn($v) => $v->extra_code)->join(',');
|
||||
$vehicles = trim($vehicles, ',');
|
||||
$sheet->setCellValue('L' . $sn, $vehicles);
|
||||
|
||||
++$sn;
|
||||
}
|
||||
$writer = new Xlsx($spreadsheet);
|
||||
$writer->save(storage_path('app/dealers-' . $index . '.xlsx'));
|
||||
}
|
||||
|
||||
public function csv($chunk, $index)
|
||||
{
|
||||
$headers = ['门店名称(必填)', '门店编码', '省份名称(必填)', '城市名称(必填)', '描述', '地址(必填)', '经度(必填)', '纬度(必填)', '电话(必填)', '营业时间(必填)', '标签', '业务扩展字段'];
|
||||
$file = fopen(storage_path('app/dealers-' . $index . '.csv'), 'w');
|
||||
fputcsv($file, $headers);
|
||||
$chunk->each(function (Dealer $dealer) use ($file) {
|
||||
$except1 = ['北京', '上海', '天津', '重庆']; // 直辖市
|
||||
$except2 = ['内蒙古', '内蒙古(蒙东)', '内蒙古(蒙西)']; // 内蒙古自治区
|
||||
$except3 = ['新疆']; // 新疆维吾尔自治区
|
||||
$except4 = ['西藏']; // 西藏自治区
|
||||
$except5 = ['广西']; // 广西壮族自治区
|
||||
$except6 = ['宁夏']; // 宁夏回族自治区
|
||||
$except7 = ['香港', '澳门']; // 香港特别行政区、澳门特别行政区
|
||||
|
||||
$province = $dealer->province;
|
||||
if (in_array($province, $except1)) {
|
||||
$province .= '市';
|
||||
} elseif (in_array($province, $except2)) {
|
||||
$province = '内蒙古自治区';
|
||||
} elseif (in_array($province, $except3)) {
|
||||
$province = '新疆维吾尔自治区';
|
||||
} elseif (in_array($province, $except4)) {
|
||||
$province = '西藏自治区';
|
||||
} elseif (in_array($province, $except5)) {
|
||||
$province = '广西壮族自治区';
|
||||
} elseif (in_array($province, $except6)) {
|
||||
$province = '宁夏回族自治区';
|
||||
} elseif (in_array($province, $except7)) {
|
||||
$province .= '特别行政区';
|
||||
} else {
|
||||
$province .= '省';
|
||||
}
|
||||
|
||||
$lng = $dealer->lng ? number_format($dealer->lng, 6) : '';
|
||||
$lat = $dealer->lat ? number_format($dealer->lat, 6) : '';
|
||||
|
||||
fputcsv($file, [
|
||||
$dealer->name,
|
||||
$dealer->erp,
|
||||
$province,
|
||||
$dealer->city,
|
||||
$dealer->alias,
|
||||
$dealer->address,
|
||||
$lng,
|
||||
$lat,
|
||||
'13000000000',
|
||||
'09:00-18:00',
|
||||
'',
|
||||
$dealer->region,
|
||||
]);
|
||||
});
|
||||
fclose($file);
|
||||
}
|
||||
|
||||
public function action_csv()
|
||||
{
|
||||
$items = Dealer::query()->orderBy('id')->get();
|
||||
$chunks = $items->chunk(200);
|
||||
$chunks->each(fn($chunk, $index) => $this->xlsx($chunk, $index));
|
||||
}
|
||||
|
||||
public function action_xlsx()
|
||||
{
|
||||
$items = Dealer::query()->orderBy('id')->get();
|
||||
$chunks = $items->chunk(200);
|
||||
$chunks->each(fn($chunk, $index) => $this->xlsx($chunk, $index));
|
||||
}
|
||||
|
||||
public function action_dump()
|
||||
{
|
||||
$address = $this->ask('请输入地址');
|
||||
$response = $this->getGeocoding($address);
|
||||
dump($response);
|
||||
}
|
||||
|
||||
public function action_show()
|
||||
{
|
||||
$items = Dealer::query()->take(4)->get();
|
||||
$this->table(['CODE', '经销商名称', '在售车型'], $items->map(fn(Dealer $d) => [$d->erp, $d->alias, $d->vehicles->map(fn($v) => $v->spec_id)->join(',')]));
|
||||
}
|
||||
|
||||
public function action_fix()
|
||||
{
|
||||
$dealers = Dealer::query()->orderBy('id')->whereNull('lat')->get();
|
||||
$dealers->each(function (Dealer $dealer) {
|
||||
$endpoint = 'https://api.map.baidu.com/geocoding/v3/';
|
||||
$address = str_replace("\n", " ", $dealer->address);
|
||||
$this->info($dealer->id . ':' . $address);
|
||||
$response = Http::get($endpoint, ['address' => $address, 'output' => 'json', 'ak' => config('services.baidulbs.ak')]);
|
||||
if ($response->json('status') === 0) {
|
||||
$location = $response->json('result.location');
|
||||
$dealer->update(['address' => $address, 'lat' => $location['lat'], 'lng' => $location['lng']]);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
public function getGeocoding($address)
|
||||
{
|
||||
$endpoint = 'https://api.map.baidu.com/geocoding/v3/';
|
||||
$response = Http::get($endpoint, ['address' => $address, 'output' => 'json', 'ak' => config('services.baidulbs.ak')]);
|
||||
return $response->json();
|
||||
}
|
||||
}
|
67
packages/bydauto/src/Controllers/BYDAutoController.php
Normal file
67
packages/bydauto/src/Controllers/BYDAutoController.php
Normal file
@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Controllers;
|
||||
|
||||
use BYDAuto\Actions\TestdriveCreateAction;
|
||||
use BYDAuto\Models\Dealer;
|
||||
use BYDAuto\Models\Vehicle;
|
||||
use Illuminate\Foundation\Validation\ValidatesRequests;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Routing\Controller;
|
||||
use Illuminate\Support\Str;
|
||||
use Illuminate\Validation\ValidationException;
|
||||
|
||||
class BYDAutoController extends Controller
|
||||
{
|
||||
use ValidatesRequests;
|
||||
|
||||
public function testdrive(Request $request)
|
||||
{
|
||||
$rules['name'] = ['required'];
|
||||
$rules['mobile'] = ['required'];
|
||||
$this->validate($request, $rules);
|
||||
$requestId = Str::uuid();
|
||||
$request->merge(['request_id' => $requestId]);
|
||||
(new TestdriveCreateAction())->execute($request);
|
||||
|
||||
return response()->json(['code' => 0, 'message' => '提交成功', 'request_id' => $requestId]);
|
||||
}
|
||||
|
||||
public function vehicle(Request $request)
|
||||
{
|
||||
$items = Vehicle::cachedItems();
|
||||
return response()->json($items);
|
||||
}
|
||||
|
||||
public function province(Request $request)
|
||||
{
|
||||
$vehicle = Vehicle::query()->firstWhere('name', $request->vehicle);
|
||||
$dealers = $vehicle->dealers;
|
||||
$province = $dealers->groupBy('province')->keys();
|
||||
$data = $province->map(fn($item) => ['name' => $item]);
|
||||
return response()->json($data);
|
||||
}
|
||||
|
||||
public function city(Request $request)
|
||||
{
|
||||
$vehicle = Vehicle::query()->firstWhere('name', $request->vehicle);
|
||||
if (!$vehicle) {
|
||||
throw ValidationException::withMessages(['vehicle' => '车型不存在']);
|
||||
}
|
||||
$dealers = $vehicle->dealers;
|
||||
$city = $dealers->where('province', $request->province)->groupBy('city')->keys();
|
||||
$data = $city->map(fn($item) => ['name' => $item]);
|
||||
return response()->json($data);
|
||||
}
|
||||
|
||||
public function dealer(Request $request)
|
||||
{
|
||||
$vehicle = Vehicle::query()->firstWhere('name', $request->vehicle);
|
||||
if (!$vehicle) {
|
||||
throw ValidationException::withMessages(['vehicle' => '车型不存在']);
|
||||
}
|
||||
$dealer = Dealer::query()->where('province', $request->province)->where('city', $request->city)->get();
|
||||
$data = $dealer->map(fn($item) => ['name' => $item->name, 'address' => $item->address, 'erp' => $item->erp]);
|
||||
return response()->json($data);
|
||||
}
|
||||
}
|
83
packages/bydauto/src/Foundation/AlipayAES.php
Normal file
83
packages/bydauto/src/Foundation/AlipayAES.php
Normal file
@ -0,0 +1,83 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Foundation;
|
||||
|
||||
class AlipayAES
|
||||
{
|
||||
/**
|
||||
* AES加密.
|
||||
*
|
||||
* @param $plainText String 明文
|
||||
* @param $key String 对称密钥
|
||||
* @return string
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function encrypt($plainText, $key)
|
||||
{
|
||||
try {
|
||||
// AES, 128 模式加密数据 CBC
|
||||
$screct_key = base64_decode($key);
|
||||
$str = trim($plainText);
|
||||
$str = $this->addPKCS7Padding($str);
|
||||
$iv = str_repeat("\0", 16);
|
||||
$encrypt_str = openssl_encrypt($str, 'AES-128-CBC', $screct_key, OPENSSL_NO_PADDING, $iv);
|
||||
return base64_encode($encrypt_str);
|
||||
} catch (\Exception $e) {
|
||||
throw new \Exception("AES加密失败,plainText=" . $plainText . ",keySize=" . strlen($key) . "。" . $e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* AES解密.
|
||||
*
|
||||
* @param $cipherText String 密文
|
||||
* @param $key String 对称密钥
|
||||
* @return false|string
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function decrypt($cipherText, $key)
|
||||
{
|
||||
try {
|
||||
// AES, 128 模式加密数据 CBC
|
||||
$str = base64_decode($cipherText);
|
||||
$screct_key = base64_decode($key);
|
||||
$iv = str_repeat("\0", 16);
|
||||
$decrypt_str = openssl_decrypt($str, 'AES-128-CBC', $screct_key, OPENSSL_NO_PADDING, $iv);
|
||||
return $this->stripPKSC7Padding($decrypt_str);
|
||||
} catch (\Exception $e) {
|
||||
throw new \Exception("AES解密失败,cipherText=" . $cipherText . ",keySize=" . strlen($key) . "。" . $e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 填充算法.
|
||||
* @param string $source
|
||||
* @return string
|
||||
*/
|
||||
private function addPKCS7Padding($source)
|
||||
{
|
||||
$source = trim($source);
|
||||
$block = 16;
|
||||
$pad = $block - (strlen($source) % $block);
|
||||
if ($pad <= $block) {
|
||||
$char = chr($pad);
|
||||
$source .= str_repeat($char, $pad);
|
||||
}
|
||||
return $source;
|
||||
}
|
||||
|
||||
/**
|
||||
* 移去填充算法.
|
||||
* @param string $source
|
||||
* @return string
|
||||
*/
|
||||
private function stripPKSC7Padding($source)
|
||||
{
|
||||
$char = substr($source, -1);
|
||||
$num = ord($char);
|
||||
if ($num == 62) {
|
||||
return $source;
|
||||
}
|
||||
return substr($source, 0, -$num);
|
||||
}
|
||||
}
|
33
packages/bydauto/src/Foundation/AlipayEasySDKFactory.php
Normal file
33
packages/bydauto/src/Foundation/AlipayEasySDKFactory.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Foundation;
|
||||
|
||||
use Alipay\EasySDK\Kernel\Config;
|
||||
use Alipay\EasySDK\Kernel\Factory;
|
||||
|
||||
class AlipayEasySDKFactory
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
Factory::setOptions($this->getOptions());
|
||||
}
|
||||
|
||||
public function execute($method, $textParams, $bizParams)
|
||||
{
|
||||
return Factory::util()->generic()->execute($method, $textParams, $bizParams);
|
||||
}
|
||||
|
||||
protected function getOptions()
|
||||
{
|
||||
$options = new Config();
|
||||
$options->protocol = 'https';
|
||||
$options->gatewayHost = 'openapi.alipay.com';
|
||||
$options->signType = 'RSA2';
|
||||
$options->appId = config('chery-crm.alipay.app_id');
|
||||
$merchantPrivateKey = file_get_contents(storage_path(config('chery-crm.alipay.merchant_private_key')));
|
||||
$options->merchantPrivateKey = $merchantPrivateKey;
|
||||
$alipayPublicKey = file_get_contents(storage_path(config('chery-crm.alipay.alipay_public_key')));
|
||||
$options->alipayPublicKey = $alipayPublicKey;
|
||||
return $options;
|
||||
}
|
||||
}
|
15
packages/bydauto/src/Foundation/DBLog.php
Normal file
15
packages/bydauto/src/Foundation/DBLog.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Foundation;
|
||||
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class DBLog
|
||||
{
|
||||
public static function add($message, $content = [], $channel = '')
|
||||
{
|
||||
$content = json_encode($content, JSON_UNESCAPED_UNICODE);
|
||||
DB::table('bydauto_logs')
|
||||
->insert(['message' => $message, 'content' => $content, 'channel' => $channel, 'created_at' => now(), 'updated_at' => now()]);
|
||||
}
|
||||
}
|
53
packages/bydauto/src/Foundation/DataTransfer.php
Normal file
53
packages/bydauto/src/Foundation/DataTransfer.php
Normal file
@ -0,0 +1,53 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Foundation;
|
||||
|
||||
abstract class DataTransfer implements \ArrayAccess, \JsonSerializable
|
||||
{
|
||||
protected $attributes;
|
||||
|
||||
public function __construct($attributes)
|
||||
{
|
||||
$this->attributes = $attributes;
|
||||
}
|
||||
|
||||
public function toArray()
|
||||
{
|
||||
return $this->attributes;
|
||||
}
|
||||
|
||||
public function offsetExists($offset): bool
|
||||
{
|
||||
return isset($this->attributes[$offset]);
|
||||
}
|
||||
|
||||
public function offsetGet($offset): mixed
|
||||
{
|
||||
return $this->attributes[$offset] ?? null;
|
||||
}
|
||||
|
||||
public function offsetSet($offset, $value): void
|
||||
{
|
||||
$this->attributes[$offset] = $value;
|
||||
}
|
||||
|
||||
public function offsetUnset($offset): void
|
||||
{
|
||||
unset($this->attributes[$offset]);
|
||||
}
|
||||
|
||||
public function toJson($options = 0): string
|
||||
{
|
||||
return json_encode($this->jsonSerialize(), $options);
|
||||
}
|
||||
|
||||
public function jsonSerialize(): mixed
|
||||
{
|
||||
return $this->toArray();
|
||||
}
|
||||
|
||||
public function get($key, $default = null)
|
||||
{
|
||||
return \Arr::get($this->attributes, $key, $default);
|
||||
}
|
||||
}
|
31
packages/bydauto/src/Foundation/Encryption.php
Normal file
31
packages/bydauto/src/Foundation/Encryption.php
Normal file
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Foundation;
|
||||
|
||||
class Encryption
|
||||
{
|
||||
public function __construct(protected $pubkey, protected $privkey)
|
||||
{
|
||||
// ...
|
||||
}
|
||||
|
||||
public function encrypt($data)
|
||||
{
|
||||
if (openssl_public_encrypt($data, $encrypted, $this->pubkey)) {
|
||||
$data = base64_encode($encrypted);
|
||||
} else {
|
||||
throw new \Exception('Unable to encrypt data. Perhaps it is bigger than the key size?');
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
|
||||
public function decrypt($data)
|
||||
{
|
||||
if (openssl_private_decrypt(base64_decode($data), $decrypted, $this->privkey)) {
|
||||
$data = $decrypted;
|
||||
} else {
|
||||
$data = '';
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
}
|
37
packages/bydauto/src/Jobs/TestdrivePushJob.php
Normal file
37
packages/bydauto/src/Jobs/TestdrivePushJob.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Jobs;
|
||||
|
||||
use BYDAuto\Models\Contact;
|
||||
use BYDAuto\Models\Testdrive;
|
||||
use BYDAuto\Notifications\TestdirveNotification;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Foundation\Bus\Dispatchable;
|
||||
use Illuminate\Foundation\Queue\Queueable;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
|
||||
class TestdrivePushJob implements ShouldQueue
|
||||
{
|
||||
use Queueable;
|
||||
use SerializesModels;
|
||||
use Dispatchable;
|
||||
|
||||
public function __construct(protected Testdrive $model) {}
|
||||
|
||||
public function handle(): void
|
||||
{
|
||||
try {
|
||||
$this->sendNotification();
|
||||
$this->model->update(['status' => Testdrive::STATUS_PUBLISHED]);
|
||||
} catch (\Exception $e) {
|
||||
info('===== TestdrivePushJob::handle exception', ['message' => $e->getMessage()]);
|
||||
}
|
||||
}
|
||||
|
||||
public function sendNotification()
|
||||
{
|
||||
$message = new TestdirveNotification($this->model);
|
||||
$contacts = Contact::query()->where('status', Contact::STATUS_PUBLISHED)->get();
|
||||
$contacts->each(fn(Contact $contact) => $contact->notify($message));
|
||||
}
|
||||
}
|
18
packages/bydauto/src/Models/Contact.php
Normal file
18
packages/bydauto/src/Models/Contact.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
|
||||
class Contact extends Model
|
||||
{
|
||||
use Notifiable;
|
||||
|
||||
const STATUS_PUBLISHED = 'published';
|
||||
const STATUS_DRAFT = 'draft';
|
||||
public const CREATED_AT = 'date_created';
|
||||
public const UPDATED_AT = 'date_updated';
|
||||
protected $table = 'bydauto_contact';
|
||||
protected $fillable = ['remark', 'email', 'status'];
|
||||
}
|
54
packages/bydauto/src/Models/Dealer.php
Normal file
54
packages/bydauto/src/Models/Dealer.php
Normal file
@ -0,0 +1,54 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Support\Facades\Cache;
|
||||
|
||||
/**
|
||||
* 经销商门店 class.
|
||||
*
|
||||
* @property int $id
|
||||
* @property string $sn
|
||||
* @property string $region
|
||||
* @property string $province
|
||||
* @property string $city
|
||||
* @property string $county
|
||||
* @property string $district
|
||||
* @property string $type
|
||||
* @property string $erp
|
||||
* @property string $name
|
||||
* @property string $alias
|
||||
* @property string $group
|
||||
* @property string $address
|
||||
*/
|
||||
class Dealer extends Model
|
||||
{
|
||||
public $timestamps = false;
|
||||
|
||||
protected $table = 'bydauto_dealers';
|
||||
|
||||
protected $fillable = ['sn', 'region', 'province', 'city', 'county', 'district', 'type', 'erp', 'name', 'alias', 'group', 'address', 'lat', 'lng'];
|
||||
|
||||
public function vehicles()
|
||||
{
|
||||
return $this->belongsToMany(Vehicle::class, 'bydauto_dealer_vehicles', 'dealer_id', 'vehicle_id');
|
||||
}
|
||||
|
||||
public static function cachedItems()
|
||||
{
|
||||
return Cache::remember('BYDAuto:dealers', 120, fn() => static::query()->get());
|
||||
}
|
||||
|
||||
public static function findByAlias($alias)
|
||||
{
|
||||
$items = self::cachedItems();
|
||||
return $items->first(fn($d) => $d->alias === $alias);
|
||||
}
|
||||
|
||||
public static function findByName($name)
|
||||
{
|
||||
$items = self::cachedItems();
|
||||
return $items->first(fn($d) => $d->name === $name);
|
||||
}
|
||||
}
|
37
packages/bydauto/src/Models/Testdrive.php
Normal file
37
packages/bydauto/src/Models/Testdrive.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Models;
|
||||
|
||||
use Carbon\Carbon;
|
||||
use BYDAuto\Observers\TestdriveObserver;
|
||||
use Illuminate\Database\Eloquent\Attributes\ObservedBy;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* 销售线索.
|
||||
*
|
||||
* @property int $id
|
||||
* @property Carbon $date_created
|
||||
* @property Carbon $date_updated
|
||||
*/
|
||||
#[ObservedBy([TestdriveObserver::class])]
|
||||
class Testdrive extends Model
|
||||
{
|
||||
public const STATUS_UNKNOWN = 'unknown';
|
||||
|
||||
public const STATUS_DRAFT = 'draft';
|
||||
|
||||
public const STATUS_PUBLISHED = 'published';
|
||||
|
||||
public const STATUS_ARCHIVED = 'archived';
|
||||
|
||||
public const CREATED_AT = 'date_created';
|
||||
|
||||
public const UPDATED_AT = 'date_updated';
|
||||
|
||||
protected $table = 'bydauto_testdrive';
|
||||
|
||||
protected $fillable = ['status', 'name', 'mobile', 'platform', 'source', 'meta', 'rawdata', 'request_id'];
|
||||
|
||||
protected $casts = ['meta' => 'json', 'rawdata' => 'json'];
|
||||
}
|
44
packages/bydauto/src/Models/Vehicle.php
Normal file
44
packages/bydauto/src/Models/Vehicle.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Support\Facades\Cache;
|
||||
|
||||
/**
|
||||
* Vehicle class.
|
||||
*
|
||||
* @property int $id
|
||||
* @property string $name
|
||||
* @property array $alias
|
||||
* @property string $spec_id
|
||||
*/
|
||||
class Vehicle extends Model
|
||||
{
|
||||
public $timestamps = false;
|
||||
|
||||
protected $table = 'bydauto_vehicles';
|
||||
|
||||
protected $fillable = ['name', 'alias', 'spec_id'];
|
||||
|
||||
protected $casts = ['alias' => 'array'];
|
||||
|
||||
public function dealers()
|
||||
{
|
||||
return $this->belongsToMany(Dealer::class, 'bydauto_dealer_vehicles', 'vehicle_id', 'dealer_id');
|
||||
}
|
||||
|
||||
public static function cachedItems()
|
||||
{
|
||||
return Cache::remember('BYDAuto:vechicle', 3600, function () {
|
||||
return Vehicle::query()->get()->map(fn($d) => ['id' => $d->id, 'name' => $d->name, 'alias' => $d->alias, 'spec_id' => $d->spec_id]);
|
||||
});
|
||||
}
|
||||
|
||||
public static function specId($name)
|
||||
{
|
||||
$items = self::cachedItems();
|
||||
$item = $items->first(fn($d) => in_array($name, $d['alias']) || $d['name'] === $name);
|
||||
return $item ? $item['spec_id'] : null;
|
||||
}
|
||||
}
|
41
packages/bydauto/src/Notifications/TestdirveNotification.php
Normal file
41
packages/bydauto/src/Notifications/TestdirveNotification.php
Normal file
@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Notifications;
|
||||
|
||||
use BYDAuto\Models\Testdrive;
|
||||
use Illuminate\Bus\Queueable;
|
||||
use Illuminate\Contracts\Queue\ShouldQueue;
|
||||
use Illuminate\Notifications\Messages\MailMessage;
|
||||
use Illuminate\Notifications\Notification;
|
||||
|
||||
class TestdirveNotification extends Notification
|
||||
{
|
||||
use Queueable;
|
||||
|
||||
public function __construct(protected Testdrive $model)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
public function via(object $notifiable): array
|
||||
{
|
||||
return ['mail'];
|
||||
}
|
||||
|
||||
public function toMail(object $notifiable): MailMessage
|
||||
{
|
||||
return (new MailMessage)
|
||||
->subject("预约试驾线索通知")
|
||||
->line("收到了一条新的试驾预约信息,请及时处理")
|
||||
->line("姓名:" . $this->model->name . " \n电话:" . $this->model->mobile)
|
||||
->line("=====")
|
||||
->line("祝,工作愉快!");
|
||||
}
|
||||
|
||||
public function toArray(object $notifiable): array
|
||||
{
|
||||
return [
|
||||
//
|
||||
];
|
||||
}
|
||||
}
|
25
packages/bydauto/src/Observers/TestdriveObserver.php
Normal file
25
packages/bydauto/src/Observers/TestdriveObserver.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace BYDAuto\Observers;
|
||||
|
||||
use BYDAuto\Jobs\TestdrivePushJob;
|
||||
use BYDAuto\Models\Testdrive;
|
||||
|
||||
class TestdriveObserver
|
||||
{
|
||||
public function creating(Testdrive $model)
|
||||
{
|
||||
if ($model->status === null) {
|
||||
$model->status = Testdrive::STATUS_DRAFT;
|
||||
}
|
||||
}
|
||||
|
||||
public function created(Testdrive $model)
|
||||
{
|
||||
if ($model->status === Testdrive::STATUS_DRAFT) {
|
||||
TestdrivePushJob::dispatch($model);
|
||||
} else {
|
||||
info('===== TestdriveObserver::created not a draft', ['id' => $model->id, 'status' => $model->status]);
|
||||
}
|
||||
}
|
||||
}
|
16
packages/bydauto/views/notice/salesleads-day.blade.php
Normal file
16
packages/bydauto/views/notice/salesleads-day.blade.php
Normal file
@ -0,0 +1,16 @@
|
||||
<div>
|
||||
<h3>{{ $date }}</h3>
|
||||
@if ($items->isEmpty())
|
||||
<div>无数据</div>
|
||||
@else
|
||||
<ul>
|
||||
@foreach ($items as $item)
|
||||
<li>
|
||||
{{ $sourceMap[$item->source] ?? $item->source }}
|
||||
<strong style="color: red">{{ $item->total }}</strong>
|
||||
</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
<p>总数:{{ $count }}</p>
|
||||
@endif
|
||||
</div>
|
8
packages/bydauto/views/notice/salesleads.blade.php
Normal file
8
packages/bydauto/views/notice/salesleads.blade.php
Normal file
@ -0,0 +1,8 @@
|
||||
<div>
|
||||
@foreach ($sourceGroup as $source => $items)
|
||||
<p>渠道: {{ $source }}</p>
|
||||
@foreach ($items as $item)
|
||||
<div>{{ $item->day }} {{ $item->total }}</div>
|
||||
@endforeach
|
||||
@endforeach
|
||||
</div>
|
33
phpunit.xml
Normal file
33
phpunit.xml
Normal file
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
||||
bootstrap="vendor/autoload.php"
|
||||
colors="true"
|
||||
>
|
||||
<testsuites>
|
||||
<testsuite name="Unit">
|
||||
<directory>tests/Unit</directory>
|
||||
</testsuite>
|
||||
<testsuite name="Feature">
|
||||
<directory>tests/Feature</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<source>
|
||||
<include>
|
||||
<directory>app</directory>
|
||||
</include>
|
||||
</source>
|
||||
<php>
|
||||
<env name="APP_ENV" value="testing"/>
|
||||
<env name="APP_MAINTENANCE_DRIVER" value="file"/>
|
||||
<env name="BCRYPT_ROUNDS" value="4"/>
|
||||
<env name="CACHE_STORE" value="array"/>
|
||||
<!-- <env name="DB_CONNECTION" value="sqlite"/> -->
|
||||
<!-- <env name="DB_DATABASE" value=":memory:"/> -->
|
||||
<env name="MAIL_MAILER" value="array"/>
|
||||
<env name="PULSE_ENABLED" value="false"/>
|
||||
<env name="QUEUE_CONNECTION" value="sync"/>
|
||||
<env name="SESSION_DRIVER" value="array"/>
|
||||
<env name="TELESCOPE_ENABLED" value="false"/>
|
||||
</php>
|
||||
</phpunit>
|
21
public/.htaccess
Normal file
21
public/.htaccess
Normal file
@ -0,0 +1,21 @@
|
||||
<IfModule mod_rewrite.c>
|
||||
<IfModule mod_negotiation.c>
|
||||
Options -MultiViews -Indexes
|
||||
</IfModule>
|
||||
|
||||
RewriteEngine On
|
||||
|
||||
# Handle Authorization Header
|
||||
RewriteCond %{HTTP:Authorization} .
|
||||
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
||||
|
||||
# Redirect Trailing Slashes If Not A Folder...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_URI} (.+)/$
|
||||
RewriteRule ^ %1 [L,R=301]
|
||||
|
||||
# Send Requests To Front Controller...
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteRule ^ index.php [L]
|
||||
</IfModule>
|
0
public/favicon.ico
Normal file
0
public/favicon.ico
Normal file
17
public/index.php
Normal file
17
public/index.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
define('LARAVEL_START', microtime(true));
|
||||
|
||||
// Determine if the application is in maintenance mode...
|
||||
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
|
||||
require $maintenance;
|
||||
}
|
||||
|
||||
// Register the Composer autoloader...
|
||||
require __DIR__.'/../vendor/autoload.php';
|
||||
|
||||
// Bootstrap Laravel and handle the request...
|
||||
(require_once __DIR__.'/../bootstrap/app.php')
|
||||
->handleRequest(Request::capture());
|
2
public/robots.txt
Normal file
2
public/robots.txt
Normal file
@ -0,0 +1,2 @@
|
||||
User-agent: *
|
||||
Disallow:
|
BIN
public/static/1731484241.jpg
Normal file
BIN
public/static/1731484241.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 235 KiB |
2085
public/static/libs/element-ui/CHANGELOG.en-US.md
Normal file
2085
public/static/libs/element-ui/CHANGELOG.en-US.md
Normal file
File diff suppressed because it is too large
Load Diff
2093
public/static/libs/element-ui/CHANGELOG.es.md
Normal file
2093
public/static/libs/element-ui/CHANGELOG.es.md
Normal file
File diff suppressed because it is too large
Load Diff
2085
public/static/libs/element-ui/CHANGELOG.fr-FR.md
Normal file
2085
public/static/libs/element-ui/CHANGELOG.fr-FR.md
Normal file
File diff suppressed because it is too large
Load Diff
2085
public/static/libs/element-ui/CHANGELOG.zh-CN.md
Normal file
2085
public/static/libs/element-ui/CHANGELOG.zh-CN.md
Normal file
File diff suppressed because it is too large
Load Diff
21
public/static/libs/element-ui/LICENSE
Normal file
21
public/static/libs/element-ui/LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016-present ElemeFE
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
148
public/static/libs/element-ui/README.md
Normal file
148
public/static/libs/element-ui/README.md
Normal file
@ -0,0 +1,148 @@
|
||||
<p align="center">
|
||||
<img src="https://cdn.rawgit.com/ElemeFE/element/dev/element_logo.svg">
|
||||
</p>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://travis-ci.org/ElemeFE/element">
|
||||
<img src="https://travis-ci.org/ElemeFE/element.svg?branch=master">
|
||||
</a>
|
||||
<a href="https://coveralls.io/github/ElemeFE/element?branch=master">
|
||||
<img src="https://coveralls.io/repos/github/ElemeFE/element/badge.svg?branch=master">
|
||||
</a>
|
||||
<a href="https://cdnjs.com/libraries/element-ui">
|
||||
<img src="https://img.shields.io/cdnjs/v/element-ui.svg">
|
||||
</a>
|
||||
<a href="https://www.npmjs.org/package/element-ui">
|
||||
<img src="https://img.shields.io/npm/v/element-ui.svg">
|
||||
</a>
|
||||
<a href="https://npmcharts.com/compare/element-ui?minimal=true">
|
||||
<img src="http://img.shields.io/npm/dm/element-ui.svg">
|
||||
</a>
|
||||
<br>
|
||||
<a href="http://img.badgesize.io/https://unpkg.com/element-ui/lib/index.js?compression=gzip&label=gzip%20size:%20JS">
|
||||
<img src="http://img.badgesize.io/https://unpkg.com/element-ui/lib/index.js?compression=gzip&label=gzip%20size:%20JS">
|
||||
</a>
|
||||
<a href="http://img.badgesize.io/https://unpkg.com/element-ui/lib/theme-chalk/index.css?compression=gzip&label=gzip%20size:%20CSS">
|
||||
<img src="http://img.badgesize.io/https://unpkg.com/element-ui/lib/theme-chalk/index.css?compression=gzip&label=gzip%20size:%20CSS">
|
||||
</a>
|
||||
<a href="#backers">
|
||||
<img src="https://opencollective.com/element/backers/badge.svg">
|
||||
</a>
|
||||
<a href="#sponsors">
|
||||
<img src="https://opencollective.com/element/sponsors/badge.svg">
|
||||
</a>
|
||||
<a href="LICENSE">
|
||||
<img src="https://img.shields.io/badge/License-MIT-yellow.svg">
|
||||
</a>
|
||||
</p>
|
||||
|
||||
> A Vue.js 2.0 UI Toolkit for Web.
|
||||
|
||||
Element will stay with Vue 2.x
|
||||
|
||||
For Vue 3.0, we recommend using [Element Plus](https://github.com/element-plus/element-plus)(Element Plus is a community develop project)
|
||||
|
||||
For MiniProgram development, we recommend using [MorJS](https://github.com/eleme/morjs)
|
||||
|
||||
## Links
|
||||
- Homepage and documentation
|
||||
- [International users](http://element.eleme.io/#/en-US)
|
||||
- [Chinese users](http://element.eleme.io/#/zh-CN)
|
||||
- [Spanish users](http://element.eleme.io/#/es)
|
||||
- [French users](http://element.eleme.io/#/fr-FR)
|
||||
- [awesome-element](https://github.com/ElementUI/awesome-element)
|
||||
- [FAQ](./FAQ.md)
|
||||
- [Vue.js 3.0 migration](https://github.com/element-plus/element-plus)
|
||||
- [Customize theme](http://element.eleme.io/#/en-US/component/custom-theme)
|
||||
- [Preview and generate theme online](https://elementui.github.io/theme-chalk-preview)
|
||||
- [Element for React](https://github.com/elemefe/element-react)
|
||||
- [Element for Angular](https://github.com/ElemeFE/element-angular)
|
||||
- [Atom helper](https://github.com/ElemeFE/element-helper)
|
||||
- [Visual Studio Code helper](https://github.com/ElemeFE/vscode-element-helper)
|
||||
- Starter kit
|
||||
- [element-starter](https://github.com/ElementUI/element-starter)
|
||||
- [element-in-laravel-starter](https://github.com/ElementUI/element-in-laravel-starter)
|
||||
- [Design resources](https://github.com/ElementUI/Resources)
|
||||
- Gitter
|
||||
- [International users](https://gitter.im/element-en/Lobby)
|
||||
- [Chinese users](https://gitter.im/ElemeFE/element)
|
||||
|
||||
## Install
|
||||
```shell
|
||||
npm install element-ui -S
|
||||
```
|
||||
|
||||
## Quick Start
|
||||
``` javascript
|
||||
import Vue from 'vue'
|
||||
import Element from 'element-ui'
|
||||
|
||||
Vue.use(Element)
|
||||
|
||||
// or
|
||||
import {
|
||||
Select,
|
||||
Button
|
||||
// ...
|
||||
} from 'element-ui'
|
||||
|
||||
Vue.component(Select.name, Select)
|
||||
Vue.component(Button.name, Button)
|
||||
```
|
||||
For more information, please refer to [Quick Start](http://element.eleme.io/#/en-US/component/quickstart) in our documentation.
|
||||
|
||||
## Browser Support
|
||||
Modern browsers and Internet Explorer 10+.
|
||||
|
||||
## Development
|
||||
Skip this part if you just want to use Element.
|
||||
|
||||
For those who are interested in contributing to Element, please refer to our contributing guide ([中文](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.zh-CN.md) | [English](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.en-US.md) | [Español](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.es.md) | [Français](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.fr-FR.md)) to see how to run this project.
|
||||
|
||||
## Changelog
|
||||
Detailed changes for each release are documented in the [release notes](https://github.com/ElemeFE/element/releases).
|
||||
|
||||
## FAQ
|
||||
We have collected some [frequently asked questions](https://github.com/ElemeFE/element/blob/master/FAQ.md). Before reporting an issue, please search if the FAQ has the answer to your problem.
|
||||
|
||||
## Contribution
|
||||
Please make sure to read the contributing guide ([中文](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.zh-CN.md) | [English](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.en-US.md) | [Español](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.es.md) | [Français](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.fr-FR.md)) before making a pull request.
|
||||
|
||||
## Special Thanks
|
||||
English documentation is brought to you by SwiftGG Translation Team:
|
||||
- [raychenfj](https://github.com/raychenfj)
|
||||
- [kevin](http://thekevin.cn/)
|
||||
- [曾小涛](https://github.com/zengxiaotao)
|
||||
- [湾仔王二](https://github.com/wanzaiwanger)
|
||||
- [BlooDLine](http://www.ibloodline.com/)
|
||||
- [陈铭嘉](https://chenmingjia.github.io/)
|
||||
- [千叶知风](http://mpc6.com/)
|
||||
- [梁杰](http://numbbbbb.com)
|
||||
- [Changing](https://github.com/sunzhuo11)
|
||||
- [mmoaay](https://github.com/mmoaay)
|
||||
|
||||
Spanish documentation is made possible by these community developers:
|
||||
- [adavie1](https://github.com/adavie1)
|
||||
- [carmencitaqiu](https://github.com/carmencitaqiu)
|
||||
- [coderdiaz](https://github.com/coderdiaz)
|
||||
- [fedegar33](https://github.com/fedegar33)
|
||||
- [Gonzalo2310](https://github.com/Gonzalo2310)
|
||||
- [lesterbx](https://github.com/lesterbx)
|
||||
- [ProgramerGuy](https://github.com/ProgramerGuy)
|
||||
- [SantiagoGdaR](https://github.com/SantiagoGdaR)
|
||||
- [sigfriedCub1990](https://github.com/sigfriedCub1990)
|
||||
- [thechosenjuan](https://github.com/thechosenjuan)
|
||||
|
||||
French documentation is made possible by these community developers:
|
||||
- [smalesys](https://github.com/smalesys)
|
||||
- [blombard](https://github.com/blombard)
|
||||
|
||||
## Join Discussion Group
|
||||
|
||||
Scan the QR code using [Dingtalk App](https://www.dingtalk.com/) to join in discussion group :
|
||||
|
||||
<img alt="Join Discusion Group" src="https://user-images.githubusercontent.com/17680888/93177882-0ae92d80-f766-11ea-870d-3fa2d7f06454.png" width="300">
|
||||
|
||||
|
||||
## LICENSE
|
||||
[MIT](LICENSE)
|
419
public/static/libs/element-ui/lib/alert.js
Normal file
419
public/static/libs/element-ui/lib/alert.js
Normal file
@ -0,0 +1,419 @@
|
||||
module.exports =
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/dist/";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 102);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
||||
// This module is a runtime utility for cleaner component module output and will
|
||||
// be included in the final webpack user bundle.
|
||||
|
||||
function normalizeComponent (
|
||||
scriptExports,
|
||||
render,
|
||||
staticRenderFns,
|
||||
functionalTemplate,
|
||||
injectStyles,
|
||||
scopeId,
|
||||
moduleIdentifier, /* server only */
|
||||
shadowMode /* vue-cli only */
|
||||
) {
|
||||
// Vue.extend constructor export interop
|
||||
var options = typeof scriptExports === 'function'
|
||||
? scriptExports.options
|
||||
: scriptExports
|
||||
|
||||
// render functions
|
||||
if (render) {
|
||||
options.render = render
|
||||
options.staticRenderFns = staticRenderFns
|
||||
options._compiled = true
|
||||
}
|
||||
|
||||
// functional template
|
||||
if (functionalTemplate) {
|
||||
options.functional = true
|
||||
}
|
||||
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = 'data-v-' + scopeId
|
||||
}
|
||||
|
||||
var hook
|
||||
if (moduleIdentifier) { // server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
// inject component styles
|
||||
if (injectStyles) {
|
||||
injectStyles.call(this, context)
|
||||
}
|
||||
// register component module identifier for async chunk inferrence
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier)
|
||||
}
|
||||
}
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook
|
||||
} else if (injectStyles) {
|
||||
hook = shadowMode
|
||||
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
||||
: injectStyles
|
||||
}
|
||||
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// for template-only hot-reload because in that case the render fn doesn't
|
||||
// go through the normalizer
|
||||
options._injectStyles = hook
|
||||
// register for functioal component in vue file
|
||||
var originalRender = options.render
|
||||
options.render = function renderWithStyleInjection (h, context) {
|
||||
hook.call(context)
|
||||
return originalRender(h, context)
|
||||
}
|
||||
} else {
|
||||
// inject component registration as beforeCreate hook
|
||||
var existing = options.beforeCreate
|
||||
options.beforeCreate = existing
|
||||
? [].concat(existing, hook)
|
||||
: [hook]
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exports: scriptExports,
|
||||
options: options
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 102:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/alert/src/main.vue?vue&type=template&id=6e53341b&
|
||||
var render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c("transition", { attrs: { name: "el-alert-fade" } }, [
|
||||
_c(
|
||||
"div",
|
||||
{
|
||||
directives: [
|
||||
{
|
||||
name: "show",
|
||||
rawName: "v-show",
|
||||
value: _vm.visible,
|
||||
expression: "visible"
|
||||
}
|
||||
],
|
||||
staticClass: "el-alert",
|
||||
class: [
|
||||
_vm.typeClass,
|
||||
_vm.center ? "is-center" : "",
|
||||
"is-" + _vm.effect
|
||||
],
|
||||
attrs: { role: "alert" }
|
||||
},
|
||||
[
|
||||
_vm.showIcon
|
||||
? _c("i", {
|
||||
staticClass: "el-alert__icon",
|
||||
class: [_vm.iconClass, _vm.isBigIcon]
|
||||
})
|
||||
: _vm._e(),
|
||||
_c("div", { staticClass: "el-alert__content" }, [
|
||||
_vm.title || _vm.$slots.title
|
||||
? _c(
|
||||
"span",
|
||||
{ staticClass: "el-alert__title", class: [_vm.isBoldTitle] },
|
||||
[_vm._t("title", [_vm._v(_vm._s(_vm.title))])],
|
||||
2
|
||||
)
|
||||
: _vm._e(),
|
||||
_vm.$slots.default && !_vm.description
|
||||
? _c(
|
||||
"p",
|
||||
{ staticClass: "el-alert__description" },
|
||||
[_vm._t("default")],
|
||||
2
|
||||
)
|
||||
: _vm._e(),
|
||||
_vm.description && !_vm.$slots.default
|
||||
? _c("p", { staticClass: "el-alert__description" }, [
|
||||
_vm._v(_vm._s(_vm.description))
|
||||
])
|
||||
: _vm._e(),
|
||||
_c(
|
||||
"i",
|
||||
{
|
||||
directives: [
|
||||
{
|
||||
name: "show",
|
||||
rawName: "v-show",
|
||||
value: _vm.closable,
|
||||
expression: "closable"
|
||||
}
|
||||
],
|
||||
staticClass: "el-alert__closebtn",
|
||||
class: {
|
||||
"is-customed": _vm.closeText !== "",
|
||||
"el-icon-close": _vm.closeText === ""
|
||||
},
|
||||
on: {
|
||||
click: function($event) {
|
||||
_vm.close()
|
||||
}
|
||||
}
|
||||
},
|
||||
[_vm._v(_vm._s(_vm.closeText))]
|
||||
)
|
||||
])
|
||||
]
|
||||
)
|
||||
])
|
||||
}
|
||||
var staticRenderFns = []
|
||||
render._withStripped = true
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/alert/src/main.vue?vue&type=template&id=6e53341b&
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/alert/src/main.vue?vue&type=script&lang=js&
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
var TYPE_CLASSES_MAP = {
|
||||
'success': 'el-icon-success',
|
||||
'warning': 'el-icon-warning',
|
||||
'error': 'el-icon-error'
|
||||
};
|
||||
/* harmony default export */ var mainvue_type_script_lang_js_ = ({
|
||||
name: 'ElAlert',
|
||||
|
||||
props: {
|
||||
title: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
description: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
type: {
|
||||
type: String,
|
||||
default: 'info'
|
||||
},
|
||||
closable: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
closeText: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
showIcon: Boolean,
|
||||
center: Boolean,
|
||||
effect: {
|
||||
type: String,
|
||||
default: 'light',
|
||||
validator: function validator(value) {
|
||||
return ['light', 'dark'].indexOf(value) !== -1;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
data: function data() {
|
||||
return {
|
||||
visible: true
|
||||
};
|
||||
},
|
||||
|
||||
|
||||
methods: {
|
||||
close: function close() {
|
||||
this.visible = false;
|
||||
this.$emit('close');
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
typeClass: function typeClass() {
|
||||
return 'el-alert--' + this.type;
|
||||
},
|
||||
iconClass: function iconClass() {
|
||||
return TYPE_CLASSES_MAP[this.type] || 'el-icon-info';
|
||||
},
|
||||
isBigIcon: function isBigIcon() {
|
||||
return this.description || this.$slots.default ? 'is-big' : '';
|
||||
},
|
||||
isBoldTitle: function isBoldTitle() {
|
||||
return this.description || this.$slots.default ? 'is-bold' : '';
|
||||
}
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/alert/src/main.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
||||
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
||||
var componentNormalizer = __webpack_require__(0);
|
||||
|
||||
// CONCATENATED MODULE: ./packages/alert/src/main.vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(componentNormalizer["a" /* default */])(
|
||||
src_mainvue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "packages/alert/src/main.vue"
|
||||
/* harmony default export */ var main = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/alert/index.js
|
||||
|
||||
|
||||
/* istanbul ignore next */
|
||||
main.install = function (Vue) {
|
||||
Vue.component(main.name, main);
|
||||
};
|
||||
|
||||
/* harmony default export */ var packages_alert = __webpack_exports__["default"] = (main);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
276
public/static/libs/element-ui/lib/aside.js
Normal file
276
public/static/libs/element-ui/lib/aside.js
Normal file
@ -0,0 +1,276 @@
|
||||
module.exports =
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/dist/";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 118);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
||||
// This module is a runtime utility for cleaner component module output and will
|
||||
// be included in the final webpack user bundle.
|
||||
|
||||
function normalizeComponent (
|
||||
scriptExports,
|
||||
render,
|
||||
staticRenderFns,
|
||||
functionalTemplate,
|
||||
injectStyles,
|
||||
scopeId,
|
||||
moduleIdentifier, /* server only */
|
||||
shadowMode /* vue-cli only */
|
||||
) {
|
||||
// Vue.extend constructor export interop
|
||||
var options = typeof scriptExports === 'function'
|
||||
? scriptExports.options
|
||||
: scriptExports
|
||||
|
||||
// render functions
|
||||
if (render) {
|
||||
options.render = render
|
||||
options.staticRenderFns = staticRenderFns
|
||||
options._compiled = true
|
||||
}
|
||||
|
||||
// functional template
|
||||
if (functionalTemplate) {
|
||||
options.functional = true
|
||||
}
|
||||
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = 'data-v-' + scopeId
|
||||
}
|
||||
|
||||
var hook
|
||||
if (moduleIdentifier) { // server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
// inject component styles
|
||||
if (injectStyles) {
|
||||
injectStyles.call(this, context)
|
||||
}
|
||||
// register component module identifier for async chunk inferrence
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier)
|
||||
}
|
||||
}
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook
|
||||
} else if (injectStyles) {
|
||||
hook = shadowMode
|
||||
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
||||
: injectStyles
|
||||
}
|
||||
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// for template-only hot-reload because in that case the render fn doesn't
|
||||
// go through the normalizer
|
||||
options._injectStyles = hook
|
||||
// register for functioal component in vue file
|
||||
var originalRender = options.render
|
||||
options.render = function renderWithStyleInjection (h, context) {
|
||||
hook.call(context)
|
||||
return originalRender(h, context)
|
||||
}
|
||||
} else {
|
||||
// inject component registration as beforeCreate hook
|
||||
var existing = options.beforeCreate
|
||||
options.beforeCreate = existing
|
||||
? [].concat(existing, hook)
|
||||
: [hook]
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exports: scriptExports,
|
||||
options: options
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 118:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/aside/src/main.vue?vue&type=template&id=03411dbf&
|
||||
var render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c(
|
||||
"aside",
|
||||
{ staticClass: "el-aside", style: { width: _vm.width } },
|
||||
[_vm._t("default")],
|
||||
2
|
||||
)
|
||||
}
|
||||
var staticRenderFns = []
|
||||
render._withStripped = true
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/aside/src/main.vue?vue&type=template&id=03411dbf&
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/aside/src/main.vue?vue&type=script&lang=js&
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
/* harmony default export */ var mainvue_type_script_lang_js_ = ({
|
||||
name: 'ElAside',
|
||||
|
||||
componentName: 'ElAside',
|
||||
|
||||
props: {
|
||||
width: {
|
||||
type: String,
|
||||
default: '300px'
|
||||
}
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/aside/src/main.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
||||
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
||||
var componentNormalizer = __webpack_require__(0);
|
||||
|
||||
// CONCATENATED MODULE: ./packages/aside/src/main.vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(componentNormalizer["a" /* default */])(
|
||||
src_mainvue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "packages/aside/src/main.vue"
|
||||
/* harmony default export */ var main = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/aside/index.js
|
||||
|
||||
|
||||
/* istanbul ignore next */
|
||||
main.install = function (Vue) {
|
||||
Vue.component(main.name, main);
|
||||
};
|
||||
|
||||
/* harmony default export */ var aside = __webpack_exports__["default"] = (main);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
952
public/static/libs/element-ui/lib/autocomplete.js
Normal file
952
public/static/libs/element-ui/lib/autocomplete.js
Normal file
@ -0,0 +1,952 @@
|
||||
module.exports =
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/dist/";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 65);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
||||
// This module is a runtime utility for cleaner component module output and will
|
||||
// be included in the final webpack user bundle.
|
||||
|
||||
function normalizeComponent (
|
||||
scriptExports,
|
||||
render,
|
||||
staticRenderFns,
|
||||
functionalTemplate,
|
||||
injectStyles,
|
||||
scopeId,
|
||||
moduleIdentifier, /* server only */
|
||||
shadowMode /* vue-cli only */
|
||||
) {
|
||||
// Vue.extend constructor export interop
|
||||
var options = typeof scriptExports === 'function'
|
||||
? scriptExports.options
|
||||
: scriptExports
|
||||
|
||||
// render functions
|
||||
if (render) {
|
||||
options.render = render
|
||||
options.staticRenderFns = staticRenderFns
|
||||
options._compiled = true
|
||||
}
|
||||
|
||||
// functional template
|
||||
if (functionalTemplate) {
|
||||
options.functional = true
|
||||
}
|
||||
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = 'data-v-' + scopeId
|
||||
}
|
||||
|
||||
var hook
|
||||
if (moduleIdentifier) { // server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
// inject component styles
|
||||
if (injectStyles) {
|
||||
injectStyles.call(this, context)
|
||||
}
|
||||
// register component module identifier for async chunk inferrence
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier)
|
||||
}
|
||||
}
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook
|
||||
} else if (injectStyles) {
|
||||
hook = shadowMode
|
||||
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
||||
: injectStyles
|
||||
}
|
||||
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// for template-only hot-reload because in that case the render fn doesn't
|
||||
// go through the normalizer
|
||||
options._injectStyles = hook
|
||||
// register for functioal component in vue file
|
||||
var originalRender = options.render
|
||||
options.render = function renderWithStyleInjection (h, context) {
|
||||
hook.call(context)
|
||||
return originalRender(h, context)
|
||||
}
|
||||
} else {
|
||||
// inject component registration as beforeCreate hook
|
||||
var existing = options.beforeCreate
|
||||
options.beforeCreate = existing
|
||||
? [].concat(existing, hook)
|
||||
: [hook]
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exports: scriptExports,
|
||||
options: options
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 10:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/input");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 11:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/mixins/migrating");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 12:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/utils/clickoutside");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 15:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/scrollbar");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 19:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("throttle-debounce/debounce");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 22:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/mixins/focus");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 3:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/utils/util");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 4:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/mixins/emitter");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 5:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/utils/vue-popper");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 65:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/autocomplete/src/autocomplete.vue?vue&type=template&id=152f2ee6&
|
||||
var render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c(
|
||||
"div",
|
||||
{
|
||||
directives: [
|
||||
{
|
||||
name: "clickoutside",
|
||||
rawName: "v-clickoutside",
|
||||
value: _vm.close,
|
||||
expression: "close"
|
||||
}
|
||||
],
|
||||
staticClass: "el-autocomplete",
|
||||
attrs: {
|
||||
"aria-haspopup": "listbox",
|
||||
role: "combobox",
|
||||
"aria-expanded": _vm.suggestionVisible,
|
||||
"aria-owns": _vm.id
|
||||
}
|
||||
},
|
||||
[
|
||||
_c(
|
||||
"el-input",
|
||||
_vm._b(
|
||||
{
|
||||
ref: "input",
|
||||
on: {
|
||||
input: _vm.handleInput,
|
||||
change: _vm.handleChange,
|
||||
focus: _vm.handleFocus,
|
||||
blur: _vm.handleBlur,
|
||||
clear: _vm.handleClear
|
||||
},
|
||||
nativeOn: {
|
||||
keydown: [
|
||||
function($event) {
|
||||
if (
|
||||
!("button" in $event) &&
|
||||
_vm._k($event.keyCode, "up", 38, $event.key, [
|
||||
"Up",
|
||||
"ArrowUp"
|
||||
])
|
||||
) {
|
||||
return null
|
||||
}
|
||||
$event.preventDefault()
|
||||
_vm.highlight(_vm.highlightedIndex - 1)
|
||||
},
|
||||
function($event) {
|
||||
if (
|
||||
!("button" in $event) &&
|
||||
_vm._k($event.keyCode, "down", 40, $event.key, [
|
||||
"Down",
|
||||
"ArrowDown"
|
||||
])
|
||||
) {
|
||||
return null
|
||||
}
|
||||
$event.preventDefault()
|
||||
_vm.highlight(_vm.highlightedIndex + 1)
|
||||
},
|
||||
function($event) {
|
||||
if (
|
||||
!("button" in $event) &&
|
||||
_vm._k($event.keyCode, "enter", 13, $event.key, "Enter")
|
||||
) {
|
||||
return null
|
||||
}
|
||||
return _vm.handleKeyEnter($event)
|
||||
},
|
||||
function($event) {
|
||||
if (
|
||||
!("button" in $event) &&
|
||||
_vm._k($event.keyCode, "tab", 9, $event.key, "Tab")
|
||||
) {
|
||||
return null
|
||||
}
|
||||
return _vm.close($event)
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"el-input",
|
||||
[_vm.$props, _vm.$attrs],
|
||||
false
|
||||
),
|
||||
[
|
||||
_vm.$slots.prepend
|
||||
? _c("template", { slot: "prepend" }, [_vm._t("prepend")], 2)
|
||||
: _vm._e(),
|
||||
_vm.$slots.append
|
||||
? _c("template", { slot: "append" }, [_vm._t("append")], 2)
|
||||
: _vm._e(),
|
||||
_vm.$slots.prefix
|
||||
? _c("template", { slot: "prefix" }, [_vm._t("prefix")], 2)
|
||||
: _vm._e(),
|
||||
_vm.$slots.suffix
|
||||
? _c("template", { slot: "suffix" }, [_vm._t("suffix")], 2)
|
||||
: _vm._e()
|
||||
],
|
||||
2
|
||||
),
|
||||
_c(
|
||||
"el-autocomplete-suggestions",
|
||||
{
|
||||
ref: "suggestions",
|
||||
class: [_vm.popperClass ? _vm.popperClass : ""],
|
||||
attrs: {
|
||||
"visible-arrow": "",
|
||||
"popper-options": _vm.popperOptions,
|
||||
"append-to-body": _vm.popperAppendToBody,
|
||||
placement: _vm.placement,
|
||||
id: _vm.id
|
||||
}
|
||||
},
|
||||
_vm._l(_vm.suggestions, function(item, index) {
|
||||
return _c(
|
||||
"li",
|
||||
{
|
||||
key: index,
|
||||
class: { highlighted: _vm.highlightedIndex === index },
|
||||
attrs: {
|
||||
id: _vm.id + "-item-" + index,
|
||||
role: "option",
|
||||
"aria-selected": _vm.highlightedIndex === index
|
||||
},
|
||||
on: {
|
||||
click: function($event) {
|
||||
_vm.select(item)
|
||||
}
|
||||
}
|
||||
},
|
||||
[
|
||||
_vm._t(
|
||||
"default",
|
||||
[
|
||||
_vm._v("\n " + _vm._s(item[_vm.valueKey]) + "\n ")
|
||||
],
|
||||
{ item: item }
|
||||
)
|
||||
],
|
||||
2
|
||||
)
|
||||
}),
|
||||
0
|
||||
)
|
||||
],
|
||||
1
|
||||
)
|
||||
}
|
||||
var staticRenderFns = []
|
||||
render._withStripped = true
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/autocomplete/src/autocomplete.vue?vue&type=template&id=152f2ee6&
|
||||
|
||||
// EXTERNAL MODULE: external "throttle-debounce/debounce"
|
||||
var debounce_ = __webpack_require__(19);
|
||||
var debounce_default = /*#__PURE__*/__webpack_require__.n(debounce_);
|
||||
|
||||
// EXTERNAL MODULE: external "element-ui/lib/input"
|
||||
var input_ = __webpack_require__(10);
|
||||
var input_default = /*#__PURE__*/__webpack_require__.n(input_);
|
||||
|
||||
// EXTERNAL MODULE: external "element-ui/lib/utils/clickoutside"
|
||||
var clickoutside_ = __webpack_require__(12);
|
||||
var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/autocomplete/src/autocomplete-suggestions.vue?vue&type=template&id=cd10dcf0&
|
||||
var autocomplete_suggestionsvue_type_template_id_cd10dcf0_render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c(
|
||||
"transition",
|
||||
{ attrs: { name: "el-zoom-in-top" }, on: { "after-leave": _vm.doDestroy } },
|
||||
[
|
||||
_c(
|
||||
"div",
|
||||
{
|
||||
directives: [
|
||||
{
|
||||
name: "show",
|
||||
rawName: "v-show",
|
||||
value: _vm.showPopper,
|
||||
expression: "showPopper"
|
||||
}
|
||||
],
|
||||
staticClass: "el-autocomplete-suggestion el-popper",
|
||||
class: {
|
||||
"is-loading": !_vm.parent.hideLoading && _vm.parent.loading
|
||||
},
|
||||
style: { width: _vm.dropdownWidth },
|
||||
attrs: { role: "region" }
|
||||
},
|
||||
[
|
||||
_c(
|
||||
"el-scrollbar",
|
||||
{
|
||||
attrs: {
|
||||
tag: "ul",
|
||||
"wrap-class": "el-autocomplete-suggestion__wrap",
|
||||
"view-class": "el-autocomplete-suggestion__list"
|
||||
}
|
||||
},
|
||||
[
|
||||
!_vm.parent.hideLoading && _vm.parent.loading
|
||||
? _c("li", [_c("i", { staticClass: "el-icon-loading" })])
|
||||
: _vm._t("default")
|
||||
],
|
||||
2
|
||||
)
|
||||
],
|
||||
1
|
||||
)
|
||||
]
|
||||
)
|
||||
}
|
||||
var autocomplete_suggestionsvue_type_template_id_cd10dcf0_staticRenderFns = []
|
||||
autocomplete_suggestionsvue_type_template_id_cd10dcf0_render._withStripped = true
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/autocomplete/src/autocomplete-suggestions.vue?vue&type=template&id=cd10dcf0&
|
||||
|
||||
// EXTERNAL MODULE: external "element-ui/lib/utils/vue-popper"
|
||||
var vue_popper_ = __webpack_require__(5);
|
||||
var vue_popper_default = /*#__PURE__*/__webpack_require__.n(vue_popper_);
|
||||
|
||||
// EXTERNAL MODULE: external "element-ui/lib/mixins/emitter"
|
||||
var emitter_ = __webpack_require__(4);
|
||||
var emitter_default = /*#__PURE__*/__webpack_require__.n(emitter_);
|
||||
|
||||
// EXTERNAL MODULE: external "element-ui/lib/scrollbar"
|
||||
var scrollbar_ = __webpack_require__(15);
|
||||
var scrollbar_default = /*#__PURE__*/__webpack_require__.n(scrollbar_);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/autocomplete/src/autocomplete-suggestions.vue?vue&type=script&lang=js&
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* harmony default export */ var autocomplete_suggestionsvue_type_script_lang_js_ = ({
|
||||
components: { ElScrollbar: scrollbar_default.a },
|
||||
mixins: [vue_popper_default.a, emitter_default.a],
|
||||
|
||||
componentName: 'ElAutocompleteSuggestions',
|
||||
|
||||
data: function data() {
|
||||
return {
|
||||
parent: this.$parent,
|
||||
dropdownWidth: ''
|
||||
};
|
||||
},
|
||||
|
||||
|
||||
props: {
|
||||
options: {
|
||||
default: function _default() {
|
||||
return {
|
||||
gpuAcceleration: false
|
||||
};
|
||||
}
|
||||
},
|
||||
id: String
|
||||
},
|
||||
|
||||
methods: {
|
||||
select: function select(item) {
|
||||
this.dispatch('ElAutocomplete', 'item-click', item);
|
||||
}
|
||||
},
|
||||
|
||||
updated: function updated() {
|
||||
var _this = this;
|
||||
|
||||
this.$nextTick(function (_) {
|
||||
_this.popperJS && _this.updatePopper();
|
||||
});
|
||||
},
|
||||
mounted: function mounted() {
|
||||
this.$parent.popperElm = this.popperElm = this.$el;
|
||||
this.referenceElm = this.$parent.$refs.input.$refs.input || this.$parent.$refs.input.$refs.textarea;
|
||||
this.referenceList = this.$el.querySelector('.el-autocomplete-suggestion__list');
|
||||
this.referenceList.setAttribute('role', 'listbox');
|
||||
this.referenceList.setAttribute('id', this.id);
|
||||
},
|
||||
created: function created() {
|
||||
var _this2 = this;
|
||||
|
||||
this.$on('visible', function (val, inputWidth) {
|
||||
_this2.dropdownWidth = inputWidth + 'px';
|
||||
_this2.showPopper = val;
|
||||
});
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/autocomplete/src/autocomplete-suggestions.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_autocomplete_suggestionsvue_type_script_lang_js_ = (autocomplete_suggestionsvue_type_script_lang_js_);
|
||||
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
||||
var componentNormalizer = __webpack_require__(0);
|
||||
|
||||
// CONCATENATED MODULE: ./packages/autocomplete/src/autocomplete-suggestions.vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(componentNormalizer["a" /* default */])(
|
||||
src_autocomplete_suggestionsvue_type_script_lang_js_,
|
||||
autocomplete_suggestionsvue_type_template_id_cd10dcf0_render,
|
||||
autocomplete_suggestionsvue_type_template_id_cd10dcf0_staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "packages/autocomplete/src/autocomplete-suggestions.vue"
|
||||
/* harmony default export */ var autocomplete_suggestions = (component.exports);
|
||||
// EXTERNAL MODULE: external "element-ui/lib/mixins/migrating"
|
||||
var migrating_ = __webpack_require__(11);
|
||||
var migrating_default = /*#__PURE__*/__webpack_require__.n(migrating_);
|
||||
|
||||
// EXTERNAL MODULE: external "element-ui/lib/utils/util"
|
||||
var util_ = __webpack_require__(3);
|
||||
|
||||
// EXTERNAL MODULE: external "element-ui/lib/mixins/focus"
|
||||
var focus_ = __webpack_require__(22);
|
||||
var focus_default = /*#__PURE__*/__webpack_require__.n(focus_);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/autocomplete/src/autocomplete.vue?vue&type=script&lang=js&
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* harmony default export */ var autocompletevue_type_script_lang_js_ = ({
|
||||
name: 'ElAutocomplete',
|
||||
|
||||
mixins: [emitter_default.a, focus_default()('input'), migrating_default.a],
|
||||
|
||||
inheritAttrs: false,
|
||||
|
||||
componentName: 'ElAutocomplete',
|
||||
|
||||
components: {
|
||||
ElInput: input_default.a,
|
||||
ElAutocompleteSuggestions: autocomplete_suggestions
|
||||
},
|
||||
|
||||
directives: { Clickoutside: clickoutside_default.a },
|
||||
|
||||
props: {
|
||||
valueKey: {
|
||||
type: String,
|
||||
default: 'value'
|
||||
},
|
||||
popperClass: String,
|
||||
popperOptions: Object,
|
||||
placeholder: String,
|
||||
clearable: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
disabled: Boolean,
|
||||
name: String,
|
||||
size: String,
|
||||
value: String,
|
||||
maxlength: Number,
|
||||
minlength: Number,
|
||||
autofocus: Boolean,
|
||||
fetchSuggestions: Function,
|
||||
triggerOnFocus: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
customItem: String,
|
||||
selectWhenUnmatched: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
prefixIcon: String,
|
||||
suffixIcon: String,
|
||||
label: String,
|
||||
debounce: {
|
||||
type: Number,
|
||||
default: 300
|
||||
},
|
||||
placement: {
|
||||
type: String,
|
||||
default: 'bottom-start'
|
||||
},
|
||||
hideLoading: Boolean,
|
||||
popperAppendToBody: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
highlightFirstItem: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
},
|
||||
data: function data() {
|
||||
return {
|
||||
activated: false,
|
||||
suggestions: [],
|
||||
loading: false,
|
||||
highlightedIndex: -1,
|
||||
suggestionDisabled: false
|
||||
};
|
||||
},
|
||||
|
||||
computed: {
|
||||
suggestionVisible: function suggestionVisible() {
|
||||
var suggestions = this.suggestions;
|
||||
var isValidData = Array.isArray(suggestions) && suggestions.length > 0;
|
||||
return (isValidData || this.loading) && this.activated;
|
||||
},
|
||||
id: function id() {
|
||||
return 'el-autocomplete-' + Object(util_["generateId"])();
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
suggestionVisible: function suggestionVisible(val) {
|
||||
var $input = this.getInput();
|
||||
if ($input) {
|
||||
this.broadcast('ElAutocompleteSuggestions', 'visible', [val, $input.offsetWidth]);
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getMigratingConfig: function getMigratingConfig() {
|
||||
return {
|
||||
props: {
|
||||
'custom-item': 'custom-item is removed, use scoped slot instead.',
|
||||
'props': 'props is removed, use value-key instead.'
|
||||
}
|
||||
};
|
||||
},
|
||||
getData: function getData(queryString) {
|
||||
var _this = this;
|
||||
|
||||
if (this.suggestionDisabled) {
|
||||
return;
|
||||
}
|
||||
this.loading = true;
|
||||
this.fetchSuggestions(queryString, function (suggestions) {
|
||||
_this.loading = false;
|
||||
if (_this.suggestionDisabled) {
|
||||
return;
|
||||
}
|
||||
if (Array.isArray(suggestions)) {
|
||||
_this.suggestions = suggestions;
|
||||
_this.highlightedIndex = _this.highlightFirstItem ? 0 : -1;
|
||||
} else {
|
||||
console.error('[Element Error][Autocomplete]autocomplete suggestions must be an array');
|
||||
}
|
||||
});
|
||||
},
|
||||
handleInput: function handleInput(value) {
|
||||
this.$emit('input', value);
|
||||
this.suggestionDisabled = false;
|
||||
if (!this.triggerOnFocus && !value) {
|
||||
this.suggestionDisabled = true;
|
||||
this.suggestions = [];
|
||||
return;
|
||||
}
|
||||
this.debouncedGetData(value);
|
||||
},
|
||||
handleChange: function handleChange(value) {
|
||||
this.$emit('change', value);
|
||||
},
|
||||
handleFocus: function handleFocus(event) {
|
||||
this.activated = true;
|
||||
this.$emit('focus', event);
|
||||
if (this.triggerOnFocus) {
|
||||
this.debouncedGetData(this.value);
|
||||
}
|
||||
},
|
||||
handleBlur: function handleBlur(event) {
|
||||
this.$emit('blur', event);
|
||||
},
|
||||
handleClear: function handleClear() {
|
||||
this.activated = false;
|
||||
this.$emit('clear');
|
||||
},
|
||||
close: function close(e) {
|
||||
this.activated = false;
|
||||
},
|
||||
handleKeyEnter: function handleKeyEnter(e) {
|
||||
var _this2 = this;
|
||||
|
||||
if (this.suggestionVisible && this.highlightedIndex >= 0 && this.highlightedIndex < this.suggestions.length) {
|
||||
e.preventDefault();
|
||||
this.select(this.suggestions[this.highlightedIndex]);
|
||||
} else if (this.selectWhenUnmatched) {
|
||||
this.$emit('select', { value: this.value });
|
||||
this.$nextTick(function (_) {
|
||||
_this2.suggestions = [];
|
||||
_this2.highlightedIndex = -1;
|
||||
});
|
||||
}
|
||||
},
|
||||
select: function select(item) {
|
||||
var _this3 = this;
|
||||
|
||||
this.$emit('input', item[this.valueKey]);
|
||||
this.$emit('select', item);
|
||||
this.$nextTick(function (_) {
|
||||
_this3.suggestions = [];
|
||||
_this3.highlightedIndex = -1;
|
||||
});
|
||||
},
|
||||
highlight: function highlight(index) {
|
||||
if (!this.suggestionVisible || this.loading) {
|
||||
return;
|
||||
}
|
||||
if (index < 0) {
|
||||
this.highlightedIndex = -1;
|
||||
return;
|
||||
}
|
||||
if (index >= this.suggestions.length) {
|
||||
index = this.suggestions.length - 1;
|
||||
}
|
||||
var suggestion = this.$refs.suggestions.$el.querySelector('.el-autocomplete-suggestion__wrap');
|
||||
var suggestionList = suggestion.querySelectorAll('.el-autocomplete-suggestion__list li');
|
||||
|
||||
var highlightItem = suggestionList[index];
|
||||
var scrollTop = suggestion.scrollTop;
|
||||
var offsetTop = highlightItem.offsetTop;
|
||||
|
||||
if (offsetTop + highlightItem.scrollHeight > scrollTop + suggestion.clientHeight) {
|
||||
suggestion.scrollTop += highlightItem.scrollHeight;
|
||||
}
|
||||
if (offsetTop < scrollTop) {
|
||||
suggestion.scrollTop -= highlightItem.scrollHeight;
|
||||
}
|
||||
this.highlightedIndex = index;
|
||||
var $input = this.getInput();
|
||||
$input.setAttribute('aria-activedescendant', this.id + '-item-' + this.highlightedIndex);
|
||||
},
|
||||
getInput: function getInput() {
|
||||
return this.$refs.input.getInput();
|
||||
}
|
||||
},
|
||||
mounted: function mounted() {
|
||||
var _this4 = this;
|
||||
|
||||
this.debouncedGetData = debounce_default()(this.debounce, this.getData);
|
||||
this.$on('item-click', function (item) {
|
||||
_this4.select(item);
|
||||
});
|
||||
var $input = this.getInput();
|
||||
$input.setAttribute('role', 'textbox');
|
||||
$input.setAttribute('aria-autocomplete', 'list');
|
||||
$input.setAttribute('aria-controls', 'id');
|
||||
$input.setAttribute('aria-activedescendant', this.id + '-item-' + this.highlightedIndex);
|
||||
},
|
||||
beforeDestroy: function beforeDestroy() {
|
||||
this.$refs.suggestions.$destroy();
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/autocomplete/src/autocomplete.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_autocompletevue_type_script_lang_js_ = (autocompletevue_type_script_lang_js_);
|
||||
// CONCATENATED MODULE: ./packages/autocomplete/src/autocomplete.vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var autocomplete_component = Object(componentNormalizer["a" /* default */])(
|
||||
src_autocompletevue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var autocomplete_api; }
|
||||
autocomplete_component.options.__file = "packages/autocomplete/src/autocomplete.vue"
|
||||
/* harmony default export */ var autocomplete = (autocomplete_component.exports);
|
||||
// CONCATENATED MODULE: ./packages/autocomplete/index.js
|
||||
|
||||
|
||||
/* istanbul ignore next */
|
||||
autocomplete.install = function (Vue) {
|
||||
Vue.component(autocomplete.name, autocomplete);
|
||||
};
|
||||
|
||||
/* harmony default export */ var packages_autocomplete = __webpack_exports__["default"] = (autocomplete);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
362
public/static/libs/element-ui/lib/avatar.js
Normal file
362
public/static/libs/element-ui/lib/avatar.js
Normal file
@ -0,0 +1,362 @@
|
||||
module.exports =
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/dist/";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 135);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
||||
// This module is a runtime utility for cleaner component module output and will
|
||||
// be included in the final webpack user bundle.
|
||||
|
||||
function normalizeComponent (
|
||||
scriptExports,
|
||||
render,
|
||||
staticRenderFns,
|
||||
functionalTemplate,
|
||||
injectStyles,
|
||||
scopeId,
|
||||
moduleIdentifier, /* server only */
|
||||
shadowMode /* vue-cli only */
|
||||
) {
|
||||
// Vue.extend constructor export interop
|
||||
var options = typeof scriptExports === 'function'
|
||||
? scriptExports.options
|
||||
: scriptExports
|
||||
|
||||
// render functions
|
||||
if (render) {
|
||||
options.render = render
|
||||
options.staticRenderFns = staticRenderFns
|
||||
options._compiled = true
|
||||
}
|
||||
|
||||
// functional template
|
||||
if (functionalTemplate) {
|
||||
options.functional = true
|
||||
}
|
||||
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = 'data-v-' + scopeId
|
||||
}
|
||||
|
||||
var hook
|
||||
if (moduleIdentifier) { // server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
// inject component styles
|
||||
if (injectStyles) {
|
||||
injectStyles.call(this, context)
|
||||
}
|
||||
// register component module identifier for async chunk inferrence
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier)
|
||||
}
|
||||
}
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook
|
||||
} else if (injectStyles) {
|
||||
hook = shadowMode
|
||||
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
||||
: injectStyles
|
||||
}
|
||||
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// for template-only hot-reload because in that case the render fn doesn't
|
||||
// go through the normalizer
|
||||
options._injectStyles = hook
|
||||
// register for functioal component in vue file
|
||||
var originalRender = options.render
|
||||
options.render = function renderWithStyleInjection (h, context) {
|
||||
hook.call(context)
|
||||
return originalRender(h, context)
|
||||
}
|
||||
} else {
|
||||
// inject component registration as beforeCreate hook
|
||||
var existing = options.beforeCreate
|
||||
options.beforeCreate = existing
|
||||
? [].concat(existing, hook)
|
||||
: [hook]
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exports: scriptExports,
|
||||
options: options
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 135:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/avatar/src/main.vue?vue&type=script&lang=js&
|
||||
|
||||
/* harmony default export */ var mainvue_type_script_lang_js_ = ({
|
||||
name: 'ElAvatar',
|
||||
|
||||
props: {
|
||||
size: {
|
||||
type: [Number, String],
|
||||
validator: function validator(val) {
|
||||
if (typeof val === 'string') {
|
||||
return ['large', 'medium', 'small'].includes(val);
|
||||
}
|
||||
return typeof val === 'number';
|
||||
}
|
||||
},
|
||||
shape: {
|
||||
type: String,
|
||||
default: 'circle',
|
||||
validator: function validator(val) {
|
||||
return ['circle', 'square'].includes(val);
|
||||
}
|
||||
},
|
||||
icon: String,
|
||||
src: String,
|
||||
alt: String,
|
||||
srcSet: String,
|
||||
error: Function,
|
||||
fit: {
|
||||
type: String,
|
||||
default: 'cover'
|
||||
}
|
||||
},
|
||||
|
||||
data: function data() {
|
||||
return {
|
||||
isImageExist: true
|
||||
};
|
||||
},
|
||||
|
||||
|
||||
computed: {
|
||||
avatarClass: function avatarClass() {
|
||||
var size = this.size,
|
||||
icon = this.icon,
|
||||
shape = this.shape;
|
||||
|
||||
var classList = ['el-avatar'];
|
||||
|
||||
if (size && typeof size === 'string') {
|
||||
classList.push('el-avatar--' + size);
|
||||
}
|
||||
|
||||
if (icon) {
|
||||
classList.push('el-avatar--icon');
|
||||
}
|
||||
|
||||
if (shape) {
|
||||
classList.push('el-avatar--' + shape);
|
||||
}
|
||||
|
||||
return classList.join(' ');
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
handleError: function handleError() {
|
||||
var error = this.error;
|
||||
|
||||
var errorFlag = error ? error() : undefined;
|
||||
if (errorFlag !== false) {
|
||||
this.isImageExist = false;
|
||||
}
|
||||
},
|
||||
renderAvatar: function renderAvatar() {
|
||||
var h = this.$createElement;
|
||||
var icon = this.icon,
|
||||
src = this.src,
|
||||
alt = this.alt,
|
||||
isImageExist = this.isImageExist,
|
||||
srcSet = this.srcSet,
|
||||
fit = this.fit;
|
||||
|
||||
|
||||
if (isImageExist && src) {
|
||||
return h('img', {
|
||||
attrs: {
|
||||
src: src,
|
||||
|
||||
alt: alt,
|
||||
srcSet: srcSet
|
||||
},
|
||||
on: {
|
||||
'error': this.handleError
|
||||
},
|
||||
style: { 'object-fit': fit } });
|
||||
}
|
||||
|
||||
if (icon) {
|
||||
return h('i', { 'class': icon });
|
||||
}
|
||||
|
||||
return this.$slots.default;
|
||||
}
|
||||
},
|
||||
|
||||
render: function render() {
|
||||
var h = arguments[0];
|
||||
var avatarClass = this.avatarClass,
|
||||
size = this.size;
|
||||
|
||||
|
||||
var sizeStyle = typeof size === 'number' ? {
|
||||
height: size + 'px',
|
||||
width: size + 'px',
|
||||
lineHeight: size + 'px'
|
||||
} : {};
|
||||
|
||||
return h(
|
||||
'span',
|
||||
{ 'class': avatarClass, style: sizeStyle },
|
||||
[this.renderAvatar()]
|
||||
);
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/avatar/src/main.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
||||
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
||||
var componentNormalizer = __webpack_require__(0);
|
||||
|
||||
// CONCATENATED MODULE: ./packages/avatar/src/main.vue
|
||||
var render, staticRenderFns
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(componentNormalizer["a" /* default */])(
|
||||
src_mainvue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "packages/avatar/src/main.vue"
|
||||
/* harmony default export */ var main = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/avatar/index.js
|
||||
|
||||
|
||||
/* istanbul ignore next */
|
||||
main.install = function (Vue) {
|
||||
Vue.component(main.name, main);
|
||||
};
|
||||
|
||||
/* harmony default export */ var avatar = __webpack_exports__["default"] = (main);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
401
public/static/libs/element-ui/lib/backtop.js
Normal file
401
public/static/libs/element-ui/lib/backtop.js
Normal file
@ -0,0 +1,401 @@
|
||||
module.exports =
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/dist/";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 124);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
||||
// This module is a runtime utility for cleaner component module output and will
|
||||
// be included in the final webpack user bundle.
|
||||
|
||||
function normalizeComponent (
|
||||
scriptExports,
|
||||
render,
|
||||
staticRenderFns,
|
||||
functionalTemplate,
|
||||
injectStyles,
|
||||
scopeId,
|
||||
moduleIdentifier, /* server only */
|
||||
shadowMode /* vue-cli only */
|
||||
) {
|
||||
// Vue.extend constructor export interop
|
||||
var options = typeof scriptExports === 'function'
|
||||
? scriptExports.options
|
||||
: scriptExports
|
||||
|
||||
// render functions
|
||||
if (render) {
|
||||
options.render = render
|
||||
options.staticRenderFns = staticRenderFns
|
||||
options._compiled = true
|
||||
}
|
||||
|
||||
// functional template
|
||||
if (functionalTemplate) {
|
||||
options.functional = true
|
||||
}
|
||||
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = 'data-v-' + scopeId
|
||||
}
|
||||
|
||||
var hook
|
||||
if (moduleIdentifier) { // server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
// inject component styles
|
||||
if (injectStyles) {
|
||||
injectStyles.call(this, context)
|
||||
}
|
||||
// register component module identifier for async chunk inferrence
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier)
|
||||
}
|
||||
}
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook
|
||||
} else if (injectStyles) {
|
||||
hook = shadowMode
|
||||
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
||||
: injectStyles
|
||||
}
|
||||
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// for template-only hot-reload because in that case the render fn doesn't
|
||||
// go through the normalizer
|
||||
options._injectStyles = hook
|
||||
// register for functioal component in vue file
|
||||
var originalRender = options.render
|
||||
options.render = function renderWithStyleInjection (h, context) {
|
||||
hook.call(context)
|
||||
return originalRender(h, context)
|
||||
}
|
||||
} else {
|
||||
// inject component registration as beforeCreate hook
|
||||
var existing = options.beforeCreate
|
||||
options.beforeCreate = existing
|
||||
? [].concat(existing, hook)
|
||||
: [hook]
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exports: scriptExports,
|
||||
options: options
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 124:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/backtop/src/main.vue?vue&type=template&id=257dd4a9&
|
||||
var render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c("transition", { attrs: { name: "el-fade-in" } }, [
|
||||
_vm.visible
|
||||
? _c(
|
||||
"div",
|
||||
{
|
||||
staticClass: "el-backtop",
|
||||
style: {
|
||||
right: _vm.styleRight,
|
||||
bottom: _vm.styleBottom
|
||||
},
|
||||
on: {
|
||||
click: function($event) {
|
||||
$event.stopPropagation()
|
||||
return _vm.handleClick($event)
|
||||
}
|
||||
}
|
||||
},
|
||||
[
|
||||
_vm._t("default", [_c("el-icon", { attrs: { name: "caret-top" } })])
|
||||
],
|
||||
2
|
||||
)
|
||||
: _vm._e()
|
||||
])
|
||||
}
|
||||
var staticRenderFns = []
|
||||
render._withStripped = true
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/backtop/src/main.vue?vue&type=template&id=257dd4a9&
|
||||
|
||||
// EXTERNAL MODULE: external "throttle-debounce/throttle"
|
||||
var throttle_ = __webpack_require__(25);
|
||||
var throttle_default = /*#__PURE__*/__webpack_require__.n(throttle_);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/backtop/src/main.vue?vue&type=script&lang=js&
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
|
||||
|
||||
var cubic = function cubic(value) {
|
||||
return Math.pow(value, 3);
|
||||
};
|
||||
var easeInOutCubic = function easeInOutCubic(value) {
|
||||
return value < 0.5 ? cubic(value * 2) / 2 : 1 - cubic((1 - value) * 2) / 2;
|
||||
};
|
||||
|
||||
/* harmony default export */ var mainvue_type_script_lang_js_ = ({
|
||||
name: 'ElBacktop',
|
||||
|
||||
props: {
|
||||
visibilityHeight: {
|
||||
type: Number,
|
||||
default: 200
|
||||
},
|
||||
target: [String],
|
||||
right: {
|
||||
type: Number,
|
||||
default: 40
|
||||
},
|
||||
bottom: {
|
||||
type: Number,
|
||||
default: 40
|
||||
}
|
||||
},
|
||||
|
||||
data: function data() {
|
||||
return {
|
||||
el: null,
|
||||
container: null,
|
||||
visible: false
|
||||
};
|
||||
},
|
||||
|
||||
|
||||
computed: {
|
||||
styleBottom: function styleBottom() {
|
||||
return this.bottom + 'px';
|
||||
},
|
||||
styleRight: function styleRight() {
|
||||
return this.right + 'px';
|
||||
}
|
||||
},
|
||||
|
||||
mounted: function mounted() {
|
||||
this.init();
|
||||
this.throttledScrollHandler = throttle_default()(300, this.onScroll);
|
||||
this.container.addEventListener('scroll', this.throttledScrollHandler);
|
||||
},
|
||||
|
||||
|
||||
methods: {
|
||||
init: function init() {
|
||||
this.container = document;
|
||||
this.el = document.documentElement;
|
||||
if (this.target) {
|
||||
this.el = document.querySelector(this.target);
|
||||
if (!this.el) {
|
||||
throw new Error('target is not existed: ' + this.target);
|
||||
}
|
||||
this.container = this.el;
|
||||
}
|
||||
},
|
||||
onScroll: function onScroll() {
|
||||
var scrollTop = this.el.scrollTop;
|
||||
this.visible = scrollTop >= this.visibilityHeight;
|
||||
},
|
||||
handleClick: function handleClick(e) {
|
||||
this.scrollToTop();
|
||||
this.$emit('click', e);
|
||||
},
|
||||
scrollToTop: function scrollToTop() {
|
||||
var el = this.el;
|
||||
var beginTime = Date.now();
|
||||
var beginValue = el.scrollTop;
|
||||
var rAF = window.requestAnimationFrame || function (func) {
|
||||
return setTimeout(func, 16);
|
||||
};
|
||||
var frameFunc = function frameFunc() {
|
||||
var progress = (Date.now() - beginTime) / 500;
|
||||
if (progress < 1) {
|
||||
el.scrollTop = beginValue * (1 - easeInOutCubic(progress));
|
||||
rAF(frameFunc);
|
||||
} else {
|
||||
el.scrollTop = 0;
|
||||
}
|
||||
};
|
||||
rAF(frameFunc);
|
||||
}
|
||||
},
|
||||
|
||||
beforeDestroy: function beforeDestroy() {
|
||||
this.container.removeEventListener('scroll', this.throttledScrollHandler);
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/backtop/src/main.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
||||
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
||||
var componentNormalizer = __webpack_require__(0);
|
||||
|
||||
// CONCATENATED MODULE: ./packages/backtop/src/main.vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(componentNormalizer["a" /* default */])(
|
||||
src_mainvue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "packages/backtop/src/main.vue"
|
||||
/* harmony default export */ var main = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/backtop/index.js
|
||||
|
||||
|
||||
/* istanbul ignore next */
|
||||
main.install = function (Vue) {
|
||||
Vue.component(main.name, main);
|
||||
};
|
||||
|
||||
/* harmony default export */ var backtop = __webpack_exports__["default"] = (main);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 25:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("throttle-debounce/throttle");
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
333
public/static/libs/element-ui/lib/badge.js
Normal file
333
public/static/libs/element-ui/lib/badge.js
Normal file
@ -0,0 +1,333 @@
|
||||
module.exports =
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/dist/";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 106);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
||||
// This module is a runtime utility for cleaner component module output and will
|
||||
// be included in the final webpack user bundle.
|
||||
|
||||
function normalizeComponent (
|
||||
scriptExports,
|
||||
render,
|
||||
staticRenderFns,
|
||||
functionalTemplate,
|
||||
injectStyles,
|
||||
scopeId,
|
||||
moduleIdentifier, /* server only */
|
||||
shadowMode /* vue-cli only */
|
||||
) {
|
||||
// Vue.extend constructor export interop
|
||||
var options = typeof scriptExports === 'function'
|
||||
? scriptExports.options
|
||||
: scriptExports
|
||||
|
||||
// render functions
|
||||
if (render) {
|
||||
options.render = render
|
||||
options.staticRenderFns = staticRenderFns
|
||||
options._compiled = true
|
||||
}
|
||||
|
||||
// functional template
|
||||
if (functionalTemplate) {
|
||||
options.functional = true
|
||||
}
|
||||
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = 'data-v-' + scopeId
|
||||
}
|
||||
|
||||
var hook
|
||||
if (moduleIdentifier) { // server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
// inject component styles
|
||||
if (injectStyles) {
|
||||
injectStyles.call(this, context)
|
||||
}
|
||||
// register component module identifier for async chunk inferrence
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier)
|
||||
}
|
||||
}
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook
|
||||
} else if (injectStyles) {
|
||||
hook = shadowMode
|
||||
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
||||
: injectStyles
|
||||
}
|
||||
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// for template-only hot-reload because in that case the render fn doesn't
|
||||
// go through the normalizer
|
||||
options._injectStyles = hook
|
||||
// register for functioal component in vue file
|
||||
var originalRender = options.render
|
||||
options.render = function renderWithStyleInjection (h, context) {
|
||||
hook.call(context)
|
||||
return originalRender(h, context)
|
||||
}
|
||||
} else {
|
||||
// inject component registration as beforeCreate hook
|
||||
var existing = options.beforeCreate
|
||||
options.beforeCreate = existing
|
||||
? [].concat(existing, hook)
|
||||
: [hook]
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exports: scriptExports,
|
||||
options: options
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 106:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/badge/src/main.vue?vue&type=template&id=7ccb6598&
|
||||
var render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c(
|
||||
"div",
|
||||
{ staticClass: "el-badge" },
|
||||
[
|
||||
_vm._t("default"),
|
||||
_c("transition", { attrs: { name: "el-zoom-in-center" } }, [
|
||||
_c("sup", {
|
||||
directives: [
|
||||
{
|
||||
name: "show",
|
||||
rawName: "v-show",
|
||||
value:
|
||||
!_vm.hidden && (_vm.content || _vm.content === 0 || _vm.isDot),
|
||||
expression: "!hidden && (content || content === 0 || isDot)"
|
||||
}
|
||||
],
|
||||
staticClass: "el-badge__content",
|
||||
class: [
|
||||
_vm.type ? "el-badge__content--" + _vm.type : null,
|
||||
{
|
||||
"is-fixed": _vm.$slots.default,
|
||||
"is-dot": _vm.isDot
|
||||
}
|
||||
],
|
||||
domProps: { textContent: _vm._s(_vm.content) }
|
||||
})
|
||||
])
|
||||
],
|
||||
2
|
||||
)
|
||||
}
|
||||
var staticRenderFns = []
|
||||
render._withStripped = true
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/badge/src/main.vue?vue&type=template&id=7ccb6598&
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/badge/src/main.vue?vue&type=script&lang=js&
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
/* harmony default export */ var mainvue_type_script_lang_js_ = ({
|
||||
name: 'ElBadge',
|
||||
|
||||
props: {
|
||||
value: [String, Number],
|
||||
max: Number,
|
||||
isDot: Boolean,
|
||||
hidden: Boolean,
|
||||
type: {
|
||||
type: String,
|
||||
validator: function validator(val) {
|
||||
return ['primary', 'success', 'warning', 'info', 'danger'].indexOf(val) > -1;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
content: function content() {
|
||||
if (this.isDot) return;
|
||||
|
||||
var value = this.value;
|
||||
var max = this.max;
|
||||
|
||||
if (typeof value === 'number' && typeof max === 'number') {
|
||||
return max < value ? max + '+' : value;
|
||||
}
|
||||
|
||||
return value;
|
||||
}
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/badge/src/main.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
||||
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
||||
var componentNormalizer = __webpack_require__(0);
|
||||
|
||||
// CONCATENATED MODULE: ./packages/badge/src/main.vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(componentNormalizer["a" /* default */])(
|
||||
src_mainvue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "packages/badge/src/main.vue"
|
||||
/* harmony default export */ var main = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/badge/index.js
|
||||
|
||||
|
||||
/* istanbul ignore next */
|
||||
main.install = function (Vue) {
|
||||
Vue.component(main.name, main);
|
||||
};
|
||||
|
||||
/* harmony default export */ var badge = __webpack_exports__["default"] = (main);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
321
public/static/libs/element-ui/lib/breadcrumb-item.js
Normal file
321
public/static/libs/element-ui/lib/breadcrumb-item.js
Normal file
@ -0,0 +1,321 @@
|
||||
module.exports =
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/dist/";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 99);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
||||
// This module is a runtime utility for cleaner component module output and will
|
||||
// be included in the final webpack user bundle.
|
||||
|
||||
function normalizeComponent (
|
||||
scriptExports,
|
||||
render,
|
||||
staticRenderFns,
|
||||
functionalTemplate,
|
||||
injectStyles,
|
||||
scopeId,
|
||||
moduleIdentifier, /* server only */
|
||||
shadowMode /* vue-cli only */
|
||||
) {
|
||||
// Vue.extend constructor export interop
|
||||
var options = typeof scriptExports === 'function'
|
||||
? scriptExports.options
|
||||
: scriptExports
|
||||
|
||||
// render functions
|
||||
if (render) {
|
||||
options.render = render
|
||||
options.staticRenderFns = staticRenderFns
|
||||
options._compiled = true
|
||||
}
|
||||
|
||||
// functional template
|
||||
if (functionalTemplate) {
|
||||
options.functional = true
|
||||
}
|
||||
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = 'data-v-' + scopeId
|
||||
}
|
||||
|
||||
var hook
|
||||
if (moduleIdentifier) { // server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
// inject component styles
|
||||
if (injectStyles) {
|
||||
injectStyles.call(this, context)
|
||||
}
|
||||
// register component module identifier for async chunk inferrence
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier)
|
||||
}
|
||||
}
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook
|
||||
} else if (injectStyles) {
|
||||
hook = shadowMode
|
||||
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
||||
: injectStyles
|
||||
}
|
||||
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// for template-only hot-reload because in that case the render fn doesn't
|
||||
// go through the normalizer
|
||||
options._injectStyles = hook
|
||||
// register for functioal component in vue file
|
||||
var originalRender = options.render
|
||||
options.render = function renderWithStyleInjection (h, context) {
|
||||
hook.call(context)
|
||||
return originalRender(h, context)
|
||||
}
|
||||
} else {
|
||||
// inject component registration as beforeCreate hook
|
||||
var existing = options.beforeCreate
|
||||
options.beforeCreate = existing
|
||||
? [].concat(existing, hook)
|
||||
: [hook]
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exports: scriptExports,
|
||||
options: options
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 99:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/breadcrumb/src/breadcrumb-item.vue?vue&type=template&id=fcf9eaac&
|
||||
var render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c("span", { staticClass: "el-breadcrumb__item" }, [
|
||||
_c(
|
||||
"span",
|
||||
{
|
||||
ref: "link",
|
||||
class: ["el-breadcrumb__inner", _vm.to ? "is-link" : ""],
|
||||
attrs: { role: "link" }
|
||||
},
|
||||
[_vm._t("default")],
|
||||
2
|
||||
),
|
||||
_vm.separatorClass
|
||||
? _c("i", {
|
||||
staticClass: "el-breadcrumb__separator",
|
||||
class: _vm.separatorClass
|
||||
})
|
||||
: _c(
|
||||
"span",
|
||||
{
|
||||
staticClass: "el-breadcrumb__separator",
|
||||
attrs: { role: "presentation" }
|
||||
},
|
||||
[_vm._v(_vm._s(_vm.separator))]
|
||||
)
|
||||
])
|
||||
}
|
||||
var staticRenderFns = []
|
||||
render._withStripped = true
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/breadcrumb/src/breadcrumb-item.vue?vue&type=template&id=fcf9eaac&
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/breadcrumb/src/breadcrumb-item.vue?vue&type=script&lang=js&
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
/* harmony default export */ var breadcrumb_itemvue_type_script_lang_js_ = ({
|
||||
name: 'ElBreadcrumbItem',
|
||||
props: {
|
||||
to: {},
|
||||
replace: Boolean
|
||||
},
|
||||
data: function data() {
|
||||
return {
|
||||
separator: '',
|
||||
separatorClass: ''
|
||||
};
|
||||
},
|
||||
|
||||
|
||||
inject: ['elBreadcrumb'],
|
||||
|
||||
mounted: function mounted() {
|
||||
var _this = this;
|
||||
|
||||
this.separator = this.elBreadcrumb.separator;
|
||||
this.separatorClass = this.elBreadcrumb.separatorClass;
|
||||
var link = this.$refs.link;
|
||||
link.setAttribute('role', 'link');
|
||||
link.addEventListener('click', function (_) {
|
||||
var to = _this.to,
|
||||
$router = _this.$router;
|
||||
|
||||
if (!to || !$router) return;
|
||||
_this.replace ? $router.replace(to) : $router.push(to);
|
||||
});
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/breadcrumb/src/breadcrumb-item.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_breadcrumb_itemvue_type_script_lang_js_ = (breadcrumb_itemvue_type_script_lang_js_);
|
||||
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
||||
var componentNormalizer = __webpack_require__(0);
|
||||
|
||||
// CONCATENATED MODULE: ./packages/breadcrumb/src/breadcrumb-item.vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(componentNormalizer["a" /* default */])(
|
||||
src_breadcrumb_itemvue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "packages/breadcrumb/src/breadcrumb-item.vue"
|
||||
/* harmony default export */ var breadcrumb_item = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/breadcrumb-item/index.js
|
||||
|
||||
|
||||
/* istanbul ignore next */
|
||||
breadcrumb_item.install = function (Vue) {
|
||||
Vue.component(breadcrumb_item.name, breadcrumb_item);
|
||||
};
|
||||
|
||||
/* harmony default export */ var packages_breadcrumb_item = __webpack_exports__["default"] = (breadcrumb_item);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
292
public/static/libs/element-ui/lib/breadcrumb.js
Normal file
292
public/static/libs/element-ui/lib/breadcrumb.js
Normal file
@ -0,0 +1,292 @@
|
||||
module.exports =
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/dist/";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 98);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
||||
// This module is a runtime utility for cleaner component module output and will
|
||||
// be included in the final webpack user bundle.
|
||||
|
||||
function normalizeComponent (
|
||||
scriptExports,
|
||||
render,
|
||||
staticRenderFns,
|
||||
functionalTemplate,
|
||||
injectStyles,
|
||||
scopeId,
|
||||
moduleIdentifier, /* server only */
|
||||
shadowMode /* vue-cli only */
|
||||
) {
|
||||
// Vue.extend constructor export interop
|
||||
var options = typeof scriptExports === 'function'
|
||||
? scriptExports.options
|
||||
: scriptExports
|
||||
|
||||
// render functions
|
||||
if (render) {
|
||||
options.render = render
|
||||
options.staticRenderFns = staticRenderFns
|
||||
options._compiled = true
|
||||
}
|
||||
|
||||
// functional template
|
||||
if (functionalTemplate) {
|
||||
options.functional = true
|
||||
}
|
||||
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = 'data-v-' + scopeId
|
||||
}
|
||||
|
||||
var hook
|
||||
if (moduleIdentifier) { // server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
// inject component styles
|
||||
if (injectStyles) {
|
||||
injectStyles.call(this, context)
|
||||
}
|
||||
// register component module identifier for async chunk inferrence
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier)
|
||||
}
|
||||
}
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook
|
||||
} else if (injectStyles) {
|
||||
hook = shadowMode
|
||||
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
||||
: injectStyles
|
||||
}
|
||||
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// for template-only hot-reload because in that case the render fn doesn't
|
||||
// go through the normalizer
|
||||
options._injectStyles = hook
|
||||
// register for functioal component in vue file
|
||||
var originalRender = options.render
|
||||
options.render = function renderWithStyleInjection (h, context) {
|
||||
hook.call(context)
|
||||
return originalRender(h, context)
|
||||
}
|
||||
} else {
|
||||
// inject component registration as beforeCreate hook
|
||||
var existing = options.beforeCreate
|
||||
options.beforeCreate = existing
|
||||
? [].concat(existing, hook)
|
||||
: [hook]
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exports: scriptExports,
|
||||
options: options
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 98:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/breadcrumb/src/breadcrumb.vue?vue&type=template&id=4b464c06&
|
||||
var render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c(
|
||||
"div",
|
||||
{
|
||||
staticClass: "el-breadcrumb",
|
||||
attrs: { "aria-label": "Breadcrumb", role: "navigation" }
|
||||
},
|
||||
[_vm._t("default")],
|
||||
2
|
||||
)
|
||||
}
|
||||
var staticRenderFns = []
|
||||
render._withStripped = true
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/breadcrumb/src/breadcrumb.vue?vue&type=template&id=4b464c06&
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/breadcrumb/src/breadcrumb.vue?vue&type=script&lang=js&
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
/* harmony default export */ var breadcrumbvue_type_script_lang_js_ = ({
|
||||
name: 'ElBreadcrumb',
|
||||
|
||||
props: {
|
||||
separator: {
|
||||
type: String,
|
||||
default: '/'
|
||||
},
|
||||
separatorClass: {
|
||||
type: String,
|
||||
default: ''
|
||||
}
|
||||
},
|
||||
|
||||
provide: function provide() {
|
||||
return {
|
||||
elBreadcrumb: this
|
||||
};
|
||||
},
|
||||
mounted: function mounted() {
|
||||
var items = this.$el.querySelectorAll('.el-breadcrumb__item');
|
||||
if (items.length) {
|
||||
items[items.length - 1].setAttribute('aria-current', 'page');
|
||||
}
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/breadcrumb/src/breadcrumb.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_breadcrumbvue_type_script_lang_js_ = (breadcrumbvue_type_script_lang_js_);
|
||||
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
||||
var componentNormalizer = __webpack_require__(0);
|
||||
|
||||
// CONCATENATED MODULE: ./packages/breadcrumb/src/breadcrumb.vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(componentNormalizer["a" /* default */])(
|
||||
src_breadcrumbvue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "packages/breadcrumb/src/breadcrumb.vue"
|
||||
/* harmony default export */ var breadcrumb = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/breadcrumb/index.js
|
||||
|
||||
|
||||
/* istanbul ignore next */
|
||||
breadcrumb.install = function (Vue) {
|
||||
Vue.component(breadcrumb.name, breadcrumb);
|
||||
};
|
||||
|
||||
/* harmony default export */ var packages_breadcrumb = __webpack_exports__["default"] = (breadcrumb);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
261
public/static/libs/element-ui/lib/button-group.js
Normal file
261
public/static/libs/element-ui/lib/button-group.js
Normal file
@ -0,0 +1,261 @@
|
||||
module.exports =
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/dist/";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 97);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
||||
// This module is a runtime utility for cleaner component module output and will
|
||||
// be included in the final webpack user bundle.
|
||||
|
||||
function normalizeComponent (
|
||||
scriptExports,
|
||||
render,
|
||||
staticRenderFns,
|
||||
functionalTemplate,
|
||||
injectStyles,
|
||||
scopeId,
|
||||
moduleIdentifier, /* server only */
|
||||
shadowMode /* vue-cli only */
|
||||
) {
|
||||
// Vue.extend constructor export interop
|
||||
var options = typeof scriptExports === 'function'
|
||||
? scriptExports.options
|
||||
: scriptExports
|
||||
|
||||
// render functions
|
||||
if (render) {
|
||||
options.render = render
|
||||
options.staticRenderFns = staticRenderFns
|
||||
options._compiled = true
|
||||
}
|
||||
|
||||
// functional template
|
||||
if (functionalTemplate) {
|
||||
options.functional = true
|
||||
}
|
||||
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = 'data-v-' + scopeId
|
||||
}
|
||||
|
||||
var hook
|
||||
if (moduleIdentifier) { // server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
// inject component styles
|
||||
if (injectStyles) {
|
||||
injectStyles.call(this, context)
|
||||
}
|
||||
// register component module identifier for async chunk inferrence
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier)
|
||||
}
|
||||
}
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook
|
||||
} else if (injectStyles) {
|
||||
hook = shadowMode
|
||||
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
||||
: injectStyles
|
||||
}
|
||||
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// for template-only hot-reload because in that case the render fn doesn't
|
||||
// go through the normalizer
|
||||
options._injectStyles = hook
|
||||
// register for functioal component in vue file
|
||||
var originalRender = options.render
|
||||
options.render = function renderWithStyleInjection (h, context) {
|
||||
hook.call(context)
|
||||
return originalRender(h, context)
|
||||
}
|
||||
} else {
|
||||
// inject component registration as beforeCreate hook
|
||||
var existing = options.beforeCreate
|
||||
options.beforeCreate = existing
|
||||
? [].concat(existing, hook)
|
||||
: [hook]
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exports: scriptExports,
|
||||
options: options
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 97:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/button/src/button-group.vue?vue&type=template&id=3d8661d0&
|
||||
var render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c("div", { staticClass: "el-button-group" }, [_vm._t("default")], 2)
|
||||
}
|
||||
var staticRenderFns = []
|
||||
render._withStripped = true
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/button/src/button-group.vue?vue&type=template&id=3d8661d0&
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/button/src/button-group.vue?vue&type=script&lang=js&
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
/* harmony default export */ var button_groupvue_type_script_lang_js_ = ({
|
||||
name: 'ElButtonGroup'
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/button/src/button-group.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_button_groupvue_type_script_lang_js_ = (button_groupvue_type_script_lang_js_);
|
||||
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
||||
var componentNormalizer = __webpack_require__(0);
|
||||
|
||||
// CONCATENATED MODULE: ./packages/button/src/button-group.vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(componentNormalizer["a" /* default */])(
|
||||
src_button_groupvue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "packages/button/src/button-group.vue"
|
||||
/* harmony default export */ var button_group = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/button-group/index.js
|
||||
|
||||
|
||||
/* istanbul ignore next */
|
||||
button_group.install = function (Vue) {
|
||||
Vue.component(button_group.name, button_group);
|
||||
};
|
||||
|
||||
/* harmony default export */ var packages_button_group = __webpack_exports__["default"] = (button_group);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
356
public/static/libs/element-ui/lib/button.js
Normal file
356
public/static/libs/element-ui/lib/button.js
Normal file
@ -0,0 +1,356 @@
|
||||
module.exports =
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/dist/";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 96);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
||||
// This module is a runtime utility for cleaner component module output and will
|
||||
// be included in the final webpack user bundle.
|
||||
|
||||
function normalizeComponent (
|
||||
scriptExports,
|
||||
render,
|
||||
staticRenderFns,
|
||||
functionalTemplate,
|
||||
injectStyles,
|
||||
scopeId,
|
||||
moduleIdentifier, /* server only */
|
||||
shadowMode /* vue-cli only */
|
||||
) {
|
||||
// Vue.extend constructor export interop
|
||||
var options = typeof scriptExports === 'function'
|
||||
? scriptExports.options
|
||||
: scriptExports
|
||||
|
||||
// render functions
|
||||
if (render) {
|
||||
options.render = render
|
||||
options.staticRenderFns = staticRenderFns
|
||||
options._compiled = true
|
||||
}
|
||||
|
||||
// functional template
|
||||
if (functionalTemplate) {
|
||||
options.functional = true
|
||||
}
|
||||
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = 'data-v-' + scopeId
|
||||
}
|
||||
|
||||
var hook
|
||||
if (moduleIdentifier) { // server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
// inject component styles
|
||||
if (injectStyles) {
|
||||
injectStyles.call(this, context)
|
||||
}
|
||||
// register component module identifier for async chunk inferrence
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier)
|
||||
}
|
||||
}
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook
|
||||
} else if (injectStyles) {
|
||||
hook = shadowMode
|
||||
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
||||
: injectStyles
|
||||
}
|
||||
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// for template-only hot-reload because in that case the render fn doesn't
|
||||
// go through the normalizer
|
||||
options._injectStyles = hook
|
||||
// register for functioal component in vue file
|
||||
var originalRender = options.render
|
||||
options.render = function renderWithStyleInjection (h, context) {
|
||||
hook.call(context)
|
||||
return originalRender(h, context)
|
||||
}
|
||||
} else {
|
||||
// inject component registration as beforeCreate hook
|
||||
var existing = options.beforeCreate
|
||||
options.beforeCreate = existing
|
||||
? [].concat(existing, hook)
|
||||
: [hook]
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exports: scriptExports,
|
||||
options: options
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 96:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/button/src/button.vue?vue&type=template&id=ca859fb4&
|
||||
var render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c(
|
||||
"button",
|
||||
{
|
||||
staticClass: "el-button",
|
||||
class: [
|
||||
_vm.type ? "el-button--" + _vm.type : "",
|
||||
_vm.buttonSize ? "el-button--" + _vm.buttonSize : "",
|
||||
{
|
||||
"is-disabled": _vm.buttonDisabled,
|
||||
"is-loading": _vm.loading,
|
||||
"is-plain": _vm.plain,
|
||||
"is-round": _vm.round,
|
||||
"is-circle": _vm.circle
|
||||
}
|
||||
],
|
||||
attrs: {
|
||||
disabled: _vm.buttonDisabled || _vm.loading,
|
||||
autofocus: _vm.autofocus,
|
||||
type: _vm.nativeType
|
||||
},
|
||||
on: { click: _vm.handleClick }
|
||||
},
|
||||
[
|
||||
_vm.loading ? _c("i", { staticClass: "el-icon-loading" }) : _vm._e(),
|
||||
_vm.icon && !_vm.loading ? _c("i", { class: _vm.icon }) : _vm._e(),
|
||||
_vm.$slots.default ? _c("span", [_vm._t("default")], 2) : _vm._e()
|
||||
]
|
||||
)
|
||||
}
|
||||
var staticRenderFns = []
|
||||
render._withStripped = true
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/button/src/button.vue?vue&type=template&id=ca859fb4&
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/button/src/button.vue?vue&type=script&lang=js&
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
/* harmony default export */ var buttonvue_type_script_lang_js_ = ({
|
||||
name: 'ElButton',
|
||||
|
||||
inject: {
|
||||
elForm: {
|
||||
default: ''
|
||||
},
|
||||
elFormItem: {
|
||||
default: ''
|
||||
}
|
||||
},
|
||||
|
||||
props: {
|
||||
type: {
|
||||
type: String,
|
||||
default: 'default'
|
||||
},
|
||||
size: String,
|
||||
icon: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
nativeType: {
|
||||
type: String,
|
||||
default: 'button'
|
||||
},
|
||||
loading: Boolean,
|
||||
disabled: Boolean,
|
||||
plain: Boolean,
|
||||
autofocus: Boolean,
|
||||
round: Boolean,
|
||||
circle: Boolean
|
||||
},
|
||||
|
||||
computed: {
|
||||
_elFormItemSize: function _elFormItemSize() {
|
||||
return (this.elFormItem || {}).elFormItemSize;
|
||||
},
|
||||
buttonSize: function buttonSize() {
|
||||
return this.size || this._elFormItemSize || (this.$ELEMENT || {}).size;
|
||||
},
|
||||
buttonDisabled: function buttonDisabled() {
|
||||
return this.$options.propsData.hasOwnProperty('disabled') ? this.disabled : (this.elForm || {}).disabled;
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
handleClick: function handleClick(evt) {
|
||||
this.$emit('click', evt);
|
||||
}
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/button/src/button.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_buttonvue_type_script_lang_js_ = (buttonvue_type_script_lang_js_);
|
||||
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
||||
var componentNormalizer = __webpack_require__(0);
|
||||
|
||||
// CONCATENATED MODULE: ./packages/button/src/button.vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(componentNormalizer["a" /* default */])(
|
||||
src_buttonvue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "packages/button/src/button.vue"
|
||||
/* harmony default export */ var src_button = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/button/index.js
|
||||
|
||||
|
||||
/* istanbul ignore next */
|
||||
src_button.install = function (Vue) {
|
||||
Vue.component(src_button.name, src_button);
|
||||
};
|
||||
|
||||
/* harmony default export */ var packages_button = __webpack_exports__["default"] = (src_button);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
935
public/static/libs/element-ui/lib/calendar.js
Normal file
935
public/static/libs/element-ui/lib/calendar.js
Normal file
@ -0,0 +1,935 @@
|
||||
module.exports =
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/dist/";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 71);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
||||
// This module is a runtime utility for cleaner component module output and will
|
||||
// be included in the final webpack user bundle.
|
||||
|
||||
function normalizeComponent (
|
||||
scriptExports,
|
||||
render,
|
||||
staticRenderFns,
|
||||
functionalTemplate,
|
||||
injectStyles,
|
||||
scopeId,
|
||||
moduleIdentifier, /* server only */
|
||||
shadowMode /* vue-cli only */
|
||||
) {
|
||||
// Vue.extend constructor export interop
|
||||
var options = typeof scriptExports === 'function'
|
||||
? scriptExports.options
|
||||
: scriptExports
|
||||
|
||||
// render functions
|
||||
if (render) {
|
||||
options.render = render
|
||||
options.staticRenderFns = staticRenderFns
|
||||
options._compiled = true
|
||||
}
|
||||
|
||||
// functional template
|
||||
if (functionalTemplate) {
|
||||
options.functional = true
|
||||
}
|
||||
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = 'data-v-' + scopeId
|
||||
}
|
||||
|
||||
var hook
|
||||
if (moduleIdentifier) { // server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
// inject component styles
|
||||
if (injectStyles) {
|
||||
injectStyles.call(this, context)
|
||||
}
|
||||
// register component module identifier for async chunk inferrence
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier)
|
||||
}
|
||||
}
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook
|
||||
} else if (injectStyles) {
|
||||
hook = shadowMode
|
||||
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
||||
: injectStyles
|
||||
}
|
||||
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// for template-only hot-reload because in that case the render fn doesn't
|
||||
// go through the normalizer
|
||||
options._injectStyles = hook
|
||||
// register for functioal component in vue file
|
||||
var originalRender = options.render
|
||||
options.render = function renderWithStyleInjection (h, context) {
|
||||
hook.call(context)
|
||||
return originalRender(h, context)
|
||||
}
|
||||
} else {
|
||||
// inject component registration as beforeCreate hook
|
||||
var existing = options.beforeCreate
|
||||
options.beforeCreate = existing
|
||||
? [].concat(existing, hook)
|
||||
: [hook]
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exports: scriptExports,
|
||||
options: options
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 1:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/utils/date-util");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 14:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/button");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 24:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/utils/date");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 36:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/button-group");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 6:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/mixins/locale");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 71:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/calendar/src/main.vue?vue&type=template&id=6d9756be&
|
||||
var render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c("div", { staticClass: "el-calendar" }, [
|
||||
_c("div", { staticClass: "el-calendar__header" }, [
|
||||
_c("div", { staticClass: "el-calendar__title" }, [
|
||||
_vm._v("\n " + _vm._s(_vm.i18nDate) + "\n ")
|
||||
]),
|
||||
_vm.validatedRange.length === 0
|
||||
? _c(
|
||||
"div",
|
||||
{ staticClass: "el-calendar__button-group" },
|
||||
[
|
||||
_c(
|
||||
"el-button-group",
|
||||
[
|
||||
_c(
|
||||
"el-button",
|
||||
{
|
||||
attrs: { type: "plain", size: "mini" },
|
||||
on: {
|
||||
click: function($event) {
|
||||
_vm.selectDate("prev-month")
|
||||
}
|
||||
}
|
||||
},
|
||||
[
|
||||
_vm._v(
|
||||
"\n " +
|
||||
_vm._s(_vm.t("el.datepicker.prevMonth")) +
|
||||
"\n "
|
||||
)
|
||||
]
|
||||
),
|
||||
_c(
|
||||
"el-button",
|
||||
{
|
||||
attrs: { type: "plain", size: "mini" },
|
||||
on: {
|
||||
click: function($event) {
|
||||
_vm.selectDate("today")
|
||||
}
|
||||
}
|
||||
},
|
||||
[
|
||||
_vm._v(
|
||||
"\n " +
|
||||
_vm._s(_vm.t("el.datepicker.today")) +
|
||||
"\n "
|
||||
)
|
||||
]
|
||||
),
|
||||
_c(
|
||||
"el-button",
|
||||
{
|
||||
attrs: { type: "plain", size: "mini" },
|
||||
on: {
|
||||
click: function($event) {
|
||||
_vm.selectDate("next-month")
|
||||
}
|
||||
}
|
||||
},
|
||||
[
|
||||
_vm._v(
|
||||
"\n " +
|
||||
_vm._s(_vm.t("el.datepicker.nextMonth")) +
|
||||
"\n "
|
||||
)
|
||||
]
|
||||
)
|
||||
],
|
||||
1
|
||||
)
|
||||
],
|
||||
1
|
||||
)
|
||||
: _vm._e()
|
||||
]),
|
||||
_vm.validatedRange.length === 0
|
||||
? _c(
|
||||
"div",
|
||||
{ key: "no-range", staticClass: "el-calendar__body" },
|
||||
[
|
||||
_c("date-table", {
|
||||
attrs: {
|
||||
date: _vm.date,
|
||||
"selected-day": _vm.realSelectedDay,
|
||||
"first-day-of-week": _vm.realFirstDayOfWeek
|
||||
},
|
||||
on: { pick: _vm.pickDay }
|
||||
})
|
||||
],
|
||||
1
|
||||
)
|
||||
: _c(
|
||||
"div",
|
||||
{ key: "has-range", staticClass: "el-calendar__body" },
|
||||
_vm._l(_vm.validatedRange, function(range, index) {
|
||||
return _c("date-table", {
|
||||
key: index,
|
||||
attrs: {
|
||||
date: range[0],
|
||||
"selected-day": _vm.realSelectedDay,
|
||||
range: range,
|
||||
"hide-header": index !== 0,
|
||||
"first-day-of-week": _vm.realFirstDayOfWeek
|
||||
},
|
||||
on: { pick: _vm.pickDay }
|
||||
})
|
||||
}),
|
||||
1
|
||||
)
|
||||
])
|
||||
}
|
||||
var staticRenderFns = []
|
||||
render._withStripped = true
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/calendar/src/main.vue?vue&type=template&id=6d9756be&
|
||||
|
||||
// EXTERNAL MODULE: external "element-ui/lib/mixins/locale"
|
||||
var locale_ = __webpack_require__(6);
|
||||
var locale_default = /*#__PURE__*/__webpack_require__.n(locale_);
|
||||
|
||||
// EXTERNAL MODULE: external "element-ui/lib/utils/date"
|
||||
var date_ = __webpack_require__(24);
|
||||
var date_default = /*#__PURE__*/__webpack_require__.n(date_);
|
||||
|
||||
// EXTERNAL MODULE: external "element-ui/lib/button"
|
||||
var button_ = __webpack_require__(14);
|
||||
var button_default = /*#__PURE__*/__webpack_require__.n(button_);
|
||||
|
||||
// EXTERNAL MODULE: external "element-ui/lib/button-group"
|
||||
var button_group_ = __webpack_require__(36);
|
||||
var button_group_default = /*#__PURE__*/__webpack_require__.n(button_group_);
|
||||
|
||||
// EXTERNAL MODULE: external "element-ui/lib/utils/date-util"
|
||||
var date_util_ = __webpack_require__(1);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/calendar/src/date-table.vue?vue&type=script&lang=js&
|
||||
|
||||
|
||||
|
||||
|
||||
/* harmony default export */ var date_tablevue_type_script_lang_js_ = ({
|
||||
props: {
|
||||
selectedDay: String, // formated date yyyy-MM-dd
|
||||
range: {
|
||||
type: Array,
|
||||
validator: function validator(val) {
|
||||
if (!(val && val.length)) return true;
|
||||
var start = val[0],
|
||||
end = val[1];
|
||||
|
||||
return Object(date_util_["validateRangeInOneMonth"])(start, end);
|
||||
}
|
||||
},
|
||||
date: Date,
|
||||
hideHeader: Boolean,
|
||||
firstDayOfWeek: Number
|
||||
},
|
||||
|
||||
inject: ['elCalendar'],
|
||||
|
||||
methods: {
|
||||
toNestedArr: function toNestedArr(days) {
|
||||
return Object(date_util_["range"])(days.length / 7).map(function (_, index) {
|
||||
var start = index * 7;
|
||||
return days.slice(start, start + 7);
|
||||
});
|
||||
},
|
||||
getFormateDate: function getFormateDate(day, type) {
|
||||
if (!day || ['prev', 'current', 'next'].indexOf(type) === -1) {
|
||||
throw new Error('invalid day or type');
|
||||
}
|
||||
var prefix = this.curMonthDatePrefix;
|
||||
if (type === 'prev') {
|
||||
prefix = this.prevMonthDatePrefix;
|
||||
} else if (type === 'next') {
|
||||
prefix = this.nextMonthDatePrefix;
|
||||
}
|
||||
day = ('00' + day).slice(-2);
|
||||
return prefix + '-' + day;
|
||||
},
|
||||
getCellClass: function getCellClass(_ref) {
|
||||
var text = _ref.text,
|
||||
type = _ref.type;
|
||||
|
||||
var classes = [type];
|
||||
if (type === 'current') {
|
||||
var date = this.getFormateDate(text, type);
|
||||
if (date === this.selectedDay) {
|
||||
classes.push('is-selected');
|
||||
}
|
||||
if (date === this.formatedToday) {
|
||||
classes.push('is-today');
|
||||
}
|
||||
}
|
||||
return classes;
|
||||
},
|
||||
pickDay: function pickDay(_ref2) {
|
||||
var text = _ref2.text,
|
||||
type = _ref2.type;
|
||||
|
||||
var date = this.getFormateDate(text, type);
|
||||
this.$emit('pick', date);
|
||||
},
|
||||
cellRenderProxy: function cellRenderProxy(_ref3) {
|
||||
var text = _ref3.text,
|
||||
type = _ref3.type;
|
||||
var h = this.$createElement;
|
||||
|
||||
var render = this.elCalendar.$scopedSlots.dateCell;
|
||||
if (!render) return h('span', [text]);
|
||||
|
||||
var day = this.getFormateDate(text, type);
|
||||
var date = new Date(day);
|
||||
var data = {
|
||||
isSelected: this.selectedDay === day,
|
||||
type: type + '-month',
|
||||
day: day
|
||||
};
|
||||
return render({ date: date, data: data });
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
WEEK_DAYS: function WEEK_DAYS() {
|
||||
return Object(date_util_["getI18nSettings"])().dayNames;
|
||||
},
|
||||
prevMonthDatePrefix: function prevMonthDatePrefix() {
|
||||
var temp = new Date(this.date.getTime());
|
||||
temp.setDate(0);
|
||||
return date_default.a.format(temp, 'yyyy-MM');
|
||||
},
|
||||
curMonthDatePrefix: function curMonthDatePrefix() {
|
||||
return date_default.a.format(this.date, 'yyyy-MM');
|
||||
},
|
||||
nextMonthDatePrefix: function nextMonthDatePrefix() {
|
||||
var temp = new Date(this.date.getFullYear(), this.date.getMonth() + 1, 1);
|
||||
return date_default.a.format(temp, 'yyyy-MM');
|
||||
},
|
||||
formatedToday: function formatedToday() {
|
||||
return this.elCalendar.formatedToday;
|
||||
},
|
||||
isInRange: function isInRange() {
|
||||
return this.range && this.range.length;
|
||||
},
|
||||
rows: function rows() {
|
||||
var days = [];
|
||||
// if range exists, should render days in range.
|
||||
if (this.isInRange) {
|
||||
var _range = this.range,
|
||||
start = _range[0],
|
||||
end = _range[1];
|
||||
|
||||
var currentMonthRange = Object(date_util_["range"])(end.getDate() - start.getDate() + 1).map(function (_, index) {
|
||||
return {
|
||||
text: start.getDate() + index,
|
||||
type: 'current'
|
||||
};
|
||||
});
|
||||
var remaining = currentMonthRange.length % 7;
|
||||
remaining = remaining === 0 ? 0 : 7 - remaining;
|
||||
var nextMonthRange = Object(date_util_["range"])(remaining).map(function (_, index) {
|
||||
return {
|
||||
text: index + 1,
|
||||
type: 'next'
|
||||
};
|
||||
});
|
||||
days = currentMonthRange.concat(nextMonthRange);
|
||||
} else {
|
||||
var date = this.date;
|
||||
var firstDay = Object(date_util_["getFirstDayOfMonth"])(date);
|
||||
firstDay = firstDay === 0 ? 7 : firstDay;
|
||||
var firstDayOfWeek = typeof this.firstDayOfWeek === 'number' ? this.firstDayOfWeek : 1;
|
||||
var offset = (7 + firstDay - firstDayOfWeek) % 7;
|
||||
var prevMonthDays = Object(date_util_["getPrevMonthLastDays"])(date, offset).map(function (day) {
|
||||
return {
|
||||
text: day,
|
||||
type: 'prev'
|
||||
};
|
||||
});
|
||||
var currentMonthDays = Object(date_util_["getMonthDays"])(date).map(function (day) {
|
||||
return {
|
||||
text: day,
|
||||
type: 'current'
|
||||
};
|
||||
});
|
||||
days = [].concat(prevMonthDays, currentMonthDays);
|
||||
var nextMonthDays = Object(date_util_["range"])(42 - days.length).map(function (_, index) {
|
||||
return {
|
||||
text: index + 1,
|
||||
type: 'next'
|
||||
};
|
||||
});
|
||||
days = days.concat(nextMonthDays);
|
||||
}
|
||||
return this.toNestedArr(days);
|
||||
},
|
||||
weekDays: function weekDays() {
|
||||
var start = this.firstDayOfWeek;
|
||||
var WEEK_DAYS = this.WEEK_DAYS;
|
||||
|
||||
|
||||
if (typeof start !== 'number' || start === 0) {
|
||||
return WEEK_DAYS.slice();
|
||||
} else {
|
||||
return WEEK_DAYS.slice(start).concat(WEEK_DAYS.slice(0, start));
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
render: function render() {
|
||||
var _this = this;
|
||||
|
||||
var h = arguments[0];
|
||||
|
||||
var thead = this.hideHeader ? null : h('thead', [this.weekDays.map(function (day) {
|
||||
return h(
|
||||
'th',
|
||||
{ key: day },
|
||||
[day]
|
||||
);
|
||||
})]);
|
||||
return h(
|
||||
'table',
|
||||
{
|
||||
'class': {
|
||||
'el-calendar-table': true,
|
||||
'is-range': this.isInRange
|
||||
},
|
||||
attrs: { cellspacing: '0',
|
||||
cellpadding: '0' }
|
||||
},
|
||||
[thead, h('tbody', [this.rows.map(function (row, index) {
|
||||
return h(
|
||||
'tr',
|
||||
{
|
||||
'class': {
|
||||
'el-calendar-table__row': true,
|
||||
'el-calendar-table__row--hide-border': index === 0 && _this.hideHeader
|
||||
},
|
||||
key: index },
|
||||
[row.map(function (cell, key) {
|
||||
return h(
|
||||
'td',
|
||||
{ key: key,
|
||||
'class': _this.getCellClass(cell),
|
||||
on: {
|
||||
'click': _this.pickDay.bind(_this, cell)
|
||||
}
|
||||
},
|
||||
[h(
|
||||
'div',
|
||||
{ 'class': 'el-calendar-day' },
|
||||
[_this.cellRenderProxy(cell)]
|
||||
)]
|
||||
);
|
||||
})]
|
||||
);
|
||||
})])]
|
||||
);
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/calendar/src/date-table.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_date_tablevue_type_script_lang_js_ = (date_tablevue_type_script_lang_js_);
|
||||
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
||||
var componentNormalizer = __webpack_require__(0);
|
||||
|
||||
// CONCATENATED MODULE: ./packages/calendar/src/date-table.vue
|
||||
var date_table_render, date_table_staticRenderFns
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(componentNormalizer["a" /* default */])(
|
||||
src_date_tablevue_type_script_lang_js_,
|
||||
date_table_render,
|
||||
date_table_staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "packages/calendar/src/date-table.vue"
|
||||
/* harmony default export */ var date_table = (component.exports);
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/calendar/src/main.vue?vue&type=script&lang=js&
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var validTypes = ['prev-month', 'today', 'next-month'];
|
||||
var weekDays = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];
|
||||
var oneDay = 86400000;
|
||||
|
||||
/* harmony default export */ var mainvue_type_script_lang_js_ = ({
|
||||
name: 'ElCalendar',
|
||||
|
||||
mixins: [locale_default.a],
|
||||
|
||||
components: {
|
||||
DateTable: date_table,
|
||||
ElButton: button_default.a,
|
||||
ElButtonGroup: button_group_default.a
|
||||
},
|
||||
|
||||
props: {
|
||||
value: [Date, String, Number],
|
||||
range: {
|
||||
type: Array,
|
||||
validator: function validator(range) {
|
||||
if (Array.isArray(range)) {
|
||||
return range.length === 2 && range.every(function (item) {
|
||||
return typeof item === 'string' || typeof item === 'number' || item instanceof Date;
|
||||
});
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
},
|
||||
firstDayOfWeek: {
|
||||
type: Number,
|
||||
default: 1
|
||||
}
|
||||
},
|
||||
|
||||
provide: function provide() {
|
||||
return {
|
||||
elCalendar: this
|
||||
};
|
||||
},
|
||||
|
||||
|
||||
methods: {
|
||||
pickDay: function pickDay(day) {
|
||||
this.realSelectedDay = day;
|
||||
},
|
||||
selectDate: function selectDate(type) {
|
||||
if (validTypes.indexOf(type) === -1) {
|
||||
throw new Error('invalid type ' + type);
|
||||
}
|
||||
var day = '';
|
||||
if (type === 'prev-month') {
|
||||
day = this.prevMonthDatePrefix + '-01';
|
||||
} else if (type === 'next-month') {
|
||||
day = this.nextMonthDatePrefix + '-01';
|
||||
} else {
|
||||
day = this.formatedToday;
|
||||
}
|
||||
|
||||
if (day === this.formatedDate) return;
|
||||
this.pickDay(day);
|
||||
},
|
||||
toDate: function toDate(val) {
|
||||
if (!val) {
|
||||
throw new Error('invalid val');
|
||||
}
|
||||
return val instanceof Date ? val : new Date(val);
|
||||
},
|
||||
rangeValidator: function rangeValidator(date, isStart) {
|
||||
var firstDayOfWeek = this.realFirstDayOfWeek;
|
||||
var expected = isStart ? firstDayOfWeek : firstDayOfWeek === 0 ? 6 : firstDayOfWeek - 1;
|
||||
var message = (isStart ? 'start' : 'end') + ' of range should be ' + weekDays[expected] + '.';
|
||||
if (date.getDay() !== expected) {
|
||||
console.warn('[ElementCalendar]', message, 'Invalid range will be ignored.');
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
prevMonthDatePrefix: function prevMonthDatePrefix() {
|
||||
var temp = new Date(this.date.getTime());
|
||||
temp.setDate(0);
|
||||
return date_default.a.format(temp, 'yyyy-MM');
|
||||
},
|
||||
curMonthDatePrefix: function curMonthDatePrefix() {
|
||||
return date_default.a.format(this.date, 'yyyy-MM');
|
||||
},
|
||||
nextMonthDatePrefix: function nextMonthDatePrefix() {
|
||||
var temp = new Date(this.date.getFullYear(), this.date.getMonth() + 1, 1);
|
||||
return date_default.a.format(temp, 'yyyy-MM');
|
||||
},
|
||||
formatedDate: function formatedDate() {
|
||||
return date_default.a.format(this.date, 'yyyy-MM-dd');
|
||||
},
|
||||
i18nDate: function i18nDate() {
|
||||
var year = this.date.getFullYear();
|
||||
var month = this.date.getMonth() + 1;
|
||||
return year + ' ' + this.t('el.datepicker.year') + ' ' + this.t('el.datepicker.month' + month);
|
||||
},
|
||||
formatedToday: function formatedToday() {
|
||||
return date_default.a.format(this.now, 'yyyy-MM-dd');
|
||||
},
|
||||
|
||||
|
||||
realSelectedDay: {
|
||||
get: function get() {
|
||||
if (!this.value) return this.selectedDay;
|
||||
return this.formatedDate;
|
||||
},
|
||||
set: function set(val) {
|
||||
this.selectedDay = val;
|
||||
var date = new Date(val);
|
||||
this.$emit('input', date);
|
||||
}
|
||||
},
|
||||
|
||||
date: function date() {
|
||||
if (!this.value) {
|
||||
if (this.realSelectedDay) {
|
||||
var d = this.selectedDay.split('-');
|
||||
return new Date(d[0], d[1] - 1, d[2]);
|
||||
} else if (this.validatedRange.length) {
|
||||
return this.validatedRange[0][0];
|
||||
}
|
||||
return this.now;
|
||||
} else {
|
||||
return this.toDate(this.value);
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
// if range is valid, we get a two-digit array
|
||||
validatedRange: function validatedRange() {
|
||||
var _this = this;
|
||||
|
||||
var range = this.range;
|
||||
if (!range) return [];
|
||||
range = range.reduce(function (prev, val, index) {
|
||||
var date = _this.toDate(val);
|
||||
if (_this.rangeValidator(date, index === 0)) {
|
||||
prev = prev.concat(date);
|
||||
}
|
||||
return prev;
|
||||
}, []);
|
||||
if (range.length === 2) {
|
||||
var _range = range,
|
||||
start = _range[0],
|
||||
end = _range[1];
|
||||
|
||||
if (start > end) {
|
||||
console.warn('[ElementCalendar]end time should be greater than start time');
|
||||
return [];
|
||||
}
|
||||
// start time and end time in one month
|
||||
if (Object(date_util_["validateRangeInOneMonth"])(start, end)) {
|
||||
return [[start, end]];
|
||||
}
|
||||
var data = [];
|
||||
var startDay = new Date(start.getFullYear(), start.getMonth() + 1, 1);
|
||||
var lastDay = this.toDate(startDay.getTime() - oneDay);
|
||||
if (!Object(date_util_["validateRangeInOneMonth"])(startDay, end)) {
|
||||
console.warn('[ElementCalendar]start time and end time interval must not exceed two months');
|
||||
return [];
|
||||
}
|
||||
// 第一个月的时间范围
|
||||
data.push([start, lastDay]);
|
||||
// 下一月的时间范围,需要计算一下该月的第一个周起始日
|
||||
var firstDayOfWeek = this.realFirstDayOfWeek;
|
||||
var nextMontFirstDay = startDay.getDay();
|
||||
var interval = 0;
|
||||
if (nextMontFirstDay !== firstDayOfWeek) {
|
||||
if (firstDayOfWeek === 0) {
|
||||
interval = 7 - nextMontFirstDay;
|
||||
} else {
|
||||
interval = firstDayOfWeek - nextMontFirstDay;
|
||||
interval = interval > 0 ? interval : 7 + interval;
|
||||
}
|
||||
}
|
||||
startDay = this.toDate(startDay.getTime() + interval * oneDay);
|
||||
if (startDay.getDate() < end.getDate()) {
|
||||
data.push([startDay, end]);
|
||||
}
|
||||
return data;
|
||||
}
|
||||
return [];
|
||||
},
|
||||
realFirstDayOfWeek: function realFirstDayOfWeek() {
|
||||
if (this.firstDayOfWeek < 1 || this.firstDayOfWeek > 6) {
|
||||
return 0;
|
||||
}
|
||||
return Math.floor(this.firstDayOfWeek);
|
||||
}
|
||||
},
|
||||
|
||||
data: function data() {
|
||||
return {
|
||||
selectedDay: '',
|
||||
now: new Date()
|
||||
};
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/calendar/src/main.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
||||
// CONCATENATED MODULE: ./packages/calendar/src/main.vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var main_component = Object(componentNormalizer["a" /* default */])(
|
||||
src_mainvue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var main_api; }
|
||||
main_component.options.__file = "packages/calendar/src/main.vue"
|
||||
/* harmony default export */ var main = (main_component.exports);
|
||||
// CONCATENATED MODULE: ./packages/calendar/index.js
|
||||
|
||||
|
||||
/* istanbul ignore next */
|
||||
main.install = function (Vue) {
|
||||
Vue.component(main.name, main);
|
||||
};
|
||||
|
||||
/* harmony default export */ var calendar = __webpack_exports__["default"] = (main);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
296
public/static/libs/element-ui/lib/card.js
Normal file
296
public/static/libs/element-ui/lib/card.js
Normal file
@ -0,0 +1,296 @@
|
||||
module.exports =
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/dist/";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 107);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
||||
// This module is a runtime utility for cleaner component module output and will
|
||||
// be included in the final webpack user bundle.
|
||||
|
||||
function normalizeComponent (
|
||||
scriptExports,
|
||||
render,
|
||||
staticRenderFns,
|
||||
functionalTemplate,
|
||||
injectStyles,
|
||||
scopeId,
|
||||
moduleIdentifier, /* server only */
|
||||
shadowMode /* vue-cli only */
|
||||
) {
|
||||
// Vue.extend constructor export interop
|
||||
var options = typeof scriptExports === 'function'
|
||||
? scriptExports.options
|
||||
: scriptExports
|
||||
|
||||
// render functions
|
||||
if (render) {
|
||||
options.render = render
|
||||
options.staticRenderFns = staticRenderFns
|
||||
options._compiled = true
|
||||
}
|
||||
|
||||
// functional template
|
||||
if (functionalTemplate) {
|
||||
options.functional = true
|
||||
}
|
||||
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = 'data-v-' + scopeId
|
||||
}
|
||||
|
||||
var hook
|
||||
if (moduleIdentifier) { // server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
// inject component styles
|
||||
if (injectStyles) {
|
||||
injectStyles.call(this, context)
|
||||
}
|
||||
// register component module identifier for async chunk inferrence
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier)
|
||||
}
|
||||
}
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook
|
||||
} else if (injectStyles) {
|
||||
hook = shadowMode
|
||||
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
||||
: injectStyles
|
||||
}
|
||||
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// for template-only hot-reload because in that case the render fn doesn't
|
||||
// go through the normalizer
|
||||
options._injectStyles = hook
|
||||
// register for functioal component in vue file
|
||||
var originalRender = options.render
|
||||
options.render = function renderWithStyleInjection (h, context) {
|
||||
hook.call(context)
|
||||
return originalRender(h, context)
|
||||
}
|
||||
} else {
|
||||
// inject component registration as beforeCreate hook
|
||||
var existing = options.beforeCreate
|
||||
options.beforeCreate = existing
|
||||
? [].concat(existing, hook)
|
||||
: [hook]
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exports: scriptExports,
|
||||
options: options
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 107:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/card/src/main.vue?vue&type=template&id=59a4a40f&
|
||||
var render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c(
|
||||
"div",
|
||||
{
|
||||
staticClass: "el-card",
|
||||
class: _vm.shadow ? "is-" + _vm.shadow + "-shadow" : "is-always-shadow"
|
||||
},
|
||||
[
|
||||
_vm.$slots.header || _vm.header
|
||||
? _c(
|
||||
"div",
|
||||
{ staticClass: "el-card__header" },
|
||||
[_vm._t("header", [_vm._v(_vm._s(_vm.header))])],
|
||||
2
|
||||
)
|
||||
: _vm._e(),
|
||||
_c(
|
||||
"div",
|
||||
{ staticClass: "el-card__body", style: _vm.bodyStyle },
|
||||
[_vm._t("default")],
|
||||
2
|
||||
)
|
||||
]
|
||||
)
|
||||
}
|
||||
var staticRenderFns = []
|
||||
render._withStripped = true
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/card/src/main.vue?vue&type=template&id=59a4a40f&
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/card/src/main.vue?vue&type=script&lang=js&
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
/* harmony default export */ var mainvue_type_script_lang_js_ = ({
|
||||
name: 'ElCard',
|
||||
props: {
|
||||
header: {},
|
||||
bodyStyle: {},
|
||||
shadow: {
|
||||
type: String
|
||||
}
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/card/src/main.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
||||
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
||||
var componentNormalizer = __webpack_require__(0);
|
||||
|
||||
// CONCATENATED MODULE: ./packages/card/src/main.vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(componentNormalizer["a" /* default */])(
|
||||
src_mainvue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "packages/card/src/main.vue"
|
||||
/* harmony default export */ var main = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/card/index.js
|
||||
|
||||
|
||||
/* istanbul ignore next */
|
||||
main.install = function (Vue) {
|
||||
Vue.component(main.name, main);
|
||||
};
|
||||
|
||||
/* harmony default export */ var card = __webpack_exports__["default"] = (main);
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
433
public/static/libs/element-ui/lib/carousel-item.js
Normal file
433
public/static/libs/element-ui/lib/carousel-item.js
Normal file
@ -0,0 +1,433 @@
|
||||
module.exports =
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/dist/";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 112);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
||||
// This module is a runtime utility for cleaner component module output and will
|
||||
// be included in the final webpack user bundle.
|
||||
|
||||
function normalizeComponent (
|
||||
scriptExports,
|
||||
render,
|
||||
staticRenderFns,
|
||||
functionalTemplate,
|
||||
injectStyles,
|
||||
scopeId,
|
||||
moduleIdentifier, /* server only */
|
||||
shadowMode /* vue-cli only */
|
||||
) {
|
||||
// Vue.extend constructor export interop
|
||||
var options = typeof scriptExports === 'function'
|
||||
? scriptExports.options
|
||||
: scriptExports
|
||||
|
||||
// render functions
|
||||
if (render) {
|
||||
options.render = render
|
||||
options.staticRenderFns = staticRenderFns
|
||||
options._compiled = true
|
||||
}
|
||||
|
||||
// functional template
|
||||
if (functionalTemplate) {
|
||||
options.functional = true
|
||||
}
|
||||
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = 'data-v-' + scopeId
|
||||
}
|
||||
|
||||
var hook
|
||||
if (moduleIdentifier) { // server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
// inject component styles
|
||||
if (injectStyles) {
|
||||
injectStyles.call(this, context)
|
||||
}
|
||||
// register component module identifier for async chunk inferrence
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier)
|
||||
}
|
||||
}
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook
|
||||
} else if (injectStyles) {
|
||||
hook = shadowMode
|
||||
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
||||
: injectStyles
|
||||
}
|
||||
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// for template-only hot-reload because in that case the render fn doesn't
|
||||
// go through the normalizer
|
||||
options._injectStyles = hook
|
||||
// register for functioal component in vue file
|
||||
var originalRender = options.render
|
||||
options.render = function renderWithStyleInjection (h, context) {
|
||||
hook.call(context)
|
||||
return originalRender(h, context)
|
||||
}
|
||||
} else {
|
||||
// inject component registration as beforeCreate hook
|
||||
var existing = options.beforeCreate
|
||||
options.beforeCreate = existing
|
||||
? [].concat(existing, hook)
|
||||
: [hook]
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exports: scriptExports,
|
||||
options: options
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 112:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/carousel/src/item.vue?vue&type=template&id=1801ae19&
|
||||
var render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c(
|
||||
"div",
|
||||
{
|
||||
directives: [
|
||||
{
|
||||
name: "show",
|
||||
rawName: "v-show",
|
||||
value: _vm.ready,
|
||||
expression: "ready"
|
||||
}
|
||||
],
|
||||
staticClass: "el-carousel__item",
|
||||
class: {
|
||||
"is-active": _vm.active,
|
||||
"el-carousel__item--card": _vm.$parent.type === "card",
|
||||
"is-in-stage": _vm.inStage,
|
||||
"is-hover": _vm.hover,
|
||||
"is-animating": _vm.animating
|
||||
},
|
||||
style: _vm.itemStyle,
|
||||
on: { click: _vm.handleItemClick }
|
||||
},
|
||||
[
|
||||
_vm.$parent.type === "card"
|
||||
? _c("div", {
|
||||
directives: [
|
||||
{
|
||||
name: "show",
|
||||
rawName: "v-show",
|
||||
value: !_vm.active,
|
||||
expression: "!active"
|
||||
}
|
||||
],
|
||||
staticClass: "el-carousel__mask"
|
||||
})
|
||||
: _vm._e(),
|
||||
_vm._t("default")
|
||||
],
|
||||
2
|
||||
)
|
||||
}
|
||||
var staticRenderFns = []
|
||||
render._withStripped = true
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/carousel/src/item.vue?vue&type=template&id=1801ae19&
|
||||
|
||||
// EXTERNAL MODULE: external "element-ui/lib/utils/util"
|
||||
var util_ = __webpack_require__(3);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/carousel/src/item.vue?vue&type=script&lang=js&
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
|
||||
var CARD_SCALE = 0.83;
|
||||
/* harmony default export */ var itemvue_type_script_lang_js_ = ({
|
||||
name: 'ElCarouselItem',
|
||||
|
||||
props: {
|
||||
name: String,
|
||||
label: {
|
||||
type: [String, Number],
|
||||
default: ''
|
||||
}
|
||||
},
|
||||
|
||||
data: function data() {
|
||||
return {
|
||||
hover: false,
|
||||
translate: 0,
|
||||
scale: 1,
|
||||
active: false,
|
||||
ready: false,
|
||||
inStage: false,
|
||||
animating: false
|
||||
};
|
||||
},
|
||||
|
||||
|
||||
methods: {
|
||||
processIndex: function processIndex(index, activeIndex, length) {
|
||||
if (activeIndex === 0 && index === length - 1) {
|
||||
return -1;
|
||||
} else if (activeIndex === length - 1 && index === 0) {
|
||||
return length;
|
||||
} else if (index < activeIndex - 1 && activeIndex - index >= length / 2) {
|
||||
return length + 1;
|
||||
} else if (index > activeIndex + 1 && index - activeIndex >= length / 2) {
|
||||
return -2;
|
||||
}
|
||||
return index;
|
||||
},
|
||||
calcCardTranslate: function calcCardTranslate(index, activeIndex) {
|
||||
var parentWidth = this.$parent.$el.offsetWidth;
|
||||
if (this.inStage) {
|
||||
return parentWidth * ((2 - CARD_SCALE) * (index - activeIndex) + 1) / 4;
|
||||
} else if (index < activeIndex) {
|
||||
return -(1 + CARD_SCALE) * parentWidth / 4;
|
||||
} else {
|
||||
return (3 + CARD_SCALE) * parentWidth / 4;
|
||||
}
|
||||
},
|
||||
calcTranslate: function calcTranslate(index, activeIndex, isVertical) {
|
||||
var distance = this.$parent.$el[isVertical ? 'offsetHeight' : 'offsetWidth'];
|
||||
return distance * (index - activeIndex);
|
||||
},
|
||||
translateItem: function translateItem(index, activeIndex, oldIndex) {
|
||||
var parentType = this.$parent.type;
|
||||
var parentDirection = this.parentDirection;
|
||||
var length = this.$parent.items.length;
|
||||
if (parentType !== 'card' && oldIndex !== undefined) {
|
||||
this.animating = index === activeIndex || index === oldIndex;
|
||||
}
|
||||
if (index !== activeIndex && length > 2 && this.$parent.loop) {
|
||||
index = this.processIndex(index, activeIndex, length);
|
||||
}
|
||||
if (parentType === 'card') {
|
||||
if (parentDirection === 'vertical') {
|
||||
console.warn('[Element Warn][Carousel]vertical direction is not supported in card mode');
|
||||
}
|
||||
this.inStage = Math.round(Math.abs(index - activeIndex)) <= 1;
|
||||
this.active = index === activeIndex;
|
||||
this.translate = this.calcCardTranslate(index, activeIndex);
|
||||
this.scale = this.active ? 1 : CARD_SCALE;
|
||||
} else {
|
||||
this.active = index === activeIndex;
|
||||
var isVertical = parentDirection === 'vertical';
|
||||
this.translate = this.calcTranslate(index, activeIndex, isVertical);
|
||||
this.scale = 1;
|
||||
}
|
||||
this.ready = true;
|
||||
},
|
||||
handleItemClick: function handleItemClick() {
|
||||
var parent = this.$parent;
|
||||
if (parent && parent.type === 'card') {
|
||||
var index = parent.items.indexOf(this);
|
||||
parent.setActiveItem(index);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
parentDirection: function parentDirection() {
|
||||
return this.$parent.direction;
|
||||
},
|
||||
itemStyle: function itemStyle() {
|
||||
var translateType = this.parentDirection === 'vertical' ? 'translateY' : 'translateX';
|
||||
var value = translateType + '(' + this.translate + 'px) scale(' + this.scale + ')';
|
||||
var style = {
|
||||
transform: value
|
||||
};
|
||||
return Object(util_["autoprefixer"])(style);
|
||||
}
|
||||
},
|
||||
|
||||
created: function created() {
|
||||
this.$parent && this.$parent.updateItems();
|
||||
},
|
||||
destroyed: function destroyed() {
|
||||
this.$parent && this.$parent.updateItems();
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/carousel/src/item.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_itemvue_type_script_lang_js_ = (itemvue_type_script_lang_js_);
|
||||
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
||||
var componentNormalizer = __webpack_require__(0);
|
||||
|
||||
// CONCATENATED MODULE: ./packages/carousel/src/item.vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(componentNormalizer["a" /* default */])(
|
||||
src_itemvue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "packages/carousel/src/item.vue"
|
||||
/* harmony default export */ var item = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/carousel-item/index.js
|
||||
|
||||
|
||||
/* istanbul ignore next */
|
||||
item.install = function (Vue) {
|
||||
Vue.component(item.name, item);
|
||||
};
|
||||
|
||||
/* harmony default export */ var carousel_item = __webpack_exports__["default"] = (item);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 3:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/utils/util");
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
706
public/static/libs/element-ui/lib/carousel.js
Normal file
706
public/static/libs/element-ui/lib/carousel.js
Normal file
@ -0,0 +1,706 @@
|
||||
module.exports =
|
||||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/dist/";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 111);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
|
||||
/* globals __VUE_SSR_CONTEXT__ */
|
||||
|
||||
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
||||
// This module is a runtime utility for cleaner component module output and will
|
||||
// be included in the final webpack user bundle.
|
||||
|
||||
function normalizeComponent (
|
||||
scriptExports,
|
||||
render,
|
||||
staticRenderFns,
|
||||
functionalTemplate,
|
||||
injectStyles,
|
||||
scopeId,
|
||||
moduleIdentifier, /* server only */
|
||||
shadowMode /* vue-cli only */
|
||||
) {
|
||||
// Vue.extend constructor export interop
|
||||
var options = typeof scriptExports === 'function'
|
||||
? scriptExports.options
|
||||
: scriptExports
|
||||
|
||||
// render functions
|
||||
if (render) {
|
||||
options.render = render
|
||||
options.staticRenderFns = staticRenderFns
|
||||
options._compiled = true
|
||||
}
|
||||
|
||||
// functional template
|
||||
if (functionalTemplate) {
|
||||
options.functional = true
|
||||
}
|
||||
|
||||
// scopedId
|
||||
if (scopeId) {
|
||||
options._scopeId = 'data-v-' + scopeId
|
||||
}
|
||||
|
||||
var hook
|
||||
if (moduleIdentifier) { // server build
|
||||
hook = function (context) {
|
||||
// 2.3 injection
|
||||
context =
|
||||
context || // cached call
|
||||
(this.$vnode && this.$vnode.ssrContext) || // stateful
|
||||
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
|
||||
// 2.2 with runInNewContext: true
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
// inject component styles
|
||||
if (injectStyles) {
|
||||
injectStyles.call(this, context)
|
||||
}
|
||||
// register component module identifier for async chunk inferrence
|
||||
if (context && context._registeredComponents) {
|
||||
context._registeredComponents.add(moduleIdentifier)
|
||||
}
|
||||
}
|
||||
// used by ssr in case component is cached and beforeCreate
|
||||
// never gets called
|
||||
options._ssrRegister = hook
|
||||
} else if (injectStyles) {
|
||||
hook = shadowMode
|
||||
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
|
||||
: injectStyles
|
||||
}
|
||||
|
||||
if (hook) {
|
||||
if (options.functional) {
|
||||
// for template-only hot-reload because in that case the render fn doesn't
|
||||
// go through the normalizer
|
||||
options._injectStyles = hook
|
||||
// register for functioal component in vue file
|
||||
var originalRender = options.render
|
||||
options.render = function renderWithStyleInjection (h, context) {
|
||||
hook.call(context)
|
||||
return originalRender(h, context)
|
||||
}
|
||||
} else {
|
||||
// inject component registration as beforeCreate hook
|
||||
var existing = options.beforeCreate
|
||||
options.beforeCreate = existing
|
||||
? [].concat(existing, hook)
|
||||
: [hook]
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
exports: scriptExports,
|
||||
options: options
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 111:
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/carousel/src/main.vue?vue&type=template&id=5d5d1482&
|
||||
var render = function() {
|
||||
var _vm = this
|
||||
var _h = _vm.$createElement
|
||||
var _c = _vm._self._c || _h
|
||||
return _c(
|
||||
"div",
|
||||
{
|
||||
class: _vm.carouselClasses,
|
||||
on: {
|
||||
mouseenter: function($event) {
|
||||
$event.stopPropagation()
|
||||
return _vm.handleMouseEnter($event)
|
||||
},
|
||||
mouseleave: function($event) {
|
||||
$event.stopPropagation()
|
||||
return _vm.handleMouseLeave($event)
|
||||
}
|
||||
}
|
||||
},
|
||||
[
|
||||
_c(
|
||||
"div",
|
||||
{
|
||||
staticClass: "el-carousel__container",
|
||||
style: { height: _vm.height }
|
||||
},
|
||||
[
|
||||
_vm.arrowDisplay
|
||||
? _c("transition", { attrs: { name: "carousel-arrow-left" } }, [
|
||||
_c(
|
||||
"button",
|
||||
{
|
||||
directives: [
|
||||
{
|
||||
name: "show",
|
||||
rawName: "v-show",
|
||||
value:
|
||||
(_vm.arrow === "always" || _vm.hover) &&
|
||||
(_vm.loop || _vm.activeIndex > 0),
|
||||
expression:
|
||||
"(arrow === 'always' || hover) && (loop || activeIndex > 0)"
|
||||
}
|
||||
],
|
||||
staticClass: "el-carousel__arrow el-carousel__arrow--left",
|
||||
attrs: { type: "button" },
|
||||
on: {
|
||||
mouseenter: function($event) {
|
||||
_vm.handleButtonEnter("left")
|
||||
},
|
||||
mouseleave: _vm.handleButtonLeave,
|
||||
click: function($event) {
|
||||
$event.stopPropagation()
|
||||
_vm.throttledArrowClick(_vm.activeIndex - 1)
|
||||
}
|
||||
}
|
||||
},
|
||||
[_c("i", { staticClass: "el-icon-arrow-left" })]
|
||||
)
|
||||
])
|
||||
: _vm._e(),
|
||||
_vm.arrowDisplay
|
||||
? _c("transition", { attrs: { name: "carousel-arrow-right" } }, [
|
||||
_c(
|
||||
"button",
|
||||
{
|
||||
directives: [
|
||||
{
|
||||
name: "show",
|
||||
rawName: "v-show",
|
||||
value:
|
||||
(_vm.arrow === "always" || _vm.hover) &&
|
||||
(_vm.loop || _vm.activeIndex < _vm.items.length - 1),
|
||||
expression:
|
||||
"(arrow === 'always' || hover) && (loop || activeIndex < items.length - 1)"
|
||||
}
|
||||
],
|
||||
staticClass: "el-carousel__arrow el-carousel__arrow--right",
|
||||
attrs: { type: "button" },
|
||||
on: {
|
||||
mouseenter: function($event) {
|
||||
_vm.handleButtonEnter("right")
|
||||
},
|
||||
mouseleave: _vm.handleButtonLeave,
|
||||
click: function($event) {
|
||||
$event.stopPropagation()
|
||||
_vm.throttledArrowClick(_vm.activeIndex + 1)
|
||||
}
|
||||
}
|
||||
},
|
||||
[_c("i", { staticClass: "el-icon-arrow-right" })]
|
||||
)
|
||||
])
|
||||
: _vm._e(),
|
||||
_vm._t("default")
|
||||
],
|
||||
2
|
||||
),
|
||||
_vm.indicatorPosition !== "none"
|
||||
? _c(
|
||||
"ul",
|
||||
{ class: _vm.indicatorsClasses },
|
||||
_vm._l(_vm.items, function(item, index) {
|
||||
return _c(
|
||||
"li",
|
||||
{
|
||||
key: index,
|
||||
class: [
|
||||
"el-carousel__indicator",
|
||||
"el-carousel__indicator--" + _vm.direction,
|
||||
{ "is-active": index === _vm.activeIndex }
|
||||
],
|
||||
on: {
|
||||
mouseenter: function($event) {
|
||||
_vm.throttledIndicatorHover(index)
|
||||
},
|
||||
click: function($event) {
|
||||
$event.stopPropagation()
|
||||
_vm.handleIndicatorClick(index)
|
||||
}
|
||||
}
|
||||
},
|
||||
[
|
||||
_c("button", { staticClass: "el-carousel__button" }, [
|
||||
_vm.hasLabel
|
||||
? _c("span", [_vm._v(_vm._s(item.label))])
|
||||
: _vm._e()
|
||||
])
|
||||
]
|
||||
)
|
||||
}),
|
||||
0
|
||||
)
|
||||
: _vm._e()
|
||||
]
|
||||
)
|
||||
}
|
||||
var staticRenderFns = []
|
||||
render._withStripped = true
|
||||
|
||||
|
||||
// CONCATENATED MODULE: ./packages/carousel/src/main.vue?vue&type=template&id=5d5d1482&
|
||||
|
||||
// EXTERNAL MODULE: external "throttle-debounce/throttle"
|
||||
var throttle_ = __webpack_require__(25);
|
||||
var throttle_default = /*#__PURE__*/__webpack_require__.n(throttle_);
|
||||
|
||||
// EXTERNAL MODULE: external "element-ui/lib/utils/resize-event"
|
||||
var resize_event_ = __webpack_require__(16);
|
||||
|
||||
// CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/carousel/src/main.vue?vue&type=script&lang=js&
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
|
||||
|
||||
|
||||
|
||||
/* harmony default export */ var mainvue_type_script_lang_js_ = ({
|
||||
name: 'ElCarousel',
|
||||
|
||||
props: {
|
||||
initialIndex: {
|
||||
type: Number,
|
||||
default: 0
|
||||
},
|
||||
height: String,
|
||||
trigger: {
|
||||
type: String,
|
||||
default: 'hover'
|
||||
},
|
||||
autoplay: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
interval: {
|
||||
type: Number,
|
||||
default: 3000
|
||||
},
|
||||
indicatorPosition: String,
|
||||
indicator: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
arrow: {
|
||||
type: String,
|
||||
default: 'hover'
|
||||
},
|
||||
type: String,
|
||||
loop: {
|
||||
type: Boolean,
|
||||
default: true
|
||||
},
|
||||
direction: {
|
||||
type: String,
|
||||
default: 'horizontal',
|
||||
validator: function validator(val) {
|
||||
return ['horizontal', 'vertical'].indexOf(val) !== -1;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
data: function data() {
|
||||
return {
|
||||
items: [],
|
||||
activeIndex: -1,
|
||||
containerWidth: 0,
|
||||
timer: null,
|
||||
hover: false
|
||||
};
|
||||
},
|
||||
|
||||
|
||||
computed: {
|
||||
arrowDisplay: function arrowDisplay() {
|
||||
return this.arrow !== 'never' && this.direction !== 'vertical';
|
||||
},
|
||||
hasLabel: function hasLabel() {
|
||||
return this.items.some(function (item) {
|
||||
return item.label.toString().length > 0;
|
||||
});
|
||||
},
|
||||
carouselClasses: function carouselClasses() {
|
||||
var classes = ['el-carousel', 'el-carousel--' + this.direction];
|
||||
if (this.type === 'card') {
|
||||
classes.push('el-carousel--card');
|
||||
}
|
||||
return classes;
|
||||
},
|
||||
indicatorsClasses: function indicatorsClasses() {
|
||||
var classes = ['el-carousel__indicators', 'el-carousel__indicators--' + this.direction];
|
||||
if (this.hasLabel) {
|
||||
classes.push('el-carousel__indicators--labels');
|
||||
}
|
||||
if (this.indicatorPosition === 'outside' || this.type === 'card') {
|
||||
classes.push('el-carousel__indicators--outside');
|
||||
}
|
||||
return classes;
|
||||
}
|
||||
},
|
||||
|
||||
watch: {
|
||||
items: function items(val) {
|
||||
if (val.length > 0) this.setActiveItem(this.initialIndex);
|
||||
},
|
||||
activeIndex: function activeIndex(val, oldVal) {
|
||||
this.resetItemPosition(oldVal);
|
||||
if (oldVal > -1) {
|
||||
this.$emit('change', val, oldVal);
|
||||
}
|
||||
},
|
||||
autoplay: function autoplay(val) {
|
||||
val ? this.startTimer() : this.pauseTimer();
|
||||
},
|
||||
loop: function loop() {
|
||||
this.setActiveItem(this.activeIndex);
|
||||
},
|
||||
interval: function interval() {
|
||||
this.pauseTimer();
|
||||
this.startTimer();
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
handleMouseEnter: function handleMouseEnter() {
|
||||
this.hover = true;
|
||||
this.pauseTimer();
|
||||
},
|
||||
handleMouseLeave: function handleMouseLeave() {
|
||||
this.hover = false;
|
||||
this.startTimer();
|
||||
},
|
||||
itemInStage: function itemInStage(item, index) {
|
||||
var length = this.items.length;
|
||||
if (index === length - 1 && item.inStage && this.items[0].active || item.inStage && this.items[index + 1] && this.items[index + 1].active) {
|
||||
return 'left';
|
||||
} else if (index === 0 && item.inStage && this.items[length - 1].active || item.inStage && this.items[index - 1] && this.items[index - 1].active) {
|
||||
return 'right';
|
||||
}
|
||||
return false;
|
||||
},
|
||||
handleButtonEnter: function handleButtonEnter(arrow) {
|
||||
var _this = this;
|
||||
|
||||
if (this.direction === 'vertical') return;
|
||||
this.items.forEach(function (item, index) {
|
||||
if (arrow === _this.itemInStage(item, index)) {
|
||||
item.hover = true;
|
||||
}
|
||||
});
|
||||
},
|
||||
handleButtonLeave: function handleButtonLeave() {
|
||||
if (this.direction === 'vertical') return;
|
||||
this.items.forEach(function (item) {
|
||||
item.hover = false;
|
||||
});
|
||||
},
|
||||
updateItems: function updateItems() {
|
||||
this.items = this.$children.filter(function (child) {
|
||||
return child.$options.name === 'ElCarouselItem';
|
||||
});
|
||||
},
|
||||
resetItemPosition: function resetItemPosition(oldIndex) {
|
||||
var _this2 = this;
|
||||
|
||||
this.items.forEach(function (item, index) {
|
||||
item.translateItem(index, _this2.activeIndex, oldIndex);
|
||||
});
|
||||
},
|
||||
playSlides: function playSlides() {
|
||||
if (this.activeIndex < this.items.length - 1) {
|
||||
this.activeIndex++;
|
||||
} else if (this.loop) {
|
||||
this.activeIndex = 0;
|
||||
}
|
||||
},
|
||||
pauseTimer: function pauseTimer() {
|
||||
if (this.timer) {
|
||||
clearInterval(this.timer);
|
||||
this.timer = null;
|
||||
}
|
||||
},
|
||||
startTimer: function startTimer() {
|
||||
if (this.interval <= 0 || !this.autoplay || this.timer) return;
|
||||
this.timer = setInterval(this.playSlides, this.interval);
|
||||
},
|
||||
resetTimer: function resetTimer() {
|
||||
this.pauseTimer();
|
||||
this.startTimer();
|
||||
},
|
||||
setActiveItem: function setActiveItem(index) {
|
||||
if (typeof index === 'string') {
|
||||
var filteredItems = this.items.filter(function (item) {
|
||||
return item.name === index;
|
||||
});
|
||||
if (filteredItems.length > 0) {
|
||||
index = this.items.indexOf(filteredItems[0]);
|
||||
}
|
||||
}
|
||||
index = Number(index);
|
||||
if (isNaN(index) || index !== Math.floor(index)) {
|
||||
console.warn('[Element Warn][Carousel]index must be an integer.');
|
||||
return;
|
||||
}
|
||||
var length = this.items.length;
|
||||
var oldIndex = this.activeIndex;
|
||||
if (index < 0) {
|
||||
this.activeIndex = this.loop ? length - 1 : 0;
|
||||
} else if (index >= length) {
|
||||
this.activeIndex = this.loop ? 0 : length - 1;
|
||||
} else {
|
||||
this.activeIndex = index;
|
||||
}
|
||||
if (oldIndex === this.activeIndex) {
|
||||
this.resetItemPosition(oldIndex);
|
||||
}
|
||||
this.resetTimer();
|
||||
},
|
||||
prev: function prev() {
|
||||
this.setActiveItem(this.activeIndex - 1);
|
||||
},
|
||||
next: function next() {
|
||||
this.setActiveItem(this.activeIndex + 1);
|
||||
},
|
||||
handleIndicatorClick: function handleIndicatorClick(index) {
|
||||
this.activeIndex = index;
|
||||
},
|
||||
handleIndicatorHover: function handleIndicatorHover(index) {
|
||||
if (this.trigger === 'hover' && index !== this.activeIndex) {
|
||||
this.activeIndex = index;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
created: function created() {
|
||||
var _this3 = this;
|
||||
|
||||
this.throttledArrowClick = throttle_default()(300, true, function (index) {
|
||||
_this3.setActiveItem(index);
|
||||
});
|
||||
this.throttledIndicatorHover = throttle_default()(300, function (index) {
|
||||
_this3.handleIndicatorHover(index);
|
||||
});
|
||||
},
|
||||
mounted: function mounted() {
|
||||
var _this4 = this;
|
||||
|
||||
this.updateItems();
|
||||
this.$nextTick(function () {
|
||||
Object(resize_event_["addResizeListener"])(_this4.$el, _this4.resetItemPosition);
|
||||
if (_this4.initialIndex < _this4.items.length && _this4.initialIndex >= 0) {
|
||||
_this4.activeIndex = _this4.initialIndex;
|
||||
}
|
||||
_this4.startTimer();
|
||||
});
|
||||
},
|
||||
beforeDestroy: function beforeDestroy() {
|
||||
if (this.$el) Object(resize_event_["removeResizeListener"])(this.$el, this.resetItemPosition);
|
||||
this.pauseTimer();
|
||||
}
|
||||
});
|
||||
// CONCATENATED MODULE: ./packages/carousel/src/main.vue?vue&type=script&lang=js&
|
||||
/* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
|
||||
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
||||
var componentNormalizer = __webpack_require__(0);
|
||||
|
||||
// CONCATENATED MODULE: ./packages/carousel/src/main.vue
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/* normalize component */
|
||||
|
||||
var component = Object(componentNormalizer["a" /* default */])(
|
||||
src_mainvue_type_script_lang_js_,
|
||||
render,
|
||||
staticRenderFns,
|
||||
false,
|
||||
null,
|
||||
null,
|
||||
null
|
||||
|
||||
)
|
||||
|
||||
/* hot reload */
|
||||
if (false) { var api; }
|
||||
component.options.__file = "packages/carousel/src/main.vue"
|
||||
/* harmony default export */ var main = (component.exports);
|
||||
// CONCATENATED MODULE: ./packages/carousel/index.js
|
||||
|
||||
|
||||
/* istanbul ignore next */
|
||||
main.install = function (Vue) {
|
||||
Vue.component(main.name, main);
|
||||
};
|
||||
|
||||
/* harmony default export */ var carousel = __webpack_exports__["default"] = (main);
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 16:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("element-ui/lib/utils/resize-event");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 25:
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
module.exports = require("throttle-debounce/throttle");
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
1563
public/static/libs/element-ui/lib/cascader-panel.js
Normal file
1563
public/static/libs/element-ui/lib/cascader-panel.js
Normal file
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user