添加后台
parent
49b45b8b6d
commit
cb7513ca6e
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace App\Admin\Controllers;
|
||||
|
||||
use Slowlyo\OwlAdmin\Controllers\AuthController as AdminAuthController;
|
||||
|
||||
class AuthController extends AdminAuthController
|
||||
{
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,293 @@
|
|||
<?php
|
||||
|
||||
namespace App\Admin\Controllers;
|
||||
|
||||
use Illuminate\Http\JsonResponse;
|
||||
use Slowlyo\OwlAdmin\Renderers\Card;
|
||||
use Slowlyo\OwlAdmin\Renderers\Flex;
|
||||
use Slowlyo\OwlAdmin\Renderers\Html;
|
||||
use Slowlyo\OwlAdmin\Renderers\Grid;
|
||||
use Slowlyo\OwlAdmin\Renderers\Chart;
|
||||
use Slowlyo\OwlAdmin\Renderers\Image;
|
||||
use Slowlyo\OwlAdmin\Renderers\Action;
|
||||
use Slowlyo\OwlAdmin\Renderers\Custom;
|
||||
use Slowlyo\OwlAdmin\Renderers\Wrapper;
|
||||
use Illuminate\Http\Resources\Json\JsonResource;
|
||||
use Slowlyo\OwlAdmin\Controllers\AdminController;
|
||||
|
||||
class HomeController extends AdminController
|
||||
{
|
||||
protected string $queryPath = 'dashboard';
|
||||
|
||||
protected string $pageTitle = '首页';
|
||||
|
||||
public function index(): JsonResponse|JsonResource
|
||||
{
|
||||
$page = $this->basePage()->css($this->css())->body([
|
||||
Grid::make()->columns([
|
||||
$this->frameworkInfo()->md(5),
|
||||
Flex::make()->items([
|
||||
$this->pieChart(),
|
||||
$this->cube(),
|
||||
]),
|
||||
]),
|
||||
Grid::make()->columns([
|
||||
$this->lineChart()->md(8),
|
||||
Flex::make()->className('h-full')->items([
|
||||
$this->clock(),
|
||||
$this->giteeWidget(),
|
||||
])->direction('column'),
|
||||
]),
|
||||
]);
|
||||
|
||||
return $this->response()->success($page);
|
||||
}
|
||||
|
||||
/**
|
||||
* gitee widget
|
||||
*/
|
||||
public function giteeWidget()
|
||||
{
|
||||
return Card::make()
|
||||
->className('h-full clear-card-mb gitee-box overflow-auto')
|
||||
->body(
|
||||
Custom::make()->id('osc-gitee-widget-tag')->onMount(<<<JS
|
||||
// 隐藏 gitee-box
|
||||
document.querySelector(".gitee-box").style.display = "none"
|
||||
|
||||
// 引入 gitee-widget
|
||||
const script = document.createElement("script")
|
||||
script.src = "https://gitee.com/slowlyo/owl-admin/widget_preview"
|
||||
script.async = true
|
||||
script.defer = true
|
||||
document.body.appendChild(script)
|
||||
|
||||
// 隐藏元素
|
||||
const hideElementByClassName = (className) => {
|
||||
const element = document.querySelector(className)
|
||||
if (element) {
|
||||
element.style.display = "none"
|
||||
}
|
||||
}
|
||||
|
||||
setTimeout(() => {
|
||||
// 移除 gitee-box 下的 cxd-Card-body 的 padding
|
||||
const giteeBox = document.querySelector(".gitee-box")
|
||||
if (giteeBox) {
|
||||
giteeBox.querySelector(".cxd-Card-body").style.padding = "0"
|
||||
}
|
||||
|
||||
// 隐藏不需要的元素
|
||||
let hideClassName = [".osc_git_info", ".osc_git_issuecommits", ".osc_git_copyright"]
|
||||
hideClassName.forEach(className => hideElementByClassName(className) )
|
||||
|
||||
// 隐藏边框
|
||||
const oscBorderColor = document.querySelectorAll(".osc_border_color")
|
||||
oscBorderColor.forEach(element => element.style.borderColor = "transparent")
|
||||
|
||||
// 显示
|
||||
giteeBox.style.display = "block"
|
||||
}, 1000)
|
||||
JS
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
public function clock(): Card
|
||||
{
|
||||
return Card::make()->className('h-full bg-blingbling')->header([
|
||||
'title' => '时钟',
|
||||
])->body([
|
||||
Custom::make()
|
||||
->name('clock')
|
||||
->html('<div id="clock" class="text-4xl"></div><div id="clock-date" class="mt-5"></div>')
|
||||
->onMount(<<<JS
|
||||
const clock = document.getElementById('clock');
|
||||
const tick = () => {
|
||||
clock.innerHTML = (new Date()).toLocaleTimeString();
|
||||
requestAnimationFrame(tick);
|
||||
};
|
||||
tick();
|
||||
|
||||
const clockDate = document.getElementById('clock-date');
|
||||
clockDate.innerHTML = (new Date()).toLocaleDateString();
|
||||
JS
|
||||
|
||||
),
|
||||
]);
|
||||
}
|
||||
|
||||
public function frameworkInfo(): Card
|
||||
{
|
||||
return Card::make()->className('h-96')->body(
|
||||
Wrapper::make()->className('h-full')->body([
|
||||
Flex::make()->className('h-full')->direction('column')->justify('center')->items([
|
||||
Image::make()->src(url(config('admin.logo'))),
|
||||
Wrapper::make()->className('text-3xl mt-9')->body(config('admin.name')),
|
||||
Flex::make()->className('w-64 mt-5')->justify('space-around')->items([
|
||||
Action::make()
|
||||
->level('link')
|
||||
->label('Gitee')
|
||||
->blank(true)
|
||||
->actionType('url')
|
||||
->blank(true)
|
||||
->link('https://gitee.com/slowlyo/owl-admin'),
|
||||
Action::make()
|
||||
->level('link')
|
||||
->label('OwlAdmin 文档')
|
||||
->blank(true)
|
||||
->actionType('url')
|
||||
->link('https://slowlyo.gitee.io/owl-admin-doc/'),
|
||||
Action::make()
|
||||
->level('link')
|
||||
->label('Amis 文档')
|
||||
->blank(true)
|
||||
->actionType('url')
|
||||
->link('https://aisuda.bce.baidu.com/amis/zh-CN/docs/index'),
|
||||
]),
|
||||
]),
|
||||
])
|
||||
);
|
||||
}
|
||||
|
||||
public function pieChart(): Card
|
||||
{
|
||||
return Card::make()->className('h-96')->body(
|
||||
Chart::make()->height(350)->config("{
|
||||
tooltip: { trigger: 'item' },
|
||||
legend: { bottom: 0, left: 'center' },
|
||||
series: [
|
||||
{
|
||||
name: 'Access From',
|
||||
type: 'pie',
|
||||
radius: ['40%', '70%'],
|
||||
avoidLabelOverlap: false,
|
||||
itemStyle: { borderRadius: 10, borderColor: '#fff', borderWidth: 2 },
|
||||
label: { show: false, position: 'center' },
|
||||
emphasis: {
|
||||
label: { show: true, fontSize: '40', fontWeight: 'bold' }
|
||||
},
|
||||
labelLine: { show: false },
|
||||
data: [
|
||||
{ value: 1048, name: 'Search Engine' },
|
||||
{ value: 735, name: 'Direct' },
|
||||
{ value: 580, name: 'Email' },
|
||||
{ value: 484, name: 'Union Ads' },
|
||||
{ value: 300, name: 'Video Ads' }
|
||||
]
|
||||
}
|
||||
]
|
||||
}")
|
||||
);
|
||||
}
|
||||
|
||||
public function lineChart(): Card
|
||||
{
|
||||
$randArr = function () {
|
||||
$_arr = [];
|
||||
for ($i = 0; $i < 7; $i++) {
|
||||
$_arr[] = random_int(10, 200);
|
||||
}
|
||||
return '[' . implode(',', $_arr) . ']';
|
||||
};
|
||||
|
||||
$random1 = $randArr();
|
||||
$random2 = $randArr();
|
||||
|
||||
$chart = Chart::make()->height(380)->className('h-96')->config("{
|
||||
title:{ text: '会员增长情况', },
|
||||
tooltip: { trigger: 'axis' },
|
||||
xAxis: { type: 'category', boundaryGap: false, data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] },
|
||||
yAxis: { type: 'value' },
|
||||
grid:{ left: '7%', right:'3%', top: 60, bottom: 30, },
|
||||
legend: { data: ['访问量','注册量'] },
|
||||
series: [
|
||||
{ name: '访问量', data: {$random1}, type: 'line', areaStyle: {}, smooth: true, symbol: 'none', },
|
||||
{ name:'注册量', data: {$random2}, type: 'line', areaStyle: {}, smooth: true, symbol: 'none', },
|
||||
]}");
|
||||
|
||||
return Card::make()->className('clear-card-mb')->body($chart);
|
||||
}
|
||||
|
||||
public function cube(): Card
|
||||
{
|
||||
return Card::make()->className('h-96 ml-4 w-8/12')->body(
|
||||
Html::make()->html(<<<HTML
|
||||
<style>
|
||||
.cube-box{ height: 300px; display: flex; align-items: center; justify-content: center; }
|
||||
.cube { width: 100px; height: 100px; position: relative; transform-style: preserve-3d; animation: rotate 10s linear infinite; }
|
||||
.cube:after {
|
||||
content: '';
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
|
||||
position: absolute;
|
||||
transform-origin: bottom;
|
||||
transform-style: preserve-3d;
|
||||
transform: rotateX(90deg) translateY(50px) translateZ(-50px);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.cube div {
|
||||
background-color: rgba(64, 158, 255, 0.7);
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: 1px solid rgb(27, 99, 170);
|
||||
box-shadow: 0 0 60px rgba(64, 158, 255, 0.7);
|
||||
}
|
||||
.cube div:nth-child(1) { transform: translateZ(-50px); animation: shade 10s -5s linear infinite; }
|
||||
.cube div:nth-child(2) { transform: translateZ(50px) rotateY(180deg); animation: shade 10s linear infinite; }
|
||||
.cube div:nth-child(3) { transform-origin: right; transform: translateZ(50px) rotateY(270deg); animation: shade 10s -2.5s linear infinite; }
|
||||
.cube div:nth-child(4) { transform-origin: left; transform: translateZ(50px) rotateY(90deg); animation: shade 10s -7.5s linear infinite; }
|
||||
.cube div:nth-child(5) { transform-origin: bottom; transform: translateZ(50px) rotateX(90deg); background-color: rgba(0, 0, 0, 0.7); }
|
||||
.cube div:nth-child(6) { transform-origin: top; transform: translateZ(50px) rotateX(270deg); }
|
||||
|
||||
@keyframes rotate {
|
||||
0% { transform: rotateX(-15deg) rotateY(0deg); }
|
||||
100% { transform: rotateX(-15deg) rotateY(360deg); }
|
||||
}
|
||||
@keyframes shade { 50% { background-color: rgba(0, 0, 0, 0.7); } }
|
||||
</style>
|
||||
<div class="cube-box">
|
||||
<div class="cube">
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
</div>
|
||||
</div>
|
||||
HTML
|
||||
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
private function css(): array
|
||||
{
|
||||
return [
|
||||
'.clear-card-mb' => [
|
||||
'margin-bottom' => '0 !important',
|
||||
],
|
||||
'.amis-scope .cxd-Image' => [
|
||||
'border' => '0',
|
||||
],
|
||||
'.amis-scope .bg-blingbling' => [
|
||||
'color' => '#fff',
|
||||
'background' => 'linear-gradient(to bottom right, #2C3E50, #FD746C, #FF8235, #ffff1c, #92FE9D, #00C9FF, #a044ff, #e73827)',
|
||||
'background-repeat' => 'no-repeat',
|
||||
'background-size' => '1000% 1000%',
|
||||
'animation' => 'gradient 60s ease infinite',
|
||||
],
|
||||
'@keyframes gradient' => [
|
||||
'0%{background-position:0% 0%}
|
||||
50%{background-position:100% 100%}
|
||||
100%{background-position:0% 0%}',
|
||||
],
|
||||
'.amis-scope .bg-blingbling .cxd-Card-title' => [
|
||||
'color' => '#fff',
|
||||
],
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
<?php
|
||||
|
||||
namespace App\Admin\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Slowlyo\OwlAdmin\Renderers\Tab;
|
||||
use Slowlyo\OwlAdmin\Renderers\Tabs;
|
||||
use Slowlyo\OwlAdmin\Renderers\Alert;
|
||||
use Slowlyo\OwlAdmin\Renderers\InputKV;
|
||||
use Slowlyo\OwlAdmin\Renderers\TextControl;
|
||||
use Slowlyo\OwlAdmin\Controllers\AdminController;
|
||||
|
||||
class SettingController extends AdminController
|
||||
{
|
||||
protected string $queryPath = 'system/settings';
|
||||
|
||||
protected string $pageTitle = '系统设置';
|
||||
|
||||
public function index()
|
||||
{
|
||||
$page = $this->basePage()->body([
|
||||
Alert::make()->showIcon(true)->body("此处内容仅供演示, 设置项无实际意义,实际开发中请根据实际情况进行修改。"),
|
||||
$this->form(),
|
||||
]);
|
||||
|
||||
return $this->response()->success($page);
|
||||
}
|
||||
|
||||
public function form()
|
||||
{
|
||||
return $this->baseForm()
|
||||
->redirect('')
|
||||
->api($this->getStorePath())
|
||||
->data(settings()->all())
|
||||
->body(
|
||||
Tabs::make()->tabs([
|
||||
Tab::make()->title('基本设置')->body([
|
||||
TextControl::make()->label('网站名称')->name('site_name'),
|
||||
InputKV::make()->label('附加配置')->name('addition_config'),
|
||||
]),
|
||||
Tab::make()->title('上传设置')->body([
|
||||
TextControl::make()->label('上传域名')->name('upload_domain'),
|
||||
TextControl::make()->label('上传路径')->name('upload_path'),
|
||||
]),
|
||||
])
|
||||
);
|
||||
}
|
||||
|
||||
public function store(Request $request)
|
||||
{
|
||||
$data = $request->only([
|
||||
'site_name',
|
||||
'addition_config',
|
||||
'upload_domain',
|
||||
'upload_path',
|
||||
]);
|
||||
|
||||
return settings()->adminSetMany($data);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
<?php
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Routing\Router;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::group([
|
||||
'domain' => config('admin.route.domain'),
|
||||
'prefix' => config('admin.route.prefix'),
|
||||
'middleware' => config('admin.route.middleware'),
|
||||
], function (Router $router) {
|
||||
|
||||
$router->resource('dashboard', \App\Admin\Controllers\HomeController::class);
|
||||
|
||||
$router->resource('system/settings', \App\Admin\Controllers\SettingController::class);
|
||||
});
|
||||
|
|
@ -21,6 +21,7 @@ class Kernel extends HttpKernel
|
|||
\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
|
||||
\App\Http\Middleware\TrimStrings::class,
|
||||
\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
|
||||
\App\Http\Middleware\EnableCrossRequest::class,
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Closure;
|
||||
use Response;
|
||||
|
||||
class EnableCrossRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* Handle an incoming request.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \Closure $next
|
||||
* @return mixed
|
||||
*/
|
||||
public function handle($request, Closure $next)
|
||||
{
|
||||
$response = $next($request);
|
||||
$response->header('Access-Control-Allow-Origin', config('app.allow'));
|
||||
$response->header('Access-Control-Allow-Headers', 'Origin, Content-Type, Cookie, Accept');
|
||||
$response->header('Access-Control-Allow-Methods', 'GET, POST, PATCH, PUT, OPTIONS');
|
||||
$response->header('Access-Control-Allow-Credentials', 'true');
|
||||
return $response;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -24,5 +24,6 @@ class AppServiceProvider extends ServiceProvider
|
|||
public function boot()
|
||||
{
|
||||
//
|
||||
\Schema::defaultStringLength(191);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,7 +9,8 @@
|
|||
"guzzlehttp/guzzle": "^7.2",
|
||||
"laravel/framework": "^9.19",
|
||||
"laravel/sanctum": "^3.0",
|
||||
"laravel/tinker": "^2.7"
|
||||
"laravel/tinker": "^2.7",
|
||||
"slowlyo/owl-admin": "^2.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"fakerphp/faker": "^1.9.1",
|
||||
|
|
@ -60,6 +61,12 @@
|
|||
"pestphp/pest-plugin": true
|
||||
}
|
||||
},
|
||||
"minimum-stability": "stable",
|
||||
"prefer-stable": true
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
"repositories": {
|
||||
"packagist": {
|
||||
"type": "composer",
|
||||
"url": "https://packagist.phpcomposer.com"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "fe33f98a750b8c5a51b30c78bd3fab21",
|
||||
"content-hash": "a5b72c385ebe487317edadb68fb376ab",
|
||||
"packages": [
|
||||
{
|
||||
"name": "brick/math",
|
||||
|
|
@ -2315,6 +2315,57 @@
|
|||
],
|
||||
"time": "2023-01-12T18:13:24+00:00"
|
||||
},
|
||||
{
|
||||
"name": "slowlyo/owl-admin",
|
||||
"version": "v2.1.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://gitee.com/slowlyo/owl-admin",
|
||||
"reference": "33b9ebe4e3372e2b93c17df105d776d47268238f"
|
||||
},
|
||||
"require": {
|
||||
"illuminate/support": "~9|~10",
|
||||
"php": ">=8.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"laravel": {
|
||||
"providers": [
|
||||
"Slowlyo\\OwlAdmin\\OwlAdminServiceProvider"
|
||||
],
|
||||
"aliases": {
|
||||
"OwlAdmin": "Slowlyo\\OwlAdmin\\Facades\\OwlAdmin"
|
||||
}
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/Libs/helpers.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Slowlyo\\OwlAdmin\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Slowlyo",
|
||||
"email": "slowlyo_email@qq.com.com",
|
||||
"homepage": "https://gitee.com/slowlyo"
|
||||
}
|
||||
],
|
||||
"description": "采用 laravel、amis、vue3 打造的后台框架,拥有 120+ 种组件,只用后端代码就能实现复杂的页面效果,学习成本低,让开发者能够快速构建高效的后台管理系统。",
|
||||
"homepage": "https://gitee.com/slowlyo/owl-admin",
|
||||
"keywords": [
|
||||
"OwlAdmin",
|
||||
"admin",
|
||||
"laravel"
|
||||
],
|
||||
"time": "2023-03-15T06:01:19+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/console",
|
||||
"version": "v6.2.7",
|
||||
|
|
@ -5994,7 +6045,7 @@
|
|||
}
|
||||
],
|
||||
"aliases": [],
|
||||
"minimum-stability": "stable",
|
||||
"minimum-stability": "dev",
|
||||
"stability-flags": [],
|
||||
"prefer-stable": true,
|
||||
"prefer-lowest": false,
|
||||
|
|
|
|||
|
|
@ -0,0 +1,63 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
// 应用名称
|
||||
'name' => 'Owl Admin',
|
||||
|
||||
// 应用 logo
|
||||
'logo' => '/admin/logo.png',
|
||||
|
||||
// 默认头像
|
||||
'default_avatar' => '/admin/default-avatar.png',
|
||||
|
||||
// 底部信息
|
||||
'footer' => '',
|
||||
|
||||
'directory' => app_path('Admin'),
|
||||
|
||||
'bootstrap' => app_path('Admin/bootstrap.php'),
|
||||
|
||||
'route' => [
|
||||
'prefix' => 'admin-api',
|
||||
'domain' => null,
|
||||
'namespace' => 'App\\Admin\\Controllers',
|
||||
'middleware' => ['admin'],
|
||||
],
|
||||
|
||||
'auth' => [
|
||||
// 是否开启验证码
|
||||
'login_captcha' => true,
|
||||
// 是否开启鉴权
|
||||
'enable' => true,
|
||||
// 用户模型
|
||||
'model' => \Slowlyo\OwlAdmin\Models\AdminUser::class,
|
||||
'controller' => \Slowlyo\OwlAdmin\Controllers\AuthController::class,
|
||||
'guard' => 'sanctum',
|
||||
'except' => [
|
||||
|
||||
],
|
||||
],
|
||||
|
||||
'upload' => [
|
||||
'disk' => 'public',
|
||||
// 文件上传目录
|
||||
'directory' => [
|
||||
'image' => 'images',
|
||||
'file' => 'files',
|
||||
'rich' => 'rich',
|
||||
],
|
||||
],
|
||||
|
||||
'https' => false,
|
||||
|
||||
// 是否显示 [开发者工具]
|
||||
'show_development_tools' => env('APP_DEBUG', false),
|
||||
|
||||
// 是否显示 [权限] 功能中的自动生成按钮
|
||||
'show_auto_generate_permission_button' => true,
|
||||
|
||||
// 扩展
|
||||
'extension' => [
|
||||
'dir' => base_path('extensions'),
|
||||
],
|
||||
];
|
||||
|
|
@ -69,7 +69,7 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'timezone' => 'UTC',
|
||||
'timezone' => 'PRC',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
@ -82,7 +82,7 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'locale' => 'en',
|
||||
'locale' => 'zh_CN',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
@ -108,7 +108,7 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'faker_locale' => 'en_US',
|
||||
'faker_locale' => 'zh_CN',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
@ -154,6 +154,8 @@ return [
|
|||
|
|
||||
*/
|
||||
|
||||
'allow' => '*',
|
||||
|
||||
'providers' => [
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -0,0 +1,189 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'remember_me' => 'Remember me',
|
||||
'login' => 'Login',
|
||||
'logout' => 'Logout',
|
||||
'username' => 'Username',
|
||||
'password' => 'Password',
|
||||
'old_password' => 'Old Password',
|
||||
'confirm_password' => 'Confirm Password',
|
||||
'captcha' => 'Captcha',
|
||||
'captcha_error' => 'Captcha Error',
|
||||
'required' => ':attribute is required',
|
||||
'login_successful' => 'Login Success',
|
||||
'login_failed' => 'Username Or Password Error',
|
||||
'user_setting' => 'User Settings',
|
||||
'created_at' => 'Created At',
|
||||
'updated_at' => 'Updated At',
|
||||
'deleted_at' => 'Deleted At',
|
||||
'actions' => 'Actions',
|
||||
'create' => 'Create',
|
||||
'edit' => 'Edit',
|
||||
'show' => 'Show',
|
||||
'delete' => 'Delete',
|
||||
'confirm_delete' => 'Confirm Delete Selected Items?',
|
||||
'back' => 'Back',
|
||||
'reset' => 'Reset',
|
||||
'search' => 'Search',
|
||||
'list' => 'List',
|
||||
'add' => 'Add',
|
||||
'save' => 'Save',
|
||||
'detail' => 'Detail',
|
||||
|
||||
'developer' => 'Developer',
|
||||
'code_generator' => 'Code Generator',
|
||||
'administrator' => 'Administrator',
|
||||
'soft_delete' => 'Soft Delete',
|
||||
'keyword' => 'Keyword',
|
||||
'unknown_error' => 'Unknown Error',
|
||||
'upload_file_error' => 'Upload File Error',
|
||||
'parent' => 'Parent',
|
||||
'order' => 'Order',
|
||||
'order_desc' => 'Order Desc',
|
||||
'order_asc' => 'Order Asc',
|
||||
'menus' => 'Menus',
|
||||
'successfully_message' => ':attribute Successfully',
|
||||
'failed_message' => ':attribute Failed',
|
||||
'action_success' => 'Action Success',
|
||||
'action_failed' => 'Action Failed',
|
||||
'save_success' => 'Save Success',
|
||||
'save_failed' => 'Save Failed',
|
||||
'yes' => 'Yes',
|
||||
'no' => 'No',
|
||||
'need_start_with_slash' => 'Need Start With /',
|
||||
|
||||
'code_generators' => [
|
||||
'remark1' => 'For more parameters, please refer to',
|
||||
'remark2' => 'Database Migration',
|
||||
'remark3' => 'Multiple parameters are separated by English commas',
|
||||
'table_name' => 'Table Name',
|
||||
'model_name' => 'Model',
|
||||
'controller_name' => 'Controller',
|
||||
'service_name' => 'Service',
|
||||
'primary_key' => 'Primary Key',
|
||||
'primary_key_description' => 'Use increments method',
|
||||
'options' => 'Options',
|
||||
'create_database_migration' => 'Create Database Migration File',
|
||||
'create_table' => 'Create Table',
|
||||
'create_model' => 'Create Model',
|
||||
'create_controller' => 'Create Controller',
|
||||
'create_service' => 'Create Service',
|
||||
'app_title' => 'App Title',
|
||||
'column_name' => 'Column Name',
|
||||
'type' => 'Type',
|
||||
'extra_params' => 'Extra Params',
|
||||
'nullable' => 'Nullable',
|
||||
'index' => 'Index',
|
||||
'default_value' => 'Default Value',
|
||||
'comment' => 'Comment',
|
||||
'exists_table' => 'Exists Table',
|
||||
'generate_code' => 'Generate Code',
|
||||
'expand_more_settings' => 'More Settings',
|
||||
'collapse_settings' => 'Collapse Settings',
|
||||
],
|
||||
|
||||
'admin_users' => 'Admin Users',
|
||||
'admin_user' => [
|
||||
'avatar' => 'Avatar',
|
||||
'name' => 'Name',
|
||||
'roles' => 'Roles',
|
||||
'search_username' => 'Search Username/Name',
|
||||
],
|
||||
|
||||
'admin_roles' => 'Admin Roles',
|
||||
'admin_role' => [
|
||||
'name' => 'Name',
|
||||
'slug' => 'Slug',
|
||||
'permissions' => 'Permissions',
|
||||
'slug_description' => 'unique identifier of a role',
|
||||
],
|
||||
|
||||
'admin_permissions' => 'Permissions',
|
||||
'admin_permission' => [
|
||||
'name' => 'Name',
|
||||
'slug' => 'Slug',
|
||||
'http_method' => 'Http Method',
|
||||
'http_method_description' => 'if you do not select the value is ANY',
|
||||
'http_path' => 'Http Path',
|
||||
'auto_generate' => 'Auto Generate',
|
||||
'auto_generate_confirm' => 'The permission information will be generated after the permission table and permission menu association table are truncated. Do you want to continue?',
|
||||
],
|
||||
|
||||
'admin_menus' => 'Menus',
|
||||
'admin_menu' => [
|
||||
'parent_id' => 'Parent',
|
||||
'order' => 'Order',
|
||||
'title' => 'Title',
|
||||
'icon' => 'Icon',
|
||||
'icon_description' => 'Please refer to ',
|
||||
'url' => 'Url',
|
||||
'visible' => 'Visible',
|
||||
'type' => 'Type',
|
||||
'api' => 'Page API',
|
||||
'api_description' => 'schemaApi, the api for page initialization requests, needs to be consistent with queryPath in Controller',
|
||||
'route' => 'Route',
|
||||
'link' => 'Link',
|
||||
'class_name' => 'Class Name',
|
||||
'class_name_description' => 'The CSS class name of the menu, which is typically used to customize styles',
|
||||
'show' => 'Show',
|
||||
'hide' => 'Hide',
|
||||
'is_home' => 'Is Home',
|
||||
'is_home_description' => 'In multi-tab mode, the page label is fixed on the left',
|
||||
],
|
||||
|
||||
'extensions' => [
|
||||
'menu' => 'Extensions',
|
||||
'page_title' => 'Extensions',
|
||||
'create' => 'Create',
|
||||
'install' => 'Install',
|
||||
'create_extension' => 'Create Extension',
|
||||
'create_tips' => 'After the directory is created, a basic extended directory structure is created under the <br><b>:dir</b><br> directory',
|
||||
'local_install' => 'Local Install',
|
||||
'more_extensions' => 'More Extensions',
|
||||
'setting' => 'Setting',
|
||||
'enable' => 'Enable',
|
||||
'enable_confirm' => 'Are you sure to enable the extension?',
|
||||
'disable' => 'Disable',
|
||||
'disable_confirm' => 'Are you sure to disable the extension?',
|
||||
'uninstall' => 'Uninstall',
|
||||
'uninstall_confirm' => '
|
||||
<div class="text-danger">
|
||||
Confirm to uninstall the extension?<br>
|
||||
Uninstallation will delete all files and databases published after the extension is enabled and cannot be retrieved!!!<br>
|
||||
Backup important data before performing operations!!!<br>
|
||||
<span class="text-info">Extension package files will not be deleted, please manually delete them!!!</span>
|
||||
</div>
|
||||
',
|
||||
'filter_placeholder' => 'Search by extension name',
|
||||
'form' => [
|
||||
'create_extension' => 'Create Extension',
|
||||
'name' => 'Name',
|
||||
'namespace' => 'Namespace',
|
||||
'create_description' => 'It will be created in :dir Directory to create a basic extended directory structure',
|
||||
],
|
||||
'card' => [
|
||||
'author' => 'Author',
|
||||
'version' => 'Version',
|
||||
'homepage' => 'Home',
|
||||
'status' => 'Status',
|
||||
],
|
||||
'status_map' => [
|
||||
'enabled' => 'Enabled',
|
||||
'disabled' => 'Disabled',
|
||||
],
|
||||
'validation' => [
|
||||
'file' => 'Please select file',
|
||||
'invalid_package' => 'Invalid extension package',
|
||||
],
|
||||
],
|
||||
'export' => [
|
||||
'title' => 'Export',
|
||||
'all' => 'All',
|
||||
'page' => 'Current Page',
|
||||
'selected_rows' => 'Selected Rows',
|
||||
'page_no_data' => 'Current page has no data',
|
||||
'selected_rows_no_data' => 'No data is selected',
|
||||
'please_install_laravel_excel' => 'Please install the package "maatwebsite/excel" first',
|
||||
],
|
||||
];
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'dashboard' => 'Dashboard',
|
||||
'admin_system' => 'Admin',
|
||||
'admin_users' => 'Users',
|
||||
'admin_roles' => 'Roles',
|
||||
'admin_permission' => 'Permissions',
|
||||
'admin_menu' => 'Menus',
|
||||
'admin_setting' => 'Settings',
|
||||
];
|
||||
|
|
@ -0,0 +1,191 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'remember_me' => '记住我',
|
||||
'login' => '登 录',
|
||||
'logout' => '退出登录',
|
||||
'username' => '用户名',
|
||||
'password' => '密码',
|
||||
'old_password' => '旧密码',
|
||||
'confirm_password' => '确认密码',
|
||||
'captcha' => '验证码',
|
||||
'captcha_error' => '验证码有误',
|
||||
'required' => '请填写:attribute',
|
||||
'login_successful' => '登录成功',
|
||||
'login_failed' => '用户名或密码错误',
|
||||
'user_setting' => '个人设置',
|
||||
'created_at' => '创建时间',
|
||||
'updated_at' => '更新时间',
|
||||
'deleted_at' => '删除时间',
|
||||
'actions' => '操作',
|
||||
'create' => '新增',
|
||||
'edit' => '编辑',
|
||||
'show' => '查看',
|
||||
'delete' => '删除',
|
||||
'confirm_delete' => '确认删除选中项?',
|
||||
'back' => '返回',
|
||||
'reset' => '重置',
|
||||
'search' => '搜索',
|
||||
'list' => '列表',
|
||||
'add' => '新增',
|
||||
'save' => '保存',
|
||||
'detail' => '详情',
|
||||
|
||||
'developer' => '开发',
|
||||
'code_generator' => '代码生成器',
|
||||
'administrator' => '管理员',
|
||||
'soft_delete' => '软删除',
|
||||
'keyword' => '关键字',
|
||||
'unknown_error' => '未知错误',
|
||||
'upload_file_error' => '上传文件错误',
|
||||
'parent' => '父级',
|
||||
'order' => '排序',
|
||||
'order_desc' => '降序排序',
|
||||
'order_asc' => '升序排序',
|
||||
'menus' => '菜单',
|
||||
'successfully' => '成功',
|
||||
'failed' => '失败',
|
||||
'successfully_message' => ':attribute成功',
|
||||
'failed_message' => ':attribute失败',
|
||||
'action_success' => '操作成功',
|
||||
'action_failed' => '操作失败',
|
||||
'save_success' => '保存成功',
|
||||
'save_failed' => '保存失败',
|
||||
'yes' => '是',
|
||||
'no' => '否',
|
||||
'need_start_with_slash' => '需要以 / 开头',
|
||||
|
||||
'code_generators' => [
|
||||
'remark1' => '额外参数请参考',
|
||||
'remark2' => '数据库迁移',
|
||||
'remark3' => '多个参数使用英文逗号分割',
|
||||
'table_name' => '表名',
|
||||
'model_name' => '模型',
|
||||
'controller_name' => '控制器',
|
||||
'service_name' => 'Service',
|
||||
'primary_key' => '主键名称',
|
||||
'primary_key_description' => '使用 increments 方法',
|
||||
'options' => '可选项',
|
||||
'create_database_migration' => '创建数据库迁移文件',
|
||||
'create_table' => '创建数据表',
|
||||
'create_model' => '创建模型',
|
||||
'create_controller' => '创建控制器',
|
||||
'create_service' => '创建Service',
|
||||
'app_title' => '功能名称',
|
||||
'column_name' => '字段名',
|
||||
'type' => '类型',
|
||||
'extra_params' => '额外参数',
|
||||
'nullable' => '允许空值',
|
||||
'index' => '索引',
|
||||
'default_value' => '默认值',
|
||||
'comment' => '注释',
|
||||
'exists_table' => '已有数据表',
|
||||
'generate_code' => '生成代码',
|
||||
'expand_more_settings' => '更多设置',
|
||||
'collapse_settings' => '收起设置',
|
||||
],
|
||||
|
||||
'admin_users' => '管理员',
|
||||
'admin_user' => [
|
||||
'avatar' => '头像',
|
||||
'name' => '姓名',
|
||||
'roles' => '角色',
|
||||
'search_username' => '搜索用户名/名称',
|
||||
],
|
||||
|
||||
'admin_roles' => '角色',
|
||||
'admin_role' => [
|
||||
'name' => '名称',
|
||||
'slug' => '标识',
|
||||
'permissions' => '权限',
|
||||
'slug_description' => '角色的唯一标识, 不可重复',
|
||||
],
|
||||
|
||||
'admin_permissions' => '权限',
|
||||
'admin_permission' => [
|
||||
'name' => '名称',
|
||||
'slug' => '标识',
|
||||
'http_method' => '请求方式',
|
||||
'http_method_description' => '不选则为ANY',
|
||||
'http_path' => '路由',
|
||||
'auto_generate' => '自动生成',
|
||||
'auto_generate_confirm' => '权限信息会在 截断权限表&权限菜单关联表 后重新生成, 是否继续操作 ?',
|
||||
],
|
||||
|
||||
'admin_menus' => '菜单',
|
||||
'admin_menu' => [
|
||||
'parent_id' => '父级',
|
||||
'order' => '排序',
|
||||
'title' => '名称',
|
||||
'icon' => '图标',
|
||||
'icon_description' => '请参考',
|
||||
'url' => '链接',
|
||||
'visible' => '可见',
|
||||
'type' => '类型',
|
||||
'api' => '页面Api',
|
||||
'api_description' => 'schemaApi, 页面初始化请求的api, 需要与Controller中的queryPath一致',
|
||||
'route' => '路由',
|
||||
'link' => '外链',
|
||||
'class_name' => '类名',
|
||||
'class_name_description' => '菜单的CSS类名, 一般用于自定义样式',
|
||||
'show' => '可见',
|
||||
'hide' => '隐藏',
|
||||
'is_home' => '首页',
|
||||
'is_home_description' => '在多页签卡模式下,页面标签将固定在左侧',
|
||||
],
|
||||
|
||||
'extensions' => [
|
||||
'menu' => '扩展',
|
||||
'page_title' => '扩展',
|
||||
'create' => '创建',
|
||||
'install' => '安装',
|
||||
'create_extension' => '创建扩展',
|
||||
'create_tips' => '创建成功后会在<br><b>:dir</b><br>目录下创建基础的扩展目录结构',
|
||||
'local_install' => '本地安装',
|
||||
'more_extensions' => '更多扩展',
|
||||
'setting' => '设置',
|
||||
'enable' => '启用',
|
||||
'enable_confirm' => '确定要启用该扩展吗?',
|
||||
'disable' => '禁用',
|
||||
'disable_confirm' => '确定要禁用该扩展吗?',
|
||||
'uninstall' => '卸载',
|
||||
'uninstall_confirm' => '
|
||||
<div class="text-danger">
|
||||
确认卸载该扩展?<br>
|
||||
卸载将会删除启用扩展后发布的所有文件及数据库, 且不可找回!!!<br>
|
||||
如有重要数据请备份后再操作!!!<br>
|
||||
<span class="text-info">扩展包文件将不会被删除, 请手动删除!!!</span>
|
||||
</div>
|
||||
',
|
||||
'filter_placeholder' => '输入扩展名称',
|
||||
'form' => [
|
||||
'create_extension' => '创建扩展',
|
||||
'name' => '名称',
|
||||
'namespace' => '命名空间',
|
||||
'create_description' => '创建成功后会在 :dir 目录下创建基础的扩展目录结构',
|
||||
],
|
||||
'card' => [
|
||||
'author' => '作者',
|
||||
'version' => '版本',
|
||||
'homepage' => '主页',
|
||||
'status' => '状态',
|
||||
],
|
||||
'status_map' => [
|
||||
'enabled' => '已启用',
|
||||
'disabled' => '已禁用',
|
||||
],
|
||||
'validation' => [
|
||||
'file' => '请选择文件',
|
||||
'invalid_package' => '无效的扩展包',
|
||||
],
|
||||
],
|
||||
'export' => [
|
||||
'title' => '导出',
|
||||
'all' => '全部',
|
||||
'page' => '本页',
|
||||
'selected_rows' => '选中行',
|
||||
'page_no_data' => '本页无数据',
|
||||
'selected_rows_no_data' => '请选择要导出的数据',
|
||||
'please_install_laravel_excel' => '请先安装 laravel-excel 扩展',
|
||||
],
|
||||
];
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'dashboard' => '控制台',
|
||||
'admin_system' => '系统管理',
|
||||
'admin_users' => '管理员',
|
||||
'admin_roles' => '角色',
|
||||
'admin_permission' => '权限',
|
||||
'admin_menu' => '菜单',
|
||||
'admin_setting' => '设置',
|
||||
];
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592730.730634897
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
29 mtime=1677592709.92539703
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592738.240021582
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.978252574
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.909020706
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.912506977
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.905963531
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.908601651
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.908804032
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592738.259074028
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
28 mtime=1677592738.2547904
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
29 mtime=1677592734.57917018
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.961057142
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
29 mtime=1677592709.90749366
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592738.263612539
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592738.266733675
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592738.268527312
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592738.270080067
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592738.270650542
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592738.271046596
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592710.029969209
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592738.276048912
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.908056343
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.906148328
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.913202665
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.898566975
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592726.633671163
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.943942962
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.895894395
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.885100155
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.904916791
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,100 @@
|
|||
;/*!node_modules/jsbarcode/bin/barcodes/Barcode.js*/
|
||||
amis.define("000b7f2",(function(t,e,n,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0});e.default=function t(e,n){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.data=e,this.text=n.text||e,this.options=n}}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/CODE39/index.js*/
|
||||
amis.define("f8b2eac",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CODE39=void 0;var o,u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=e("000b7f2");var a=function(e){function t(e,n){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),e=e.toUpperCase(),n.mod43&&(e+=function(e){return f[e]}(function(e){for(var t=0,n=0;n<e.length;n++)t+=s(e[n]);return t%=43}(e))),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),u(t,[{key:"encode",value:function(){for(var e=l("*"),t=0;t<this.data.length;t++)e+=l(this.data[t])+"0";return{data:e+=l("*"),text:this.text}}},{key:"valid",value:function(){return-1!==this.data.search(/^[0-9A-Z\-\.\ \$\/\+\%]+$/)}}]),t}(((o=i)&&o.__esModule?o:{default:o}).default),f=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","-","."," ","$","/","+","%","*"],c=[20957,29783,23639,30485,20951,29813,23669,20855,29789,23645,29975,23831,30533,22295,30149,24005,21623,29981,23837,22301,30023,23879,30545,22343,30161,24017,21959,30065,23921,22385,29015,18263,29141,17879,29045,18293,17783,29021,18269,17477,17489,17681,20753,35770];function l(e){return function(e){return c[e].toString(2)}(s(e))}function s(e){return f.indexOf(e)}t.CODE39=a}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/CODE128/constants.js*/
|
||||
amis.define("fc48767",(function(e,r,S,_){"use strict";var A;function C(e,r,S){return r in e?Object.defineProperty(e,r,{value:S,enumerable:!0,configurable:!0,writable:!0}):e[r]=S,e}Object.defineProperty(r,"__esModule",{value:!0});var T=r.SET_A=0,n=r.SET_B=1,i=r.SET_C=2,t=(r.SHIFT=98,r.START_A=103),R=r.START_B=104,o=r.START_C=105;r.MODULO=103,r.STOP=106,r.FNC1=207,r.SET_BY_CODE=(C(A={},t,T),C(A,R,n),C(A,o,i),A),r.SWAP={101:T,100:n,99:i},r.A_START_CHAR=String.fromCharCode(208),r.B_START_CHAR=String.fromCharCode(209),r.C_START_CHAR=String.fromCharCode(210),r.A_CHARS="[\0-_È-Ï]",r.B_CHARS="[ -È-Ï]",r.C_CHARS="(Ï*[0-9]{2}Ï*)",r.BARS=[11011001100,11001101100,11001100110,10010011e3,10010001100,10001001100,10011001e3,10011000100,10001100100,11001001e3,11001000100,11000100100,10110011100,10011011100,10011001110,10111001100,10011101100,10011100110,11001110010,11001011100,11001001110,11011100100,11001110100,11101101110,11101001100,11100101100,11100100110,11101100100,11100110100,11100110010,11011011e3,11011000110,11000110110,10100011e3,10001011e3,10001000110,10110001e3,10001101e3,10001100010,11010001e3,11000101e3,11000100010,10110111e3,10110001110,10001101110,10111011e3,10111000110,10001110110,11101110110,11010001110,11000101110,11011101e3,11011100010,11011101110,11101011e3,11101000110,11100010110,11101101e3,11101100010,11100011010,11101111010,11001000010,11110001010,1010011e4,10100001100,1001011e4,10010000110,10000101100,10000100110,1011001e4,10110000100,1001101e4,10011000010,10000110100,10000110010,11000010010,1100101e4,11110111010,11000010100,10001111010,10100111100,10010111100,10010011110,10111100100,10011110100,10011110010,11110100100,11110010100,11110010010,11011011110,11011110110,11110110110,10101111e3,10100011110,10001011110,10111101e3,10111100010,11110101e3,11110100010,10111011110,10111101110,11101011110,11110101110,11010000100,1101001e4,11010011100,1100011101011]}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/CODE128/CODE128.js*/
|
||||
amis.define("3a604d3",(function(e,t,r,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o,i=function(){function e(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}return function(t,r,n){return r&&e(t.prototype,r),n&&e(t,n),t}}(),u=e("000b7f2"),a=(o=u)&&o.__esModule?o:{default:o},s=e("fc48767");var c=function(e){function t(e,r){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var n=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e.substring(1),r));return n.bytes=e.split("").map((function(e){return e.charCodeAt(0)})),n}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),i(t,[{key:"valid",value:function(){return/^[\x00-\x7F\xC8-\xD3]+$/.test(this.data)}},{key:"encode",value:function(){var e=this.bytes,r=e.shift()-105,n=s.SET_BY_CODE[r];if(void 0===n)throw new RangeError("The encoding does not start with a start character.");!0===this.shouldEncodeAsEan128()&&e.unshift(s.FNC1);var o=t.next(e,1,n);return{text:this.text===this.data?this.text.replace(/[^\x20-\x7E]/g,""):this.text,data:t.getBar(r)+o.result+t.getBar((o.checksum+r)%s.MODULO)+t.getBar(s.STOP)}}},{key:"shouldEncodeAsEan128",value:function(){var e=this.options.ean128||!1;return"string"==typeof e&&(e="true"===e.toLowerCase()),e}}],[{key:"getBar",value:function(e){return s.BARS[e]?s.BARS[e].toString():""}},{key:"correctIndex",value:function(e,t){if(t===s.SET_A){var r=e.shift();return r<32?r+64:r-32}return t===s.SET_B?e.shift()-32:10*(e.shift()-48)+e.shift()-48}},{key:"next",value:function(e,r,n){if(!e.length)return{result:"",checksum:0};var o=void 0,i=void 0;if(e[0]>=200){i=e.shift()-105;var u=s.SWAP[i];void 0!==u?o=t.next(e,r+1,u):(n!==s.SET_A&&n!==s.SET_B||i!==s.SHIFT||(e[0]=n===s.SET_A?e[0]>95?e[0]-96:e[0]:e[0]<32?e[0]+96:e[0]),o=t.next(e,r+1,n))}else i=t.correctIndex(e,n),o=t.next(e,r+1,n);var a=i*r;return{result:t.getBar(i)+o.result,checksum:a+o.checksum}}}]),t}(a.default);t.default=c}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/CODE128/auto.js*/
|
||||
amis.define("ee62db6",(function(e,n,r,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var u=e("fc48767"),i=function(e){return e.match(new RegExp("^"+u.A_CHARS+"*"))[0].length},C=function(e){return e.match(new RegExp("^"+u.B_CHARS+"*"))[0].length},g=function(e){return e.match(new RegExp("^"+u.C_CHARS+"*"))[0]};function a(e,n){var r=n?u.A_CHARS:u.B_CHARS,t=e.match(new RegExp("^("+r+"+?)(([0-9]{2}){2,})([^0-9]|$)"));if(t)return t[1]+String.fromCharCode(204)+f(e.substring(t[1].length));var i=e.match(new RegExp("^"+r+"+"))[0];return i.length===e.length?e:i+String.fromCharCode(n?205:206)+a(e.substring(i.length),!n)}function f(e){var n=g(e),r=n.length;if(r===e.length)return e;e=e.substring(r);var t=i(e)>=C(e);return n+String.fromCharCode(t?206:205)+a(e,t)}n.default=function(e){var n=void 0;if(g(e).length>=2)n=u.C_START_CHAR+f(e);else{var r=i(e)>C(e);n=(r?u.A_START_CHAR:u.B_START_CHAR)+a(e,r)}return n.replace(/[\xCD\xCE]([^])[\xCD\xCE]/,(function(e,n){return String.fromCharCode(203)+n}))}}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/CODE128/CODE128_AUTO.js*/
|
||||
amis.define("2bb234f",(function(e,t,o,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=f(e("3a604d3")),i=f(e("ee62db6"));function f(e){return e&&e.__esModule?e:{default:e}}function u(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var c=function(e){function t(e,o){if(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),/^[\x00-\x7F\xC8-\xD3]+$/.test(e))var n=u(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,(0,i.default)(e),o));else n=u(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,o));return u(n)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t}(r.default);t.default=c}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/CODE128/CODE128A.js*/
|
||||
amis.define("9828123",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o,u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=e("3a604d3"),a=(o=i)&&o.__esModule?o:{default:o},f=e("fc48767");var c=function(e){function t(e,n){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,f.A_START_CHAR+e,n))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),u(t,[{key:"valid",value:function(){return new RegExp("^"+f.A_CHARS+"+$").test(this.data)}}]),t}(a.default);t.default=c}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/CODE128/CODE128B.js*/
|
||||
amis.define("7c10e78",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o,u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=e("3a604d3"),a=(o=i)&&o.__esModule?o:{default:o},f=e("fc48767");var c=function(e){function t(e,n){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,f.B_START_CHAR+e,n))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),u(t,[{key:"valid",value:function(){return new RegExp("^"+f.B_CHARS+"+$").test(this.data)}}]),t}(a.default);t.default=c}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/CODE128/CODE128C.js*/
|
||||
amis.define("c51119f",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o,u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=e("3a604d3"),a=(o=i)&&o.__esModule?o:{default:o},f=e("fc48767");var c=function(e){function t(e,n){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,f.C_START_CHAR+e,n))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),u(t,[{key:"valid",value:function(){return new RegExp("^"+f.C_CHARS+"+$").test(this.data)}}]),t}(a.default);t.default=c}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/CODE128/index.js*/
|
||||
amis.define("a8a4826",(function(e,t,u,f){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CODE128C=t.CODE128B=t.CODE128A=t.CODE128=void 0;var a=l(e("2bb234f")),d=l(e("9828123")),C=l(e("7c10e78")),O=l(e("c51119f"));function l(e){return e&&e.__esModule?e:{default:e}}t.CODE128=a.default,t.CODE128A=d.default,t.CODE128B=C.default,t.CODE128C=O.default}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/EAN_UPC/constants.js*/
|
||||
amis.define("7f751b1",(function(L,G,e,E){"use strict";Object.defineProperty(G,"__esModule",{value:!0});G.SIDE_BIN="101",G.MIDDLE_BIN="01010",G.BINARIES={L:["0001101","0011001","0010011","0111101","0100011","0110001","0101111","0111011","0110111","0001011"],G:["0100111","0110011","0011011","0100001","0011101","0111001","0000101","0010001","0001001","0010111"],R:["1110010","1100110","1101100","1000010","1011100","1001110","1010000","1000100","1001000","1110100"],O:["0001101","0011001","0010011","0111101","0100011","0110001","0101111","0111011","0110111","0001011"],E:["0100111","0110011","0011011","0100001","0011101","0111001","0000101","0010001","0001001","0010111"]},G.EAN2_STRUCTURE=["LL","LG","GL","GG"],G.EAN5_STRUCTURE=["GGLLL","GLGLL","GLLGL","GLLLG","LGGLL","LLGGL","LLLGG","LGLGL","LGLLG","LLGLG"],G.EAN13_STRUCTURE=["LLLLLL","LLGLGG","LLGGLG","LLGGGL","LGLLGG","LGGLLG","LGGGLL","LGLGLG","LGLGGL","LGGLGL"]}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/EAN_UPC/encoder.js*/
|
||||
amis.define("e4899cc",(function(n,e,t,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var u=n("7f751b1");e.default=function(n,e,t){var r=n.split("").map((function(n,t){return u.BINARIES[e[t]]})).map((function(e,t){return e?e[n[t]]:""}));if(t){var i=n.length-1;r=r.map((function(n,e){return e<i?n+t:n}))}return r.join("")}}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/EAN_UPC/EAN.js*/
|
||||
amis.define("2e53cec",(function(t,e,n,o){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var n=0;n<e.length;n++){var o=e[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}return function(e,n,o){return n&&t(e.prototype,n),o&&t(e,o),e}}(),i=t("7f751b1"),u=a(t("e4899cc"));function a(t){return t&&t.__esModule?t:{default:t}}var f=function(t){function e(t,n){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e);var o=function(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,n));return o.fontSize=!n.flat&&n.fontSize>10*n.width?10*n.width:n.fontSize,o.guardHeight=n.height+o.fontSize/2+n.textMargin,o}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}(e,t),r(e,[{key:"encode",value:function(){return this.options.flat?this.encodeFlat():this.encodeGuarded()}},{key:"leftText",value:function(t,e){return this.text.substr(t,e)}},{key:"leftEncode",value:function(t,e){return(0,u.default)(t,e)}},{key:"rightText",value:function(t,e){return this.text.substr(t,e)}},{key:"rightEncode",value:function(t,e){return(0,u.default)(t,e)}},{key:"encodeGuarded",value:function(){var t={fontSize:this.fontSize},e={height:this.guardHeight};return[{data:i.SIDE_BIN,options:e},{data:this.leftEncode(),text:this.leftText(),options:t},{data:i.MIDDLE_BIN,options:e},{data:this.rightEncode(),text:this.rightText(),options:t},{data:i.SIDE_BIN,options:e}]}},{key:"encodeFlat",value:function(){return{data:[i.SIDE_BIN,this.leftEncode(),i.MIDDLE_BIN,this.rightEncode(),i.SIDE_BIN].join(""),text:this.text}}}]),e}(a(t("000b7f2")).default);e.default=f}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/EAN_UPC/EAN13.js*/
|
||||
amis.define("74ab24a",(function(t,e,o,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n,i=function(){function t(t,e){for(var o=0;o<e.length;o++){var r=e[o];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,o,r){return o&&t(e.prototype,o),r&&t(e,r),e}}(),a=function t(e,o,r){null===e&&(e=Function.prototype);var n=Object.getOwnPropertyDescriptor(e,o);if(void 0===n){var i=Object.getPrototypeOf(e);return null===i?void 0:t(i,o,r)}if("value"in n)return n.value;var a=n.get;return void 0!==a?a.call(r):void 0},u=t("7f751b1"),s=t("2e53cec"),c=(n=s)&&n.__esModule?n:{default:n};var p=function(t){return(10-t.substr(0,12).split("").map((function(t){return+t})).reduce((function(t,e,o){return o%2?t+3*e:t+e}),0)%10)%10},l=function(t){function e(t,o){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),-1!==t.search(/^[0-9]{12}$/)&&(t+=p(t));var r=function(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,o));return r.lastChar=o.lastChar,r}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}(e,t),i(e,[{key:"valid",value:function(){return-1!==this.data.search(/^[0-9]{13}$/)&&+this.data[12]===p(this.data)}},{key:"leftText",value:function(){return a(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"leftText",this).call(this,1,6)}},{key:"leftEncode",value:function(){var t=this.data.substr(1,6),o=u.EAN13_STRUCTURE[this.data[0]];return a(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"leftEncode",this).call(this,t,o)}},{key:"rightText",value:function(){return a(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"rightText",this).call(this,7,6)}},{key:"rightEncode",value:function(){var t=this.data.substr(7,6);return a(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"rightEncode",this).call(this,t,"RRRRRR")}},{key:"encodeGuarded",value:function(){var t=a(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"encodeGuarded",this).call(this);return this.options.displayValue&&(t.unshift({data:"000000000000",text:this.text.substr(0,1),options:{textAlign:"left",fontSize:this.fontSize}}),this.options.lastChar&&(t.push({data:"00"}),t.push({data:"00000",text:this.options.lastChar,options:{fontSize:this.fontSize}}))),t}}]),e}(c.default);e.default=l}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/EAN_UPC/EAN8.js*/
|
||||
amis.define("88e0232",(function(t,e,r,o){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n,i=function(){function t(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}return function(e,r,o){return r&&t(e.prototype,r),o&&t(e,o),e}}(),u=function t(e,r,o){null===e&&(e=Function.prototype);var n=Object.getOwnPropertyDescriptor(e,r);if(void 0===n){var i=Object.getPrototypeOf(e);return null===i?void 0:t(i,r,o)}if("value"in n)return n.value;var u=n.get;return void 0!==u?u.call(o):void 0},a=t("2e53cec"),c=(n=a)&&n.__esModule?n:{default:n};var l=function(t){return(10-t.substr(0,7).split("").map((function(t){return+t})).reduce((function(t,e,r){return r%2?t+e:t+3*e}),0)%10)%10},f=function(t){function e(t,r){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),-1!==t.search(/^[0-9]{7}$/)&&(t+=l(t)),function(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,r))}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}(e,t),i(e,[{key:"valid",value:function(){return-1!==this.data.search(/^[0-9]{8}$/)&&+this.data[7]===l(this.data)}},{key:"leftText",value:function(){return u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"leftText",this).call(this,0,4)}},{key:"leftEncode",value:function(){var t=this.data.substr(0,4);return u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"leftEncode",this).call(this,t,"LLLL")}},{key:"rightText",value:function(){return u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"rightText",this).call(this,4,4)}},{key:"rightEncode",value:function(){var t=this.data.substr(4,4);return u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"rightEncode",this).call(this,t,"RRRR")}}]),e}(c.default);e.default=f}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/EAN_UPC/EAN5.js*/
|
||||
amis.define("9901d0e",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=e("7f751b1"),i=c(e("e4899cc")),a=c(e("000b7f2"));function c(e){return e&&e.__esModule?e:{default:e}}var f=function(e){function t(e,n){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),o(t,[{key:"valid",value:function(){return-1!==this.data.search(/^[0-9]{5}$/)}},{key:"encode",value:function(){var e,t=u.EAN5_STRUCTURE[(e=this.data,e.split("").map((function(e){return+e})).reduce((function(e,t,n){return n%2?e+9*t:e+3*t}),0)%10)];return{data:"1011"+(0,i.default)(this.data,t,"01"),text:this.text}}}]),t}(a.default);t.default=f}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/EAN_UPC/EAN2.js*/
|
||||
amis.define("d4acff5",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=e("7f751b1"),u=i(e("e4899cc"));function i(e){return e&&e.__esModule?e:{default:e}}var f=function(e){function t(e,n){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),o(t,[{key:"valid",value:function(){return-1!==this.data.search(/^[0-9]{2}$/)}},{key:"encode",value:function(){var e=a.EAN2_STRUCTURE[parseInt(this.data)%4];return{data:"1011"+(0,u.default)(this.data,e,"01"),text:this.text}}}]),t}(i(e("000b7f2")).default);t.default=f}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/EAN_UPC/UPC.js*/
|
||||
amis.define("4036a82",(function(t,e,i,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var i=0;i<e.length;i++){var n=e[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}return function(e,i,n){return i&&t(e.prototype,i),n&&t(e,n),e}}();e.checksum=u;var o=r(t("e4899cc"));function r(t){return t&&t.__esModule?t:{default:t}}var s=function(t){function e(t,i){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),-1!==t.search(/^[0-9]{11}$/)&&(t+=u(t));var n=function(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,i));return n.displayValue=i.displayValue,i.fontSize>10*i.width?n.fontSize=10*i.width:n.fontSize=i.fontSize,n.guardHeight=i.height+n.fontSize/2+i.textMargin,n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}(e,t),a(e,[{key:"valid",value:function(){return-1!==this.data.search(/^[0-9]{12}$/)&&this.data[11]==u(this.data)}},{key:"encode",value:function(){return this.options.flat?this.flatEncoding():this.guardedEncoding()}},{key:"flatEncoding",value:function(){var t="";return t+="101",t+=(0,o.default)(this.data.substr(0,6),"LLLLLL"),t+="01010",t+=(0,o.default)(this.data.substr(6,6),"RRRRRR"),{data:t+="101",text:this.text}}},{key:"guardedEncoding",value:function(){var t=[];return this.displayValue&&t.push({data:"00000000",text:this.text.substr(0,1),options:{textAlign:"left",fontSize:this.fontSize}}),t.push({data:"101"+(0,o.default)(this.data[0],"L"),options:{height:this.guardHeight}}),t.push({data:(0,o.default)(this.data.substr(1,5),"LLLLL"),text:this.text.substr(1,5),options:{fontSize:this.fontSize}}),t.push({data:"01010",options:{height:this.guardHeight}}),t.push({data:(0,o.default)(this.data.substr(6,5),"RRRRR"),text:this.text.substr(6,5),options:{fontSize:this.fontSize}}),t.push({data:(0,o.default)(this.data[11],"R")+"101",options:{height:this.guardHeight}}),this.displayValue&&t.push({data:"00000000",text:this.text.substr(11,1),options:{textAlign:"right",fontSize:this.fontSize}}),t}}]),e}(r(t("000b7f2")).default);function u(t){var e,i=0;for(e=1;e<11;e+=2)i+=parseInt(t[e]);for(e=0;e<11;e+=2)i+=3*parseInt(t[e]);return(10-i%10)%10}e.default=s}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/EAN_UPC/UPCE.js*/
|
||||
amis.define("b1389a3",(function(t,e,i,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(t,e){for(var i=0;i<e.length;i++){var n=e[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}return function(e,i,n){return i&&t(e.prototype,i),n&&t(e,n),e}}(),o=s(t("e4899cc")),u=s(t("000b7f2")),a=t("4036a82");function s(t){return t&&t.__esModule?t:{default:t}}function O(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}var l=["XX00000XXX","XX10000XXX","XX20000XXX","XXX00000XX","XXXX00000X","XXXXX00005","XXXXX00006","XXXXX00007","XXXXX00008","XXXXX00009"],E=[["EEEOOO","OOOEEE"],["EEOEOO","OOEOEE"],["EEOOEO","OOEEOE"],["EEOOOE","OOEEEO"],["EOEEOO","OEOOEE"],["EOOEEO","OEEOOE"],["EOOOEE","OEEEOO"],["EOEOEO","OEOEOE"],["EOEOOE","OEOEEO"],["EOOEOE","OEEOEO"]],c=function(t){function e(t,i){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e);var n=O(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,i));if(n.isValid=!1,-1!==t.search(/^[0-9]{6}$/))n.middleDigits=t,n.upcA=f(t,"0"),n.text=i.text||""+n.upcA[0]+t+n.upcA[n.upcA.length-1],n.isValid=!0;else{if(-1===t.search(/^[01][0-9]{7}$/))return O(n);if(n.middleDigits=t.substring(1,t.length-1),n.upcA=f(n.middleDigits,t[0]),n.upcA[n.upcA.length-1]!==t[t.length-1])return O(n);n.isValid=!0}return n.displayValue=i.displayValue,i.fontSize>10*i.width?n.fontSize=10*i.width:n.fontSize=i.fontSize,n.guardHeight=i.height+n.fontSize/2+i.textMargin,n}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}(e,t),r(e,[{key:"valid",value:function(){return this.isValid}},{key:"encode",value:function(){return this.options.flat?this.flatEncoding():this.guardedEncoding()}},{key:"flatEncoding",value:function(){var t="";return t+="101",t+=this.encodeMiddleDigits(),{data:t+="010101",text:this.text}}},{key:"guardedEncoding",value:function(){var t=[];return this.displayValue&&t.push({data:"00000000",text:this.text[0],options:{textAlign:"left",fontSize:this.fontSize}}),t.push({data:"101",options:{height:this.guardHeight}}),t.push({data:this.encodeMiddleDigits(),text:this.text.substring(1,7),options:{fontSize:this.fontSize}}),t.push({data:"010101",options:{height:this.guardHeight}}),this.displayValue&&t.push({data:"00000000",text:this.text[7],options:{textAlign:"right",fontSize:this.fontSize}}),t}},{key:"encodeMiddleDigits",value:function(){var t=this.upcA[0],e=this.upcA[this.upcA.length-1],i=E[parseInt(e)][parseInt(t)];return(0,o.default)(this.middleDigits,i)}}]),e}(u.default);function f(t,e){for(var i=parseInt(t[t.length-1]),n=l[i],r="",o=0,u=0;u<n.length;u++){var s=n[u];r+="X"===s?t[o++]:s}return""+(r=""+e+r)+(0,a.checksum)(r)}e.default=c}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/EAN_UPC/index.js*/
|
||||
amis.define("fa3275c",(function(e,a,d,f){"use strict";Object.defineProperty(a,"__esModule",{value:!0}),a.UPCE=a.UPC=a.EAN2=a.EAN5=a.EAN8=a.EAN13=void 0;var t=i(e("74ab24a")),u=i(e("88e0232")),l=i(e("9901d0e")),E=i(e("d4acff5")),A=i(e("4036a82")),N=i(e("b1389a3"));function i(e){return e&&e.__esModule?e:{default:e}}a.EAN13=t.default,a.EAN8=u.default,a.EAN5=l.default,a.EAN2=E.default,a.UPC=A.default,a.UPCE=N.default}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/ITF/constants.js*/
|
||||
amis.define("2376a91",(function(e,i,t,n){"use strict";Object.defineProperty(i,"__esModule",{value:!0});i.START_BIN="1010",i.END_BIN="11101",i.BINARIES=["00110","10001","01001","11000","00101","10100","01100","00011","10010","01010"]}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/ITF/ITF.js*/
|
||||
amis.define("2a9ad1f",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o,a=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=e("2376a91"),u=e("000b7f2");function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function f(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var l=function(e){function t(){return c(this,t),f(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),a(t,[{key:"valid",value:function(){return-1!==this.data.search(/^([0-9]{2})+$/)}},{key:"encode",value:function(){var e=this,t=this.data.match(/.{2}/g).map((function(t){return e.encodePair(t)})).join("");return{data:i.START_BIN+t+i.END_BIN,text:this.text}}},{key:"encodePair",value:function(e){var t=i.BINARIES[e[1]];return i.BINARIES[e[0]].split("").map((function(e,n){return("1"===e?"111":"1")+("1"===t[n]?"000":"0")})).join("")}}]),t}(((o=u)&&o.__esModule?o:{default:o}).default);t.default=l}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/ITF/ITF14.js*/
|
||||
amis.define("e93b292",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o,u=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),a=e("2a9ad1f"),i=(o=a)&&o.__esModule?o:{default:o};var c=function(e){var t=e.substr(0,13).split("").map((function(e){return parseInt(e,10)})).reduce((function(e,t,n){return e+t*(3-n%2*2)}),0);return 10*Math.ceil(t/10)-t},f=function(e){function t(e,n){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),-1!==e.search(/^[0-9]{13}$/)&&(e+=c(e)),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),u(t,[{key:"valid",value:function(){return-1!==this.data.search(/^[0-9]{14}$/)&&+this.data[13]===c(this.data)}}]),t}(i.default);t.default=f}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/ITF/index.js*/
|
||||
amis.define("25809ba",(function(e,t,u,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ITF14=t.ITF=void 0;var d=i(e("2a9ad1f")),f=i(e("e93b292"));function i(e){return e&&e.__esModule?e:{default:e}}t.ITF=d.default,t.ITF14=f.default}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/MSI/MSI.js*/
|
||||
amis.define("dfb64f9",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o,a=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=e("000b7f2");var u=function(e){function t(e,n){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),a(t,[{key:"encode",value:function(){for(var e="110",t=0;t<this.data.length;t++){var n=parseInt(this.data[t]).toString(2);n=f(n,4-n.length);for(var r=0;r<n.length;r++)e+="0"==n[r]?"100":"110"}return{data:e+="1001",text:this.text}}},{key:"valid",value:function(){return-1!==this.data.search(/^[0-9]+$/)}}]),t}(((o=i)&&o.__esModule?o:{default:o}).default);function f(e,t){for(var n=0;n<t;n++)e="0"+e;return e}t.default=u}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/MSI/checksums.js*/
|
||||
amis.define("ea7baac",(function(e,n,t,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.mod10=function(e){for(var n=0,t=0;t<e.length;t++){var r=parseInt(e[t]);(t+e.length)%2==0?n+=r:n+=2*r%10+Math.floor(2*r/10)}return(10-n%10)%10},n.mod11=function(e){for(var n=0,t=[2,3,4,5,6,7],r=0;r<e.length;r++){var a=parseInt(e[e.length-1-r]);n+=t[r%t.length]*a}return(11-n%11)%11}}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/MSI/MSI10.js*/
|
||||
amis.define("d2fafa2",(function(e,t,o,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,f=e("dfb64f9"),a=(r=f)&&r.__esModule?r:{default:r},i=e("ea7baac");var u=function(e){function t(e,o){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e+(0,i.mod10)(e),o))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t}(a.default);t.default=u}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/MSI/MSI11.js*/
|
||||
amis.define("b4bb13f",(function(e,t,o,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,f=e("dfb64f9"),i=(r=f)&&r.__esModule?r:{default:r},u=e("ea7baac");var a=function(e){function t(e,o){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e+(0,u.mod11)(e),o))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t}(i.default);t.default=a}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/MSI/MSI1010.js*/
|
||||
amis.define("bc954db",(function(e,t,o,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,f=e("dfb64f9"),i=(r=f)&&r.__esModule?r:{default:r},c=e("ea7baac");var u=function(e){function t(e,o){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),e+=(0,c.mod10)(e),e+=(0,c.mod10)(e),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,o))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t}(i.default);t.default=u}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/MSI/MSI1110.js*/
|
||||
amis.define("a4c818a",(function(e,t,o,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r,a=e("dfb64f9"),f=(r=a)&&r.__esModule?r:{default:r},i=e("ea7baac");var c=function(e){function t(e,o){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),e+=(0,i.mod11)(e),e+=(0,i.mod10)(e),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,o))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t}(f.default);t.default=c}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/MSI/index.js*/
|
||||
amis.define("5a9421c",(function(e,f,a,d){"use strict";Object.defineProperty(f,"__esModule",{value:!0}),f.MSI1110=f.MSI1010=f.MSI11=f.MSI10=f.MSI=void 0;var t=l(e("dfb64f9")),u=l(e("d2fafa2")),M=l(e("b4bb13f")),I=l(e("bc954db")),S=l(e("a4c818a"));function l(e){return e&&e.__esModule?e:{default:e}}f.MSI=t.default,f.MSI10=u.default,f.MSI11=M.default,f.MSI1010=I.default,f.MSI1110=S.default}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/pharmacode/index.js*/
|
||||
amis.define("96d188b",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.pharmacode=void 0;var o,i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=e("000b7f2");var a=function(e){function t(e,n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n));return r.number=parseInt(e,10),r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),i(t,[{key:"encode",value:function(){for(var e=this.number,t="";!isNaN(e)&&0!=e;)e%2==0?(t="11100"+t,e=(e-2)/2):(t="100"+t,e=(e-1)/2);return{data:t=t.slice(0,-2),text:this.text}}},{key:"valid",value:function(){return this.number>=3&&this.number<=131070}}]),t}(((o=u)&&o.__esModule?o:{default:o}).default);t.pharmacode=a}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/codabar/index.js*/
|
||||
amis.define("74bc3fd",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.codabar=void 0;var o,a=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),i=e("000b7f2");var u=function(e){function t(e,n){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),0===e.search(/^[0-9\-\$\:\.\+\/]+$/)&&(e="A"+e+"A");var r=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e.toUpperCase(),n));return r.text=r.options.text||r.text.replace(/[A-D]/g,""),r}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),a(t,[{key:"valid",value:function(){return-1!==this.data.search(/^[A-D][0-9\-\$\:\.\+\/]+[A-D]$/)}},{key:"encode",value:function(){for(var e=[],t=this.getEncodings(),n=0;n<this.data.length;n++)e.push(t[this.data.charAt(n)]),n!==this.data.length-1&&e.push("0");return{text:this.text,data:e.join("")}}},{key:"getEncodings",value:function(){return{0:"101010011",1:"101011001",2:"101001011",3:"110010101",4:"101101001",5:"110101001",6:"100101011",7:"100101101",8:"100110101",9:"110100101","-":"101001101",$:"101100101",":":"1101011011","/":"1101101011",".":"1101101101","+":"1011011011",A:"1011001001",B:"1001001011",C:"1010010011",D:"1010011001"}}}]),t}(((o=i)&&o.__esModule?o:{default:o}).default);t.codabar=u}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/GenericBarcode/index.js*/
|
||||
amis.define("18513e1",(function(e,t,n,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.GenericBarcode=void 0;var o,i=function(){function e(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(t,n,r){return n&&e(t.prototype,n),r&&e(t,r),t}}(),u=e("000b7f2");var c=function(e){function t(e,n){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).call(this,e,n))}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),i(t,[{key:"encode",value:function(){return{data:"10101010101010101010101010101010101010101",text:this.text}}},{key:"valid",value:function(){return!0}}]),t}(((o=u)&&o.__esModule?o:{default:o}).default);t.GenericBarcode=c}));
|
||||
;/*!node_modules/jsbarcode/bin/barcodes/index.js*/
|
||||
amis.define("24ce356",(function(e,a,E,c){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var C=e("f8b2eac"),I=e("a8a4826"),d=e("fa3275c"),r=e("25809ba"),M=e("5a9421c"),O=e("96d188b"),A=e("74bc3fd"),D=e("18513e1");a.default={CODE39:C.CODE39,CODE128:I.CODE128,CODE128A:I.CODE128A,CODE128B:I.CODE128B,CODE128C:I.CODE128C,EAN13:d.EAN13,EAN8:d.EAN8,EAN5:d.EAN5,EAN2:d.EAN2,UPC:d.UPC,UPCE:d.UPCE,ITF14:r.ITF14,ITF:r.ITF,MSI:M.MSI,MSI10:M.MSI10,MSI11:M.MSI11,MSI1010:M.MSI1010,MSI1110:M.MSI1110,pharmacode:O.pharmacode,codabar:A.codabar,GenericBarcode:D.GenericBarcode}}));
|
||||
;/*!node_modules/jsbarcode/bin/help/merge.js*/
|
||||
amis.define("a8943be",(function(e,r,t,n){"use strict";Object.defineProperty(r,"__esModule",{value:!0});var a=Object.assign||function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e};r.default=function(e,r){return a({},e,r)}}));
|
||||
;/*!node_modules/jsbarcode/bin/help/linearizeEncodings.js*/
|
||||
amis.define("86d2959",(function(e,t,r,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var t=[];return function e(r){if(Array.isArray(r))for(var a=0;a<r.length;a++)e(r[a]);else r.text=r.text||"",r.data=r.data||"",t.push(r)}(e),t}}));
|
||||
;/*!node_modules/jsbarcode/bin/help/fixOptions.js*/
|
||||
amis.define("7a845db",(function(i,n,r,a){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=function(i){return i.marginTop=i.marginTop||i.margin,i.marginBottom=i.marginBottom||i.margin,i.marginRight=i.marginRight||i.margin,i.marginLeft=i.marginLeft||i.margin,i}}));
|
||||
;/*!node_modules/jsbarcode/bin/help/optionsFromStrings.js*/
|
||||
amis.define("8dcae30",(function(e,t,i,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(e){var t=["width","height","textMargin","fontSize","margin","marginTop","marginBottom","marginLeft","marginRight"];for(var i in t)t.hasOwnProperty(i)&&(i=t[i],"string"==typeof e[i]&&(e[i]=parseInt(e[i],10)));"string"==typeof e.displayValue&&(e.displayValue="false"!=e.displayValue);return e}}));
|
||||
;/*!node_modules/jsbarcode/bin/options/defaults.js*/
|
||||
amis.define("8cf281e",(function(t,i,o,e){"use strict";Object.defineProperty(i,"__esModule",{value:!0});var n={width:2,height:100,format:"auto",displayValue:!0,fontOptions:"",font:"monospace",text:void 0,textAlign:"center",textPosition:"bottom",textMargin:2,fontSize:20,background:"#ffffff",lineColor:"#000000",margin:10,marginTop:void 0,marginBottom:void 0,marginLeft:void 0,marginRight:void 0,valid:function(){}};i.default=n}));
|
||||
;/*!node_modules/jsbarcode/bin/help/getOptionsFromElement.js*/
|
||||
amis.define("ae7a62a",(function(e,t,a,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var u=d(e("8dcae30")),o=d(e("8cf281e"));function d(e){return e&&e.__esModule?e:{default:e}}t.default=function(e){var t={};for(var a in o.default)o.default.hasOwnProperty(a)&&(e.hasAttribute("jsbarcode-"+a.toLowerCase())&&(t[a]=e.getAttribute("jsbarcode-"+a.toLowerCase())),e.hasAttribute("data-"+a.toLowerCase())&&(t[a]=e.getAttribute("data-"+a.toLowerCase())));return t.value=e.getAttribute("jsbarcode-value")||e.getAttribute("data-value"),t=(0,u.default)(t)}}));
|
||||
;/*!node_modules/jsbarcode/bin/renderers/shared.js*/
|
||||
amis.define("0ac659b",(function(t,e,n,i){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getTotalWidthOfEncodings=e.calculateEncodingAttributes=e.getBarcodePadding=e.getEncodingHeight=e.getMaximumHeightOfEncodings=void 0;var a,o=t("a8943be"),r=(a=o)&&a.__esModule?a:{default:a};function g(t,e){return e.height+(e.displayValue&&t.text.length>0?e.fontSize+e.textMargin:0)+e.marginTop+e.marginBottom}function d(t,e,n){if(n.displayValue&&e<t){if("center"==n.textAlign)return Math.floor((t-e)/2);if("left"==n.textAlign)return 0;if("right"==n.textAlign)return Math.floor(t-e)}return 0}function u(t,e,n){var i;if(n)i=n;else{if("undefined"==typeof document)return 0;i=document.createElement("canvas").getContext("2d")}i.font=e.fontOptions+" "+e.fontSize+"px "+e.font;var a=i.measureText(t);return a?a.width:0}e.getMaximumHeightOfEncodings=function(t){for(var e=0,n=0;n<t.length;n++)t[n].height>e&&(e=t[n].height);return e},e.getEncodingHeight=g,e.getBarcodePadding=d,e.calculateEncodingAttributes=function(t,e,n){for(var i=0;i<t.length;i++){var a,o=t[i],f=(0,r.default)(e,o.options);a=f.displayValue?u(o.text,f,n):0;var c=o.data.length*f.width;o.width=Math.ceil(Math.max(a,c)),o.height=g(o,f),o.barcodePadding=d(a,c,f)}},e.getTotalWidthOfEncodings=function(t){for(var e=0,n=0;n<t.length;n++)e+=t[n].width;return e}}));
|
||||
;/*!node_modules/jsbarcode/bin/renderers/canvas.js*/
|
||||
amis.define("42efda8",(function(t,n,e,i){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a,s=function(){function t(t,n){for(var e=0;e<n.length;e++){var i=n[e];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(n,e,i){return e&&t(n.prototype,e),i&&t(n,i),n}}(),o=t("a8943be"),r=(a=o)&&a.__esModule?a:{default:a},h=t("0ac659b");var c=function(){function t(n,e,i){!function(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}(this,t),this.canvas=n,this.encodings=e,this.options=i}return s(t,[{key:"render",value:function(){if(!this.canvas.getContext)throw new Error("The browser does not support canvas.");this.prepareCanvas();for(var t=0;t<this.encodings.length;t++){var n=(0,r.default)(this.options,this.encodings[t].options);this.drawCanvasBarcode(n,this.encodings[t]),this.drawCanvasText(n,this.encodings[t]),this.moveCanvasDrawing(this.encodings[t])}this.restoreCanvas()}},{key:"prepareCanvas",value:function(){var t=this.canvas.getContext("2d");t.save(),(0,h.calculateEncodingAttributes)(this.encodings,this.options,t);var n=(0,h.getTotalWidthOfEncodings)(this.encodings),e=(0,h.getMaximumHeightOfEncodings)(this.encodings);this.canvas.width=n+this.options.marginLeft+this.options.marginRight,this.canvas.height=e,t.clearRect(0,0,this.canvas.width,this.canvas.height),this.options.background&&(t.fillStyle=this.options.background,t.fillRect(0,0,this.canvas.width,this.canvas.height)),t.translate(this.options.marginLeft,0)}},{key:"drawCanvasBarcode",value:function(t,n){var e,i=this.canvas.getContext("2d"),a=n.data;e="top"==t.textPosition?t.marginTop+t.fontSize+t.textMargin:t.marginTop,i.fillStyle=t.lineColor;for(var s=0;s<a.length;s++){var o=s*t.width+n.barcodePadding;"1"===a[s]?i.fillRect(o,e,t.width,t.height):a[s]&&i.fillRect(o,e,t.width,t.height*a[s])}}},{key:"drawCanvasText",value:function(t,n){var e,i,a=this.canvas.getContext("2d"),s=t.fontOptions+" "+t.fontSize+"px "+t.font;t.displayValue&&(i="top"==t.textPosition?t.marginTop+t.fontSize-t.textMargin:t.height+t.textMargin+t.marginTop+t.fontSize,a.font=s,"left"==t.textAlign||n.barcodePadding>0?(e=0,a.textAlign="left"):"right"==t.textAlign?(e=n.width-1,a.textAlign="right"):(e=n.width/2,a.textAlign="center"),a.fillText(n.text,e,i))}},{key:"moveCanvasDrawing",value:function(t){this.canvas.getContext("2d").translate(t.width,0)}},{key:"restoreCanvas",value:function(){this.canvas.getContext("2d").restore()}}]),t}();n.default=c}));
|
||||
;/*!node_modules/jsbarcode/bin/renderers/svg.js*/
|
||||
amis.define("27bb40c",(function(t,e,i,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r,s=function(){function t(t,e){for(var i=0;i<e.length;i++){var n=e[i];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}return function(e,i,n){return i&&t(e.prototype,i),n&&t(e,n),e}}(),o=t("a8943be"),a=(r=o)&&r.__esModule?r:{default:r},u=t("0ac659b");var h="http://www.w3.org/2000/svg",d=function(){function t(e,i,n){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.svg=e,this.encodings=i,this.options=n,this.document=n.xmlDocument||document}return s(t,[{key:"render",value:function(){var t=this.options.marginLeft;this.prepareSVG();for(var e=0;e<this.encodings.length;e++){var i=this.encodings[e],n=(0,a.default)(this.options,i.options),r=this.createGroup(t,n.marginTop,this.svg);this.setGroupOptions(r,n),this.drawSvgBarcode(r,n,i),this.drawSVGText(r,n,i),t+=i.width}}},{key:"prepareSVG",value:function(){for(;this.svg.firstChild;)this.svg.removeChild(this.svg.firstChild);(0,u.calculateEncodingAttributes)(this.encodings,this.options);var t=(0,u.getTotalWidthOfEncodings)(this.encodings),e=(0,u.getMaximumHeightOfEncodings)(this.encodings),i=t+this.options.marginLeft+this.options.marginRight;this.setSvgAttributes(i,e),this.options.background&&this.drawRect(0,0,i,e,this.svg).setAttribute("style","fill:"+this.options.background+";")}},{key:"drawSvgBarcode",value:function(t,e,i){var n,r=i.data;n="top"==e.textPosition?e.fontSize+e.textMargin:0;for(var s=0,o=0,a=0;a<r.length;a++)o=a*e.width+i.barcodePadding,"1"===r[a]?s++:s>0&&(this.drawRect(o-e.width*s,n,e.width*s,e.height,t),s=0);s>0&&this.drawRect(o-e.width*(s-1),n,e.width*s,e.height,t)}},{key:"drawSVGText",value:function(t,e,i){var n,r,s=this.document.createElementNS(h,"text");e.displayValue&&(s.setAttribute("style","font:"+e.fontOptions+" "+e.fontSize+"px "+e.font),r="top"==e.textPosition?e.fontSize-e.textMargin:e.height+e.textMargin+e.fontSize,"left"==e.textAlign||i.barcodePadding>0?(n=0,s.setAttribute("text-anchor","start")):"right"==e.textAlign?(n=i.width-1,s.setAttribute("text-anchor","end")):(n=i.width/2,s.setAttribute("text-anchor","middle")),s.setAttribute("x",n),s.setAttribute("y",r),s.appendChild(this.document.createTextNode(i.text)),t.appendChild(s))}},{key:"setSvgAttributes",value:function(t,e){var i=this.svg;i.setAttribute("width",t+"px"),i.setAttribute("height",e+"px"),i.setAttribute("x","0px"),i.setAttribute("y","0px"),i.setAttribute("viewBox","0 0 "+t+" "+e),i.setAttribute("xmlns",h),i.setAttribute("version","1.1"),i.setAttribute("style","transform: translate(0,0)")}},{key:"createGroup",value:function(t,e,i){var n=this.document.createElementNS(h,"g");return n.setAttribute("transform","translate("+t+", "+e+")"),i.appendChild(n),n}},{key:"setGroupOptions",value:function(t,e){t.setAttribute("style","fill:"+e.lineColor+";")}},{key:"drawRect",value:function(t,e,i,n,r){var s=this.document.createElementNS(h,"rect");return s.setAttribute("x",t),s.setAttribute("y",e),s.setAttribute("width",i),s.setAttribute("height",n),r.appendChild(s),s}}]),t}();e.default=d}));
|
||||
;/*!node_modules/jsbarcode/bin/renderers/object.js*/
|
||||
amis.define("10aaec2",(function(e,n,t,i){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var o=function(){function e(e,n){for(var t=0;t<n.length;t++){var i=n[t];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(n,t,i){return t&&e(n.prototype,t),i&&e(n,i),n}}();var r=function(){function e(n,t,i){!function(e,n){if(!(e instanceof n))throw new TypeError("Cannot call a class as a function")}(this,e),this.object=n,this.encodings=t,this.options=i}return o(e,[{key:"render",value:function(){this.object.encodings=this.encodings}}]),e}();n.default=r}));
|
||||
;/*!node_modules/jsbarcode/bin/renderers/index.js*/
|
||||
amis.define("ba9af52",(function(e,a,d,t){"use strict";Object.defineProperty(a,"__esModule",{value:!0});var r=n(e("42efda8")),u=n(e("27bb40c")),f=n(e("10aaec2"));function n(e){return e&&e.__esModule?e:{default:e}}a.default={CanvasRenderer:r.default,SVGRenderer:u.default,ObjectRenderer:f.default}}));
|
||||
;/*!node_modules/jsbarcode/bin/exceptions/exceptions.js*/
|
||||
amis.define("f540e4e",(function(t,e,n,o){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function c(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var u=function(t){function e(t,n){r(this,e);var o=i(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return o.name="InvalidInputException",o.symbology=t,o.input=n,o.message='"'+o.input+'" is not a valid input for '+o.symbology,o}return c(e,Error),e}(),a=function(t){function e(){r(this,e);var t=i(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return t.name="InvalidElementException",t.message="Not supported type to render on",t}return c(e,Error),e}(),s=function(t){function e(){r(this,e);var t=i(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return t.name="NoElementException",t.message="No element to render on.",t}return c(e,Error),e}();e.InvalidInputException=u,e.InvalidElementException=a,e.NoElementException=s}));
|
||||
;/*!node_modules/jsbarcode/bin/help/getRenderProperties.js*/
|
||||
amis.define("6218cfd",(function(e,n,t,r){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a=d(e("ae7a62a")),f=d(e("ba9af52")),u=e("f540e4e");function d(e){return e&&e.__esModule?e:{default:e}}function l(e){if("string"==typeof e)return function(e){var n=document.querySelectorAll(e);if(0===n.length)return;for(var t=[],r=0;r<n.length;r++)t.push(l(n[r]));return t}(e);if(Array.isArray(e)){for(var n=[],t=0;t<e.length;t++)n.push(l(e[t]));return n}if("undefined"!=typeof HTMLCanvasElement&&e instanceof HTMLImageElement)return r=e,{element:d=document.createElement("canvas"),options:(0,a.default)(r),renderer:f.default.CanvasRenderer,afterRender:function(){r.setAttribute("src",d.toDataURL())}};if(e&&e.nodeName&&"svg"===e.nodeName.toLowerCase()||"undefined"!=typeof SVGElement&&e instanceof SVGElement)return{element:e,options:(0,a.default)(e),renderer:f.default.SVGRenderer};if("undefined"!=typeof HTMLCanvasElement&&e instanceof HTMLCanvasElement)return{element:e,options:(0,a.default)(e),renderer:f.default.CanvasRenderer};if(e&&e.getContext)return{element:e,renderer:f.default.CanvasRenderer};if(e&&"object"===(void 0===e?"undefined":o(e))&&!e.nodeName)return{element:e,renderer:f.default.ObjectRenderer};throw new u.InvalidElementException;var r,d}n.default=l}));
|
||||
;/*!node_modules/jsbarcode/bin/exceptions/ErrorHandler.js*/
|
||||
amis.define("7191045",(function(t,n,e,i){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=function(){function t(t,n){for(var e=0;e<n.length;e++){var i=n[e];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(t,i.key,i)}}return function(n,e,i){return e&&t(n.prototype,e),i&&t(n,i),n}}();var r=function(){function t(n){!function(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}(this,t),this.api=n}return a(t,[{key:"handleCatch",value:function(t){if("InvalidInputException"!==t.name)throw t;if(this.api._options.valid===this.api._defaults.valid)throw t.message;this.api._options.valid(!1),this.api.render=function(){}}},{key:"wrapBarcodeCall",value:function(t){try{var n=t.apply(void 0,arguments);return this.api._options.valid(!0),n}catch(t){return this.handleCatch(t),this.api}}}]),t}();n.default=r}));
|
||||
;/*!node_modules/jsbarcode/bin/JsBarcode.js*/
|
||||
amis.define("1c2c97d",(function(e,r,t,o){"use strict";var n=c(e("24ce356")),i=c(e("a8943be")),a=c(e("86d2959")),s=c(e("7a845db")),d=c(e("6218cfd")),f=c(e("8dcae30")),u=c(e("7191045")),p=e("f540e4e"),l=c(e("8cf281e"));function c(e){return e&&e.__esModule?e:{default:e}}var h=function(){},_=function(e,r,t){var o=new h;if(void 0===e)throw Error("No element to render on was provided.");return o._renderProperties=(0,d.default)(e),o._encodings=[],o._options=l.default,o._errorHandler=new u.default(o),void 0!==r&&((t=t||{}).format||(t.format=P()),o.options(t)[t.format](r,t).render()),o};for(var v in _.getModule=function(e){return n.default[e]},n.default)n.default.hasOwnProperty(v)&&y(n.default,v);function y(e,r){h.prototype[r]=h.prototype[r.toUpperCase()]=h.prototype[r.toLowerCase()]=function(t,o){var n=this;return n._errorHandler.wrapBarcodeCall((function(){o.text=void 0===o.text?void 0:""+o.text;var a=(0,i.default)(n._options,o);a=(0,f.default)(a);var s=e[r],d=w(t,s,a);return n._encodings.push(d),n}))}}function w(e,r,t){var o=new r(e=""+e,t);if(!o.valid())throw new p.InvalidInputException(o.constructor.name,e);var n=o.encode();n=(0,a.default)(n);for(var s=0;s<n.length;s++)n[s].options=(0,i.default)(t,n[s].options);return n}function P(){return n.default.CODE128?"CODE128":Object.keys(n.default)[0]}function m(e,r,t){r=(0,a.default)(r);for(var o=0;o<r.length;o++)r[o].options=(0,i.default)(t,r[o].options),(0,s.default)(r[o].options);(0,s.default)(t),new(0,e.renderer)(e.element,r,t).render(),e.afterRender&&e.afterRender()}h.prototype.options=function(e){return this._options=(0,i.default)(this._options,e),this},h.prototype.blank=function(e){var r=new Array(e+1).join("0");return this._encodings.push({data:r}),this},h.prototype.init=function(){var e;if(this._renderProperties)for(var r in Array.isArray(this._renderProperties)||(this._renderProperties=[this._renderProperties]),this._renderProperties){e=this._renderProperties[r];var t=(0,i.default)(this._options,e.options);"auto"==t.format&&(t.format=P()),this._errorHandler.wrapBarcodeCall((function(){var r=w(t.value,n.default[t.format.toUpperCase()],t);m(e,r,t)}))}},h.prototype.render=function(){if(!this._renderProperties)throw new p.NoElementException;if(Array.isArray(this._renderProperties))for(var e=0;e<this._renderProperties.length;e++)m(this._renderProperties[e],this._encodings,this._options);else m(this._renderProperties,this._encodings,this._options);return this},h.prototype._defaults=l.default,"undefined"!=typeof window&&(window.JsBarcode=_),"undefined"!=typeof jQuery&&(jQuery.fn.JsBarcode=function(e,r){var t=[];return jQuery(this).each((function(){t.push(this)})),_(t,e,r)}),t.exports=_}));
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 694 KiB |
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
:root { --animation-duration: 0s;}
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592738.302136737
|
||||
|
|
@ -0,0 +1,407 @@
|
|||
import {registerLocale as register} from 'amis-core';
|
||||
|
||||
amisRequire('amis').registerLocale('de-DE', {
|
||||
'Action.countDown': '${timeLeft} warten',
|
||||
'Alert.info': 'Systeminformationen',
|
||||
'asc': 'Aufsteigend',
|
||||
'App.home': 'Startseite',
|
||||
'App.navigation': 'Navigation',
|
||||
'Calendar.datepicker': 'Auswahl des Datums',
|
||||
'Calendar.yearmonth': 'YYYY MM',
|
||||
'Calendar.year': 'YYYY',
|
||||
'Calendar.begin': 'beginnt',
|
||||
'Calendar.end': 'ende',
|
||||
'Calendar.beginAndEnd': 'b/e',
|
||||
'Calendar.toast': 'Außerhalb des Datumsbereichs',
|
||||
'Calendar.startPick': 'Wählen Sie Startzeit',
|
||||
'Calendar.endPick': 'Wählen Sie Endzeit',
|
||||
'Schedule': 'Zeitplan',
|
||||
'Time': 'Zeit',
|
||||
'Content': 'Inhalt',
|
||||
'cancel': 'Abbrechen',
|
||||
'more': 'mehr',
|
||||
'Card.dragTip': 'Obere Schaltfläche zum Sortieren ziehen',
|
||||
'Card.toggleDrag': 'Zum Sortieren umschalten',
|
||||
'City.street': 'Straße eingeben',
|
||||
'clear': 'Löschen',
|
||||
'ColorPicker.placeholder': 'Farbe auswählen',
|
||||
'SubForm.add': 'Neu',
|
||||
'add': 'Neu',
|
||||
'Combo.dragDropSort': 'Zum Sortieren ziehen',
|
||||
'Combo.invalidData': 'Ungültige Daten, bitte entfernen',
|
||||
'Combo.maxLength':
|
||||
'Maximale Anzahl ist {{MaxLength}}}. Löschen Sie einige Elemente.',
|
||||
'Combo.minLength':
|
||||
'Mindestens {{minLength}} erfoderlich. Fügen Sie weitere hinzu.',
|
||||
'Combo.type': 'Typ',
|
||||
'confirm': 'Bestätigen',
|
||||
'Copyable.tip': 'Kopieren',
|
||||
'CRUD.exportCSV': 'In CSV exportieren',
|
||||
'CRUD.exportExcel': 'In Excel exportieren',
|
||||
'CRUD.fetchFailed': 'Fehler beim Abrufen',
|
||||
'CRUD.filter': 'Filtern',
|
||||
'CRUD.selected': 'Ausgewählte {{total}} Elemente: ',
|
||||
'CRUD.invalidArray': '"data.items" muss ein Array sein',
|
||||
'CRUD.invalidData': '"data" ist leer',
|
||||
'CRUD.loadMore': 'Weitere laden',
|
||||
'CRUD.loadMoreDisableTip': 'Keine Daten oder letzte Seite',
|
||||
'CRUD.perPage': 'Pro Seite',
|
||||
'CRUD.stat': '{{page}} von {{lastPage}} insgesamt: {{total}}.',
|
||||
'CRUD.paginationGoText': 'Wechseln zu',
|
||||
'CRUD.paginationPageText': 'Seite',
|
||||
'PaginationWrapper.placeholder': 'Textkörper konfigurieren',
|
||||
'Pagination.select': '{{count}} items/page',
|
||||
'Pagination.goto': 'goto',
|
||||
'Pagination.go': 'GO',
|
||||
'Pagination.totalPage': 'total {{lastPage}} pages',
|
||||
'Pagination.totalCount': 'total {{total}} items',
|
||||
'Date.titleYear': '',
|
||||
'Date.titleMonth': '',
|
||||
'Date.titleDate': '',
|
||||
'Date.titleTime': '',
|
||||
'Date.daysago': 'Vor {{days}} Tag(en)',
|
||||
'Date.dayslater': '{{days}} Tag(e) später',
|
||||
'Date.endOfMonth': 'Letzter Tag des Monats',
|
||||
'Date.endOfLastMonth': 'Letzer Tag des letzten Monats',
|
||||
'Date.endOfWeek': 'Samstag',
|
||||
'Date.hoursago': 'Vor {{hours}} Stunde(n)',
|
||||
'Date.hourslater': '{{hours}} Stunde(n) später',
|
||||
'Date.invalid': 'Ungültiges Datum',
|
||||
'Date.monday': 'Montag',
|
||||
'Date.monthsago': 'Vor {{months}} Monat(en)',
|
||||
'Date.monthslater': '{{months}} Monat(e) später',
|
||||
'Date.now': 'Jetzt',
|
||||
'Date.placeholder': 'Datum wählen',
|
||||
'Date.quartersago': 'Vor {{quarters}} Quartal(en)',
|
||||
'Date.quarterslater': '{{quarters}} Quartal(e) später',
|
||||
'Date.startOfLastMonth': 'Erster Tag des letzten Monats',
|
||||
'Date.startOfLastQuarter': 'Erster Tag des letzten Quartals',
|
||||
'Date.startOfMonth': 'Erster Tag des Monats',
|
||||
'Date.startOfQuarter': 'Erster Tag des Quartals',
|
||||
'Date.today': 'Heute',
|
||||
'Date.tomorrow': 'Morgen',
|
||||
'Date.weeksago': 'vor {{weeks}} Woche',
|
||||
'Date.weekslater': '{{weeks}} Wochen später',
|
||||
'Date.yesterday': 'Gestern',
|
||||
'dateformat.year': 'YYYY',
|
||||
'DateRange.daysago': 'letzten {{days}} Tage',
|
||||
'DateRange.dayslater': 'innerhalb von {{days}} Tagen',
|
||||
'DateRange.weeksago': 'letzten {{weeks}} Wochen',
|
||||
'DateRange.weekslater': 'innerhalb von {{weeks}} Wochen',
|
||||
'DateRange.monthsago': 'letzten {{months}} Monate',
|
||||
'DateRange.monthslater': 'innerhalb von {{months}} Monaten',
|
||||
'DateRange.quartersago': 'letzten {{quarters}} Quartale',
|
||||
'DateRange.quarterslater': 'innerhalb von {{quarters}} Quartalen',
|
||||
'DateRange.yearsago': 'letzten {{years}} Jahre',
|
||||
'DateRange.yearslater': '{{years}} Jahren',
|
||||
'DateRange.hoursago': 'letzten {{hours}} Stunden',
|
||||
'DateRange.hourslater': 'innerhalb von {{hours}} Stunden',
|
||||
'DateRange.1dayago': 'Vor 1 Tag',
|
||||
'DateRange.1daysago': 'Vor 1 Tag',
|
||||
'DateRange.7daysago': 'Vor 7 Tagen',
|
||||
'DateRange.30daysago': 'Vor 30 Tagen',
|
||||
'DateRange.90daysago': 'Vor 90 Tagen',
|
||||
'DateRange.lastMonth': 'Letzer Monat',
|
||||
'DateRange.lastWeek': 'Letzte Woche',
|
||||
'DateRange.lastQuarter': 'Letztes Quartal',
|
||||
'DateRange.placeholder': 'Datumsbereich wählen',
|
||||
'YearRange.placeholder': 'Datumsbereich wählen',
|
||||
'DateRange.thisWeek': 'Diese Woche',
|
||||
'DateRange.thisMonth': 'Diesen Monat',
|
||||
'DateRange.thisQuarter': 'Dieses Quartal',
|
||||
'DateRange.thisYear': 'Dieses Jahr',
|
||||
'DateRange.lastYear': 'letztes Jahr',
|
||||
'DateRange.valueConcat': ' bis ',
|
||||
'DateTime.placeholder': 'Datum auswählen',
|
||||
'delete': 'Löschen',
|
||||
'deleteConfirm': 'Möchten Sie wirklich löschen?',
|
||||
'deleteFailed': 'Fehler beim Löschen',
|
||||
'desc': 'Absteigend',
|
||||
'Dialog.close': 'Schließen',
|
||||
'Dialog.title': 'Titel',
|
||||
'Embed.invalidRoot': 'Ungültiger Root-Selektor',
|
||||
'Embed.downloading': 'Download starten',
|
||||
'fetchFailed': 'Fehler beim Abrufen der API',
|
||||
'File.continueAdd': 'Hinuzufügen fortsetzen',
|
||||
'File.dragDrop': 'Dateien per Drag & Drop hier ablegen',
|
||||
'File.clickUpload': 'Klicken Sie hier zum Hochladen',
|
||||
'File.helpText': 'Hilfedokumentation',
|
||||
'File.errorRetry':
|
||||
'Fehler beim Hochladen der Datei, bitte versuchen Sie es erneut.',
|
||||
'File.failed': 'Fehlerhafte Dateien',
|
||||
'File.invalidType': '{{files}} entspricht nicht Typ `{{accept}}`',
|
||||
'File.maxSize':
|
||||
'{{filename}} überschreitet die maximale Größe von {{maxSize}}',
|
||||
'File.pause': 'Hochladen anhalten',
|
||||
'File.repick': 'Erneut suswählen',
|
||||
'File.result':
|
||||
'Erfolgreich hochgeladene Dateien: {{uploaded}}, nicht hochgeladene Dateien: {{failed}}',
|
||||
'File.retry': 'Wiederholen',
|
||||
'File.sizeLimit': 'Die maximale Dateigröße ist {{maxSize}}',
|
||||
'File.start': 'Hochladen beginnen',
|
||||
'File.upload': 'Hochladen',
|
||||
'Image.upload': 'Hochladen',
|
||||
'File.uploadFailed': 'Zurückgegebene Daten der Upload-API sind leer',
|
||||
'File.uploading': 'Wird hochgeladen...',
|
||||
'FormItem.autoFillLoadFailed':
|
||||
'Die Schnittstelle hat einen Fehler zurückgegeben, bitte sorgfältig prüfen',
|
||||
'FormItem.autoFillSuggest': 'Referenzdateneingabe',
|
||||
'Form.loadOptionsFailed':
|
||||
'Optionen wurden auf folgendem Grund nicht geladen: {{reason}}',
|
||||
'Form.submit': 'Absenden',
|
||||
'Form.title': 'Formular',
|
||||
'Form.unique': 'Aktueller Wert ist nicht eindeutig',
|
||||
'Form.validateFailed': 'Fehler bei der Überprüfung der Formulareingabe',
|
||||
'Form.nestedError': 'Form kann nicht als Nachkomme von Form erscheinen',
|
||||
'Iframe.invalid': 'Ungültige Iframe-URL',
|
||||
'Iframe.invalidProtocol':
|
||||
'HTTP-URL-Iframe kann nicht in https verwendet werden',
|
||||
'Image.configError':
|
||||
'Es können nur eine Beschneidung oder mehrere festgelegt werden',
|
||||
'Image.crop': 'Bild beschneiden',
|
||||
'Image.dragDrop': 'Bilder per Drag & Drop hier ablegen',
|
||||
'Image.height': 'Höhe: {{height}} Pixel',
|
||||
'Image.limitMax': 'Minimale Bildgröße ist {{info}}',
|
||||
'Image.limitMin': 'Maximale Bildgröße ist {{info}}',
|
||||
'Image.limitRatio':
|
||||
'Laden Sie das Bild mit dem Seitenverhältnis {{ration}} hoch',
|
||||
'Image.pasteTip': 'Sie können das Bild aus der Zwischenablage einfügen',
|
||||
'Image.placeholder':
|
||||
'Klicken Sie, um das Bild einzufügen, oder ziehen Sie es in diesen Bereich.',
|
||||
'Image.size': 'size: ({{width}} Pixel x {{height}} Pixel)',
|
||||
'Image.sizeNotEqual':
|
||||
'Das ausgwählte Bild entspricht nicht den Größenanforderungen {{info}}',
|
||||
'Image.width': 'Weite: {{width}} Pixel',
|
||||
'Image.zoomIn': 'Vergrößern',
|
||||
'Log.mustHaveSource': 'Quelle muss in der Konfiguration vorhanden sein',
|
||||
'Log.showLineNumber': 'Zeilennummer anzeigen',
|
||||
'Log.notShowLineNumber': 'Zeilennummer ausblenden',
|
||||
'Log.expand': 'Entfalten',
|
||||
'Log.collapse': 'Falten',
|
||||
'link': 'Link',
|
||||
'loading': 'Wird geladen...',
|
||||
'LocationPicker.placeholder': 'Wählen Sie einen Ort',
|
||||
'Month.placeholder': 'Wählen Sie einen Monat',
|
||||
'Nav.sourceError': 'Fehler beim Abrufen des Links',
|
||||
'networkError':
|
||||
'Fehler beim Netzwerkzugriff oder fehlende CORS-Konfiguration',
|
||||
'noResult': 'Keine Ergebnisse',
|
||||
'NumberInput.placeholder': 'Geben Sie eine Zahl ein',
|
||||
'Options.addPlaceholder': 'Geben Sie einen Namen ein',
|
||||
'Options.deleteAPI': '"deleteAPI" erforderlich',
|
||||
'Options.editLabel': 'Bearbeiten {{label}}',
|
||||
'Options.label': 'Option',
|
||||
'Options.createFailed': 'Erstellen fehlgeschlagen',
|
||||
'placeholder.empty': '<Empty>',
|
||||
'placeholder.enter': 'Eingabe',
|
||||
'placeholder.noData': 'Keine Daten',
|
||||
'placeholder.noOption': 'Keine Option',
|
||||
'placeholder.selectData': 'Daten auswählen',
|
||||
'Quarter.placeholder': 'Quartal auswählen',
|
||||
'Repeat.pre': 'Pro',
|
||||
'reset': 'Zurücksetzen',
|
||||
'save': 'Konservierung',
|
||||
'saveFailed': 'Fehler beim Speichern',
|
||||
'saveSuccess': 'Erfolgreich gespeichert',
|
||||
'search': 'Suchen',
|
||||
'searchHistory': 'Suchverlauf',
|
||||
'searchResult': 'Suchergebnis',
|
||||
'Checkboxes.selectAll': 'Alle auswählen/abwählen',
|
||||
'Select.checkAll': 'Alle markieren',
|
||||
'Select.clear': 'Löschen',
|
||||
'Select.upload': 'Wieder hochladen',
|
||||
'Select.clearAll': 'Alle löschen',
|
||||
'Select.createLabel': 'Neue Option',
|
||||
'Select.placeholder': 'Auswählen',
|
||||
'Select.searchPromptText': 'Eingeben zum Suchen',
|
||||
'sort': 'Sortieren',
|
||||
'SubForm.button': 'Configurieren',
|
||||
'SubForm.editDetail': 'Details bearbeiten',
|
||||
'System.error': 'Systemfehler',
|
||||
'System.notify': 'Systembenachrichtigung',
|
||||
'System.copy': 'Inhalt kopiert',
|
||||
'System.requestError': 'Anfragefehler: ',
|
||||
'System.requestErrorStatus': 'Anfragefehler, Statuscode:',
|
||||
'Table.addRow': 'Zeile hinzufügen',
|
||||
'Table.copyRow': 'Zeile kopieren',
|
||||
'Table.columnsVisibility':
|
||||
'Klicken, um die Sichtbarkeit der Spalten zu steuern',
|
||||
'Table.deleteRow': 'Aktuele Zeile löschen',
|
||||
'Table.discard': 'Verwerfen',
|
||||
'Table.dragTip': 'Schaltfläche links zum Sortieren ziehen',
|
||||
'Table.editing': 'Sie müssen die Bearbeitung beenden.',
|
||||
'Table.editRow': 'Aktuelle Zeile bearbeiten',
|
||||
'Table.modified': 'Es wurden {{modified}} Datensätze geändert, Sie können:',
|
||||
'Table.moved':
|
||||
'Bei {{moved}} Datensätzen wurde die Reihenfolge geändert, Sie können:',
|
||||
'Table.operation': 'Vorgang',
|
||||
'Table.playload': 'Nutzlast muss vorhanden sein',
|
||||
'Table.startSort': 'Klicken, um Sortierung zu starten',
|
||||
'Table.valueField': 'valueField muss vorhanden sein',
|
||||
'Table.index': 'Index',
|
||||
'Table.toggleColumn': 'Spalten anzeigen',
|
||||
'Table.searchFields': 'Abfragefelder setzen',
|
||||
'Tag.placeholder': 'Noch kein Tag',
|
||||
'Tag.tip': 'Kürzlich verwendetes Tag',
|
||||
'Text.add': 'Neu {{label}}',
|
||||
'Time.placeholder': 'Zeit auswählen',
|
||||
'Transfer.configError': 'Konfigurationsfehler',
|
||||
'Transfer.refreshIcon': 'Zum Aktualisieren klicken',
|
||||
'Transfer.searchKeyword': 'Stichwörter eingeben',
|
||||
'Transfer.available': 'Verfügbar',
|
||||
'Transfer.selectd': 'Ausgewählt',
|
||||
'Transfer.selectFromLeft': 'Von links auswählen',
|
||||
'Tree.addChild': 'Untergeordnetes Element hinzufügen',
|
||||
'Tree.addRoot': 'Stammknoten hinzufügen',
|
||||
'Tree.editNode': 'Diesen Knoten bearbeiten',
|
||||
'Tree.removeNode': 'Diesen Knoten entfernen',
|
||||
'Tree.root': 'Stamm',
|
||||
'validate.equals': 'Wert muss $1 sein',
|
||||
'validate.equalsField': 'Wert muss $1 sein',
|
||||
'validate.gt': 'Geben Sie einen Wert ein, der größer ist als $1',
|
||||
'validate.isAlpha': 'Geben Sie Buchstaben ein',
|
||||
'validate.isAlphanumeric': 'Geben Sie Buchstaben oder Zahlen ein.',
|
||||
'validate.isEmail': 'E-Mail-Format ist falsch',
|
||||
'validate.isFloat': 'Geben Sie einen Gleitkommawert ein',
|
||||
'validate.isId': 'Ungültige ID-Kartennummer',
|
||||
'validate.isInt': 'Geben Sie eine ganze Zahl ein',
|
||||
'validate.isJson': 'Ungültiges JSON-Format',
|
||||
'validate.isLength':
|
||||
'Vergewissern Sie sich, dass die Länge des Inhalts $1 ist',
|
||||
'validate.isNumeric': 'Geben Sie eine Nummer ein',
|
||||
'validate.isPhoneNumber': 'Ungültige Telefonnummer',
|
||||
'validate.isRequired': 'Dies ist erforderlich',
|
||||
'validate.isTelNumber': 'Ungültige Telefonnummer',
|
||||
'validate.isUrl': 'Falsches URL-Format',
|
||||
'validate.isUrlPath':
|
||||
'Sie können nur Buchstaben, Zahlen, "-" und "_" eingeben.',
|
||||
'validate.isWords': 'Geben Sie ein Wort ein',
|
||||
'validate.isZipcode': 'Ungültige Postleitzahl',
|
||||
'validate.lt': 'Geben Sie einen Wert ein, der kleiner ist als $1',
|
||||
'validate.matchRegexp':
|
||||
'Das Format ist nicht korrekt. Geben Sie den Inhalt mit der Regel `${1| raw}` ein.',
|
||||
'validate.maximum':
|
||||
'Der Eingabewert überschreitet den maximalen Wert von $1.',
|
||||
'validate.maxLength':
|
||||
'Kontrollieren Sie die Länge des Inhalts. Geben Sie nicht mehr als $1 Buchstaben ein.',
|
||||
'validate.minimum': 'Der Eingabewert ist kleiner als der Mindestwert von $1.',
|
||||
'validate.minLength': 'Geben Sie weitere Zeichen ein, mindestens $1.',
|
||||
'validate.array.minLength':
|
||||
'Bitte fügen Sie weitere Mitglieder hinzu, mindestens $1 Mitglieder',
|
||||
'validate.array.maxLength':
|
||||
'Bitte kontrollieren Sie die Anzahl der Mitglieder, die $1 nicht überschreiten darf',
|
||||
'validate.notEmptyString': 'Geben Sie nicht nur Leerzeichen ein.',
|
||||
'validate.isDateTimeSame':
|
||||
'Der aktuelle Datumswert ist ungültig, bitte geben Sie denselben Datumswert wie $1 ein',
|
||||
'validate.isDateTimeBefore':
|
||||
'Der aktuelle Datumswert ist ungültig, bitte geben Sie einen Datumswert vor $1 ein',
|
||||
'validate.isDateTimeAfter':
|
||||
'Der aktuelle Datumswert ist ungültig, bitte geben Sie nach $1 einen Datumswert ein',
|
||||
'validate.isDateTimeSameOrBefore':
|
||||
'Der aktuelle Datumswert ist ungültig. Bitte geben Sie einen Datumswert ein, der gleich oder älter als $1 ist',
|
||||
'validate.isDateTimeSameOrAfter':
|
||||
'Der aktuelle Datumswert ist ungültig. Bitte geben Sie einen Datumswert ein, der gleich oder nach $1 ist',
|
||||
'validate.isDateTimeBetween':
|
||||
'Der aktuelle Datumswert ist ungültig, bitte geben Sie einen Datumswert zwischen $1 und $2 ein',
|
||||
'validate.isTimeSame':
|
||||
'Der aktuelle Zeitwert ist ungültig, bitte geben Sie denselben Zeitwert wie 1 $ ein',
|
||||
'validate.isTimeBefore':
|
||||
'Der aktuelle Zeitwert ist ungültig, bitte geben Sie einen Zeitwert vor $1 ein',
|
||||
'validate.isTimeAfter':
|
||||
'Der aktuelle Zeitwert ist ungültig, bitte geben Sie nach $1 einen Zeitwert ein',
|
||||
'validate.isTimeSameOrBefore':
|
||||
'Der aktuelle Zeitwert ist ungültig. Bitte geben Sie einen Zeitwert ein, der gleich oder älter als $1 ist',
|
||||
'validate.isTimeSameOrAfter':
|
||||
'Der aktuelle Zeitwert ist ungültig. Bitte geben Sie einen Zeitwert ein, der gleich oder nach $1 ist',
|
||||
'validate.isTimeBetween':
|
||||
'Der aktuelle Zeitwert ist ungültig, bitte geben Sie einen Zeitwert zwischen $1 und $2 ein',
|
||||
'validate.isVariableName':
|
||||
'Bitte geben Sie einen gültigen Variablennamen ein',
|
||||
'validateFailed': 'Fehler bei der Überprüfung',
|
||||
'Wizard.configError': 'Konfigurationsfehler',
|
||||
'Wizard.finish': 'Ende',
|
||||
'Wizard.next': 'Weiter',
|
||||
'Wizard.prev': 'Zurück',
|
||||
'Wizard.saveAndNext': 'Speichern & Weiter',
|
||||
'year-to-year': '{{from}} - {{to}}',
|
||||
'Year.placeholder': 'Wählen Sie ein Jahr',
|
||||
'reload': 'Neu laden',
|
||||
'rotate': 'Drehen',
|
||||
'rotate.left': 'Nach links drehen',
|
||||
'rotate.right': 'Drehe nach rechts',
|
||||
'zoomIn': 'Vergrößern',
|
||||
'zoomOut': 'Verkleinern',
|
||||
'scale.origin': 'Originalmaße',
|
||||
'Editor.fullscreen': 'Schirmfüllend Modus',
|
||||
'Editor.exitFullscreen': 'Zurücktreten Schirmfüllend Modus',
|
||||
'Condition.not': 'nicht',
|
||||
'Condition.and': 'und',
|
||||
'Condition.or': 'oder',
|
||||
'Condition.collapse': 'entfalten',
|
||||
'Condition.add_cond': 'und Bedingung',
|
||||
'Condition.add_cond_group': 'Bedingungsgruppe hinzufügen',
|
||||
'Condition.delete_cond_group': 'Konditionsgruppe löschen',
|
||||
'Condition.equal': 'gleich',
|
||||
'Condition.not_equal': 'ungleich',
|
||||
'Condition.less': 'weniger',
|
||||
'Condition.less_or_equal': 'weniger oder gleich',
|
||||
'Condition.greater': 'greater',
|
||||
'Condition.greater_or_equal': 'größder oder gleich',
|
||||
'Condition.between': 'zwischen',
|
||||
'Condition.not_between': 'nicht zwischen',
|
||||
'Condition.is_empty': 'leer',
|
||||
'Condition.is_not_empty': 'nicht leer',
|
||||
'Condition.like': 'beinhaltet',
|
||||
'Condition.not_like': 'beinhaltet nicht',
|
||||
'Condition.starts_with': 'beginnt mit',
|
||||
'Condition.ends_with': 'endet mit',
|
||||
'Condition.select_equals': 'gleich',
|
||||
'Condition.select_not_equals': 'nicht gleich',
|
||||
'Condition.select_any_in': 'beinhaltet',
|
||||
'Condition.select_not_any_in': 'beinhaltet nicht',
|
||||
'Condition.placeholder': 'Text einfügen',
|
||||
'Condition.cond_placeholder': 'Bedingung auswählen',
|
||||
'Condition.field_placeholder': 'Feld auswählen',
|
||||
'Condition.blank': 'leer',
|
||||
'Condition.expression': 'Ausdruck',
|
||||
'Condition.formula_placeholder': 'Bitte geben Sie eine Formel ein',
|
||||
'Condition.fun_error': 'Funktion ist undefiniert',
|
||||
'Condition.configured': 'Konfiguriert',
|
||||
'InputTable.uniqueError': 'Column `{{label}}` unique validate failed',
|
||||
'Timeline.collapseText': 'Falten',
|
||||
'Timeline.expandText': 'Entfalten',
|
||||
'collapse': 'Falten',
|
||||
'expand': 'Entfalten',
|
||||
'FormulaEditor.btnLabel': 'Formel Bearbeiten',
|
||||
'FormulaEditor.title': 'Formel Editor',
|
||||
'FormulaEditor.variable': 'Variable',
|
||||
'FormulaEditor.function': 'Funktion',
|
||||
'FormulaEditor.invalidData':
|
||||
'Überprüfungsfehler, position or reason is {{err}}',
|
||||
'pullRefresh.pullingText': 'Zum Aktualisieren nach unten ziehen...',
|
||||
'pullRefresh.loosingText': 'Zum Aktualisieren freigeben...',
|
||||
'pullRefresh.loadingText': 'Laden...',
|
||||
'pullRefresh.successText': 'Laden erfolgreich',
|
||||
'Picker.placeholder': 'Klicken Sie rechts auf das Symbol',
|
||||
'UserSelect.edit': 'bearbeiten',
|
||||
'UserSelect.save': 'Konservierung',
|
||||
'UserSelect.resultSort': 'Ergebnissortierung auswählen',
|
||||
'UserSelect.selected': 'Ausgewählt',
|
||||
'UserSelect.clear': 'leer',
|
||||
'UserSelect.sure': 'Submit',
|
||||
'SchemaType.string': 'String',
|
||||
'SchemaType.number': 'Number',
|
||||
'SchemaType.integer': 'integer',
|
||||
'SchemaType.object': 'Object',
|
||||
'SchemaType.array': 'Array',
|
||||
'SchemaType.boolean': 'Boolean',
|
||||
'SchemaType.null': 'Null',
|
||||
'SchemaType.any': 'Any',
|
||||
'JSONSchema.title': 'Title',
|
||||
'JSONSchema.default': 'Default',
|
||||
'JSONSchema.description': 'Description',
|
||||
'JSONSchema.key': 'Key',
|
||||
'JSONSchema.array_items': 'Items',
|
||||
'TimeNow': 'Jetzt'
|
||||
});
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.838621177
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.839920799
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.838970854
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.838761598
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.839335907
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.839188902
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.839686709
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.839477036
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
29 mtime=1677592709.83995255
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.839835422
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.838575051
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.841458762
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.885139989
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.841805939
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
17 gid=672505530
|
||||
30 mtime=1677592709.840313853
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue