fix: 码全代码添加
@@ -0,0 +1,2 @@
|
||||
org.springframework.boot.autoconfigure.EnableAutoConfiguration=com.codvision.base.config.BaseConfig,\
|
||||
com.codvision.base.config.quartz.QuartzConfig
|
||||
@@ -0,0 +1,37 @@
|
||||
# 数据源配置
|
||||
spring:
|
||||
datasource:
|
||||
type: com.zaxxer.hikari.HikariDataSource
|
||||
driver-class-name: org.postgresql.Driver
|
||||
username: postgres
|
||||
password: 123456
|
||||
url: jdbc:postgresql://127.0.0.1:5432/data_center?useUnicode=true&characterEncoding=utf8&autoReconnect=true&stringtype=unspecified
|
||||
servlet:
|
||||
multipart:
|
||||
max-file-size: 500MB
|
||||
max-request-size: 500MB
|
||||
|
||||
# knife4j接口文档配置
|
||||
swagger:
|
||||
basic:
|
||||
enable: false
|
||||
username: CVER
|
||||
password: Swagger@2023
|
||||
|
||||
# 底座配置
|
||||
cvbp:
|
||||
# 认证配置
|
||||
auth:
|
||||
enabled: false
|
||||
host: http://127.0.0.1:9050
|
||||
tokenName: Authorization
|
||||
# 缓存配置
|
||||
cache:
|
||||
enabled: true # 是否开启缓存
|
||||
type: redis # 缓存类型,默认redis
|
||||
timeout: 3600 # 缓存过期时间,单位:秒
|
||||
redisson: false # 是否开启redisson
|
||||
# 数据库版本控制
|
||||
dbvctl:
|
||||
enabled: true #是否开启数据库版本控制
|
||||
baselineBusinessSpaceAndVersions: base_V0.0.9
|
||||
@@ -0,0 +1,22 @@
|
||||
# 数据源配置
|
||||
spring:
|
||||
datasource:
|
||||
type: com.zaxxer.hikari.HikariDataSource
|
||||
driver-class-name: org.postgresql.Driver
|
||||
username: postgres
|
||||
password: 123456
|
||||
url: jdbc:postgresql://127.0.0.1:5432/boot_app?useUnicode=true&characterEncoding=utf8&autoReconnect=true&stringtype=unspecified
|
||||
# knife4j接口文档配置
|
||||
swagger:
|
||||
production: true
|
||||
|
||||
# 底座配置
|
||||
cvbp:
|
||||
# 认证配置
|
||||
auth:
|
||||
enabled: false
|
||||
host: http://127.0.0.1:9050
|
||||
tokenName: Authorization
|
||||
# 数据库版本控制
|
||||
dbvctl:
|
||||
enabled: true #是否开启数据库版本控制
|
||||
@@ -0,0 +1,8 @@
|
||||
spring:
|
||||
profiles:
|
||||
active: @profiles.active@
|
||||
server:
|
||||
port: 8030
|
||||
logging:
|
||||
level:
|
||||
root: info
|
||||
@@ -0,0 +1,895 @@
|
||||
/*
|
||||
Navicat Premium Data Transfer
|
||||
|
||||
Source Server : 10.0.6.107
|
||||
Source Server Type : PostgreSQL
|
||||
Source Server Version : 110007 (110007)
|
||||
Source Host : 10.0.6.107:5432
|
||||
Source Catalog : boot_micro
|
||||
Source Schema : public
|
||||
|
||||
Target Server Type : PostgreSQL
|
||||
Target Server Version : 110007 (110007)
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 06/12/2023 15:11:14
|
||||
*/
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- Sequence structure for tbl_backend_user_id_seq
|
||||
-- ----------------------------
|
||||
DROP SEQUENCE IF EXISTS "public"."tbl_backend_user_id_seq";
|
||||
CREATE SEQUENCE "public"."tbl_backend_user_id_seq"
|
||||
INCREMENT 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 9999999999999
|
||||
START 1
|
||||
CACHE 1;
|
||||
ALTER SEQUENCE "public"."tbl_backend_user_id_seq" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Sequence structure for tbl_config_id_seq
|
||||
-- ----------------------------
|
||||
DROP SEQUENCE IF EXISTS "public"."tbl_config_id_seq";
|
||||
CREATE SEQUENCE "public"."tbl_config_id_seq"
|
||||
INCREMENT 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 9223372036854775807
|
||||
START 1
|
||||
CACHE 1;
|
||||
ALTER SEQUENCE "public"."tbl_config_id_seq" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Sequence structure for tbl_excel_error_record_id_seq
|
||||
-- ----------------------------
|
||||
DROP SEQUENCE IF EXISTS "public"."tbl_excel_error_record_id_seq";
|
||||
CREATE SEQUENCE "public"."tbl_excel_error_record_id_seq"
|
||||
INCREMENT 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 2147483647
|
||||
START 1
|
||||
CACHE 1;
|
||||
ALTER SEQUENCE "public"."tbl_excel_error_record_id_seq" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Sequence structure for tbl_generator_config_id_seq
|
||||
-- ----------------------------
|
||||
DROP SEQUENCE IF EXISTS "public"."tbl_generator_config_id_seq";
|
||||
CREATE SEQUENCE "public"."tbl_generator_config_id_seq"
|
||||
INCREMENT 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 9223372036854775807
|
||||
START 1
|
||||
CACHE 1;
|
||||
ALTER SEQUENCE "public"."tbl_generator_config_id_seq" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Sequence structure for tbl_local_icon_library_id_seq
|
||||
-- ----------------------------
|
||||
DROP SEQUENCE IF EXISTS "public"."tbl_local_icon_library_id_seq";
|
||||
CREATE SEQUENCE "public"."tbl_local_icon_library_id_seq"
|
||||
INCREMENT 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 9223372036854775807
|
||||
START 1
|
||||
CACHE 1;
|
||||
ALTER SEQUENCE "public"."tbl_local_icon_library_id_seq" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Sequence structure for tbl_sys_dict_id_seq
|
||||
-- ----------------------------
|
||||
DROP SEQUENCE IF EXISTS "public"."tbl_sys_dict_id_seq";
|
||||
CREATE SEQUENCE "public"."tbl_sys_dict_id_seq"
|
||||
INCREMENT 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 2147483647
|
||||
START 1
|
||||
CACHE 1;
|
||||
ALTER SEQUENCE "public"."tbl_sys_dict_id_seq" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Sequence structure for tbl_sys_dict_item_id_seq
|
||||
-- ----------------------------
|
||||
DROP SEQUENCE IF EXISTS "public"."tbl_sys_dict_item_id_seq";
|
||||
CREATE SEQUENCE "public"."tbl_sys_dict_item_id_seq"
|
||||
INCREMENT 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 2147483647
|
||||
START 1
|
||||
CACHE 1;
|
||||
ALTER SEQUENCE "public"."tbl_sys_dict_item_id_seq" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Sequence structure for tbl_sys_file_id_seq
|
||||
-- ----------------------------
|
||||
DROP SEQUENCE IF EXISTS "public"."tbl_sys_file_id_seq";
|
||||
CREATE SEQUENCE "public"."tbl_sys_file_id_seq"
|
||||
INCREMENT 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 2147483647
|
||||
START 1
|
||||
CACHE 1;
|
||||
ALTER SEQUENCE "public"."tbl_sys_file_id_seq" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Sequence structure for tbl_sys_notice_id_seq
|
||||
-- ----------------------------
|
||||
DROP SEQUENCE IF EXISTS "public"."tbl_sys_notice_id_seq";
|
||||
CREATE SEQUENCE "public"."tbl_sys_notice_id_seq"
|
||||
INCREMENT 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 2147483647
|
||||
START 1
|
||||
CACHE 1;
|
||||
ALTER SEQUENCE "public"."tbl_sys_notice_id_seq" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Sequence structure for tbl_sys_tag_id_seq
|
||||
-- ----------------------------
|
||||
DROP SEQUENCE IF EXISTS "public"."tbl_sys_tag_id_seq";
|
||||
CREATE SEQUENCE "public"."tbl_sys_tag_id_seq"
|
||||
INCREMENT 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 9223372036854775807
|
||||
START 1
|
||||
CACHE 1;
|
||||
ALTER SEQUENCE "public"."tbl_sys_tag_id_seq" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for qrtz_blob_triggers
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."qrtz_blob_triggers";
|
||||
CREATE TABLE "public"."qrtz_blob_triggers" (
|
||||
"sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"blob_data" bytea
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."qrtz_blob_triggers" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for qrtz_calendars
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."qrtz_calendars";
|
||||
CREATE TABLE "public"."qrtz_calendars" (
|
||||
"sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"calendar_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"calendar" bytea NOT NULL
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."qrtz_calendars" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for qrtz_cron_triggers
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."qrtz_cron_triggers";
|
||||
CREATE TABLE "public"."qrtz_cron_triggers" (
|
||||
"sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"cron_expression" varchar(120) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"time_zone_id" varchar(80) COLLATE "pg_catalog"."default"
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."qrtz_cron_triggers" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for qrtz_fired_triggers
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."qrtz_fired_triggers";
|
||||
CREATE TABLE "public"."qrtz_fired_triggers" (
|
||||
"sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"entry_id" varchar(95) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"instance_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"fired_time" int8 NOT NULL,
|
||||
"sched_time" int8 NOT NULL,
|
||||
"priority" int4 NOT NULL,
|
||||
"state" varchar(16) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"job_name" varchar(200) COLLATE "pg_catalog"."default",
|
||||
"job_group" varchar(200) COLLATE "pg_catalog"."default",
|
||||
"is_nonconcurrent" bool,
|
||||
"requests_recovery" bool
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."qrtz_fired_triggers" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for qrtz_job_details
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."qrtz_job_details";
|
||||
CREATE TABLE "public"."qrtz_job_details" (
|
||||
"sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"job_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"job_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"description" varchar(250) COLLATE "pg_catalog"."default",
|
||||
"job_class_name" varchar(250) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"is_durable" bool NOT NULL,
|
||||
"is_nonconcurrent" bool NOT NULL,
|
||||
"is_update_data" bool NOT NULL,
|
||||
"requests_recovery" bool NOT NULL,
|
||||
"job_data" bytea
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."qrtz_job_details" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for qrtz_locks
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."qrtz_locks";
|
||||
CREATE TABLE "public"."qrtz_locks" (
|
||||
"sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"lock_name" varchar(40) COLLATE "pg_catalog"."default" NOT NULL
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."qrtz_locks" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for qrtz_paused_trigger_grps
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."qrtz_paused_trigger_grps";
|
||||
CREATE TABLE "public"."qrtz_paused_trigger_grps" (
|
||||
"sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."qrtz_paused_trigger_grps" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for qrtz_scheduler_state
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."qrtz_scheduler_state";
|
||||
CREATE TABLE "public"."qrtz_scheduler_state" (
|
||||
"sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"instance_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"last_checkin_time" int8 NOT NULL,
|
||||
"checkin_interval" int8 NOT NULL
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."qrtz_scheduler_state" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for qrtz_simple_triggers
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."qrtz_simple_triggers";
|
||||
CREATE TABLE "public"."qrtz_simple_triggers" (
|
||||
"sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"repeat_count" int8 NOT NULL,
|
||||
"repeat_interval" int8 NOT NULL,
|
||||
"times_triggered" int8 NOT NULL
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."qrtz_simple_triggers" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for qrtz_simprop_triggers
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."qrtz_simprop_triggers";
|
||||
CREATE TABLE "public"."qrtz_simprop_triggers" (
|
||||
"sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"str_prop_1" varchar(512) COLLATE "pg_catalog"."default",
|
||||
"str_prop_2" varchar(512) COLLATE "pg_catalog"."default",
|
||||
"str_prop_3" varchar(512) COLLATE "pg_catalog"."default",
|
||||
"int_prop_1" int4,
|
||||
"int_prop_2" int4,
|
||||
"long_prop_1" int8,
|
||||
"long_prop_2" int8,
|
||||
"dec_prop_1" numeric(13,4),
|
||||
"dec_prop_2" numeric(13,4),
|
||||
"bool_prop_1" bool,
|
||||
"bool_prop_2" bool
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."qrtz_simprop_triggers" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for qrtz_triggers
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."qrtz_triggers";
|
||||
CREATE TABLE "public"."qrtz_triggers" (
|
||||
"sched_name" varchar(120) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"trigger_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"trigger_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"job_name" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"job_group" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"description" varchar(250) COLLATE "pg_catalog"."default",
|
||||
"next_fire_time" int8,
|
||||
"prev_fire_time" int8,
|
||||
"priority" int4,
|
||||
"trigger_state" varchar(16) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"trigger_type" varchar(8) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"start_time" int8 NOT NULL,
|
||||
"end_time" int8,
|
||||
"calendar_name" varchar(200) COLLATE "pg_catalog"."default",
|
||||
"misfire_instr" int2,
|
||||
"job_data" bytea
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."qrtz_triggers" OWNER TO "postgres";
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for tbl_backend_user
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."tbl_backend_user";
|
||||
CREATE TABLE "public"."tbl_backend_user" (
|
||||
"id" int4 NOT NULL DEFAULT nextval('tbl_backend_user_id_seq'::regclass),
|
||||
"username" varchar(200) COLLATE "pg_catalog"."default",
|
||||
"password" varchar(200) COLLATE "pg_catalog"."default",
|
||||
"nickname" varchar(255) COLLATE "pg_catalog"."default"
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."tbl_backend_user" OWNER TO "postgres";
|
||||
COMMENT ON COLUMN "public"."tbl_backend_user"."id" IS 'ID';
|
||||
COMMENT ON COLUMN "public"."tbl_backend_user"."username" IS '用户名';
|
||||
COMMENT ON COLUMN "public"."tbl_backend_user"."password" IS '密码';
|
||||
COMMENT ON COLUMN "public"."tbl_backend_user"."nickname" IS '昵称';
|
||||
COMMENT ON TABLE "public"."tbl_backend_user" IS '框架后台管理用户';
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for tbl_config
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."tbl_config";
|
||||
CREATE TABLE "public"."tbl_config" (
|
||||
"id" int4 NOT NULL DEFAULT nextval('tbl_config_id_seq'::regclass),
|
||||
"k" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"v" text COLLATE "pg_catalog"."default",
|
||||
"create_time" timestamp(6) DEFAULT now(),
|
||||
"update_time" timestamp(6) DEFAULT now(),
|
||||
"name" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"large_category" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"subclass" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"orderby" int2
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."tbl_config" OWNER TO "postgres";
|
||||
COMMENT ON COLUMN "public"."tbl_config"."id" IS '系统配置ID';
|
||||
COMMENT ON COLUMN "public"."tbl_config"."k" IS '参数键';
|
||||
COMMENT ON COLUMN "public"."tbl_config"."v" IS '参数值';
|
||||
COMMENT ON COLUMN "public"."tbl_config"."create_time" IS '创建时间';
|
||||
COMMENT ON COLUMN "public"."tbl_config"."update_time" IS '更新时间';
|
||||
COMMENT ON COLUMN "public"."tbl_config"."name" IS '参数名称';
|
||||
COMMENT ON COLUMN "public"."tbl_config"."large_category" IS '大类';
|
||||
COMMENT ON COLUMN "public"."tbl_config"."subclass" IS '小类';
|
||||
COMMENT ON COLUMN "public"."tbl_config"."orderby" IS '排序';
|
||||
COMMENT ON TABLE "public"."tbl_config" IS '系统配置';
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for tbl_excel_error_record
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."tbl_excel_error_record";
|
||||
CREATE TABLE "public"."tbl_excel_error_record" (
|
||||
"id" int8 NOT NULL DEFAULT nextval('tbl_excel_error_record_id_seq'::regclass),
|
||||
"req_no" varchar COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"row_index" int4 NOT NULL,
|
||||
"original_json_value" text COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"error_msg_json" text COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"target_object" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"create_time" timestamp(6) DEFAULT now(),
|
||||
"update_time" timestamp(6) DEFAULT now()
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."tbl_excel_error_record" OWNER TO "postgres";
|
||||
COMMENT ON COLUMN "public"."tbl_excel_error_record"."req_no" IS '请求序列号';
|
||||
COMMENT ON COLUMN "public"."tbl_excel_error_record"."row_index" IS '行号';
|
||||
COMMENT ON COLUMN "public"."tbl_excel_error_record"."original_json_value" IS '原始数据信息';
|
||||
COMMENT ON COLUMN "public"."tbl_excel_error_record"."error_msg_json" IS '错误数据信息';
|
||||
COMMENT ON COLUMN "public"."tbl_excel_error_record"."target_object" IS '目标对象';
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for tbl_generator_config
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."tbl_generator_config";
|
||||
CREATE TABLE "public"."tbl_generator_config" (
|
||||
"id" int4 NOT NULL DEFAULT nextval('tbl_generator_config_id_seq'::regclass),
|
||||
"config_name" varchar(200) COLLATE "pg_catalog"."default",
|
||||
"author" varchar(100) COLLATE "pg_catalog"."default",
|
||||
"export_path" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"package_name" varchar(100) COLLATE "pg_catalog"."default",
|
||||
"table_prefix_name" varchar(100) COLLATE "pg_catalog"."default",
|
||||
"tables" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"super_entity" bool,
|
||||
"file_override" bool
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."tbl_generator_config" OWNER TO "postgres";
|
||||
COMMENT ON COLUMN "public"."tbl_generator_config"."id" IS '主键';
|
||||
COMMENT ON COLUMN "public"."tbl_generator_config"."config_name" IS '配置名称';
|
||||
COMMENT ON COLUMN "public"."tbl_generator_config"."author" IS '作者名';
|
||||
COMMENT ON COLUMN "public"."tbl_generator_config"."export_path" IS '生成目录';
|
||||
COMMENT ON COLUMN "public"."tbl_generator_config"."package_name" IS '包名';
|
||||
COMMENT ON COLUMN "public"."tbl_generator_config"."table_prefix_name" IS '表前缀名';
|
||||
COMMENT ON COLUMN "public"."tbl_generator_config"."tables" IS '表名列表';
|
||||
COMMENT ON COLUMN "public"."tbl_generator_config"."super_entity" IS '是否继承实体';
|
||||
COMMENT ON COLUMN "public"."tbl_generator_config"."file_override" IS '是否覆盖原文件';
|
||||
COMMENT ON TABLE "public"."tbl_generator_config" IS '生成代码配置';
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for tbl_local_icon_library
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."tbl_local_icon_library";
|
||||
CREATE TABLE "public"."tbl_local_icon_library" (
|
||||
"id" int8 NOT NULL DEFAULT nextval('tbl_local_icon_library_id_seq'::regclass),
|
||||
"type" int2,
|
||||
"icon_name" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"icon_url" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"remark" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"create_time" timestamp(6) DEFAULT now(),
|
||||
"update_time" timestamp(6) DEFAULT now()
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."tbl_local_icon_library" OWNER TO "postgres";
|
||||
COMMENT ON COLUMN "public"."tbl_local_icon_library"."id" IS '主键id';
|
||||
COMMENT ON COLUMN "public"."tbl_local_icon_library"."type" IS '图标类型';
|
||||
COMMENT ON COLUMN "public"."tbl_local_icon_library"."icon_name" IS '图标名称';
|
||||
COMMENT ON COLUMN "public"."tbl_local_icon_library"."icon_url" IS '图标链接';
|
||||
COMMENT ON COLUMN "public"."tbl_local_icon_library"."remark" IS '图标备注';
|
||||
COMMENT ON COLUMN "public"."tbl_local_icon_library"."create_time" IS '创建时间';
|
||||
COMMENT ON COLUMN "public"."tbl_local_icon_library"."update_time" IS '更新时间';
|
||||
COMMENT ON TABLE "public"."tbl_local_icon_library" IS '本地图标';
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for tbl_sys_dict
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."tbl_sys_dict";
|
||||
CREATE TABLE "public"."tbl_sys_dict" (
|
||||
"id" int4 NOT NULL DEFAULT nextval('tbl_sys_dict_id_seq'::regclass),
|
||||
"dict_type" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"description" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"system_flag" int2 NOT NULL DEFAULT 0,
|
||||
"create_time" timestamp(6) NOT NULL DEFAULT now(),
|
||||
"update_time" timestamp(6) NOT NULL DEFAULT now(),
|
||||
"del_flag" int2 DEFAULT 0,
|
||||
"del_key" int4 DEFAULT 0
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."tbl_sys_dict" OWNER TO "postgres";
|
||||
COMMENT ON COLUMN "public"."tbl_sys_dict"."dict_type" IS '类型';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_dict"."description" IS '字典描述';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_dict"."system_flag" IS '是否系统内置(0:否, 1:是)';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_dict"."create_time" IS '创建时间';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_dict"."update_time" IS '更新时间';
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for tbl_sys_dict_item
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."tbl_sys_dict_item";
|
||||
CREATE TABLE "public"."tbl_sys_dict_item" (
|
||||
"id" int4 NOT NULL DEFAULT nextval('tbl_sys_dict_item_id_seq'::regclass),
|
||||
"dict_id" int4 NOT NULL,
|
||||
"item_value" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"label" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"dict_type" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"sort_order" int2,
|
||||
"remark" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"create_time" timestamp(6) NOT NULL DEFAULT now(),
|
||||
"update_time" timestamp(6) NOT NULL DEFAULT now(),
|
||||
"del_flag" int2 DEFAULT 0,
|
||||
"del_key" int4 DEFAULT 0
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."tbl_sys_dict_item" OWNER TO "postgres";
|
||||
COMMENT ON COLUMN "public"."tbl_sys_dict_item"."dict_id" IS '所属字典类id';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_dict_item"."item_value" IS '数据值';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_dict_item"."label" IS '标签名';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_dict_item"."dict_type" IS '字典类型';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_dict_item"."sort_order" IS '排序值,默认升序';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_dict_item"."remark" IS '备注';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_dict_item"."create_time" IS '创建时间';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_dict_item"."update_time" IS '更新时间';
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for tbl_sys_file
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."tbl_sys_file";
|
||||
CREATE TABLE "public"."tbl_sys_file" (
|
||||
"id" int4 NOT NULL DEFAULT nextval('tbl_sys_file_id_seq'::regclass),
|
||||
"file_name" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"bucket_name" varchar(200) COLLATE "pg_catalog"."default",
|
||||
"original" varchar(100) COLLATE "pg_catalog"."default",
|
||||
"type" varchar(50) COLLATE "pg_catalog"."default",
|
||||
"file_size" int8,
|
||||
"create_user" varchar(64) COLLATE "pg_catalog"."default",
|
||||
"update_user" varchar(64) COLLATE "pg_catalog"."default",
|
||||
"create_time" timestamp(6) DEFAULT now(),
|
||||
"update_time" timestamp(6),
|
||||
"position" char(1) COLLATE "pg_catalog"."default",
|
||||
"del_flag" int2 DEFAULT 0,
|
||||
"source" int2 DEFAULT 0,
|
||||
"is_valid" int2 DEFAULT 1
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."tbl_sys_file" OWNER TO "postgres";
|
||||
COMMENT ON COLUMN "public"."tbl_sys_file"."id" IS '编号';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_file"."file_size" IS '文件大小';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_file"."create_user" IS '创建人';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_file"."update_user" IS '修改人';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_file"."create_time" IS '上传时间';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_file"."update_time" IS '更新时间';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_file"."position" IS '文件存储位置:1.文件服务器,2.ECS服务器';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_file"."source" IS '来源:0文件上传模块,1其他模块';
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for tbl_sys_notice
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."tbl_sys_notice";
|
||||
CREATE TABLE "public"."tbl_sys_notice" (
|
||||
"id" int4 NOT NULL DEFAULT nextval('tbl_sys_notice_id_seq'::regclass),
|
||||
"title" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"content" text COLLATE "pg_catalog"."default",
|
||||
"tag_id" int2,
|
||||
"remark" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"create_by" varchar(50) COLLATE "pg_catalog"."default",
|
||||
"create_time" timestamp(6) DEFAULT now(),
|
||||
"status" int2 DEFAULT 0,
|
||||
"scope" int2,
|
||||
"type" int2,
|
||||
"pic" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"create_uid" int4
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."tbl_sys_notice" OWNER TO "postgres";
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice"."id" IS 'ID';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice"."title" IS '通知标题';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice"."content" IS '通知内容';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice"."tag_id" IS '标签id';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice"."remark" IS '备注';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice"."create_by" IS '创建人';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice"."create_time" IS '创建时间';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice"."status" IS '状态:0待发送,1已发送';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice"."scope" IS '可见范围:0部分公开,1全部可见';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice"."type" IS '类型:0通知,1公告';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice"."pic" IS '封面照片';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice"."create_uid" IS '创建人用户id';
|
||||
COMMENT ON TABLE "public"."tbl_sys_notice" IS '系统通知';
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for tbl_sys_notice_user_mapper
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."tbl_sys_notice_user_mapper";
|
||||
CREATE TABLE "public"."tbl_sys_notice_user_mapper" (
|
||||
"notice_id" int4 NOT NULL,
|
||||
"user_id" int4 NOT NULL,
|
||||
"create_time" timestamp(6) DEFAULT now(),
|
||||
"status" int2 DEFAULT 0,
|
||||
"flag_del" int2 DEFAULT 0
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."tbl_sys_notice_user_mapper" OWNER TO "postgres";
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice_user_mapper"."notice_id" IS '通知ID';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice_user_mapper"."user_id" IS '用户ID';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice_user_mapper"."create_time" IS '创建时间';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice_user_mapper"."status" IS '0未读,1已读';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_notice_user_mapper"."flag_del" IS '是否撤回,0否,1是';
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for tbl_sys_tag
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."tbl_sys_tag";
|
||||
CREATE TABLE "public"."tbl_sys_tag" (
|
||||
"id" int4 NOT NULL DEFAULT nextval('tbl_sys_tag_id_seq'::regclass),
|
||||
"tag_name" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"dict_item_value" varchar(255) COLLATE "pg_catalog"."default" NOT NULL,
|
||||
"sort" int4,
|
||||
"del_flag" int2 DEFAULT 0,
|
||||
"create_time" timestamp(6) NOT NULL DEFAULT now(),
|
||||
"update_time" timestamp(6) NOT NULL DEFAULT now(),
|
||||
"del_key" int4 DEFAULT 0,
|
||||
"tag_description" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"parent_id" int4 NOT NULL DEFAULT 0,
|
||||
"level" int2 NOT NULL DEFAULT 1,
|
||||
"path" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"id_path" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"color" varchar(255) COLLATE "pg_catalog"."default"
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."tbl_sys_tag" OWNER TO "postgres";
|
||||
COMMENT ON COLUMN "public"."tbl_sys_tag"."tag_name" IS '标签名称';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_tag"."dict_item_value" IS '标签所属模块(存字典项表中的item_value)';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_tag"."sort" IS '排序字段';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_tag"."del_flag" IS '删除标记,1:已删除,0:正常';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_tag"."create_time" IS '创建时间';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_tag"."update_time" IS '更新时间';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_tag"."tag_description" IS '标签描述';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_tag"."parent_id" IS '父id';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_tag"."level" IS '级别';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_tag"."path" IS '标签名称路径';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_tag"."id_path" IS '标签id路径';
|
||||
COMMENT ON COLUMN "public"."tbl_sys_tag"."color" IS '标签颜色';
|
||||
COMMENT ON TABLE "public"."tbl_sys_tag" IS '系统标签';
|
||||
|
||||
-- ----------------------------
|
||||
-- Alter sequences owned by
|
||||
-- ----------------------------
|
||||
ALTER SEQUENCE "public"."tbl_backend_user_id_seq"
|
||||
OWNED BY "public"."tbl_backend_user"."id";
|
||||
SELECT setval('"public"."tbl_backend_user_id_seq"', 1, true);
|
||||
|
||||
-- ----------------------------
|
||||
-- Alter sequences owned by
|
||||
-- ----------------------------
|
||||
ALTER SEQUENCE "public"."tbl_config_id_seq"
|
||||
OWNED BY "public"."tbl_config"."id";
|
||||
SELECT setval('"public"."tbl_config_id_seq"', 77, true);
|
||||
|
||||
-- ----------------------------
|
||||
-- Alter sequences owned by
|
||||
-- ----------------------------
|
||||
ALTER SEQUENCE "public"."tbl_excel_error_record_id_seq"
|
||||
OWNED BY "public"."tbl_excel_error_record"."id";
|
||||
SELECT setval('"public"."tbl_excel_error_record_id_seq"', 1, true);
|
||||
|
||||
-- ----------------------------
|
||||
-- Alter sequences owned by
|
||||
-- ----------------------------
|
||||
ALTER SEQUENCE "public"."tbl_generator_config_id_seq"
|
||||
OWNED BY "public"."tbl_generator_config"."id";
|
||||
SELECT setval('"public"."tbl_generator_config_id_seq"', 1, false);
|
||||
|
||||
-- ----------------------------
|
||||
-- Alter sequences owned by
|
||||
-- ----------------------------
|
||||
ALTER SEQUENCE "public"."tbl_local_icon_library_id_seq"
|
||||
OWNED BY "public"."tbl_local_icon_library"."id";
|
||||
SELECT setval('"public"."tbl_local_icon_library_id_seq"', 9, true);
|
||||
|
||||
-- ----------------------------
|
||||
-- Alter sequences owned by
|
||||
-- ----------------------------
|
||||
ALTER SEQUENCE "public"."tbl_sys_dict_id_seq"
|
||||
OWNED BY "public"."tbl_sys_dict"."id";
|
||||
SELECT setval('"public"."tbl_sys_dict_id_seq"', 200, true);
|
||||
|
||||
-- ----------------------------
|
||||
-- Alter sequences owned by
|
||||
-- ----------------------------
|
||||
ALTER SEQUENCE "public"."tbl_sys_dict_item_id_seq"
|
||||
OWNED BY "public"."tbl_sys_dict_item"."id";
|
||||
SELECT setval('"public"."tbl_sys_dict_item_id_seq"', 1021, true);
|
||||
|
||||
-- ----------------------------
|
||||
-- Alter sequences owned by
|
||||
-- ----------------------------
|
||||
ALTER SEQUENCE "public"."tbl_sys_file_id_seq"
|
||||
OWNED BY "public"."tbl_sys_file"."id";
|
||||
SELECT setval('"public"."tbl_sys_file_id_seq"', 942, true);
|
||||
|
||||
-- ----------------------------
|
||||
-- Alter sequences owned by
|
||||
-- ----------------------------
|
||||
ALTER SEQUENCE "public"."tbl_sys_notice_id_seq"
|
||||
OWNED BY "public"."tbl_sys_notice"."id";
|
||||
SELECT setval('"public"."tbl_sys_notice_id_seq"', 171, true);
|
||||
|
||||
-- ----------------------------
|
||||
-- Alter sequences owned by
|
||||
-- ----------------------------
|
||||
ALTER SEQUENCE "public"."tbl_sys_tag_id_seq"
|
||||
OWNED BY "public"."tbl_sys_tag"."id";
|
||||
SELECT setval('"public"."tbl_sys_tag_id_seq"', 1, true);
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table qrtz_blob_triggers
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."qrtz_blob_triggers" ADD CONSTRAINT "qrtz_blob_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table qrtz_calendars
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."qrtz_calendars" ADD CONSTRAINT "qrtz_calendars_pkey" PRIMARY KEY ("sched_name", "calendar_name");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table qrtz_cron_triggers
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."qrtz_cron_triggers" ADD CONSTRAINT "qrtz_cron_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group");
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table qrtz_fired_triggers
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_qrtz_ft_inst_job_req_rcvry" ON "public"."qrtz_fired_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"instance_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"requests_recovery" "pg_catalog"."bool_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_ft_j_g" ON "public"."qrtz_fired_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"job_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_ft_jg" ON "public"."qrtz_fired_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_ft_t_g" ON "public"."qrtz_fired_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"trigger_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_ft_tg" ON "public"."qrtz_fired_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_ft_trig_inst_name" ON "public"."qrtz_fired_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"instance_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table qrtz_fired_triggers
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."qrtz_fired_triggers" ADD CONSTRAINT "qrtz_fired_triggers_pkey" PRIMARY KEY ("sched_name", "entry_id");
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table qrtz_job_details
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_qrtz_j_grp" ON "public"."qrtz_job_details" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_j_req_recovery" ON "public"."qrtz_job_details" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"requests_recovery" "pg_catalog"."bool_ops" ASC NULLS LAST
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table qrtz_job_details
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."qrtz_job_details" ADD CONSTRAINT "qrtz_job_details_pkey" PRIMARY KEY ("sched_name", "job_name", "job_group");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table qrtz_locks
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."qrtz_locks" ADD CONSTRAINT "qrtz_locks_pkey" PRIMARY KEY ("sched_name", "lock_name");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table qrtz_paused_trigger_grps
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."qrtz_paused_trigger_grps" ADD CONSTRAINT "qrtz_paused_trigger_grps_pkey" PRIMARY KEY ("sched_name", "trigger_group");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table qrtz_scheduler_state
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."qrtz_scheduler_state" ADD CONSTRAINT "qrtz_scheduler_state_pkey" PRIMARY KEY ("sched_name", "instance_name");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table qrtz_simple_triggers
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."qrtz_simple_triggers" ADD CONSTRAINT "qrtz_simple_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table qrtz_simprop_triggers
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."qrtz_simprop_triggers" ADD CONSTRAINT "qrtz_simprop_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group");
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table qrtz_triggers
|
||||
-- ----------------------------
|
||||
CREATE INDEX "idx_qrtz_t_c" ON "public"."qrtz_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"calendar_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_t_g" ON "public"."qrtz_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_t_j" ON "public"."qrtz_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"job_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_t_jg" ON "public"."qrtz_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"job_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_t_n_g_state" ON "public"."qrtz_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_t_n_state" ON "public"."qrtz_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"trigger_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_t_next_fire_time" ON "public"."qrtz_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_t_nft_misfire" ON "public"."qrtz_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"misfire_instr" "pg_catalog"."int2_ops" ASC NULLS LAST,
|
||||
"next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_t_nft_st" ON "public"."qrtz_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_t_nft_st_misfire" ON "public"."qrtz_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"misfire_instr" "pg_catalog"."int2_ops" ASC NULLS LAST,
|
||||
"next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST,
|
||||
"trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_t_nft_st_misfire_grp" ON "public"."qrtz_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"misfire_instr" "pg_catalog"."int2_ops" ASC NULLS LAST,
|
||||
"next_fire_time" "pg_catalog"."int8_ops" ASC NULLS LAST,
|
||||
"trigger_group" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "idx_qrtz_t_state" ON "public"."qrtz_triggers" USING btree (
|
||||
"sched_name" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST,
|
||||
"trigger_state" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table qrtz_triggers
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."qrtz_triggers" ADD CONSTRAINT "qrtz_triggers_pkey" PRIMARY KEY ("sched_name", "trigger_name", "trigger_group");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table tbl_backend_user
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."tbl_backend_user" ADD CONSTRAINT "tbl_backend_user_pkey" PRIMARY KEY ("id");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table tbl_config
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."tbl_config" ADD CONSTRAINT "tbl_config_pkey" PRIMARY KEY ("id");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table tbl_excel_error_record
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."tbl_excel_error_record" ADD CONSTRAINT "tbl_excel_error_record_pkey" PRIMARY KEY ("id");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table tbl_generator_config
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."tbl_generator_config" ADD CONSTRAINT "tbl_generator_config_pkey" PRIMARY KEY ("id");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table tbl_local_icon_library
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."tbl_local_icon_library" ADD CONSTRAINT "tbl_local_icon_library_pkey" PRIMARY KEY ("id");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table tbl_sys_dict
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."tbl_sys_dict" ADD CONSTRAINT "tbl_sys_dict_pkey" PRIMARY KEY ("id");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table tbl_sys_dict_item
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."tbl_sys_dict_item" ADD CONSTRAINT "tbl_sys_dict_item_pkey" PRIMARY KEY ("id");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table tbl_sys_file
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."tbl_sys_file" ADD CONSTRAINT "tbl_sys_file_pkey" PRIMARY KEY ("id");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table tbl_sys_notice
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."tbl_sys_notice" ADD CONSTRAINT "tbl_sys_notice_pkey" PRIMARY KEY ("id");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table tbl_sys_notice_user_mapper
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."tbl_sys_notice_user_mapper" ADD CONSTRAINT "tbl_sys_notice_user_mapper_pkey" PRIMARY KEY ("notice_id", "user_id");
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table tbl_sys_tag
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."tbl_sys_tag" ADD CONSTRAINT "tbl_sys_tag_pkey" PRIMARY KEY ("id");
|
||||
|
||||
-- 新增uk_dict_id_item_value_del_key唯一约束
|
||||
ALTER TABLE "public"."tbl_sys_dict_item"
|
||||
ADD CONSTRAINT "uk_dict_id_item_value_del_key" UNIQUE ("dict_id", "item_value", "del_key");
|
||||
@@ -0,0 +1,984 @@
|
||||
-- ----------------------------
|
||||
-- Records of tbl_config
|
||||
-- ----------------------------
|
||||
DELETE FROM tbl_config;
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (1, 'DING_APP_KEY', 'dingbgf2mbwnxdmzofcl', '2022-12-19 16:11:36.322595', '2023-05-24 10:01:32.595328', 'ak', '第三方配置', '普通钉钉', 1);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (2, 'DING_APP_SECRET', 'dgIZANxt-014k-CAO40DLym8sLrKkzNJZDDXLmksY-CkOx6oQie10yT1LWOfDUm2', '2022-12-19 16:11:36.322595', '2023-05-24 10:01:34.886731', 'sk', '第三方配置', '普通钉钉', 2);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (3, 'DING_AGENT_ID', '2435229482', '2022-12-19 16:11:36.322595', '2023-05-24 10:01:37.053788', 'agentId', '第三方配置', '普通钉钉', 3);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (4, 'DING_CORP_ID', 'ding5134af5e86e41edd4ac5d6980864d335', '2022-12-19 16:11:36.322595', '2023-05-24 10:01:39.411797', 'corpId', '第三方配置', '普通钉钉', 4);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (5, 'GOV_DING_APP_KEY', 'codvision_ygt-Cuo1YtP38bVV7Nvy', '2022-12-19 16:11:36.322595', '2023-05-24 10:01:45.55649', 'ak', '第三方配置', '专有钉钉', 1);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (6, 'GOV_DING_APP_SECRET', '7fk5i2dj20uUiz3cT92Cm0dJ1ncK56i88G4Q1BFQ', '2022-12-19 16:11:36.322595', '2023-05-24 10:01:52.528236', 'sk', '第三方配置', '专有钉钉', 2);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (7, 'GOV_DING_API_URL_PREFIX', 'openplatform-pro.ding.zj.gov.cn', '2022-12-19 16:11:36.322595', '2023-05-24 10:01:52.541986', 'urlPrefix', '第三方配置', '专有钉钉', 3);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (8, 'GOV_DING_CORP_ID', NULL, '2022-12-19 16:11:36.322595', '2023-05-24 10:01:52.551571', 'cropId', '第三方配置', '专有钉钉', 4);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (15, 'GOV_DING_SCAN_DOMAIN_URL', NULL, '2022-12-19 16:11:36.322595', '2023-05-24 10:01:52.561556', 'domainUrl', '第三方配置', '专有钉钉', 5);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (16, 'GOV_DING_SCAN_REDIRECT_URL', NULL, '2022-12-19 16:11:36.322595', '2023-05-24 10:01:52.571653', 'redirectUrl', '第三方配置', '专有钉钉', 6);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (17, 'GOV_DING_SCAN_APP_FLAG', NULL, '2022-12-19 16:11:36.322595', '2023-05-24 10:01:52.581563', 'appFlag', '第三方配置', '专有钉钉', 7);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (18, 'GOV_DING_TELNET_ID', '196729', '2022-12-19 16:11:36.322595', '2023-05-24 10:01:52.596673', 'telentId', '第三方配置', '专有钉钉', 8);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (19, 'WX_MA_APP_ID', 'wxd14bca945191a4d8', '2022-12-19 16:11:36.322595', '2023-10-10 15:01:21.942376', 'appid', '第三方配置', '微信小程序', 1);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (20, 'WX_MA_APP_SECRET', '8220a1c45f1a2d35b53f70b7a0e63dc8', '2022-12-19 16:11:36.322595', '2023-10-10 15:01:28.891598', '密钥', '第三方配置', '微信小程序', 2);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (23, 'PWD_UPDATE_REMIND_SWITCH', 'OFF', '2023-02-16 14:01:08.479112', '2023-06-05 13:39:32.356655', '是否开启', '用户管理模块配置', '定期更新密码配置', 1);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (24, 'PWD_UPDATE_REMIND_INTERVAL_DAYS', '30', '2023-02-16 14:01:19.164051', '2023-06-05 13:39:32.358096', '默认天数', '用户管理模块配置', '定期更新密码配置', 2);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (25, 'MAP_CONFIG_PARAM', '{"center":[120.29993705,30.39672876],"layer":"https://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetPurplishBlue/MapServer-4","coordinate":"GCJ02","zoom":12,"minZoom":1,"maxZoom":16}', '2023-02-16 17:14:46.636462', '2023-10-31 11:37:57.950642', NULL, NULL, NULL, NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (27, 'SMS_ACCESS_KEY_ID', 'LTAIvrLfO6iMfiSR', '2023-02-28 17:36:04.17493', '2023-11-30 16:02:37.956641', '阿里云短信服务AK', '短信配置', '阿里云短信', 1);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (28, 'SMS_ACCESS_KEY_SECRET', '8tY7tDtTH4b5iWbI7nInWNVEpL7y6g', '2023-02-28 17:36:17.067908', '2023-11-30 16:02:37.956641', '阿里云短信服务SK', '短信配置', '阿里云短信', 2);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (29, 'WX_MP_APP_ID', 'wxf5a99a7a4d0d446a', '2023-03-02 10:30:03.027133', '2023-05-24 10:01:52.644823', 'appid', '第三方配置', '微信服务号', 1);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (30, 'WX_MP_APP_SECRET', '7d3fcc73b71d2a11804ec19273aaaaa8', '2023-03-02 10:30:09.059377', '2023-05-24 10:01:52.655031', '密钥', '第三方配置', '微信服务号', 2);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (31, 'wechat_token', '75_ZQdDiYhAbuanRhuDDN9CWel-9PPJZv8TwLnaHOAeT6jqc7Lklw8kUi2DXVAUkY1bOil4od5kFlVFEh3XBd_EIyW6DLevsaiacm4UVcf9y7tvlpDImAWAOv_oELkTGRdAGAHUF', '2023-03-02 10:51:26.905106', '2023-12-05 09:31:37.160143', '缓存token', '第三方配置', '微信服务号', 3);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (32, 'wechat_ticket', 'O3SMpm8bG7kJnF36aXbe8ynLZw4HTlOFk1MSA4nk8Jh0h4ByNXbstzVhHjjnUpS-ecMBgDee-cDe0ex34rZZBw', '2023-03-02 10:51:33.28431', '2023-12-05 09:31:38.056982', '缓存ticket', '第三方配置', '微信服务号', 4);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (34, 'OSS_ENDPOINT', 'codvision-sqxzs.oss-accelerate.aliyuncs.com', '2023-03-09 14:04:03.087012', '2024-03-22 14:17:47.798739', '节点', '文件上传配置', NULL, 1);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (35, 'OSS_REGION', '', '2023-03-09 14:04:07.130563', '2024-03-22 14:17:47.928277', '区域', '文件上传配置', NULL, 2);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (36, 'OSS_ACCESS_KEY', 'LTAIvrLfO6iMfiSR', '2023-03-09 14:04:15.382334', '2024-03-22 14:17:48.045666', 'ak', '文件上传配置', NULL, 3);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (37, 'OSS_SECRET', '8tY7tDtTH4b5iWbI7nInWNVEpL7y6g', '2023-03-09 14:04:22.303897', '2024-03-22 14:17:48.278236', 'sk', '文件上传配置', NULL, 4);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (38, 'OSS_BUCKET_NAME', 'codvision-sqxzs', '2023-03-09 14:05:50.121124', '2024-03-22 14:17:48.598913', '桶名', '文件上传配置', NULL, 5);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (42, 'REAL_NAME_AUTH_CODE', '040cdb1460a3491e847dcda5656bc3d2', '2023-03-28 15:53:00.147801', '2023-05-07 10:23:08.166231', '阿里云实名认证AppCode', '实名认证配置', '阿里云实名认证AppCode', NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (43, 'TOKEN_CACHE_MODE', 'REDIS', '2023-04-04 11:31:56.823513', '2023-04-26 15:47:05.416645', '缓存方式', '登录token相关配置', 'token缓存方式', NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (44, 'MIME_LIST', 'text/plain,image/gif,image/jpeg,image/jpg,image/png,image/tiff,video/mpeg,application/pdf,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/pdf,application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.openxmlformats-officedocument.presentationml.presentation,application/x-zip-compressed,application/kswps,application/vnd.ms-powerpoint,video/*,video/x-flv,video/mp4,video/x-ms-wmv,video/x-matroska,audio/*,audio/mpeg,audio/wav,audio/x-ms-wma,audio/ogg', '2023-04-10 10:47:08.938382', '2024-03-22 14:17:47.468158', '文件MIME类型', '文件上传配置', NULL, 6);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (45, 'EXT_NAME_LIST', 'jpg,png,jpeg,word,xlsx,pdf,ppt,pptx,doc,docx,zip,wps,xls,flv,mp4,wmv,mkv,mp3,wav,wma,ogg,JPEG', '2023-04-10 10:48:34.630468', '2024-03-22 14:17:47.650631', '文件类型扩展名', '文件上传配置', NULL, 7);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (46, 'SYNC_ORG_START_TIME', '2023-02-01 00:00:00', '2023-04-11 21:25:13.116477', '2023-04-20 09:54:07.346809', '三方组织增量同步开始时间', '三方同步配置', '增量同步起始时间设置', 1);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (47, 'SYNC_USER_START_TIME', '2023-02-01 00:00:00', '2023-04-11 21:25:28.245896', '2023-04-20 09:54:07.348281', '三方用户增量同步开始时间', '三方同步配置', '增量同步起始时间设置', 2);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (48, 'CAPTCHA_TYPE', 'BLOCK_PUZZLE', '2023-04-12 11:05:36.818776', '2024-01-22 15:57:06.378763', '登录验证方式', '系统配置', NULL, 3);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (49, 'GLOBAL_DEFAULT_PWD', 'Jcpt@2023', '2023-04-12 15:23:28.193917', '2023-08-04 17:34:18.074898', '默认密码', '用户管理模块配置', '全局默认密码', NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (50, 'FILE_UPLOAD_TYPE', '0', '2023-04-12 17:13:44.478796', '2024-03-22 14:17:47.065784', '文件上传方式', '文件上传配置', NULL, 0);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (51, 'SYSTEM_NAME', '基础平台功能模块系统', '2023-04-18 15:49:54.800002', '2024-01-22 15:57:06.375002', '系统名称', '系统配置', NULL, 1);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (52, 'COPY_INFORMATION', 'Copyright © 2023 杭州码全信息科技有限公司', '2023-04-18 15:50:25.794235', '2024-01-22 15:57:06.377085', '版权信息', '系统配置', NULL, 2);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (53, 'LOGO', '/files/20230712/a52688f04158429290505f4dd238834b低龄幼儿.png', '2023-04-18 15:51:16.112158', '2024-01-22 15:57:06.386722', '系统LOGO', '系统配置', NULL, 8);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (54, 'LOGIN_BACKGROUND_IMAGE', '', '2023-04-18 15:51:39.432823', '2024-01-22 15:57:06.388218', '登录页背景图', '系统配置', NULL, 9);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (55, 'FLAG_ZZD_LOGIN', '0', '2023-04-18 15:52:01.486449', '2024-01-22 15:57:06.381912', '浙政钉登录', '系统配置', NULL, 5);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (56, 'FLAG_DD_LOGIN', '0', '2023-04-18 15:52:16.351103', '2024-01-22 15:57:06.380326', '钉钉登录', '系统配置', NULL, 4);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (57, 'SMS_LOGIN', '1', '2023-04-19 17:52:00.88065', '2024-01-22 15:57:06.383527', '短信登录', '系统配置', NULL, 6);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (58, 'SERVER_MEM_USAGE', '95', '2023-04-21 09:47:16.330542', '2023-10-11 11:23:39.932604', '服务内存使用率', '服务监测', NULL, 1);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (59, 'SERVER_DISK_USAGE', '90', '2023-04-21 09:49:55.219108', '2023-10-11 11:23:39.939924', '服务磁盘使用率', '服务监测', NULL, 2);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (60, 'SERVER_MOUNT_DISK_TOTAL', '100', '2023-04-21 09:51:33.270364', '2023-10-11 11:23:39.947826', '服务挂载磁盘总大小', '服务监测', NULL, 3);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (61, 'SERVER_MOUNT_DISK_USAGE', '90', '2023-04-21 09:52:01.752199', '2023-10-11 11:23:39.635576', '服务挂载磁盘使用率', '服务监测', NULL, NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (62, 'VERIFY_SELFIE_CODE', '040cdb1460a3491e847dcda5656bc3d2', '2023-05-04 16:06:39.63899', '2023-05-04 16:06:39.63899', '阿里云人脸身份证实名认证AppCode', '实名认证配置', '阿里云人脸身份证实名认证AppCode', NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (63, 'ANTI_HACK_CODE', '040cdb1460a3491e847dcda5656bc3d2', '2023-05-04 16:06:39.63899', '2023-05-04 16:06:39.63899', '阿里云人脸图片活体检测', '实名认证配置', '阿里云人脸图片活体检测', NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (64, 'QUICK_LOGIN_PRIVATE_KEY', 'MIICdgIBADANBgkqhkiG9w0BAQEFAASCAmAwggJcAgEAAoGBANHSkXhqB5hcSPv156aS3vA8qUnJiyoJhelRDhvgffzKY1Hzpz0Wa9YSeVMKyxwZ/rqxHsho15J/gQUf9KuoZzCXtN0HWAznyfZEnMJeJor/PlnKqLh3a7UWhfFL7Bi/wBjzmf5hDf3Ag0sWIZOMcCiomdyoAYMhC7CcCSChHcMjAgMBAAECgYAcHI6h5+7Jkn+yxkD5l87nt/DkcmzDPpBi8Jmn0X1/u2vwJGlhLVpYTZRUtGr/AlqXD7j0l9teBNg35A6nWwIsCcCOZU1MpQPBwyOGYQJg/ELJAxAoywwnVybR3EK+l5Q4kb6BfTJUDgiOQzELtgWNlC/SkHZ4fX1QgugPzrB7wQJBAPf2Mu9mj/TX1tOxNlKTuJbWnTK08BpTKXxEFMFR3j0fVfOQ1sSxAg4At17nEMBCiIWBeLWH8+TbxFpab0X4DcECQQDYn9t495kEQKFrX0eDoOABOwTNNuNmPNjiiy/wPEs0+ktCa7GN4NTo8LBTHTZkwYOSgFoGpkGcFduaMkesr9HjAkA/Ogj84HMepJbDvfEzFzW/SJQm5NpAbCos5JNCRCTeAwqAo9MPrm7usSIQ0eyEibKUEFJ+P19iYONtgpfTCJBBAkALWOxdPNMWJvCNuFL9sSqqxdWtjkeBLoTJ8TKUqgPihY31r8CARxvADAOghvI3eu+SeAi/OmxLadW0ERgyEo+zAkEA5OuGlxR1UX0WL9OQPAV76+NqxkU7zbsGOU+9sVzc2TTlCSFsh0wtOVz0z3QXOchiSb64D++omi0TTmlDztMjjw==', '2023-05-08 13:45:48.264536', '2023-05-09 16:41:11.830623', NULL, NULL, NULL, NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (65, 'QUICK_LOGIN_PUBLIC_KEY', 'MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDR0pF4ageYXEj79eemkt7wPKlJyYsqCYXpUQ4b4H38ymNR86c9FmvWEnlTCsscGf66sR7IaNeSf4EFH/SrqGcwl7TdB1gM58n2RJzCXiaK/z5Zyqi4d2u1FoXxS+wYv8AY85n+YQ39wINLFiGTjHAoqJncqAGDIQuwnAkgoR3DIwIDAQAB', '2023-05-08 13:46:28.200472', '2023-05-09 16:41:00.098077', NULL, NULL, NULL, NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (66, 'QUICK_LOGIN_APP_ID', '300012355496', '2023-05-08 13:47:36.61', '2023-05-09 16:40:15.994765', NULL, NULL, NULL, NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (67, 'QUICK_LOGIN_APP_KEY', 'B38FF7729A0577707261C270D35A0F6A', '2023-05-08 13:47:52.541495', '2023-05-09 16:40:23.248814', NULL, NULL, NULL, NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (68, 'QUICK_LOGIN_URL', 'https://www.cmpassport.com/h5/onekeylogin/tokenValidate', '2023-05-08 13:48:43.746608', '2023-05-08 13:48:55.016707', NULL, NULL, NULL, NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (70, 'LOGIN_THEME', 'undertint', '2023-06-26 10:50:11.323243', '2024-01-22 15:57:06.385126', '登录主题', '系统配置', NULL, 7);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (71, 'GOV_DING_SCAN_APP_KEY', NULL, '2023-08-04 17:54:58.437229', '2023-08-04 17:54:58.437229', 'scan_ak', '第三方配置', '专有钉钉', 9);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (72, 'GOV_DING_SCAN_APP_SECRET', NULL, '2023-08-04 17:54:58.437229', '2023-08-04 17:54:58.437229', 'scan_sk', '第三方配置', '专有钉钉', 10);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (73, 'WEBSITE_KEY', 'dc59df08-9811-49ec-9675-43e00559bc6f', '2023-09-13 17:01:12.339654', '2023-09-13 17:01:12.339654', NULL, NULL, NULL, NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (74, 'APP_VERSION_PATH', '/home/jcpt/app/version.json', '2023-09-19 16:14:31.094254', '2023-10-23 15:33:49.962223', '移动端版本信息', NULL, NULL, NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (75, 'AMAP_KEY', 'b11488ce185eff56d96f19bbd6ddb612', '2023-10-23 15:37:52.667727', '2023-10-27 17:23:13.888264', '高德地图WEB服务秘钥', '地图配置', NULL, NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (76, 'TIANDITU_KEY', '8abf1ede052e23d2322a54905de565a1', '2023-10-23 15:37:52.667727', '2023-10-27 17:23:13.892308', '天地图服务密钥', '地图配置', NULL, NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (77, 'ALIYUN_NLS_APP_KEY', 'pQQsi5pHVZ17h62V', '2023-11-30 16:02:37.956641', '2023-11-30 16:02:37.956641', '项目Appkey', NULL, NULL, NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (78, 'ALIYUN_NLS_ACCESS_KEY_ID', 'LTAI5tFovJrz4VuccYPKeqyh', '2023-11-30 16:02:37.956641', '2023-11-30 16:02:37.956641', '阿里云账号AccessKey ID', NULL, NULL, NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (79, 'ALIYUN_NLS_ACCESS_KEY_SECRET', 'Pw93hMDYnznVtyY1ZtMLjRiOsNo1sX', '2023-11-30 16:02:37.956641', '2023-11-30 16:02:37.956641', '秘钥AccessKey Secret', NULL, NULL, NULL);
|
||||
INSERT INTO "public"."tbl_config" ("id", "k", "v", "create_time", "update_time", "name", "large_category", "subclass", "orderby") VALUES (80, 'MAX_FILE_SIZE', '500', '2024-04-01 17:02:12', '2024-04-01 17:02:14', '文件最大大小', '文件上传配置', NULL, 6);
|
||||
|
||||
DELETE FROM tbl_backend_user;
|
||||
INSERT INTO "public"."tbl_backend_user" ("id", "username", "password", "nickname")
|
||||
VALUES (1, 'admin', '$2a$10$oARY6Ou0GsZbAQp1RypYF.7L6D5gwjqUok0lQ/ypgUn/MFmtDMYq.', '管理员');
|
||||
|
||||
DELETE FROM tbl_sys_dict;
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (1, 'SEX', '人员性别', 1, '2022-12-07 14:33:41.894848', '2022-12-07 15:07:27.16995', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (17, 'TAG_MANAGER', '标签管理', 1, '2023-02-13 15:52:32.860537', '2023-02-13 15:59:44.027164', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (19, 'SYSTEM_NOTIFICATION', '系统通知', 0, '2023-02-15 15:36:42.739919', '2023-02-15 17:02:51.251442', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (20, 'CYCLE_TYPE', '周期类型', 0, '2023-02-16 15:33:05.862766', '2023-02-16 15:33:05.862766', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (40, 'INDICATOR_ENGINE_BODY_TYPE', '指标引擎请求体参数类型', 1, '2023-03-10 16:09:05.342334', '2023-03-15 19:04:17.642157', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (42, 'SYNC_DISPOSE', '三方同步类型', 1, '2023-04-07 10:07:45.080683', '2023-04-14 16:14:40.130217', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (43, 'CAPTCHA_TYPE', '登录验证方式', 1, '2023-04-18 10:36:45.885002', '2023-04-18 10:36:45.885002', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (44, 'SYS_MEUN_CATEGORY', '系统菜单类型', 1, '2023-04-18 15:53:11.674339', '2023-04-18 15:53:11.674339', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (45, 'FILE_UPLOAD_TYPE', '文件上传类型', 1, '2023-04-23 14:46:11.264702', '2023-04-23 14:46:11.264702', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (41, 'QUARTZ_TRIGGER_STATUS', '定时任务触发器状态', 0, '2023-03-15 15:18:25.796655', '2023-04-26 13:57:45.109344', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (47, 'INDICATOR_VALUE_TYPE', '指标值类型', 1, '2023-04-26 13:57:45.109344', '2023-04-26 13:57:45.109344', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (48, 'INDICATOR_SOURCE_TYPE', '指标值接入类型', 1, '2023-04-26 13:57:45.109344', '2023-04-26 13:57:45.109344', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (49, 'DRIVE_CLASS_NAME', '数据库驱动类名', 1, '2023-04-26 13:57:45.109344', '2023-04-26 13:57:45.109344', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (51, 'GIS_LAYER_TYPE', '图层类型', 0, '2023-05-04 14:36:18.463831', '2023-05-04 14:36:18.463831', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (52, 'CAMERAS_STATUS', '在线状态', 0, '2023-05-04 14:36:51.254008', '2023-05-04 14:36:51.254008', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (53, 'CAMERAS_CATEGORY', '资源类型', 0, '2023-05-04 14:37:20.806941', '2023-05-04 14:37:20.806941', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (54, 'EVENT_STATUS', '事件状态', 0, '2023-05-04 16:27:09.199857', '2023-05-04 16:27:09.199857', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (56, 'PERSON_SEX', '人员性别', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (57, 'ID_TYPE', '证件类型', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (58, 'PERSON_TYPE', '人口类型', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (59, 'MILITARY_STATUS', '兵役状况', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (60, 'MARITAL_STATUS', '婚姻状况', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (61, 'POLITIC_FACE', '政治面貌', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (62, 'RELIGIOUS', '宗教信仰', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (63, 'NATIONALITY', '国籍', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (64, 'NATION', '民族', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (65, 'EDUCATION', '文化程度', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (66, 'REGISTER_SITUATION', '不动产登记情况', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (67, 'HOUSE_NATURE', '房屋性质', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (68, 'HOUSE_TYPE', '房屋类型', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (69, 'HOUSE_USE', '房屋用途', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (70, 'HOUSE_USE_SITUATION', '房屋使用情况', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (71, 'HOUSE_REGION', '房屋所在区域', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (72, 'HOUSE_FLOOR_CLASS', '房屋层数分类', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (73, 'HOUSE_MANAGE_STYLE', '房屋管理方式', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (74, 'HOUSE_PERIL_GRADE', '房屋危险性鉴定等级', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (75, 'HOUSE_TEMPORARY_MANAGE', '房屋临时管理属性', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (76, 'ADDRESS_DATA_SOURCE', '地址数据来源', 0, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (78, 'ORG_TYPE', '组织类型', 1, '2023-05-15 13:38:11.401727', '2023-05-15 13:38:11.401727', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (79, 'HOUSEHOLDER_RELATION', '人和户主关系', 0, '2023-05-16 15:13:13.979276', '2023-05-16 15:13:13.979276', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (80, 'PERSON_ADDRESS_RELATION', '人和户主关系', 0, '2023-05-16 15:13:13.979276', '2023-05-16 15:13:13.979276', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (81, 'ICON_TYPE', '图标类型', 1, '2023-05-19 17:48:23.817782', '2023-05-19 17:48:23.817782', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (82, 'EVENT_TYPE', '警情事件类型', 0, '2023-05-19 19:17:09.290472', '2023-05-19 19:17:09.290472', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (83, 'FLOW_CATEGORY', '流程类型', 0, '2023-06-01 13:58:32.613644', '2023-06-01 13:58:32.613644', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (86, 'FEATURE_TYPE', '点位类型', 0, '2023-06-19 14:58:48.271731', '2023-06-19 14:58:48.271731', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (87, 'WORK_FLOW_URGING_TASK_TYPE', '工作流催办类型', 0, '2023-06-27 10:43:51.557998', '2023-06-27 10:43:51.557998', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (88, 'INSPECTION_CATEGORY', '检查对象类别', 0, '2023-06-30 11:05:39.422651', '2023-06-30 11:05:39.422651', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (89, 'ADDRESS_TYPE', '地址库中地址类型', 0, '2023-06-30 11:06:11.005164', '2023-06-30 11:06:11.005164', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (90, 'warning_time_type', '预警时间', 0, '2023-07-03 13:41:43.699634', '2023-07-03 13:41:43.699634', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (94, 'ENTERPRISE_TYPE', '企业类型', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (95, 'INDIVIDUAL_BUSINESS_COMPOSE', '个体工商户组成形式', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (96, 'ENTERPRISE_REGISTRATION_AUTHORITY', '企业登记机关', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (97, 'BUSINESS_STATUS', '经营状态', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (98, 'INDUSTRY_TYPE', '行业类型', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (99, 'ENTERPRISE_ADMINISTRATIVE_PENALTY_TYPE', '企业行政处罚种类', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (100, 'ENTERPRISE_ADMINISTRATIVE_PENALTY_AUTHORITY', '企业行政处罚机关', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (101, 'BUSINESS_ABNORMAL_BEHAVIOR', '经营异常行为分类', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (102, 'ILLEGALITY_DISHONESTY_BEHAVIOR', '严重违法失信行为分类', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (103, 'SOCIAL_ORG_TYPE', '社会组织类型', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (104, 'SUPERVISORY_UNIT', '社会组织业务主管单位', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (105, 'SOCIAL_REGISTRATION_AUTHORITY', '社会组织登记管理机关', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (106, 'SOCIAL_ORG_STATUS', '社会组织状态', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (107, 'SOCIAL_ADMINISTRATIVE_PENALTY_TYPE', '社会组织行政处罚种类', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (108, 'SOCIAL_ADMINISTRATIVE_PENALTY_AUTHORITY', '社会组织行政处罚机关', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (109, 'ACTIVITY_ABNORMAL_REASON', '社会组织列入活动异常名录事由分类', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (110, 'ILLEGALITY_DISHONESTY_REASON', '社会组织列入严重违法失信名单事由分类', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (111, 'CAPITAL_SOURCE', '社会组织状态', 0, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (92, 'WORK_FLOW_STATUS', '流程状态', 0, '2023-07-06 10:35:17.057123', '2023-07-12 17:31:22.353074', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (93, 'WORK_FLOW_OPERATION_TYPE', '流程按钮操作类型', 0, '2023-07-06 18:10:24.866804', '2023-07-12 17:31:22.389952', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (117, 'POINT_TYPE', '点位类型', 0, '2023-07-21 16:34:19.61578', '2023-07-21 16:34:19.61578', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (118, 'PATROL_STATUS', '巡查状态', 0, '2023-07-21 16:34:19.61578', '2023-07-21 16:34:19.61578', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (119, 'PATROL_INFO_TYPE', '巡查信息类型', 0, '2023-07-21 16:34:19.61578', '2023-07-21 16:34:19.61578', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (120, 'PATROL_TYPE', '巡查类型', 0, '2023-07-21 16:34:19.61578', '2023-07-21 16:34:19.61578', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (123, 'WARNING_LEVEL', '预警等级', 0, '2023-09-08 09:15:21.779076', '2023-09-08 09:15:21.779076', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (124, 'WARNING_TYPE', '预警类型', 0, '2023-09-08 09:17:24.831464', '2023-09-08 09:17:24.831464', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (125, 'PAY_STATUS', '支付订单状态', 0, '2023-09-12 18:28:27.55849', '2023-09-12 18:28:27.55849', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (128, 'NOTIFY_STATUS', '通知状态', 0, '2023-09-12 18:34:11.725914', '2023-09-12 18:34:11.725914', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (129, 'NOTIFY_TYPE', '通知类型', 0, '2023-09-12 18:34:46.03345', '2023-09-12 18:34:46.03345', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (130, 'REFUND_STATUS', '退款状态', 0, '2023-09-12 18:42:33.531855', '2023-09-12 18:42:33.531855', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (127, 'REFUND_SYS', '退款渠道', 0, '2023-09-12 18:32:50.122251', '2023-09-14 16:58:56.469148', 1, 127);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (126, 'PAY_SYS', '支付、退款渠道', 0, '2023-09-12 18:29:49.929189', '2023-09-14 16:59:07.157947', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (131, 'FUNDS_TYPE', '资金类型', 0, '2023-09-15 17:15:38.793642', '2023-09-15 17:15:38.793642', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (132, 'BACKUP_TYPE', '备份方式', 0, '2023-10-11 10:23:52.332238', '2023-10-11 10:23:52.332238', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (133, 'BACKUP_RANGE', '备份范围', 0, '2023-10-11 10:24:37.90358', '2023-10-11 10:24:37.90358', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (134, 'BACKUP_STATUS', '备份状态', 0, '2023-10-11 13:49:20.476754', '2023-10-11 13:49:20.476754', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (135, 'ACCIDENT_TYPE', '事故标签', 0, '2023-10-16 20:38:51.929033', '2023-10-16 20:38:51.929033', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (136, 'engineeringVehiclesInvolved', '涉及工程车', 0, '2023-10-16 20:41:57.741643', '2023-10-16 20:41:57.741643', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (137, 'businessAccident', '经营性事故', 0, '2023-10-16 20:42:40.208001', '2023-10-16 20:42:40.208001', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (138, 'roadType', '道路类型', 0, '2023-10-16 20:43:33.152669', '2023-10-16 20:43:33.152669', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (139, 'roadConstructionStatus', '施工状态', 0, '2023-10-16 20:45:34.536019', '2023-10-16 20:45:34.536019', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (140, 'FUNCTION_MODULE', '功能模块', 0, '2023-10-19 15:24:30.708903', '2023-10-19 15:24:30.708903', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (141, 'WORK_FLOW_LISTENER_TYPE', '工作流监听器类型', 0, '2023-11-30 16:02:38.206236', '2023-11-30 16:02:38.206236', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (153, 'DEVICE_PRODUCT_TYPE', '产品类型', 0, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (154, 'NETWORKING_TYPE', '联网类型', 0, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (155, 'PROTOCOL_TYPE', '协议类型', 0, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (156, 'DEVICE_SOURCE_TYPE', '设备源类型', 0, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (157, 'DEVICE_DATA_TYPE', '设备产品数据类型', 0, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (158, 'DEVICE_EVENT_TYPE', '设备产品事件类型', 0, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (159, 'FLAG_READ_WRITE', '读写状态', 0, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (160, 'ALARM_TYPE', '告警类型', 0, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (161, 'OPERATORS', '操作符', 0, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (162, 'TIME_UNIT', '时间单位', 0, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict" ("id", "dict_type", "description", "system_flag", "create_time", "update_time", "del_flag", "del_key") VALUES (163, 'ALARM_LEVEL', '告警等级', 0, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
|
||||
DELETE FROM tbl_sys_dict_item;
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1, 1, '0', '女', 'SEX', 1, NULL, '2022-12-07 15:10:07.629889', '2022-12-07 15:10:07.629889', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (2, 1, '1', '男', 'SEX', 2, '', '2022-12-07 15:10:17.899609', '2022-12-07 15:10:42.184349', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (31, 19, '1', '通知类型1', 'SYSTEM_NOTIFICATION', NULL, NULL, '2023-02-15 15:37:09.004608', '2023-02-15 17:02:51.208143', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (32, 19, '2', '通知类型2', 'SYSTEM_NOTIFICATION', NULL, NULL, '2023-02-15 15:37:18.137279', '2023-02-15 17:02:51.208143', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (33, 20, '1', '小时', 'CYCLE_TYPE', NULL, NULL, '2023-02-16 15:33:20.196621', '2023-02-16 15:33:20.196621', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (34, 20, '2', '日', 'CYCLE_TYPE', NULL, NULL, '2023-02-16 15:33:27.46726', '2023-02-16 15:33:27.46726', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (35, 20, '3', '周', 'CYCLE_TYPE', NULL, NULL, '2023-02-16 15:33:38.000051', '2023-02-16 15:33:38.000051', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (36, 20, '4', '月', 'CYCLE_TYPE', NULL, NULL, '2023-02-16 15:33:44.45802', '2023-02-16 15:33:44.45802', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (37, 20, '5', '年', 'CYCLE_TYPE', NULL, NULL, '2023-02-16 15:33:51.848151', '2023-02-16 15:33:51.848151', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (38, 20, '6', '永久', 'CYCLE_TYPE', NULL, NULL, '2023-02-16 15:33:58.613963', '2023-02-16 15:33:58.613963', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (137, 40, 'application/x-www-form-urlencoded', 'form', 'INDICATOR_ENGINE_BODY_TYPE', NULL, '请求参数表单数据', '2023-03-10 16:09:34.089882', '2023-03-10 17:17:08.06744', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (138, 40, 'application/json', 'json', 'INDICATOR_ENGINE_BODY_TYPE', NULL, '请求体参数为json类型', '2023-03-10 16:10:17.254522', '2023-03-12 10:27:06.364057', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (139, 41, 'WAITING', '等待', 'QUARTZ_TRIGGER_STATUS', NULL, NULL, '2023-03-15 15:21:49.535655', '2023-03-15 15:21:49.535655', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (140, 41, 'PAUSED', '暂停', 'QUARTZ_TRIGGER_STATUS', NULL, NULL, '2023-03-15 15:22:26.813052', '2023-03-15 15:22:26.813052', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (141, 41, 'ACQUIRED', '正常执行', 'QUARTZ_TRIGGER_STATUS', NULL, NULL, '2023-03-15 15:22:43.354674', '2023-03-15 15:22:43.354674', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (142, 41, 'BLOCKED', '阻塞', 'QUARTZ_TRIGGER_STATUS', NULL, NULL, '2023-03-15 15:23:07.754328', '2023-03-15 15:23:07.754328', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (143, 41, 'ERROR', '错误', 'QUARTZ_TRIGGER_STATUS', NULL, NULL, '2023-03-15 15:23:18.013001', '2023-03-15 15:23:18.013001', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (144, 42, '1', '专有钉钉同步', 'SYNC_DISPOSE', 1, NULL, '2023-04-07 10:08:47.114753', '2023-04-07 10:08:47.114753', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (145, 42, '2', '门户同步', 'SYNC_DISPOSE', 2, NULL, '2023-04-07 10:08:57.310154', '2023-04-07 10:08:57.310154', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (146, 43, 'SIMPLE', '图形验证码', 'CAPTCHA_TYPE', NULL, NULL, '2023-04-18 10:37:49.94312', '2023-04-18 10:37:49.94312', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (147, 43, 'BLOCK_PUZZLE', '滑块验证码', 'CAPTCHA_TYPE', NULL, NULL, '2023-04-18 10:38:06.48766', '2023-04-18 10:38:06.48766', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (148, 43, 'CLOSED', '关闭', 'CAPTCHA_TYPE', NULL, NULL, '2023-04-18 10:38:15.873327', '2023-04-18 10:38:15.873327', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (149, 44, '0', '目录', 'SYS_MEUN_CATEGORY', 0, NULL, '2023-04-18 15:54:55.41039', '2023-04-18 15:54:55.41039', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (150, 44, '1', '菜单', 'SYS_MEUN_CATEGORY', 1, NULL, '2023-04-18 15:55:05.874508', '2023-04-18 15:55:05.874508', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (156, 45, '0', '系统内上传', 'FILE_UPLOAD_TYPE', 1, NULL, '2023-04-23 14:46:36.622628', '2023-04-23 14:46:36.622628', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (157, 45, '1', 'OSS上传', 'FILE_UPLOAD_TYPE', NULL, NULL, '2023-04-23 14:46:46.025123', '2023-04-23 14:46:46.025123', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (134, 47, 'SZ', '数值', 'INDICATOR_VALUE_TYPE', NULL, NULL, '2023-03-09 10:23:06.507227', '2023-04-26 13:57:45.109344', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (135, 47, 'WB', '文本', 'INDICATOR_VALUE_TYPE', NULL, NULL, '2023-03-09 10:23:23.479239', '2023-04-26 13:57:45.109344', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (136, 47, 'LB', '列表', 'INDICATOR_VALUE_TYPE', NULL, NULL, '2023-03-09 10:23:32.57294', '2023-04-26 13:57:45.109344', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (129, 48, 'SJY_DSTB', '数据源定时同步', 'INDICATOR_SOURCE_TYPE', NULL, NULL, '2023-03-06 18:29:10.819327', '2023-04-26 13:57:45.109344', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (130, 48, 'SJY_SSQQ', '数据源实时请求', 'INDICATOR_SOURCE_TYPE', NULL, NULL, '2023-03-06 18:29:44.660119', '2023-04-26 13:57:45.109344', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (131, 48, 'API_DSTB', 'API定时同步', 'INDICATOR_SOURCE_TYPE', NULL, NULL, '2023-03-06 18:30:07.472193', '2023-04-26 13:57:45.109344', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (132, 48, 'API_SSQQ', 'API实时请求', 'INDICATOR_SOURCE_TYPE', NULL, NULL, '2023-03-06 18:30:25.773517', '2023-04-26 13:57:45.109344', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (133, 48, 'TB', '填报', 'INDICATOR_SOURCE_TYPE', NULL, NULL, '2023-03-06 18:30:37.712241', '2023-04-26 13:57:45.109344', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (158, 47, 'DX', '对象', 'INDICATOR_VALUE_TYPE', NULL, NULL, '2023-04-26 13:57:45.109344', '2023-04-26 13:57:45.109344', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (159, 49, 'org.postgresql.Driver', 'postgresql', 'DRIVE_CLASS_NAME', 1, NULL, '2023-04-26 14:29:59.89752', '2023-04-26 14:29:59.89752', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (160, 49, 'com.mysql.cj.jdbc.Driver', 'mysql', 'DRIVE_CLASS_NAME', 2, NULL, '2023-04-26 14:29:59.901167', '2023-04-26 14:29:59.901167', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (161, 49, 'oracle.jdbc.OracleDriver', 'Oracle', 'DRIVE_CLASS_NAME', 3, NULL, '2023-04-26 14:29:59.904053', '2023-04-26 14:29:59.904053', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (162, 52, '0', '离线', 'CAMERAS_STATUS', NULL, NULL, '2023-05-04 14:37:47.297584', '2023-05-04 14:37:47.297584', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (163, 52, '1', '在线', 'CAMERAS_STATUS', NULL, NULL, '2023-05-04 14:37:53.420537', '2023-05-04 14:37:53.420537', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (164, 53, '1', '点位资源', 'CAMERAS_CATEGORY', NULL, NULL, '2023-05-04 14:38:11.377988', '2023-05-04 14:38:11.377988', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (165, 53, '2', '区域资源', 'CAMERAS_CATEGORY', NULL, NULL, '2023-05-04 14:38:18.30412', '2023-05-04 14:38:18.30412', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (166, 51, '1', '人员', 'GIS_LAYER_TYPE', NULL, NULL, '2023-05-04 14:38:56.373321', '2023-05-04 14:38:56.373321', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (167, 51, '2', '车辆', 'GIS_LAYER_TYPE', NULL, NULL, '2023-05-04 14:39:03.418819', '2023-05-04 14:39:03.418819', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (168, 54, '1', '已处理', 'EVENT_STATUS', NULL, NULL, '2023-05-04 16:27:29.886214', '2023-05-04 16:27:29.886214', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (169, 54, '0', '未处理', 'EVENT_STATUS', NULL, NULL, '2023-05-04 16:27:36.682263', '2023-05-04 16:27:36.682263', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (154, 17, '3', '通知模块', 'TAG_MANAGER', NULL, NULL, '2023-04-20 14:05:47.439039', '2023-05-08 14:51:08.730154', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (155, 17, '4', '公告模块', 'TAG_MANAGER', 4, NULL, '2023-04-20 14:06:19.387009', '2023-05-08 14:51:12.363337', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (172, 56, '000', '未知的性别', 'PERSON_SEX', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (173, 56, '001', '男性', 'PERSON_SEX', 2, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (174, 56, '002', '女性', 'PERSON_SEX', 3, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (175, 56, '999', '未说明的性别', 'PERSON_SEX', 4, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (176, 57, '001', '身份证', 'ID_TYPE', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (177, 57, '002', '居住证', 'ID_TYPE', 2, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (178, 57, '003', '签证', 'ID_TYPE', 3, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (179, 57, '004', '护照', 'ID_TYPE', 4, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (180, 57, '005', '军人证', 'ID_TYPE', 5, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (181, 57, '006', '港澳通行证', 'ID_TYPE', 6, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (182, 58, '001', '户籍人口', 'PERSON_TYPE', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (183, 58, '002', '流动人口', 'PERSON_TYPE', 2, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (184, 58, '003', '境外人口', 'PERSON_TYPE', 3, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (185, 58, '004', '其他人口', 'PERSON_TYPE', 4, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (186, 59, '000', '未服兵役', 'MILITARY_STATUS', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (187, 59, '001', '退出现役', 'MILITARY_STATUS', 2, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (188, 59, '002', '士兵预备役', 'MILITARY_STATUS', 3, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (189, 59, '003', '军官预备役', 'MILITARY_STATUS', 4, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (190, 59, '004', '服现役', 'MILITARY_STATUS', 5, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (191, 59, '009', '其他', 'MILITARY_STATUS', 6, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (192, 60, '010', '未婚', 'MARITAL_STATUS', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (193, 60, '020', '已婚', 'MARITAL_STATUS', 2, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (194, 60, '021', '初婚', 'MARITAL_STATUS', 3, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (195, 60, '022', '再婚', 'MARITAL_STATUS', 4, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (196, 60, '023', '复婚', 'MARITAL_STATUS', 5, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (170, 44, '5', '内链', 'SYS_MEUN_CATEGORY', 2, NULL, '2023-05-06 14:20:36.673429', '2023-08-07 18:10:34.673348', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (151, 44, '2', '外链', 'SYS_MEUN_CATEGORY', 3, NULL, '2023-04-18 15:55:15.29091', '2023-08-07 18:10:39.396164', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (152, 44, '3', '路由跳转', 'SYS_MEUN_CATEGORY', 4, NULL, '2023-04-18 15:55:26.559897', '2023-08-07 18:10:44.042478', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (153, 44, '4', '接口', 'SYS_MEUN_CATEGORY', 5, NULL, '2023-04-18 16:22:20.489516', '2023-08-07 18:10:45.832238', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (197, 60, '030', '丧偶', 'MARITAL_STATUS', 6, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (198, 60, '040', '离婚', 'MARITAL_STATUS', 7, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (199, 60, '090', '未说明的婚姻状况', 'MARITAL_STATUS', 8, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (200, 61, '001', '中共党员', 'POLITIC_FACE', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (201, 61, '002', '中共预备党员', 'POLITIC_FACE', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (202, 61, '003', '共青团员', 'POLITIC_FACE', 2, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (203, 61, '004', '民主党派', 'POLITIC_FACE', 3, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (204, 61, '005', '群众', 'POLITIC_FACE', 4, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (205, 61, '006', '其他', 'POLITIC_FACE', 5, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (206, 62, '000', '无宗教信仰', 'RELIGIOUS', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (207, 62, '010', '佛教', 'RELIGIOUS', 2, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (208, 62, '020', '喇嘛教', 'RELIGIOUS', 3, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (209, 62, '030', '道教', 'RELIGIOUS', 4, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (210, 62, '040', '天主教', 'RELIGIOUS', 5, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (211, 62, '050', '基督教', 'RELIGIOUS', 6, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (212, 62, '060', '东正教', 'RELIGIOUS', 7, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (213, 62, '070', '伊斯兰教', 'RELIGIOUS', 8, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (214, 62, '099', '其他', 'RELIGIOUS', 9, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (215, 63, '004', '阿富汗', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (216, 63, '008', '阿尔巴尼亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (217, 63, '012', '阿尔及利亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (218, 63, '016', '美属萨摩亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (219, 63, '020', '安道尔', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (220, 63, '024', '安哥拉', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (221, 63, '660', '安圭拉', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (222, 63, '010', '南极洲', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (223, 63, '028', '安提瓜和巴布达', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (224, 63, '032', '阿根廷', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (225, 63, '051', '亚美尼亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (226, 63, '533', '阿鲁巴', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (227, 63, '036', '澳大利亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (228, 63, '040', '奥地利', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (229, 63, '031', '阿塞拜疆', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (230, 63, '044', '巴哈马', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (231, 63, '048', '巴林', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (232, 63, '050', '孟加拉国', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (233, 63, '052', '巴巴多斯', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (234, 63, '112', '白俄罗斯', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (235, 63, '056', '比利时', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (236, 63, '084', '贝宁', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (237, 63, '060', '百慕大', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (238, 63, '064', '不丹', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (239, 63, '068', '玻利维亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (240, 63, '070', '波黑', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (241, 63, '072', '博茨瓦纳', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (242, 63, '074', '布维岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (243, 63, '076', '巴西', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (244, 63, '086', '英属印度洋领地', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (245, 63, '096', '文莱', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (246, 63, '100', '保加利亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (247, 63, '854', '布基纳法索', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (248, 63, '108', '布隆迪', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (249, 63, '116', '柬埔寨', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (250, 63, '120', '喀麦隆', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (251, 63, '124', '加拿大', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (252, 63, '132', '佛得角', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (253, 63, '136', '开曼群岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (254, 63, '140', '中非', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (255, 63, '148', '乍得', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (256, 63, '152', '智利', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (257, 63, '156', '中国', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (258, 63, '344', '香港', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (259, 63, '446', '澳门', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (260, 63, '158', '台湾', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (261, 63, '162', '圣诞岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (262, 63, '166', '科科斯(基林)群岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (263, 63, '170', '哥伦比亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (264, 63, '174', '科摩罗', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (265, 63, '178', '刚果(布)', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (266, 63, '180', '刚果(金)', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (267, 63, '184', '库克群岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (268, 63, '188', '哥斯达黎加', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (269, 63, '384', '科特迪瓦', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (270, 63, '191', '克罗地亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (271, 63, '192', '古巴', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (272, 63, '196', '塞浦路斯', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (273, 63, '203', '捷克', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (274, 63, '208', '丹麦', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (275, 63, '262', '吉布提', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (276, 63, '212', '多米尼克', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (277, 63, '214', '多米尼加', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (278, 63, '626', '东帝汶', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (279, 63, '218', '厄瓜多尔', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (280, 63, '818', '埃及', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (281, 63, '222', '萨尔瓦多', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (282, 63, '226', '赤道几内亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (283, 63, '232', '厄立特里亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (284, 63, '233', '爱沙尼亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (285, 63, '231', '埃塞俄比亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (286, 63, '238', '福克兰群岛(马尔维纳斯)', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (287, 63, '234', '法罗群岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (288, 63, '242', '斐济', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (289, 63, '246', '芬兰', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (290, 63, '250', '法国', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (291, 63, '254', '法属圭亚那', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (292, 63, '258', '法属波利尼西亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (293, 63, '260', '法属南部领地', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (294, 63, '266', '加蓬', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (295, 63, '270', '冈比亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (296, 63, '268', '格鲁吉亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (297, 63, '276', '德国', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (298, 63, '288', '加纳', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (299, 63, '292', '直布罗陀', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (300, 63, '300', '希腊', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (301, 63, '304', '格陵兰', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (302, 63, '308', '格林纳达', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (303, 63, '312', '瓜德罗普', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (304, 63, '316', '关岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (305, 63, '320', '危地马拉', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (306, 63, '324', '几内亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (307, 63, '624', '几内亚比绍', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (308, 63, '328', '圭亚那', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (309, 63, '332', '海地', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (310, 63, '334', '赫德岛和麦克唐纳岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (311, 63, '340', '洪都拉斯', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (312, 63, '348', '匈牙利', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (313, 63, '352', '冰岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (314, 63, '356', '印度', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (315, 63, '360', '印度尼西亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (316, 63, '364', '伊朗', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (317, 63, '368', '伊拉克', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (318, 63, '372', '爱尔兰', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (319, 63, '376', '以色列', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (320, 63, '380', '意大利', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (321, 63, '388', '牙买加', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (322, 63, '392', '日本', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (323, 63, '400', '约旦', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (324, 63, '398', '哈萨克斯坦', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (325, 63, '404', '肯尼亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (326, 63, '296', '基里巴斯', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (327, 63, '408', '朝鲜', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (328, 63, '410', '韩国', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (329, 63, '414', '科威特', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (330, 63, '417', '吉尔吉斯斯坦', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (331, 63, '418', '老挝', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (332, 63, '428', '拉脱维亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (333, 63, '422', '黎巴嫩', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (334, 63, '426', '莱索托', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (335, 63, '430', '利比里亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (336, 63, '434', '利比亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (337, 63, '438', '列支敦士登', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (338, 63, '440', '立陶宛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (339, 63, '442', '卢森堡', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (340, 63, '807', '前南巴其顿', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (341, 63, '450', '马达加斯加', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (342, 63, '454', '马拉维', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (343, 63, '458', '马来西亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (344, 63, '462', '马尔代夫', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (345, 63, '466', '马里', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (346, 63, '470', '马耳他', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (347, 63, '584', '马绍尔群岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (348, 63, '474', '马提尼克', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (349, 63, '478', '毛里塔尼亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (350, 63, '480', '毛里求斯', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (351, 63, '175', '马约特', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (352, 63, '484', '墨西哥', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (353, 63, '583', '密克罗尼西亚联邦', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (354, 63, '498', '摩尔多瓦', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (355, 63, '492', '摩纳哥', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (356, 63, '496', '蒙古', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (357, 63, '500', '蒙特塞拉特', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (358, 63, '504', '摩洛哥', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (359, 63, '508', '莫桑比克', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (360, 63, '104', '缅甸', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (361, 63, '516', '纳米比亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (362, 63, '520', '瑙鲁', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (363, 63, '524', '尼泊尔', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (364, 63, '528', '荷兰', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (365, 63, '530', '荷属安的列斯', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (366, 63, '540', '新喀里多尼亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (367, 63, '554', '新西兰', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (368, 63, '558', '尼加拉瓜', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (369, 63, '562', '尼日尔', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (370, 63, '566', '尼日利亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (371, 63, '570', '纽埃', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (372, 63, '574', '诺福克岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (373, 63, '580', '北马里亚纳', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (374, 63, '578', '挪威', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (375, 63, '512', '阿曼', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (376, 63, '586', '巴基斯坦', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (377, 63, '585', '帕劳', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (378, 63, '275', '巴勒斯坦', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (379, 63, '591', '巴拿马', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (380, 63, '598', '巴布亚新几内亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (381, 63, '600', '巴拉圭', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (382, 63, '604', '秘鲁', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (383, 63, '608', '菲律宾', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (384, 63, '612', '皮特凯恩', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (385, 63, '616', '波兰', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (386, 63, '620', '葡萄牙', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (387, 63, '630', '波多黎各', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (388, 63, '634', '卡塔尔', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (389, 63, '638', '留尼汪', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (390, 63, '642', '罗马尼亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (391, 63, '643', '俄罗斯联邦', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (392, 63, '646', '卢旺达', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (393, 63, '654', '圣赫勒拿', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (394, 63, '659', '圣基茨和尼维斯', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (395, 63, '662', '圣卢西亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (396, 63, '666', '圣皮埃尔和密克隆', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (397, 63, '670', '圣文森特和格林纳丁斯', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (398, 63, '882', '萨摩亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (399, 63, '674', '圣马力诺', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (400, 63, '678', '圣多美和普林西比', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (401, 63, '682', '沙特阿拉伯', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (402, 63, '686', '塞内加尔', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (403, 63, '690', '塞舌尔', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (404, 63, '694', '塞拉利昂', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (405, 63, '702', '新加坡', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (406, 63, '703', '斯洛伐克', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (407, 63, '705', '斯洛文尼亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (408, 63, '090', '所罗门群岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (409, 63, '706', '索马里', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (410, 63, '710', '南非', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (411, 63, '239', '南乔治亚岛和南桑德韦奇岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (412, 63, '724', '西班牙', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (413, 63, '144', '斯里兰卡', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (414, 63, '736', '苏丹', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (415, 63, '740', '苏里南', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (416, 63, '744', '斯瓦尔巴岛和扬马延岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (417, 63, '748', '斯威士兰', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (418, 63, '752', '瑞典', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (419, 63, '756', '瑞士', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (420, 63, '760', '叙利亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (421, 63, '762', '塔吉克斯坦', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (422, 63, '834', '坦桑尼亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (423, 63, '764', '泰国', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (424, 63, '768', '多哥', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (425, 63, '772', '托克劳', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (426, 63, '776', '汤加', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (427, 63, '780', '特立尼克和多巴哥', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (428, 63, '788', '突尼斯', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (429, 63, '792', '土耳其', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (430, 63, '795', '土库曼斯坦', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (431, 63, '796', '特克斯和凯科斯群岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (432, 63, '798', '图瓦卢', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (433, 63, '800', '乌干达', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (434, 63, '804', '乌克兰', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (435, 63, '784', '阿联酋', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (436, 63, '826', '英国', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (437, 63, '840', '美国', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (438, 63, '581', '美国本土外小岛屿', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (439, 63, '858', '乌拉圭', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (440, 63, '860', '乌兹别克斯坦', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (441, 63, '548', '瓦努阿图', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (442, 63, '336', '梵蒂冈', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (443, 63, '862', '委内瑞拉', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (444, 63, '704', '越南', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (445, 63, '092', '英属维尔京群岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (446, 63, '850', '美属维尔京群岛', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (447, 63, '876', '瓦利斯和富图纳', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (448, 63, '732', '西撒哈拉', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (449, 63, '887', '也门', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (450, 63, '891', '南斯拉夫', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (451, 63, '894', '赞比亚', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (452, 63, '716', '津巴布韦', 'NATIONALITY', NULL, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (453, 64, '001', '汉族', 'NATION', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (454, 64, '002', '蒙古族', 'NATION', 2, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (455, 64, '003', '回族', 'NATION', 3, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (456, 64, '004', '藏族', 'NATION', 4, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (457, 64, '005', '维吾尔族', 'NATION', 5, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (458, 64, '006', '苗族', 'NATION', 6, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (459, 64, '007', '彝族', 'NATION', 7, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (460, 64, '008', '壮族', 'NATION', 8, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (461, 64, '009', '布依族', 'NATION', 9, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (462, 64, '010', '朝鲜族', 'NATION', 10, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (463, 64, '011', '满族', 'NATION', 11, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (464, 64, '012', '侗族', 'NATION', 12, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (465, 64, '013', '瑶族', 'NATION', 13, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (466, 64, '014', '白族', 'NATION', 14, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (467, 64, '015', '土家族', 'NATION', 15, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (468, 64, '016', '哈尼族', 'NATION', 16, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (469, 64, '017', '哈萨克族', 'NATION', 17, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (470, 64, '018', '傣族', 'NATION', 18, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (471, 64, '019', '黎族', 'NATION', 19, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (472, 64, '020', '傈僳族', 'NATION', 20, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (473, 64, '021', '佤族', 'NATION', 21, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (474, 64, '022', '畲族', 'NATION', 22, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (475, 64, '023', '高山族', 'NATION', 23, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (476, 64, '024', '拉枯族', 'NATION', 24, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (477, 64, '025', '水族', 'NATION', 25, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (478, 64, '026', '东乡族', 'NATION', 26, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (479, 64, '027', '纳西族', 'NATION', 27, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (480, 64, '028', '景颇族', 'NATION', 28, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (481, 64, '029', '柯尔克孜族', 'NATION', 29, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (482, 64, '030', '土族', 'NATION', 30, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (483, 64, '031', '达斡尔族', 'NATION', 31, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (484, 64, '032', '仫佬族', 'NATION', 32, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (485, 64, '033', '羌族', 'NATION', 33, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (486, 64, '034', '布朗族', 'NATION', 34, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (487, 64, '035', '撒拉族', 'NATION', 35, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (488, 64, '036', '毛南族', 'NATION', 36, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (489, 64, '037', '仡佬族', 'NATION', 37, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (490, 64, '038', '锡伯族', 'NATION', 38, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (491, 64, '039', '阿昌族', 'NATION', 39, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (492, 64, '040', '普米族', 'NATION', 40, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (493, 64, '041', '塔吉克族', 'NATION', 41, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (494, 64, '042', '怒族', 'NATION', 42, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (495, 64, '043', '乌孜别克族', 'NATION', 43, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (496, 64, '044', '俄罗斯族', 'NATION', 44, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (497, 64, '045', '鄂温克族', 'NATION', 45, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (498, 64, '046', '德昂族', 'NATION', 46, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (499, 64, '047', '保安族', 'NATION', 47, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (500, 64, '048', '裕固族', 'NATION', 48, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (501, 64, '049', '京族', 'NATION', 49, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (502, 64, '050', '塔塔尔族', 'NATION', 50, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (503, 64, '051', '独龙族', 'NATION', 51, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (504, 64, '052', '鄂伦春族', 'NATION', 52, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (505, 64, '053', '赫哲族', 'NATION', 53, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (506, 64, '054', '门巴族', 'NATION', 54, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (507, 64, '055', '珞巴族', 'NATION', 55, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (508, 64, '056', '基诺族', 'NATION', 56, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (509, 65, '010', '研究生教育', 'EDUCATION', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (510, 65, '011', '博士研究生毕业', 'EDUCATION', 2, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (511, 65, '012', '博士研究生结业', 'EDUCATION', 3, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (512, 65, '013', '博士研究生肆业', 'EDUCATION', 4, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (513, 65, '014', '硕士研究生毕业', 'EDUCATION', 5, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (514, 65, '015', '硕士研究生结业', 'EDUCATION', 6, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (515, 65, '016', '硕士研究生肆业', 'EDUCATION', 7, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (516, 65, '017', '研究生班毕业', 'EDUCATION', 8, '研究生班:我国研究生教育中属于硕士生层次的一种非导师制的方式。其招生和入学条件与硕士生相似;学制两年或一年半。完成全部学习项目并经考核合格者,给研究生班事业证书(研究生课接班不在此列)', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (517, 65, '018', '研究生班结业', 'EDUCATION', 9, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (518, 65, '019', '研究生班肆业', 'EDUCATION', 10, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (519, 65, '020', '大学本科教育', 'EDUCATION', 11, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (520, 65, '021', '大学本科毕业', 'EDUCATION', 12, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (521, 65, '022', '大学本科结业', 'EDUCATION', 13, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (522, 65, '023', '大学本科肆业', 'EDUCATION', 14, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (523, 65, '028', '大学普通班毕业', 'EDUCATION', 15, '是指1970年至1976年进入普通高校学写的毕业生包括高等专科、高等职业教育', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (524, 65, '030', '大学专科教育', 'EDUCATION', 16, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (525, 65, '031', '大学专科毕业', 'EDUCATION', 17, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (526, 65, '032', '大学专科结业', 'EDUCATION', 18, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (527, 65, '033', '大学专科肆业', 'EDUCATION', 19, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (528, 65, '040', '中等专业教育', 'EDUCATION', 20, '包括中等师范学校数育', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (529, 65, '041', '中等专科毕业', 'EDUCATION', 21, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (530, 65, '042', '中等专科结业', 'EDUCATION', 22, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (531, 65, '043', '中等专科肆业', 'EDUCATION', 23, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (532, 65, '044', '职业高中毕业', 'EDUCATION', 24, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (533, 65, '045', '职业高中结业', 'EDUCATION', 25, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (534, 65, '046', '职业高中肆业', 'EDUCATION', 26, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (535, 65, '047', '技工学校毕业', 'EDUCATION', 27, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (536, 65, '048', '技工学校结业', 'EDUCATION', 28, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (537, 65, '049', '技工学校肆业', 'EDUCATION', 29, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (538, 65, '060', '普通高级中学教育', 'EDUCATION', 30, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (539, 65, '061', '普通高中毕业', 'EDUCATION', 31, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (540, 65, '062', '普通高中结业', 'EDUCATION', 32, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (541, 65, '063', '普通高中肆业', 'EDUCATION', 33, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (542, 65, '070', '初级中学教育', 'EDUCATION', 34, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (543, 65, '071', '初中毕业', 'EDUCATION', 35, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (544, 65, '073', '初中肆业', 'EDUCATION', 36, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (545, 65, '080', '小学教育', 'EDUCATION', 37, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (546, 65, '081', '小学毕业', 'EDUCATION', 38, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (547, 65, '083', '小学肆业', 'EDUCATION', 39, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (548, 65, '090', '其他', 'EDUCATION', 40, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (549, 66, '001', '已登记', 'REGISTER_SITUATION', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (550, 66, '002', '未登记', 'REGISTER_SITUATION', 2, '属于合法建筑或合法购买产权登记范围的房屋, 但未进行登记', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (551, 66, '999', '其他', 'REGISTER_SITUATION', 3, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (552, 67, '001', '市场化商品房', 'HOUSE_NATURE', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (553, 67, '002', '配套商品房', 'HOUSE_NATURE', 2, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (554, 67, '003', '公共租赁住房', 'HOUSE_NATURE', 3, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (555, 67, '004', '廉租住房', 'HOUSE_NATURE', 4, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (556, 67, '005', '限价普通商品住房', 'HOUSE_NATURE', 5, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (557, 67, '006', '经济适用住房', 'HOUSE_NATURE', 6, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (558, 67, '007', '定销商品房', 'HOUSE_NATURE', 7, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (559, 67, '008', '集资建房', 'HOUSE_NATURE', 8, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (560, 67, '009', '福利房', 'HOUSE_NATURE', 9, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (561, 67, '010', '保障性租赁住房', 'HOUSE_NATURE', 10, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (562, 67, '011', '房改房', 'HOUSE_NATURE', 11, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (563, 67, '012', '自建房', 'HOUSE_NATURE', 12, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (564, 67, '013', '易地搬迁安置房', 'HOUSE_NATURE', 13, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (565, 67, '014', '共有产权住房', 'HOUSE_NATURE', 14, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (566, 67, '999', '其它', 'HOUSE_NATURE', 15, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (567, 68, '001', '住宅', 'HOUSE_TYPE', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (568, 68, '002', '商业用房', 'HOUSE_TYPE', 2, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (569, 68, '003', '办公用房', 'HOUSE_TYPE', 3, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (570, 68, '004', '工业用房', 'HOUSE_TYPE', 4, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (571, 68, '005', '仓储用房', 'HOUSE_TYPE', 5, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (572, 68, '006', '车库', 'HOUSE_TYPE', 6, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (573, 68, '999', '其他', 'HOUSE_TYPE', 7, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (574, 69, '001', '住宅', 'HOUSE_USE', 1, '包括成套住宅、 公寓、 别墅、 高档公寓、 非成套住宅、 集体宿舍', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (575, 69, '002', '工业、 交通、 仓储', 'HOUSE_USE', 2, '包括工业、 公共设施、 铁路、 民航、 航运、 公共运输、 仓储', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (576, 69, '003', '商业、 金融、 信息', 'HOUSE_USE', 3, '包括商业服务、 经营、 旅游、 金融保险、 电讯信息', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (577, 69, '004', '教育、 医疗、 卫生、 科研', 'HOUSE_USE', 4, '包括教育、 医疗卫生、 科研', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (578, 69, '005', '文化、 娱乐、 体育', 'HOUSE_USE', 5, '包括文化、 新闻、 娱乐、 园林绿化、 体育', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (579, 69, '006', '办公', 'HOUSE_USE', 6, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (580, 69, '007', '军事', 'HOUSE_USE', 7, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (581, 69, '999', '其它', 'HOUSE_USE', 8, '包括涉外、 宗教、 监狱、 物管用房、 车库/车位', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (582, 70, '001', '自用', 'HOUSE_USE_SITUATION', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (583, 70, '002', '部分出租', 'HOUSE_USE_SITUATION', 2, '非完整出租', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (584, 70, '003', '出租', 'HOUSE_USE_SITUATION', 3, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (585, 70, '004', '闲置', 'HOUSE_USE_SITUATION', 4, '半年以上无人居住或使用', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (586, 70, '999', '其他', 'HOUSE_USE_SITUATION', 5, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (587, 71, '001', '城区', 'HOUSE_REGION', 1, '在市辖区和不设区的市, 区、 市政府驻地的实际建设连接到的居民委员会和其它区域', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (588, 71, '002', '镇区', 'HOUSE_REGION', 2, '在城区以外的县人民政府驻地和其它镇, 政府驻地的实际建设连接到的居民委员会和其它区域, 以及与政府驻地的实际建设不连接,且常住人口在 3000 人以上的独立的工矿区、 开发区、 科研单位、大专院校等特殊区域及农场、 林场的场部驻地视为镇区', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (589, 71, '003', '乡村地区', 'HOUSE_REGION', 3, '城区和镇区以外的区域', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (590, 72, '001', '低层住宅', 'HOUSE_FLOOR_CLASS', 1, '1 层~3 层', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (591, 72, '002', '多层住宅', 'HOUSE_FLOOR_CLASS', 2, '4 层~6 层', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (592, 72, '003', '中高层住宅', 'HOUSE_FLOOR_CLASS', 3, '7 层~9 层', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (593, 72, '004', '高层住宅', 'HOUSE_FLOOR_CLASS', 4, '10 层以上', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (594, 73, '001', '有物业公司管理', 'HOUSE_MANAGE_STYLE', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (595, 73, '002', '自管', 'HOUSE_MANAGE_STYLE', 2, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (596, 73, '999', '其它', 'HOUSE_MANAGE_STYLE', 4, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (597, 74, '001', 'A级', 'HOUSE_PERIL_GRADE', 1, '无危险构件, 房屋结构能满足安全使用要求', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (598, 74, '002', 'B级', 'HOUSE_PERIL_GRADE', 2, '个别结构构件评定为危险构件, 但不影响主体结构安全, 基本能满足安全使用要求', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (599, 74, '003', 'C级', 'HOUSE_PERIL_GRADE', 3, '部分承重结构不能满足安全使用要求, 房屋局部处于危险状态, 构成局部危房', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (600, 74, '004', 'D级', 'HOUSE_PERIL_GRADE', 4, '承重结构已不能满足安全使用要求, 房屋整体处于危险状态, 构成整幢危房', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (601, 75, '001', '工棚', 'HOUSE_TEMPORARY_MANAGE', 1, '如建筑工地居住工棚', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (602, 75, '002', '看守棚', 'HOUSE_TEMPORARY_MANAGE', 2, '如瓜地、 鱼塘看守棚', '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (603, 75, '003', '集装箱', 'HOUSE_TEMPORARY_MANAGE', 3, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (604, 75, '999', '其它', 'HOUSE_TEMPORARY_MANAGE', 4, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (605, 76, '001', '系统录入', 'ADDRESS_DATA_SOURCE', 1, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (606, 76, '002', '第三方对接', 'ADDRESS_DATA_SOURCE', 2, NULL, '2023-05-15 09:12:31.616176', '2023-05-15 09:12:31.616176', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (615, 78, '1', '行政区划', 'ORG_TYPE', 1, '行政区划', '2023-05-15 13:38:39.927938', '2023-05-15 13:38:39.927938', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (616, 78, '2', '部门', 'ORG_TYPE', 2, '部门', '2023-05-15 13:38:53.502239', '2023-05-15 13:38:53.502239', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (617, 79, '000', '本人或户主', 'HOUSEHOLDER_RELATION', 1, NULL, '2023-05-16 15:13:13.979276', '2023-05-16 15:13:13.979276', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (618, 79, '001', '配偶', 'HOUSEHOLDER_RELATION', 2, NULL, '2023-05-16 15:13:13.979276', '2023-05-16 15:13:13.979276', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (619, 79, '002', '子', 'HOUSEHOLDER_RELATION', 3, NULL, '2023-05-16 15:13:13.979276', '2023-05-16 15:13:13.979276', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (620, 79, '003', '女', 'HOUSEHOLDER_RELATION', 4, NULL, '2023-05-16 15:13:13.979276', '2023-05-16 15:13:13.979276', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (621, 79, '004', '孙子, 孙女, 或外孙子, 外孙女', 'HOUSEHOLDER_RELATION', 5, NULL, '2023-05-16 15:13:13.979276', '2023-05-16 15:13:13.979276', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (622, 79, '006', '祖父母或外祖父母', 'HOUSEHOLDER_RELATION', 6, NULL, '2023-05-16 15:13:13.979276', '2023-05-16 15:13:13.979276', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (623, 79, '007', '兄, 弟, 姐, 妹', 'HOUSEHOLDER_RELATION', 7, NULL, '2023-05-16 15:13:13.979276', '2023-05-16 15:13:13.979276', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (624, 79, '008', '其他', 'HOUSEHOLDER_RELATION', 8, NULL, '2023-05-16 15:13:13.979276', '2023-05-16 15:13:13.979276', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (625, 80, '001', '人户一致', 'PERSON_ADDRESS_RELATION', 1, NULL, '2023-05-16 15:13:13.979276', '2023-05-16 15:13:13.979276', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (626, 80, '002', '人户分离', 'PERSON_ADDRESS_RELATION', 2, NULL, '2023-05-16 15:13:13.979276', '2023-05-16 15:13:13.979276', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (629, 17, 'PERSON', '人员模块', 'TAG_MANAGER', 1, NULL, '2023-05-16 15:14:39.254653', '2023-05-16 15:14:39.254653', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (630, 17, 'ADDRESS', '地址模块', 'TAG_MANAGER', 2, NULL, '2023-05-16 15:14:39.254653', '2023-05-16 15:14:39.254653', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (631, 81, '1', '点位图标', 'ICON_TYPE', NULL, NULL, '2023-05-19 17:48:35.580691', '2023-05-19 17:48:35.580691', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (632, 82, '1', '民事事件', 'EVENT_TYPE', NULL, NULL, '2023-05-19 19:17:26.438206', '2023-05-19 19:17:26.438206', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (633, 51, '3', '警情', 'GIS_LAYER_TYPE', NULL, NULL, '2023-05-23 11:10:15.016436', '2023-05-23 11:10:15.016436', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (640, 81, '2', '移动端图标', 'ICON_TYPE', NULL, NULL, '2023-06-12 11:16:34.433102', '2023-06-12 11:16:34.433102', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (648, 87, '2', '浙政钉', 'WORK_FLOW_URGING_TASK_TYPE', 2, NULL, '2023-06-27 10:45:16.814027', '2023-06-27 10:45:16.814027', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (644, 86, '0', '聚合', 'FEATURE_TYPE', 1, NULL, '2023-06-19 14:58:48.271731', '2023-06-19 14:58:48.271731', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (645, 86, '1', '散点', 'FEATURE_TYPE', 2, NULL, '2023-06-19 14:58:48.271731', '2023-06-19 14:58:48.271731', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (646, 87, '0', '系统通知', 'WORK_FLOW_URGING_TASK_TYPE', 0, NULL, '2023-06-27 10:44:22.646115', '2023-06-27 10:44:22.646115', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (647, 87, '1', '短信', 'WORK_FLOW_URGING_TASK_TYPE', 1, NULL, '2023-06-27 10:44:49.894967', '2023-06-27 10:44:49.894967', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (649, 88, 'PERSON', '人员', 'INSPECTION_CATEGORY', 1, NULL, '2023-06-30 11:05:39.422651', '2023-06-30 11:05:39.422651', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (650, 88, 'ADDRESS', '房屋', 'INSPECTION_CATEGORY', 2, NULL, '2023-06-30 11:05:39.422651', '2023-06-30 11:05:39.422651', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (651, 88, 'ENTERPRISE', '企业', 'INSPECTION_CATEGORY', 3, NULL, '2023-06-30 11:05:39.422651', '2023-06-30 11:05:39.422651', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (652, 89, '4', '小区', 'ADDRESS_TYPE', 1, NULL, '2023-06-30 11:06:11.005164', '2023-06-30 11:06:11.005164', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (653, 89, '1', '楼幢', 'ADDRESS_TYPE', 2, NULL, '2023-06-30 11:06:11.005164', '2023-06-30 11:06:11.005164', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (654, 89, '0', '户室', 'ADDRESS_TYPE', 3, NULL, '2023-06-30 11:06:11.005164', '2023-06-30 11:06:11.005164', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (655, 89, '9', '院落广场类', 'ADDRESS_TYPE', 5, '院落广场中心点以及院落门口', '2023-06-30 11:06:11.005164', '2023-06-30 11:06:11.005164', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (656, 89, '8', '道路交通类', 'ADDRESS_TYPE', 6, '公共交通站点及其出入口、道路交叉路口、桥梁等', '2023-06-30 11:06:11.005164', '2023-06-30 11:06:11.005164', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (657, 89, '7', '公用设施类', 'ADDRESS_TYPE', 7, '供水、燃气、电力、路灯、消防栓、物联感知设备、打谷场等', '2023-06-30 11:06:11.005164', '2023-06-30 11:06:11.005164', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (658, 89, '6', '环境绿化类', 'ADDRESS_TYPE', 8, '城市雕塑、广告牌匾、古树名木、行道树等', '2023-06-30 11:06:11.005164', '2023-06-30 11:06:11.005164', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (659, 89, '5', '其他设施类', 'ADDRESS_TYPE', 9, '院落广场中心点以及院落门口', '2023-06-30 11:06:11.005164', '2023-06-30 11:06:11.005164', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (660, 90, '1', '一年内', 'warning_time_type', NULL, NULL, '2023-07-03 13:47:07.083045', '2023-07-03 13:47:07.083045', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (661, 90, '2', '一个季度内', 'warning_time_type', NULL, NULL, '2023-07-03 13:47:38.442643', '2023-07-03 13:47:38.442643', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (662, 90, '3', '一个月内', 'warning_time_type', NULL, NULL, '2023-07-03 13:47:55.20517', '2023-07-03 13:47:55.20517', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (636, 83, '2', '事件上报', 'FLOW_CATEGORY', 2, NULL, '2023-06-01 16:39:03.828473', '2023-07-07 10:39:01.721114', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (634, 83, '1', 'OA流程', 'FLOW_CATEGORY', 1, NULL, '2023-06-01 13:59:49.367978', '2023-07-07 10:39:15.14154', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (667, 92, '4', '未评价', 'WORK_FLOW_STATUS', 5, 'blue', '2023-07-06 10:37:59.950189', '2023-07-07 15:11:46.792727', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (666, 92, '3', '已办结', 'WORK_FLOW_STATUS', 4, 'green', '2023-07-06 10:36:57.238671', '2023-07-07 11:41:56.618723', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (665, 92, '2', '处置中', 'WORK_FLOW_STATUS', 3, 'blue', '2023-07-06 10:36:34.974085', '2023-07-07 11:42:04.713596', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (664, 92, '1', '待处置', 'WORK_FLOW_STATUS', 2, 'blue', '2023-07-06 10:36:17.41834', '2023-07-07 11:42:14.856009', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (663, 92, '0', '未签收', 'WORK_FLOW_STATUS', 1, 'red', '2023-07-06 10:36:00.443532', '2023-07-07 11:42:21.546392', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (681, 93, '0', '已签收', 'WORK_FLOW_OPERATION_TYPE', 3, 'green', '2023-07-06 18:26:46.40922', '2023-07-07 11:30:56.950875', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (682, 94, '001', '公司', 'ENTERPRISE_TYPE', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (683, 94, '002', '分公司', 'ENTERPRISE_TYPE', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (684, 94, '003', '非公司企业法人', 'ENTERPRISE_TYPE', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (685, 94, '004', '营业单位,非公司企业法人分支机构', 'ENTERPRISE_TYPE', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (686, 94, '005', '集团', 'ENTERPRISE_TYPE', 5, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (687, 94, '006', '农民专业合作社', 'ENTERPRISE_TYPE', 6, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (688, 94, '007', '农业专业合作社分支机构', 'ENTERPRISE_TYPE', 7, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (689, 94, '008', '外国(地区)企业常驻代表机构', 'ENTERPRISE_TYPE', 8, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (690, 94, '009', '外国(地区)企业在华从事经营活动', 'ENTERPRISE_TYPE', 9, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (691, 94, '010', '外国企业分支机构', 'ENTERPRISE_TYPE', 10, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (692, 94, '011', '外商投资企业办事机构', 'ENTERPRISE_TYPE', 11, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (693, 94, '012', '外商投资合伙企业', 'ENTERPRISE_TYPE', 12, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (694, 94, '013', '外商投资合伙企业分支机构', 'ENTERPRISE_TYPE', 13, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (695, 94, '014', '个人独资企业', 'ENTERPRISE_TYPE', 14, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (696, 94, '015', '个人独资企业分支机构', 'ENTERPRISE_TYPE', 15, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (697, 94, '016', '合伙企业', 'ENTERPRISE_TYPE', 16, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (698, 94, '017', '合伙企业分支机构', 'ENTERPRISE_TYPE', 17, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (699, 94, '018', '个体工商户', 'ENTERPRISE_TYPE', 18, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (700, 94, '999', '其他', 'ENTERPRISE_TYPE', 19, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (701, 95, '001', '个人经营', 'INDIVIDUAL_BUSINESS_COMPOSE', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (702, 95, '002', '家庭经营', 'INDIVIDUAL_BUSINESS_COMPOSE', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (703, 96, '001', '国家市场监督管理总局', 'ENTERPRISE_REGISTRATION_AUTHORITY', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (704, 96, '002', '省市场监督管理部门', 'ENTERPRISE_REGISTRATION_AUTHORITY', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (705, 96, '003', '自治区监督管理部门', 'ENTERPRISE_REGISTRATION_AUTHORITY', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (706, 96, '004', '直辖市监督管理部门', 'ENTERPRISE_REGISTRATION_AUTHORITY', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (707, 96, '005', '设区的市(地区)市场监督管理部门', 'ENTERPRISE_REGISTRATION_AUTHORITY', 5, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (708, 96, '006', '县(区)市场监督管理部门', 'ENTERPRISE_REGISTRATION_AUTHORITY', 6, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (709, 96, '007', '自治县市场监督管理部门', 'ENTERPRISE_REGISTRATION_AUTHORITY', 7, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (710, 96, '008', '不设区的市市场监督管理部门', 'ENTERPRISE_REGISTRATION_AUTHORITY', 8, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (711, 96, '009', '市辖区市场监督管理部门', 'ENTERPRISE_REGISTRATION_AUTHORITY', 9, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (712, 96, '999', '其他', 'ENTERPRISE_REGISTRATION_AUTHORITY', 10, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (713, 97, '001', '在册', 'BUSINESS_STATUS', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (714, 97, '002', '注销', 'BUSINESS_STATUS', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (715, 97, '003', '吊销已注销', 'BUSINESS_STATUS', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (716, 97, '004', '吊销未注销', 'BUSINESS_STATUS', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (717, 97, '005', '迁出', 'BUSINESS_STATUS', 5, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (718, 97, '006', '歇业', 'BUSINESS_STATUS', 6, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (719, 97, '999', '其他', 'BUSINESS_STATUS', 7, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (720, 98, 'A', '农、林、牧、渔业', 'INDUSTRY_TYPE', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (721, 98, 'B', '采矿业', 'INDUSTRY_TYPE', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (722, 98, 'C', '制造业', 'INDUSTRY_TYPE', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (723, 98, 'D', '电力、热力、燃气及水生产和供应业', 'INDUSTRY_TYPE', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (724, 98, 'E', '建筑业', 'INDUSTRY_TYPE', 5, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (725, 98, 'F', '批发和零售业', 'INDUSTRY_TYPE', 6, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (726, 98, 'G', '交通运输、仓储和邮政业', 'INDUSTRY_TYPE', 7, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (727, 98, 'H', '住宿和餐饮业', 'INDUSTRY_TYPE', 8, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (728, 98, 'I', '信息传输、软件和信息技术服务业', 'INDUSTRY_TYPE', 9, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (729, 98, 'J', '金融业', 'INDUSTRY_TYPE', 10, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (730, 98, 'K', '房地产业', 'INDUSTRY_TYPE', 11, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (731, 98, 'L', '租赁和商务服务业', 'INDUSTRY_TYPE', 12, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (732, 98, 'M', '科学研究和技术服务业', 'INDUSTRY_TYPE', 13, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (733, 98, 'N', '水利、环境和公共设施管理业', 'INDUSTRY_TYPE', 14, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (679, 93, '-2', '开始', 'WORK_FLOW_OPERATION_TYPE', 1, 'blue', '2023-07-06 18:24:33.117278', '2023-07-07 11:30:46.559207', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (680, 93, '-1', '结束', 'WORK_FLOW_OPERATION_TYPE', 2, 'blue', '2023-07-06 18:25:55.669772', '2023-07-07 11:30:50.752585', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (734, 98, 'O', '居民服务、修理和其他服务业', 'INDUSTRY_TYPE', 15, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (735, 98, 'P', '教育', 'INDUSTRY_TYPE', 16, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (736, 98, 'Q', '卫生和社会工作', 'INDUSTRY_TYPE', 17, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (737, 98, 'R', '文化、体育和娱乐业', 'INDUSTRY_TYPE', 18, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (738, 98, 'S', '公共管理、社会保障和社会组织', 'INDUSTRY_TYPE', 19, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (739, 98, 'T', '国际组织', 'INDUSTRY_TYPE', 20, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (740, 99, '001', '警告、通报批评', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_TYPE', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (741, 99, '002', '罚款、没收违法所得、没收非法财物', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_TYPE', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (742, 99, '003', '暂扣许可证件、降低资质等级、吊销许可证件', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_TYPE', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (743, 99, '004', '限制开展生产经营活动、责令停产停业、责令关闭、限制从业', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_TYPE', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (744, 99, '005', '法律、行政法规规定的其他行政处罚', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_TYPE', 5, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (745, 100, '001', '市场监管部门', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_AUTHORITY', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (746, 100, '002', '公安部门', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_AUTHORITY', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (747, 100, '003', '消防部门', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_AUTHORITY', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (748, 100, '004', '应急管理部门', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_AUTHORITY', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (749, 100, '005', '卫生健康部门', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_AUTHORITY', 5, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (750, 100, '006', '住建部门', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_AUTHORITY', 6, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (751, 100, '007', '生态环境部门', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_AUTHORITY', 7, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (752, 100, '008', '自然资源部门', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_AUTHORITY', 8, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (753, 100, '009', '法律、法规授权的具有管理公共事务职能的组织', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_AUTHORITY', 9, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (754, 100, '999', '其他', 'ENTERPRISE_ADMINISTRATIVE_PENALTY_AUTHORITY', 10, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (755, 101, '001', '未按照规定的期限公示年度报告', 'BUSINESS_ABNORMAL_BEHAVIOR', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (756, 101, '002', '未在行政管理部门责令的期限内公示有关单位信息', 'BUSINESS_ABNORMAL_BEHAVIOR', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (757, 101, '003', '公示单位信息隐瞒真实情况、弄虚作假', 'BUSINESS_ABNORMAL_BEHAVIOR', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (758, 101, '004', '通过登记的住所或者经营场所无法联系', 'BUSINESS_ABNORMAL_BEHAVIOR', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (759, 102, '001', '被列入经营异常名录届满 3 年仍未履行相关义务的', 'ILLEGALITY_DISHONESTY_BEHAVIOR', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (760, 102, '002', '提交虚假材料或者采取其他欺诈手段隐瞒重要事实,取得公司变更或者注销登记,被撤销登记的', 'ILLEGALITY_DISHONESTY_BEHAVIOR', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (761, 102, '003', '组织策划传销的,或者因为传销行为提供便利条件两年内受到三次以上行政处罚的', 'ILLEGALITY_DISHONESTY_BEHAVIOR', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (762, 102, '004', '因直销违法行为两年内受到三次以上行政处罚的', 'ILLEGALITY_DISHONESTY_BEHAVIOR', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (763, 102, '005', '因不正当竞争行为两年内受到三次以上行政处罚的', 'ILLEGALITY_DISHONESTY_BEHAVIOR', 5, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (764, 102, '006', '因提供的商品或者服务不符合保障人身、财产安全要求,造成人身伤害等严重侵害消费者权益的违法行为,两年内受到三次以上行政处罚的', 'ILLEGALITY_DISHONESTY_BEHAVIOR', 6, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (765, 102, '008', '因商标侵权行为五年内受到两次以上行政处罚的', 'ILLEGALITY_DISHONESTY_BEHAVIOR', 8, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (766, 102, '009', '被决定停止受理商标代理业务的', 'ILLEGALITY_DISHONESTY_BEHAVIOR', 9, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (767, 102, '999', '其他违反行政管理法律、法规且情节严重的', 'ILLEGALITY_DISHONESTY_BEHAVIOR', 10, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (768, 103, '001', '社会团体', 'SOCIAL_ORG_TYPE', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (769, 103, '002', '社会服务机构(民办非企业单位)', 'SOCIAL_ORG_TYPE', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (770, 103, '003', '基金会', 'SOCIAL_ORG_TYPE', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (771, 103, '004', '外国商会', 'SOCIAL_ORG_TYPE', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (772, 103, '005', '境外基金会', 'SOCIAL_ORG_TYPE', 5, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (773, 103, '999', '其他', 'SOCIAL_ORG_TYPE', 6, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (774, 104, '001', '国务院组成部委、国务院直属机构、国务院办事机构及地方县级以上的人民政府相应部门和机构', 'SUPERVISORY_UNIT', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (775, 104, '002', '中共中央各工作部门、代管单位及地方县级以上党委的相应部门和单位', 'SUPERVISORY_UNIT', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (776, 104, '003', '全国人大常委会办公厅、全国政协办公厅、最高人民法院、最高人民检察院及地方县级以上的上述机关相应部门', 'SUPERVISORY_UNIT', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (777, 104, '004', '经中共中央、国务院或地方县级以上党委、人民政府授权作为社会组织业务主管单位的组织', 'SUPERVISORY_UNIT', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (778, 104, '005', '中国人民解放军总政治部', 'SUPERVISORY_UNIT', 5, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (779, 104, '999', '其他', 'SUPERVISORY_UNIT', 6, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (780, 105, '001', '国务院民政部门', 'SOCIAL_REGISTRATION_AUTHORITY', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (781, 105, '002', '省级或省级市的民政部门', 'SOCIAL_REGISTRATION_AUTHORITY', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (782, 105, '003', '地级市的民政部门', 'SOCIAL_REGISTRATION_AUTHORITY', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (783, 105, '999', '其他', 'SOCIAL_REGISTRATION_AUTHORITY', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (784, 106, '001', '正常', 'SOCIAL_ORG_STATUS', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (785, 106, '002', '注销', 'SOCIAL_ORG_STATUS', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (786, 106, '003', '撤销', 'SOCIAL_ORG_STATUS', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (787, 106, '999', '其他', 'SOCIAL_ORG_STATUS', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (788, 107, '001', '警告', 'SOCIAL_ADMINISTRATIVE_PENALTY_TYPE', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (789, 107, '002', '罚款、没收违法所得、没收非法财物', 'SOCIAL_ADMINISTRATIVE_PENALTY_TYPE', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (790, 107, '003', '撤销登记', 'SOCIAL_ADMINISTRATIVE_PENALTY_TYPE', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (791, 107, '999', '责令限期停止活动', 'SOCIAL_ADMINISTRATIVE_PENALTY_TYPE', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (792, 108, '001', '国务院民政部门', 'SOCIAL_ADMINISTRATIVE_PENALTY_AUTHORITY', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (793, 108, '002', '省级或省级市的民政部门', 'SOCIAL_ADMINISTRATIVE_PENALTY_AUTHORITY', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (794, 108, '003', '地级市的民政部门', 'SOCIAL_ADMINISTRATIVE_PENALTY_AUTHORITY', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (795, 108, '999', '其他', 'SOCIAL_ADMINISTRATIVE_PENALTY_AUTHORITY', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (796, 109, '001', '未按照规定时限和要求向登记管理机关报送年度工作报告', 'ACTIVITY_ABNORMAL_REASON', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (797, 109, '002', '未按照有关规定设立党组织', 'ACTIVITY_ABNORMAL_REASON', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (798, 109, '003', '登记管理机关在抽查和其他监督检查中发现问题,发放整改文书要求限期整改,社会组织未按期完成整改', 'ACTIVITY_ABNORMAL_REASON', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (799, 109, '004', '具有公开募捐资格的慈善组织不再符合公开募捐资格条件', 'ACTIVITY_ABNORMAL_REASON', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (800, 109, '005', '具有公开募捐资格的慈善组织6个月以上不开展公开募捐活动', 'ACTIVITY_ABNORMAL_REASON', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (801, 109, '006', '受到警告或者不满 5 万元罚款处罚', 'ACTIVITY_ABNORMAL_REASON', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (802, 109, '007', '通过登记的住所无法与社会组织取得联系', 'ACTIVITY_ABNORMAL_REASON', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (803, 109, '008', '法律、行政法规规定应当列入的其他情形', 'ACTIVITY_ABNORMAL_REASON', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (804, 110, '001', '被列入活动异常名录满 2 年', 'ILLEGALITY_DISHONESTY_REASON', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (805, 110, '002', '弄虚作假办理变更登记,被撤销变更登记', 'ILLEGALITY_DISHONESTY_REASON', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (806, 110, '003', '受到限期停止活动行政处罚', 'ILLEGALITY_DISHONESTY_REASON', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (807, 110, '004', '受到 5 万元以上罚款处罚', 'ILLEGALITY_DISHONESTY_REASON', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (808, 110, '005', '三年内两次以上受到警告或者不满 5 万元罚款处罚', 'ILLEGALITY_DISHONESTY_REASON', 5, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (809, 110, '006', '被司法机关纳入“失信被执行人”名单', 'ILLEGALITY_DISHONESTY_REASON', 6, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (810, 110, '007', '被登记管理机关吊销登记证书', 'ILLEGALITY_DISHONESTY_REASON', 7, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (811, 110, '008', '被登记管理机关撤销成(设)立登记', 'ILLEGALITY_DISHONESTY_REASON', 8, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (812, 110, '009', '法律、行政法规规定应当列入的其他情形', 'ILLEGALITY_DISHONESTY_REASON', 9, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (813, 111, '001', '政府购买', 'CAPITAL_SOURCE', 1, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (814, 111, '002', '社会捐赠', 'CAPITAL_SOURCE', 2, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (815, 111, '003', '服务收入', 'CAPITAL_SOURCE', 3, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (816, 111, '004', '投资收益', 'CAPITAL_SOURCE', 4, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (817, 111, '999', '其他', 'CAPITAL_SOURCE', 5, NULL, '2023-07-06 18:31:17.080071', '2023-07-06 18:31:17.080071', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (818, 17, 'ENTERPRISE', '企业模块', 'TAG_MANAGER', 2, NULL, '2023-07-06 18:31:18.379484', '2023-07-06 18:31:18.379484', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (820, 93, '2', '已转办', 'WORK_FLOW_OPERATION_TYPE', 5, 'green', '2023-07-07 10:54:36.572271', '2023-07-07 11:31:09.805359', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (821, 93, '3', '已委派', 'WORK_FLOW_OPERATION_TYPE', 6, 'green', '2023-07-07 10:54:59.999463', '2023-07-07 11:31:12.183377', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (822, 93, '4', '已拒绝', 'WORK_FLOW_OPERATION_TYPE', 7, 'red', '2023-07-07 10:55:45.615244', '2023-07-07 11:31:14.577144', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (823, 93, '5', '撤回重办', 'WORK_FLOW_OPERATION_TYPE', 8, 'green', '2023-07-07 10:56:14.786179', '2023-07-07 11:32:04.428818', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (825, 93, '7', '到达现场', 'WORK_FLOW_OPERATION_TYPE', 10, 'blue', '2023-07-11 15:16:12.307218', '2023-07-11 15:16:12.307218', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (824, 93, '6', '已退回', 'WORK_FLOW_OPERATION_TYPE', 9, 'blue', '2023-07-07 11:17:03.811731', '2023-07-12 15:51:54.435127', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (819, 93, '1', '已处置', 'WORK_FLOW_OPERATION_TYPE', 4, 'green', '2023-07-07 10:54:05.8093', '2023-07-12 17:35:35.921384', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (826, 117, 'ORDINARY', '普通点位', 'POINT_TYPE', 1, NULL, '2023-07-21 16:34:19.61578', '2023-07-21 16:34:19.61578', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (827, 117, 'IMPORTANT', '重点点位', 'POINT_TYPE', 2, NULL, '2023-07-21 16:34:19.61578', '2023-07-21 16:34:19.61578', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (829, 118, '1', '巡查结束', 'PATROL_STATUS', 2, NULL, '2023-07-21 16:34:19.61578', '2023-07-21 16:34:19.61578', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (830, 119, '0', '时间', 'PATROL_INFO_TYPE', 1, NULL, '2023-07-21 16:34:19.61578', '2023-07-21 16:34:19.61578', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (831, 119, '1', '点位', 'PATROL_INFO_TYPE', 2, NULL, '2023-07-21 16:34:19.61578', '2023-07-21 16:34:19.61578', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (832, 119, '2', '线索', 'PATROL_INFO_TYPE', 3, NULL, '2023-07-21 16:34:19.61578', '2023-07-21 16:34:19.61578', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (833, 120, '0', '自由巡查', 'PATROL_TYPE', 1, NULL, '2023-07-21 16:34:19.61578', '2023-07-21 16:34:19.61578', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (834, 120, '1', '路线巡查', 'PATROL_TYPE', 2, NULL, '2023-07-21 16:34:19.61578', '2023-07-21 16:34:19.61578', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (836, 81, '3', '数据概况', 'ICON_TYPE', NULL, NULL, '2023-08-01 13:56:55.562538', '2023-08-01 13:56:55.562538', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (828, 118, '0', '巡查中', 'PATROL_STATUS', 1, NULL, '2023-07-21 16:34:19.61578', '2023-08-07 16:15:52.04781', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (835, 44, '6', '三方接入', 'SYS_MEUN_CATEGORY', 3, '子应用接入', '2023-07-26 17:09:00.955604', '2023-08-07 18:10:20.149549', 1, 835);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (850, 123, '0', '普通预警', 'WARNING_LEVEL', 0, NULL, '2023-09-08 09:15:55.394471', '2023-09-08 09:15:55.394471', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (851, 123, '1', '紧急预警', 'WARNING_LEVEL', 1, NULL, '2023-09-08 09:16:11.58292', '2023-09-08 09:16:11.58292', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (852, 124, '1', '业务预警', 'WARNING_TYPE', 1, NULL, '2023-09-08 09:17:44.165087', '2023-09-08 09:17:44.165087', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (853, 124, '2', '系统预警', 'WARNING_TYPE', 2, NULL, '2023-09-08 09:17:59.726496', '2023-09-08 09:17:59.726496', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (855, 125, 'UNKNOWN', '未知状态', 'PAY_STATUS', NULL, NULL, '2023-09-12 18:28:51.586764', '2023-09-12 18:28:51.586764', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (856, 125, 'TRADE_CLOSED', '交易关闭', 'PAY_STATUS', NULL, NULL, '2023-09-12 18:29:00.504918', '2023-09-12 18:29:00.504918', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (857, 125, 'WAIT_BUYER_PAY', '等待支付', 'PAY_STATUS', NULL, NULL, '2023-09-12 18:29:09.282535', '2023-09-12 18:29:09.282535', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (858, 125, 'TRADE_SUCCESS', '支付成功', 'PAY_STATUS', NULL, NULL, '2023-09-12 18:29:24.767238', '2023-09-12 18:29:24.767238', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (859, 125, 'TRADE_REFUND', '支付退款', 'PAY_STATUS', NULL, NULL, '2023-09-12 18:29:32.823013', '2023-09-12 18:29:32.823013', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (860, 126, 'WXPay', '微信支付', 'PAY_SYS', NULL, NULL, '2023-09-12 18:29:58.922499', '2023-09-12 18:29:58.922499', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (861, 126, 'ALIPay', '支付宝支付', 'PAY_SYS', NULL, NULL, '2023-09-12 18:30:22.870043', '2023-09-12 18:30:22.870043', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (862, 126, 'UACPay', '云闪付', 'PAY_SYS', NULL, NULL, '2023-09-12 18:30:30.773342', '2023-09-12 18:30:30.773342', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (864, 128, 'success', '成功', 'NOTIFY_STATUS', NULL, NULL, '2023-09-12 18:34:21.362377', '2023-09-12 18:34:21.362377', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (865, 128, 'failed', '失败', 'NOTIFY_STATUS', NULL, NULL, '2023-09-12 18:34:27.924727', '2023-09-12 18:34:27.924727', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (866, 129, 'pay', '支付', 'NOTIFY_TYPE', NULL, NULL, '2023-09-12 18:34:59.743671', '2023-09-12 18:34:59.743671', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (863, 127, 'WXPay', '微信支付', 'REFUND_SYS', NULL, NULL, '2023-09-12 18:32:59.841472', '2023-09-14 16:58:56.469148', 1, 863);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (867, 129, 'refund', '退款', 'NOTIFY_TYPE', NULL, NULL, '2023-09-12 18:35:08.266585', '2023-09-12 18:35:08.266585', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (868, 130, 'UNKNOWN', '未知状态', 'REFUND_STATUS', NULL, NULL, '2023-09-12 18:42:54.10532', '2023-09-13 09:39:19.863754', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (869, 130, 'SUCCESS', '退款成功', 'REFUND_STATUS', NULL, NULL, '2023-09-12 18:43:05.42772', '2023-09-13 09:39:44.626253', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (870, 130, 'FAIL', '退款失败', 'REFUND_STATUS', NULL, NULL, '2023-09-13 09:40:05.95532', '2023-09-13 09:40:05.95532', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (871, 130, 'PROCESSING', '退款中', 'REFUND_STATUS', NULL, NULL, '2023-09-13 09:40:25.435079', '2023-09-13 09:41:07.462133', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (854, 125, 'NEW_ORDER', '新订单', 'PAY_STATUS', NULL, NULL, '2023-09-12 18:28:38.463643', '2023-09-14 14:00:27.093182', 1, 854);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (874, 131, 'income', '收入金额', 'FUNDS_TYPE', 3, NULL, '2023-09-15 17:16:24.677175', '2023-09-15 17:16:34.647342', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (872, 131, 'pay', '支付金额', 'FUNDS_TYPE', 1, NULL, '2023-09-15 17:15:59.589006', '2023-09-15 17:16:38.432791', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (873, 131, 'refund', '退款金额', 'FUNDS_TYPE', 2, NULL, '2023-09-15 17:16:12.071107', '2023-09-15 17:16:41.81534', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (875, 132, '0', '手动备份', 'BACKUP_TYPE', 0, NULL, '2023-10-11 10:24:07.167173', '2023-10-11 10:24:07.167173', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (876, 132, '1', '自动备份', 'BACKUP_TYPE', 1, NULL, '2023-10-11 10:24:15.777552', '2023-10-11 10:24:15.777552', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (877, 133, '0', '全库备份', 'BACKUP_RANGE', 0, NULL, '2023-10-11 10:24:53.771753', '2023-10-11 10:24:53.771753', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (878, 133, '1', '单表备份', 'BACKUP_RANGE', 1, NULL, '2023-10-11 10:25:02.641844', '2023-10-11 10:25:02.641844', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (883, 135, '20100', '普通路面事故', 'ACCIDENT_TYPE', NULL, NULL, '2023-10-16 20:39:06.53382', '2023-10-16 20:39:06.53382', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (884, 135, '20200', '高速路面事故', 'ACCIDENT_TYPE', NULL, NULL, '2023-10-16 20:39:21.541776', '2023-10-16 20:39:21.541776', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (885, 135, '20300', '水上事故', 'ACCIDENT_TYPE', NULL, NULL, '2023-10-16 20:39:29.021927', '2023-10-16 20:39:29.021927', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (886, 136, '0', '不涉及', 'engineeringVehiclesInvolved', NULL, NULL, '2023-10-16 20:42:08.556688', '2023-10-16 20:42:08.556688', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (887, 136, '1', '涉及', 'engineeringVehiclesInvolved', NULL, NULL, '2023-10-16 20:42:15.099053', '2023-10-16 20:42:15.099053', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (888, 137, '0', '否', 'businessAccident', NULL, NULL, '2023-10-16 20:42:48.282132', '2023-10-16 20:42:48.282132', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (889, 137, '1', '是', 'businessAccident', NULL, NULL, '2023-10-16 20:42:52.887281', '2023-10-16 20:42:52.887281', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (890, 138, '725', '乡/村道', 'roadType', NULL, NULL, '2023-10-16 20:43:46.113517', '2023-10-16 20:43:46.113517', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (891, 138, '726', '县道', 'roadType', NULL, NULL, '2023-10-16 20:43:55.487499', '2023-10-16 20:43:55.487499', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (892, 138, '727', '其他', 'roadType', NULL, NULL, '2023-10-16 20:44:04.174092', '2023-10-16 20:44:04.174092', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (893, 138, '816', '省道', 'roadType', NULL, NULL, '2023-10-16 20:44:16.742251', '2023-10-16 20:44:16.742251', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (894, 138, '817', '国道', 'roadType', NULL, NULL, '2023-10-16 20:44:25.112635', '2023-10-16 20:44:25.112635', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (895, 138, '818', '城市道路', 'roadType', NULL, NULL, '2023-10-16 20:44:35.152376', '2023-10-16 20:44:35.152376', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (896, 138, '819', '绕城高速', 'roadType', NULL, NULL, '2023-10-16 20:44:42.977631', '2023-10-16 20:44:42.977631', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (897, 138, '820', '高架快速路', 'roadType', NULL, NULL, '2023-10-16 20:44:57.711476', '2023-10-16 20:44:57.711476', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (898, 139, '0', '未施工', 'roadConstructionStatus', NULL, NULL, '2023-10-16 20:45:43.399411', '2023-10-16 20:45:43.399411', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (899, 139, '1', '施工', 'roadConstructionStatus', NULL, NULL, '2023-10-16 20:45:52.634161', '2023-10-16 20:45:52.634161', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (900, 140, 'ALGORITHM_CENTER', '算法中心', 'FUNCTION_MODULE', 1, NULL, '2023-10-19 15:24:30.708903', '2023-10-19 15:24:30.708903', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (901, 140, 'SEARCH_ENGINE', '搜索引擎', 'FUNCTION_MODULE', 2, NULL, '2023-10-19 15:24:30.708903', '2023-10-19 15:24:30.708903', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (902, 140, 'DATA_MODELING', '数据建模', 'FUNCTION_MODULE', 3, NULL, '2023-10-19 15:24:30.708903', '2023-10-19 15:24:30.708903', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (879, 134, '0', '已失败', 'BACKUP_STATUS', 0, NULL, '2023-10-11 13:49:33.617609', '2023-11-30 15:01:43.565262', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (880, 134, '1', '备份中', 'BACKUP_STATUS', 1, NULL, '2023-10-11 13:49:51.490362', '2023-11-30 15:02:25.302882', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (882, 134, '2', '已成功', 'BACKUP_STATUS', 2, NULL, '2023-10-11 13:50:29.450036', '2023-11-30 15:02:29.768019', 0, NULL);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (903, 141, '0', '任务监听器', 'WORK_FLOW_LISTENER_TYPE', 1, NULL, '2023-11-30 16:02:38.206236', '2023-11-30 16:02:38.206236', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (904, 141, '1', '执行监听器', 'WORK_FLOW_LISTENER_TYPE', 2, NULL, '2023-11-30 16:02:38.206236', '2023-11-30 16:02:38.206236', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (905, 141, '2', '多实例监听器', 'WORK_FLOW_LISTENER_TYPE', 3, NULL, '2023-11-30 16:02:38.206236', '2023-11-30 16:02:38.206236', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (962, 153, 'GPS', 'GPS', 'DEVICE_PRODUCT_TYPE', 1, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (963, 153, 'GATE', '门闸', 'DEVICE_PRODUCT_TYPE', 2, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (964, 153, 'CAMERA', '摄像头', 'DEVICE_PRODUCT_TYPE', 3, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (965, 154, 'LoRa', 'LoRa', 'NETWORKING_TYPE', 1, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (966, 154, 'honeycomb', '蜂窝(2G/3G/4G/5G)', 'NETWORKING_TYPE', 2, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (967, 154, 'NB-loT', 'NB-loT', 'NETWORKING_TYPE', 3, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (968, 154, 'Wi-Fi', 'Wi-Fi', 'NETWORKING_TYPE', 4, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (969, 154, 'Zigbee', 'Zigbee', 'NETWORKING_TYPE', 5, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (970, 154, 'Bluetooth', '蓝牙', 'NETWORKING_TYPE', 6, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (971, 154, 'Ethernet', '以太网', 'NETWORKING_TYPE', 7, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (972, 154, 'Other', '其他', 'NETWORKING_TYPE', 8, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (973, 155, 'ALINK', 'ALINK', 'PROTOCOL_TYPE', 1, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (974, 155, 'MQTT', 'MQTT', 'PROTOCOL_TYPE', 2, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (975, 155, 'LWM2M', 'LWM2M', 'PROTOCOL_TYPE', 3, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (976, 155, 'HTTP', 'HTTP', 'PROTOCOL_TYPE', 4, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (977, 155, 'JT/T808', 'JT/T808', 'PROTOCOL_TYPE', 5, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (978, 155, 'JT/T809', 'JT/T809', 'PROTOCOL_TYPE', 6, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (979, 155, 'HJ212', 'HJ212', 'PROTOCOL_TYPE', 7, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (980, 155, 'TCP', 'TCP', 'PROTOCOL_TYPE', 8, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (981, 155, 'UDP', 'UDP', 'PROTOCOL_TYPE', 9, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (982, 155, 'COAP', 'COAP', 'PROTOCOL_TYPE', 10, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (983, 155, 'MODBUS', 'MODBUS', 'PROTOCOL_TYPE', 11, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (984, 155, 'OPC/UA', 'OPC/UA', 'PROTOCOL_TYPE', 12, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (985, 155, '电信 T_LINK', '电信 T_LINK', 'PROTOCOL_TYPE', 13, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (986, 155, '电信 GBT/26875/2011', '电信 GBT/26875/2011', 'PROTOCOL_TYPE', 14, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (987, 155, '电信 TR069', '电信 TR069', 'PROTOCOL_TYPE', 15, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (988, 155, '华为 OPC/DA', '华为 OPC/DA', 'PROTOCOL_TYPE', 16, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (989, 155, '阿里云 ZIGBEE', '阿里云 ZIGBEE', 'PROTOCOL_TYPE', 17, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (990, 155, '阿里云 BLE', '阿里云 BLE', 'PROTOCOL_TYPE', 18, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (991, 155, '其他', '其他', 'PROTOCOL_TYPE', 19, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (992, 156, 'PLATFORM', '设备接入平台', 'DEVICE_SOURCE_TYPE', 1, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (993, 156, 'AGREEMENT', '物联网行业协议系统', 'DEVICE_SOURCE_TYPE', 2, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (994, 156, 'OTHER', '其他', 'DEVICE_SOURCE_TYPE', 3, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (995, 157, 'TEXT', '字符串', 'DEVICE_DATA_TYPE', 1, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (996, 157, 'ENUM', '枚举型', 'DEVICE_DATA_TYPE', 2, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (997, 157, 'ARRAY', '数组型', 'DEVICE_DATA_TYPE', 3, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (998, 157, 'STRUCT', '复合型', 'DEVICE_DATA_TYPE', 4, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (999, 157, 'INT', '整数型', 'DEVICE_DATA_TYPE', 5, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1000, 157, 'BOOL', '布尔型', 'DEVICE_DATA_TYPE', 6, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1001, 157, 'FLOAT', '浮点型(单精度)', 'DEVICE_DATA_TYPE', 7, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1002, 157, 'DOUBLE', '浮点型(双精度)', 'DEVICE_DATA_TYPE', 8, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1003, 158, 'INFO', '信息', 'DEVICE_EVENT_TYPE', 1, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1004, 158, 'ALERT', '告警', 'DEVICE_EVENT_TYPE', 2, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1005, 159, 'READ_WRITE', '可读写', 'FLAG_READ_WRITE', 1, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1006, 159, 'READ', '只读', 'FLAG_READ_WRITE', 2, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1007, 160, 'DEVICE_POST_TIMEOUT', '数据上报超时', 'ALARM_TYPE', 1, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1008, 160, 'DEVICE_EXTREME_SERIES', '连续极值异常', 'ALARM_TYPE', 2, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1009, 160, 'DEVICE_EXTREME_RATIO', '极值占比异常', 'ALARM_TYPE', 3, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1010, 161, '<', '<', 'OPERATORS', 1, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1011, 161, '>', '>', 'OPERATORS', 2, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1012, 161, '==', '==', 'OPERATORS', 3, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1013, 161, '!=', '!=', 'OPERATORS', 4, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1014, 161, '>=', '>=', 'OPERATORS', 5, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1015, 161, '<=', '<=', 'OPERATORS', 6, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1016, 162, 'minute', '分钟', 'TIME_UNIT', 1, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1017, 162, 'hour', '小时', 'TIME_UNIT', 2, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1018, 163, 'NORMAL', '一般', 'ALARM_LEVEL', 1, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1019, 163, 'WARN', '警告', 'ALARM_LEVEL', 2, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
INSERT INTO "public"."tbl_sys_dict_item" ("id", "dict_id", "item_value", "label", "dict_type", "sort_order", "remark", "create_time", "update_time", "del_flag", "del_key") VALUES (1020, 163, 'SERIOUS', '严重', 'ALARM_LEVEL', 3, NULL, '2023-12-07 17:39:32.462049', '2023-12-07 17:39:32.462049', 0, 0);
|
||||
@@ -0,0 +1,82 @@
|
||||
-- ----------------------------
|
||||
-- Sequence structure for tbl_region_id_seq
|
||||
-- ----------------------------
|
||||
DROP SEQUENCE IF EXISTS "public"."tbl_region_id_seq";
|
||||
CREATE SEQUENCE "public"."tbl_region_id_seq"
|
||||
INCREMENT 1
|
||||
MINVALUE 1
|
||||
MAXVALUE 9223372036854775807
|
||||
START 1
|
||||
CACHE 1;
|
||||
ALTER SEQUENCE "public"."tbl_region_id_seq" OWNER TO "postgres";
|
||||
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for tbl_region
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS "public"."tbl_region";
|
||||
CREATE TABLE "public"."tbl_region" (
|
||||
"id" int8 NOT NULL DEFAULT nextval('tbl_region_id_seq'::regclass),
|
||||
"create_by" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"create_time" timestamp(0),
|
||||
"delete_flag" bool,
|
||||
"update_by" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"update_time" timestamp(0),
|
||||
"create_by_name" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"update_by_name" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"ad_code" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"center" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"city_code" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"level" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"name" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"parent_id" int8,
|
||||
"path" varchar(255) COLLATE "pg_catalog"."default",
|
||||
"order_num" int2
|
||||
)
|
||||
;
|
||||
ALTER TABLE "public"."tbl_region" OWNER TO "postgres";
|
||||
COMMENT ON COLUMN "public"."tbl_region"."create_by" IS '创建者';
|
||||
COMMENT ON COLUMN "public"."tbl_region"."create_time" IS '创建时间';
|
||||
COMMENT ON COLUMN "public"."tbl_region"."delete_flag" IS '删除标志 true/false 删除/未删除';
|
||||
COMMENT ON COLUMN "public"."tbl_region"."update_by" IS '更新者';
|
||||
COMMENT ON COLUMN "public"."tbl_region"."update_time" IS '更新时间';
|
||||
COMMENT ON COLUMN "public"."tbl_region"."create_by_name" IS '创建用户姓名';
|
||||
COMMENT ON COLUMN "public"."tbl_region"."update_by_name" IS '修改用户姓名';
|
||||
COMMENT ON COLUMN "public"."tbl_region"."ad_code" IS '区域编码';
|
||||
COMMENT ON COLUMN "public"."tbl_region"."center" IS '区域中心点经纬度';
|
||||
COMMENT ON COLUMN "public"."tbl_region"."city_code" IS '城市代码';
|
||||
COMMENT ON COLUMN "public"."tbl_region"."level" IS '行政区划级别';
|
||||
COMMENT ON COLUMN "public"."tbl_region"."name" IS '名称';
|
||||
COMMENT ON COLUMN "public"."tbl_region"."parent_id" IS '父ID';
|
||||
COMMENT ON COLUMN "public"."tbl_region"."path" IS '行政地区路径';
|
||||
COMMENT ON COLUMN "public"."tbl_region"."order_num" IS '排序';
|
||||
|
||||
-- ----------------------------
|
||||
-- Alter sequences owned by
|
||||
-- ----------------------------
|
||||
ALTER SEQUENCE "public"."tbl_region_id_seq"
|
||||
OWNED BY "public"."tbl_region"."id";
|
||||
SELECT setval('"public"."tbl_region_id_seq"', 9826990706, false);
|
||||
|
||||
-- ----------------------------
|
||||
-- Indexes structure for table tbl_region
|
||||
-- ----------------------------
|
||||
CREATE INDEX "tbl_region_ad_code_idx" ON "public"."tbl_region" USING btree (
|
||||
"ad_code" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "tbl_region_city_code_idx" ON "public"."tbl_region" USING btree (
|
||||
"city_code" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "tbl_region_level_idx" ON "public"."tbl_region" USING btree (
|
||||
"level" COLLATE "pg_catalog"."default" "pg_catalog"."text_ops" ASC NULLS LAST
|
||||
);
|
||||
CREATE INDEX "tbl_region_parent_id_idx" ON "public"."tbl_region" USING btree (
|
||||
"parent_id" "pg_catalog"."int8_ops" ASC NULLS LAST
|
||||
);
|
||||
|
||||
-- ----------------------------
|
||||
-- Primary Key structure for table tbl_region
|
||||
-- ----------------------------
|
||||
ALTER TABLE "public"."tbl_region" ADD CONSTRAINT "tbl_region_pkey" PRIMARY KEY ("id");
|
||||
|
||||
SELECT setval('"public"."tbl_region_id_seq"', 9826990706, false);
|
||||
191
template/cvbp/cvbp-base/src/main/resources/logback-spring.xml
Normal file
@@ -0,0 +1,191 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- 日志级别从低到高分为TRACE < DEBUG < INFO < WARN < ERROR < FATAL,如果设置为WARN,则低于WARN的信息都不会输出 -->
|
||||
<!-- scan:当此属性设置为true时,配置文档如果发生改变,将会被重新加载,默认值为true -->
|
||||
<!-- scanPeriod:设置监测配置文档是否有修改的时间间隔,如果没有给出时间单位,默认单位是毫秒。
|
||||
当scan为true时,此属性生效。默认的时间间隔为1分钟。 -->
|
||||
<!-- debug:当此属性设置为true时,将打印出logback内部日志信息,实时查看logback运行状态。默认值为false。 -->
|
||||
<configuration scan="true" scanPeriod="10 seconds">
|
||||
<contextName>logback</contextName>
|
||||
|
||||
<!-- name的值是变量的名称,value的值时变量定义的值。通过定义的值会被插入到logger上下文中。定义后,可以使“${}”来使用变量。 -->
|
||||
<property name="log.path" value="logs/cvbp-base/" />
|
||||
|
||||
<!--0. 日志格式和颜色渲染 -->
|
||||
<!-- 彩色日志依赖的渲染类 -->
|
||||
<conversionRule conversionWord="clr" converterClass="org.springframework.boot.logging.logback.ColorConverter" />
|
||||
<conversionRule conversionWord="wex" converterClass="org.springframework.boot.logging.logback.WhitespaceThrowableProxyConverter" />
|
||||
<conversionRule conversionWord="wEx" converterClass="org.springframework.boot.logging.logback.ExtendedWhitespaceThrowableProxyConverter" />
|
||||
<!-- 彩色日志格式 -->
|
||||
<property name="CONSOLE_LOG_PATTERN" value="${CONSOLE_LOG_PATTERN:-%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint} %clr(${LOG_LEVEL_PATTERN:-%5p}) %clr(${PID:- }){magenta} %clr(---){faint} %clr([%15.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m%n${LOG_EXCEPTION_CONVERSION_WORD:-%wEx}}"/>
|
||||
|
||||
<!--1. 输出到控制台-->
|
||||
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
|
||||
<!--此日志appender是为开发使用,只配置最底级别,控制台输出的日志级别是大于或等于此级别的日志信息-->
|
||||
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
|
||||
<level>debug</level>
|
||||
</filter>
|
||||
<encoder>
|
||||
<Pattern>${CONSOLE_LOG_PATTERN}</Pattern>
|
||||
<!-- 设置字符集 -->
|
||||
<charset>UTF-8</charset>
|
||||
</encoder>
|
||||
</appender>
|
||||
|
||||
<!--2. 输出到文档-->
|
||||
<!-- 2.1 level为 DEBUG 日志,时间滚动输出 -->
|
||||
<appender name="DEBUG_FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||
<!-- 正在记录的日志文档的路径及文档名 -->
|
||||
<file>${log.path}/log_debug.log</file>
|
||||
<!--日志文档输出格式-->
|
||||
<encoder>
|
||||
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
|
||||
<charset>UTF-8</charset> <!-- 设置字符集 -->
|
||||
</encoder>
|
||||
<!-- 日志记录器的滚动策略,按日期,按大小记录 -->
|
||||
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
|
||||
<!-- 日志归档 -->
|
||||
<fileNamePattern>${log.path}/log-debug-%d{yyyy-MM-dd}.%i.log</fileNamePattern>
|
||||
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
|
||||
<maxFileSize>100MB</maxFileSize>
|
||||
</timeBasedFileNamingAndTriggeringPolicy>
|
||||
<!--日志文档保留天数-->
|
||||
<maxHistory>15</maxHistory>
|
||||
</rollingPolicy>
|
||||
<!-- 此日志文档只记录debug级别的 -->
|
||||
<filter class="ch.qos.logback.classic.filter.LevelFilter">
|
||||
<level>debug</level>
|
||||
<onMatch>ACCEPT</onMatch>
|
||||
<onMismatch>DENY</onMismatch>
|
||||
</filter>
|
||||
</appender>
|
||||
|
||||
<!-- 2.2 level为 INFO 日志,时间滚动输出 -->
|
||||
<appender name="INFO_FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||
<!-- 正在记录的日志文档的路径及文档名 -->
|
||||
<file>${log.path}/log_info.log</file>
|
||||
<!--日志文档输出格式-->
|
||||
<encoder>
|
||||
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
|
||||
<charset>UTF-8</charset>
|
||||
</encoder>
|
||||
<!-- 日志记录器的滚动策略,按日期,按大小记录 -->
|
||||
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
|
||||
<!-- 每天日志归档路径以及格式 -->
|
||||
<fileNamePattern>${log.path}/log-info-%d{yyyy-MM-dd}.%i.log</fileNamePattern>
|
||||
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
|
||||
<maxFileSize>100MB</maxFileSize>
|
||||
</timeBasedFileNamingAndTriggeringPolicy>
|
||||
<!--日志文档保留天数-->
|
||||
<maxHistory>15</maxHistory>
|
||||
</rollingPolicy>
|
||||
<!-- 此日志文档只记录info级别的 -->
|
||||
<filter class="ch.qos.logback.classic.filter.LevelFilter">
|
||||
<level>info</level>
|
||||
<onMatch>ACCEPT</onMatch>
|
||||
<onMismatch>DENY</onMismatch>
|
||||
</filter>
|
||||
</appender>
|
||||
|
||||
<!-- 2.3 level为 WARN 日志,时间滚动输出 -->
|
||||
<appender name="WARN_FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||
<!-- 正在记录的日志文档的路径及文档名 -->
|
||||
<file>${log.path}/log_warn.log</file>
|
||||
<!--日志文档输出格式-->
|
||||
<encoder>
|
||||
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
|
||||
<charset>UTF-8</charset> <!-- 此处设置字符集 -->
|
||||
</encoder>
|
||||
<!-- 日志记录器的滚动策略,按日期,按大小记录 -->
|
||||
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
|
||||
<fileNamePattern>${log.path}/log-warn-%d{yyyy-MM-dd}.%i.log</fileNamePattern>
|
||||
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
|
||||
<maxFileSize>100MB</maxFileSize>
|
||||
</timeBasedFileNamingAndTriggeringPolicy>
|
||||
<!--日志文档保留天数-->
|
||||
<maxHistory>15</maxHistory>
|
||||
</rollingPolicy>
|
||||
<!-- 此日志文档只记录warn级别的 -->
|
||||
<filter class="ch.qos.logback.classic.filter.LevelFilter">
|
||||
<level>warn</level>
|
||||
<onMatch>ACCEPT</onMatch>
|
||||
<onMismatch>DENY</onMismatch>
|
||||
</filter>
|
||||
</appender>
|
||||
|
||||
<!-- 2.4 level为 ERROR 日志,时间滚动输出 -->
|
||||
<appender name="ERROR_FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||
<!-- 正在记录的日志文档的路径及文档名 -->
|
||||
<file>${log.path}/log_error.log</file>
|
||||
<!--日志文档输出格式-->
|
||||
<encoder>
|
||||
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} - %msg%n</pattern>
|
||||
<charset>UTF-8</charset> <!-- 此处设置字符集 -->
|
||||
</encoder>
|
||||
<!-- 日志记录器的滚动策略,按日期,按大小记录 -->
|
||||
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
|
||||
<fileNamePattern>${log.path}/log-error-%d{yyyy-MM-dd}.%i.log</fileNamePattern>
|
||||
<timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
|
||||
<maxFileSize>100MB</maxFileSize>
|
||||
</timeBasedFileNamingAndTriggeringPolicy>
|
||||
<!--日志文档保留天数-->
|
||||
<maxHistory>15</maxHistory>
|
||||
</rollingPolicy>
|
||||
<!-- 此日志文档只记录ERROR级别的 -->
|
||||
<filter class="ch.qos.logback.classic.filter.LevelFilter">
|
||||
<level>ERROR</level>
|
||||
<onMatch>ACCEPT</onMatch>
|
||||
<onMismatch>DENY</onMismatch>
|
||||
</filter>
|
||||
</appender>
|
||||
|
||||
<!--
|
||||
<logger>用来设置某一个包或者具体的某一个类的日志打印级别、
|
||||
以及指定<appender>。<logger>仅有一个name属性,
|
||||
一个可选的level和一个可选的addtivity属性。
|
||||
name:用来指定受此logger约束的某一个包或者具体的某一个类。
|
||||
level:用来设置打印级别,大小写无关:TRACE, DEBUG, INFO, WARN, ERROR, ALL 和 OFF,
|
||||
还有一个特俗值INHERITED或者同义词NULL,代表强制执行上级的级别。
|
||||
如果未设置此属性,那么当前logger将会继承上级的级别。
|
||||
addtivity:是否向上级logger传递打印信息。默认是true。
|
||||
<logger name="org.springframework.web" level="info"/>
|
||||
<logger name="org.springframework.scheduling.annotation.ScheduledAnnotationBeanPostProcessor" level="INFO"/>
|
||||
-->
|
||||
|
||||
<!--
|
||||
使用mybatis的时候,sql语句是debug下才会打印,而这里我们只配置了info,所以想要查看sql语句的话,有以下两种操作:
|
||||
第一种把<root level="info">改成<root level="DEBUG">这样就会打印sql,不过这样日志那边会出现很多其他消息
|
||||
第二种就是单独给dao下目录配置debug模式,代码如下,这样配置sql语句会打印,其他还是正常info级别:
|
||||
【logging.level.org.mybatis=debug logging.level.dao=debug】
|
||||
-->
|
||||
|
||||
<!--
|
||||
root节点是必选节点,用来指定最基础的日志输出级别,只有一个level属性
|
||||
level:用来设置打印级别,大小写无关:TRACE, DEBUG, INFO, WARN, ERROR, ALL 和 OFF,
|
||||
不能设置为INHERITED或者同义词NULL。默认是DEBUG
|
||||
可以包含零个或多个元素,标识这个appender将会添加到这个logger。
|
||||
-->
|
||||
|
||||
<!-- 4. 最终的策略 -->
|
||||
<!-- 4.1 开发环境:打印控制台-->
|
||||
<logger name="com.codvision" level="debug"/>
|
||||
|
||||
<root level="debug">
|
||||
<appender-ref ref="CONSOLE" />
|
||||
<appender-ref ref="DEBUG_FILE" />
|
||||
<appender-ref ref="INFO_FILE" />
|
||||
<appender-ref ref="WARN_FILE" />
|
||||
<appender-ref ref="ERROR_FILE" />
|
||||
</root>
|
||||
|
||||
<!-- 4.2 生产环境:输出到文档
|
||||
<springProfile name="prd">
|
||||
<root level="info">
|
||||
<appender-ref ref="CONSOLE" />
|
||||
<appender-ref ref="DEBUG_FILE" />
|
||||
<appender-ref ref="INFO_FILE" />
|
||||
<appender-ref ref="ERROR_FILE" />
|
||||
<appender-ref ref="WARN_FILE" />
|
||||
</root>
|
||||
</springProfile> -->
|
||||
|
||||
</configuration>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.codvision.base.mapper.GeneratorConfigMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.codvision.base.entity.GeneratorConfig">
|
||||
<id column="id" property="id" />
|
||||
<result column="author" property="author" />
|
||||
<result column="package_name" property="packageName" />
|
||||
<result column="table_prefix_name" property="tablePrefixName" />
|
||||
<result column="tables" property="tables" />
|
||||
<result column="super_entity" property="superEntity" />
|
||||
</resultMap>
|
||||
|
||||
</mapper>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.codvision.base.mapper.LocalIconLibraryMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.codvision.base.entity.LocalIconLibrary">
|
||||
<result column="id" property="id" />
|
||||
<result column="type" property="type" />
|
||||
<result column="icon_name" property="iconName" />
|
||||
<result column="icon_url" property="iconUrl" />
|
||||
<result column="remark" property="remark" />
|
||||
<result column="create_time" property="createTime" />
|
||||
<result column="update_time" property="updateTime" />
|
||||
</resultMap>
|
||||
|
||||
</mapper>
|
||||
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.codvision.base.mapper.QuartzJobMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.codvision.base.entity.QuartzJob">
|
||||
<id column="sched_name" property="schedName" />
|
||||
<id column="job_name" property="jobName" />
|
||||
<id column="job_group" property="jobGroup" />
|
||||
<result column="description" property="description" />
|
||||
<result column="job_class_name" property="jobClassName" />
|
||||
<result column="is_durable" property="isDurable" />
|
||||
<result column="is_nonconcurrent" property="isNonconcurrent" />
|
||||
<result column="is_update_data" property="isUpdateData" />
|
||||
<result column="requests_recovery" property="requestsRecovery" />
|
||||
<result column="job_data" property="jobData" />
|
||||
</resultMap>
|
||||
|
||||
|
||||
<select id="getQuartzJobList" resultType="com.codvision.base.entity.QuartzJob">
|
||||
select
|
||||
job.JOB_NAME as jobName,
|
||||
job.JOB_GROUP as jobGroup,
|
||||
job.DESCRIPTION as description,
|
||||
job.JOB_CLASS_NAME as jobClassName,
|
||||
cron.CRON_EXPRESSION as cronExpression,
|
||||
tri.TRIGGER_NAME as triggerName,
|
||||
tri.TRIGGER_STATE as triggerState,
|
||||
job.JOB_NAME as oldJobName,
|
||||
job.JOB_GROUP as oldJobGroup
|
||||
from qrtz_job_details AS job
|
||||
left join qrtz_triggers AS tri ON job.JOB_NAME = tri.JOB_NAME AND job.JOB_GROUP = tri.JOB_GROUP
|
||||
left join qrtz_cron_triggers AS cron ON cron.TRIGGER_NAME = tri.TRIGGER_NAME AND cron.TRIGGER_GROUP= tri.JOB_GROUP
|
||||
where tri.TRIGGER_TYPE = 'CRON'
|
||||
<if test="jobName != null and jobName != ''">
|
||||
and job.JOB_NAME like '%'||#{jobName}||'%'
|
||||
</if>
|
||||
<if test="jobGroup != null and jobGroup != ''">
|
||||
and job.JOB_GROUP like #{jobGroup} || '%'
|
||||
</if>
|
||||
</select>
|
||||
</mapper>
|
||||
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.codvision.base.mapper.RegionMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.codvision.base.entity.Region">
|
||||
<result column="id" property="id"/>
|
||||
<result column="create_by" property="createBy"/>
|
||||
<result column="create_time" property="createTime"/>
|
||||
<result column="delete_flag" property="deleteFlag"/>
|
||||
<result column="update_by" property="updateBy"/>
|
||||
<result column="update_time" property="updateTime"/>
|
||||
<result column="create_by_name" property="createByName"/>
|
||||
<result column="update_by_name" property="updateByName"/>
|
||||
<result column="ad_code" property="adCode"/>
|
||||
<result column="center" property="center"/>
|
||||
<result column="city_code" property="cityCode"/>
|
||||
<result column="level" property="level"/>
|
||||
<result column="name" property="name"/>
|
||||
<result column="parent_id" property="parentId"/>
|
||||
<result column="path" property="path"/>
|
||||
<result column="order_num" property="orderNum"/>
|
||||
</resultMap>
|
||||
|
||||
</mapper>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.codvision.base.mapper.SysConfigMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.codvision.base.entity.SysConfig">
|
||||
<result column="id" property="id" />
|
||||
<result column="k" property="k" />
|
||||
<result column="v" property="v" />
|
||||
<result column="create_time" property="createTime" />
|
||||
<result column="update_time" property="updateTime" />
|
||||
<result column="name" property="name" />
|
||||
<result column="large_category" property="largeCategory" />
|
||||
<result column="subclass" property="subclass" />
|
||||
<result column="orderby" property="orderby" />
|
||||
</resultMap>
|
||||
|
||||
</mapper>
|
||||
@@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.codvision.base.mapper.SysNoticeMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.codvision.base.entity.SysNotice">
|
||||
<id column="id" property="id" />
|
||||
<result column="title" property="title" />
|
||||
<result column="content" property="content" />
|
||||
<result column="tag_id" property="tagId" />
|
||||
<result column="remark" property="remark" />
|
||||
<result column="create_by" property="createBy" />
|
||||
<result column="create_time" property="createTime" />
|
||||
<result column="status" property="status" />
|
||||
<result column="scope" property="scope" />
|
||||
<result column="type" property="type" />
|
||||
<result column="pic" property="pic" />
|
||||
<result column="create_uid" property="createUid" />
|
||||
</resultMap>
|
||||
|
||||
<select id="getSysNoticeList" resultType="com.codvision.base.entity.vo.SysNoticeVO">
|
||||
select
|
||||
a.*,
|
||||
b.tag_name AS tagName
|
||||
from
|
||||
tbl_sys_notice a
|
||||
left join tbl_sys_tag b on a.tag_id = b.id
|
||||
<where>
|
||||
<if test="sysNotice != null">
|
||||
<if test="sysNotice.title != null and sysNotice.title != ''">
|
||||
(a.title LIKE '%' || #{sysNotice.title} || '%' )
|
||||
</if>
|
||||
<if test="sysNotice.type != null and sysNotice.type != ''">
|
||||
AND a.type = #{sysNotice.type}
|
||||
</if>
|
||||
<if test="sysNotice.createUid != null">
|
||||
AND a.create_uid = #{sysNotice.createUid}
|
||||
</if>
|
||||
</if>
|
||||
</where>
|
||||
order by a.create_time desc
|
||||
</select>
|
||||
|
||||
<select id="getListByUidAndType" resultType="com.codvision.base.entity.vo.SysNoticeVO">
|
||||
SELECT
|
||||
n.*, nm.status readStatus,
|
||||
t.tag_name
|
||||
FROM tbl_sys_notice n
|
||||
INNER JOIN tbl_sys_notice_user_mapper nm ON nm.notice_id = n.id
|
||||
LEFT JOIN tbl_sys_tag t on n.tag_id = t.id
|
||||
WHERE nm.flag_del = 0 AND nm.user_id = #{uid} AND n.type = #{type}
|
||||
ORDER BY n.create_time desc
|
||||
</select>
|
||||
|
||||
<select id="flagUnReadNotice" resultType="java.lang.Boolean">
|
||||
SELECT EXISTS(SELECT * FROM tbl_sys_notice_user_mapper WHERE user_id = #{uid} AND status = 0 AND flag_del = 0)
|
||||
</select>
|
||||
</mapper>
|
||||
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.codvision.base.mapper.SysNoticeUserMapperMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.codvision.base.entity.SysNoticeUserMapper">
|
||||
<id column="notice_id" property="noticeId" />
|
||||
<id column="user_id" property="userId" />
|
||||
<result column="create_time" property="createTime" />
|
||||
<result column="status" property="status" />
|
||||
<result column="flag_del" property="flagDel" />
|
||||
</resultMap>
|
||||
|
||||
<insert id="addNoticeUserMapper">
|
||||
insert into tbl_sys_notice_user_mapper(notice_id,user_id) values (#{id},#{uid}) on conflict(notice_id,user_id) do nothing
|
||||
</insert>
|
||||
|
||||
<select id="getDetail" resultType="com.codvision.base.entity.vo.SysNoticeVO">
|
||||
select
|
||||
a.*,b.tag_name AS tagName
|
||||
from tbl_sys_notice a left join tbl_sys_tag b on a.tag_id = b.id where a.id = #{id}
|
||||
</select>
|
||||
|
||||
<update id="markAllRead">
|
||||
UPDATE tbl_sys_notice_user_mapper SET status = 1
|
||||
WHERE flag_del = 0
|
||||
AND status = 0
|
||||
AND user_id = #{uid}
|
||||
AND notice_id in (SELECT id FROM tbl_sys_notice WHERE status = 1 AND type = #{type})
|
||||
</update>
|
||||
</mapper>
|
||||
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.codvision.base.mapper.SysTagMapper">
|
||||
|
||||
<!-- 通用查询映射结果 -->
|
||||
<resultMap id="BaseResultMap" type="com.codvision.base.entity.SysTag">
|
||||
<result column="id" property="id" />
|
||||
<result column="tag_name" property="tagName" />
|
||||
<result column="dict_item_value" property="dictItemValue" />
|
||||
<result column="sort" property="sort" />
|
||||
<result column="del_flag" property="delFlag" />
|
||||
<result column="create_time" property="createTime" />
|
||||
<result column="update_time" property="updateTime" />
|
||||
<result column="del_key" property="delKey" />
|
||||
<result column="tag_description" property="tagDescription" />
|
||||
<result column="parent_id" property="parentId" />
|
||||
<result column="level" property="level" />
|
||||
<result column="path" property="path" />
|
||||
<result column="id_path" property="idPath" />
|
||||
<result column="color" property="color" />
|
||||
</resultMap>
|
||||
<select id="getTagByIds" resultType="com.codvision.base.entity.SysTag">
|
||||
SELECT * FROM tbl_sys_tag WHERE id = any(regexp_split_to_array(NULLIF(#{tagIds},''),',')::int[])
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
42
template/cvbp/cvbp-base/src/main/resources/quartz.properties
Normal file
@@ -0,0 +1,42 @@
|
||||
#
|
||||
# Copyright (c) 2023 codvision.com All Rights Reserved.
|
||||
#
|
||||
|
||||
# ???
|
||||
org.quartz.scheduler.instanceName=MyScheduler
|
||||
org.quartz.scheduler.skipUpdateCheck=true
|
||||
# ThreadPool??
|
||||
org.quartz.threadPool.class=org.quartz.simpl.SimpleThreadPool
|
||||
#???25?????????????26????????
|
||||
org.quartz.threadPool.threadCount=25
|
||||
org.quartz.threadPool.threadPriority=5
|
||||
# JobStoreTx??
|
||||
#??????????????? ?? ?????????? = ????,???? ?? 60s?? ???????????
|
||||
#????????????????
|
||||
org.quartz.jobStore.misfireThreshold=6000
|
||||
|
||||
#??????JobStoreTX???????
|
||||
# SpringBoot 2.5.6???????org.quartz.jobStore.class=org.quartz.impl.jdbcjobstore.JobStoreTX?2.5.6???SpringBoot??????????org.springframework.scheduling.quartz.LocalDataSourceJobStore
|
||||
org.quartz.jobStore.class=org.springframework.scheduling.quartz.LocalDataSourceJobStore
|
||||
org.quartz.jobStore.driverDelegateClass=org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
|
||||
#??JDBCJobStore?JobDataMaps???????????????????????key-value????????BLOB????????????????
|
||||
org.quartz.jobStore.useProperties=false
|
||||
|
||||
|
||||
#????quartz??????
|
||||
org.quartz.jobStore.tablePrefix=qrtz_
|
||||
#??????????????? ???????????
|
||||
org.quartz.jobStore.isClustered=false
|
||||
|
||||
# ???????????QuartzConfig?????dynamic-datasource??SpringBoot???????
|
||||
|
||||
# org.quartz.jobStore.dataSource=myDS
|
||||
# ?????(Quartz???c3p0???)
|
||||
#org.quartz.dataSource.myDS.provider=hikaricp
|
||||
#org.quartz.dataSource.myDS.driver=org.postgresql.Driver
|
||||
#org.quartz.dataSource.myDS.URL=jdbc:postgresql://127.0.0.1:5432/boot?useUnicode=true&characterEncoding=utf8&autoReconnect=true&stringtype=unspecified
|
||||
#org.quartz.dataSource.myDS.user=postgres
|
||||
##org.quartz.dataSource.myDS.password=Codvision@2022
|
||||
#org.quartz.dataSource.myDS.password=Codvision@2020
|
||||
# ?????
|
||||
#org.quartz.dataSource.myDS.maxConnections=50
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"code": 1,
|
||||
"msg": "服务端清理缓存成功"
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"homeInfo": {
|
||||
"title": "首页",
|
||||
"href": "page/home.html?t=1"
|
||||
},
|
||||
"logoInfo": {
|
||||
"title": "基础平台",
|
||||
"image": "images/logo.png",
|
||||
"href": ""
|
||||
},
|
||||
"menuInfo": [
|
||||
{
|
||||
"title": "生成代码",
|
||||
"href": "page/generate/list.html",
|
||||
"icon": "fa fa-tachometer",
|
||||
"target": "_self"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,927 @@
|
||||
/**
|
||||
配色方案(如有需要,请自行配置)
|
||||
*/
|
||||
/**头部-配色*/
|
||||
.layui-layout-admin .layui-header {
|
||||
background-color: #1aa094 !important;
|
||||
}
|
||||
|
||||
.layui-header > ul > .layui-nav-item.layui-this, .layuimini-tool i:hover {
|
||||
background-color: #197971 !important;
|
||||
}
|
||||
|
||||
.layui-header .layuimini-header-content > ul > .layui-nav-item.layui-this, .layuimini-tool i:hover {
|
||||
background-color: #197971 !important;
|
||||
}
|
||||
|
||||
/**logo-配色*/
|
||||
.layui-layout-admin .layuimini-logo {
|
||||
background-color: #243346 !important;
|
||||
}
|
||||
|
||||
/**左侧-配色*/
|
||||
.layui-side.layui-bg-black, .layui-side.layui-bg-black > .layuimini-menu-left > ul {
|
||||
background-color: #2f4056 !important;
|
||||
}
|
||||
|
||||
.layuimini-menu-left .layui-nav .layui-nav-child a:hover:not(.layui-this) {
|
||||
background-color: #3b3f4b;
|
||||
}
|
||||
|
||||
/**左侧菜单选中-配色*/
|
||||
.layui-layout-admin .layui-nav-tree .layui-this, .layui-layout-admin .layui-nav-tree .layui-this > a, .layui-layout-admin .layui-nav-tree .layui-nav-child dd.layui-this, .layui-layout-admin .layui-nav-tree .layui-nav-child dd.layui-this a {
|
||||
background-color: #1aa094 !important;
|
||||
}
|
||||
|
||||
|
||||
/**头部样式 */
|
||||
.layui-layout-admin .header {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.layuimini-header-menu, .layui-header {
|
||||
height: 60px !important;
|
||||
}
|
||||
|
||||
.layuimini-header-menu > .layui-nav-item {
|
||||
color: #1b1d21;
|
||||
height: 60px !important;
|
||||
line-height: 60px !important;
|
||||
}
|
||||
|
||||
.layui-header > .layui-layout-right > .layui-nav-item {
|
||||
height: 60px !important;
|
||||
line-height: 60px !important;
|
||||
}
|
||||
|
||||
.layui-layout-left {
|
||||
left: 295px !important;
|
||||
}
|
||||
|
||||
.layui-nav.layui-layout-left.layuimini-header-menu.layuimini-pc-show {
|
||||
font-weight: bold;
|
||||
transition: all .2s;
|
||||
}
|
||||
|
||||
|
||||
/**logo演示(通用) */
|
||||
.layui-layout-admin .layuimini-logo {
|
||||
font-weight: bold;
|
||||
color: #ffffff !important;
|
||||
height: 60px !important;
|
||||
line-height: 60px !important;
|
||||
overflow: hidden;
|
||||
line-height: 64px;
|
||||
transition: all .2s !important;
|
||||
}
|
||||
|
||||
.layui-layout-admin .layuimini-logo img {
|
||||
display: inline-block;
|
||||
height: 40px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.layui-layout-admin .layuimini-logo h1 {
|
||||
display: inline-block;
|
||||
margin: 0 0 0 12px;
|
||||
color: #ffffff;
|
||||
font-weight: 600;
|
||||
font-size: 20px;
|
||||
font-family: Avenir, Helvetica Neue, Arial, Helvetica, sans-serif;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/**缩放工具(通用) */
|
||||
.layuimini-tool {
|
||||
position: absolute !important;
|
||||
top: 0;
|
||||
left: 235px;
|
||||
width: 60px;
|
||||
height: 100%;
|
||||
line-height: 60px;
|
||||
text-align: center;
|
||||
color: #ffffff !important;
|
||||
transition: all .2s;
|
||||
}
|
||||
|
||||
/**缩放工具(缩放) */
|
||||
.layuimini-tool i {
|
||||
display: block;
|
||||
color: #bbe3df;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
border-radius: 3px;
|
||||
text-align: center;
|
||||
margin-top: 15px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/**tab选项卡 */
|
||||
.layuimini-tab {
|
||||
margin: 0px;
|
||||
overflow: hidden;
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-content {
|
||||
height: calc(100% - 37px) !important;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-content .layui-tab-item {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-content {
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-title {
|
||||
border: none;
|
||||
border: 1px solid whitesmoke;
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-title li {
|
||||
border-right: 1px solid whitesmoke;
|
||||
color: dimgray;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-title .layui-tab-bar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-title .layui-this:after {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-title .layuimini-tab-active {
|
||||
display: inline-block;
|
||||
background-color: lightgray;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
border-radius: 30px;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-title .layui-this .layuimini-tab-active {
|
||||
background-color: #1aa094;
|
||||
}
|
||||
|
||||
.layuimini-tab > .layui-tab-title, .layuimini-tab > .close-box {
|
||||
height: 35px !important;
|
||||
}
|
||||
|
||||
.layuimini-tab > .layui-tab-title li, .layuimini-tab > .close-box li {
|
||||
line-height: 35px !important;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-title span {
|
||||
color: #acafb1;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-title .layui-this span {
|
||||
color: dimgray;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-title .layui-tab-close {
|
||||
font-size: 12px !important;
|
||||
width: 14px !important;
|
||||
height: 14px !important;
|
||||
line-height: 16px !important;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-title .layui-tab-close:hover {
|
||||
border-radius: 4em;
|
||||
background: #ff5722;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-title .disable-close + .layui-tab-close {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-title .able-close + .layui-tab-close {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-control > li {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
height: 35px;
|
||||
line-height: 35px;
|
||||
width: 35px;
|
||||
text-align: center;
|
||||
background-color: white;
|
||||
border-top: whitesmoke 1px solid;
|
||||
border-bottom: whitesmoke 1px solid;
|
||||
}
|
||||
|
||||
.layuimini-tab .layuimini-tab-roll-left {
|
||||
left: 0px;
|
||||
border-right: whitesmoke 1px solid;
|
||||
border-left: whitesmoke 1px solid;
|
||||
}
|
||||
|
||||
.layuimini-tab .layuimini-tab-roll-right {
|
||||
right: 35px;
|
||||
border-left: 1px solid whitesmoke;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-tool {
|
||||
right: 0px;
|
||||
border-left: 1px solid whitesmoke;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-control .layui-tab-tool,
|
||||
.layuimini-tab .layui-tab-control .layuimini-tab-roll-left,
|
||||
.layuimini-tab .layui-tab-control .layuimini-tab-roll-right {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.layuimini-tab.layui-tab-roll .layui-tab-control .layuimini-tab-roll-left,
|
||||
.layuimini-tab.layui-tab-roll .layui-tab-control .layuimini-tab-roll-right {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.layuimini-tab.layui-tab-roll .layui-tab-control .layuimini-tab-roll-right {
|
||||
right: 0px;
|
||||
border-right: 1px solid whitesmoke;
|
||||
}
|
||||
|
||||
.layuimini-tab.layui-tab-roll .layui-tab-title {
|
||||
padding-left: 35px;
|
||||
padding-right: 35px;
|
||||
}
|
||||
|
||||
|
||||
.layuimini-tab.layui-tab-tool .layui-tab-control .layui-tab-tool {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.layuimini-tab.layui-tab-tool .layui-tab-title {
|
||||
padding-left: 0px;
|
||||
padding-right: 35px;
|
||||
}
|
||||
|
||||
|
||||
.layuimini-tab.layui-tab-rollTool .layui-tab-title {
|
||||
padding-left: 35px;
|
||||
padding-right: 80px;
|
||||
}
|
||||
|
||||
.layuimini-tab.layui-tab-rollTool .layui-tab-control .layuimini-tab-roll-left,
|
||||
.layuimini-tab.layui-tab-rollTool .layui-tab-control .layuimini-tab-roll-right,
|
||||
.layuimini-tab.layui-tab-rollTool .layui-tab-control .layui-tab-tool {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-tool .layui-nav {
|
||||
position: absolute;
|
||||
height: 43px !important;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
background: 0 0;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-tool .layui-nav-item {
|
||||
height: 35px;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-tool .layui-nav-bar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-tool .layui-nav-child {
|
||||
left: auto;
|
||||
top: 45px;
|
||||
right: 3px;
|
||||
width: 120px;
|
||||
border: 1px solid whitesmoke;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-tool .layui-this a {
|
||||
background-color: #009688;
|
||||
}
|
||||
|
||||
.layuimini-tab-loading {
|
||||
position: absolute;
|
||||
display: none;
|
||||
width: 100%;
|
||||
height: calc(100% - 37px);
|
||||
top: 37px;
|
||||
z-index: 19;
|
||||
background-color: #fff
|
||||
}
|
||||
|
||||
.layuimini-tab-loading.close {
|
||||
animation: close 1s;
|
||||
-webkit-animation: close 1s;
|
||||
animation-fill-mode: forwards;
|
||||
}
|
||||
|
||||
/**左侧菜单栏 (通用) */
|
||||
.layui-side.layui-bg-black {
|
||||
transition: all .2s;
|
||||
}
|
||||
|
||||
.layui-side.layui-bg-black > .layuimini-menu-left > ul {
|
||||
transition: all .2s;
|
||||
}
|
||||
|
||||
.layui-side.layui-bg-black > .layuimini-menu-left > ul > .layui-nav-item:first-child {
|
||||
border-top: 1px solid #4b5461;
|
||||
}
|
||||
|
||||
.layuimini-menu-left .layui-nav .layui-nav-item a {
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
padding-right: 30px;
|
||||
}
|
||||
|
||||
.layuimini-menu-left .layui-nav .layui-nav-item > a {
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.layuimini-menu-left .layui-nav .layui-nav-child .layui-nav-child {
|
||||
background: 0 0 !important
|
||||
}
|
||||
|
||||
.layuimini-menu-left .layui-nav .layui-nav-more {
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
.layuimini-menu-left .layui-nav .layui-nav-item a:hover {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
.layuimini-menu-left .layui-nav {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
|
||||
/**左侧菜单栏 (正常) */
|
||||
.layui-layout-body .layui-nav-itemed .layui-nav-child a, .layui-layout-body .layuimini-menu-left .layui-nav .layui-nav-child a {
|
||||
padding-left: 35px;
|
||||
}
|
||||
|
||||
.layui-layout-body .layuimini-menu-left .layui-nav .layui-nav-child .layui-nav-child a {
|
||||
padding-left: 45px;
|
||||
}
|
||||
|
||||
.layui-layout-body .layuimini-menu-left .layui-nav .layui-nav-child .layui-nav-child .layui-nav-child a {
|
||||
padding-left: 55px;
|
||||
}
|
||||
|
||||
.layui-layout-body .layuimini-menu-left .layui-nav .layui-nav-child .layui-nav-child .layui-nav-child .layui-nav-child a {
|
||||
padding-left: 65px;
|
||||
}
|
||||
|
||||
.layui-layout-body .layuimini-menu-left .layui-nav .layui-nav-itemed > .layui-nav-child {
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
/**内容主体(通用) */
|
||||
.layui-layout-admin .layui-body {
|
||||
overflow: hidden;
|
||||
bottom: 0px !important;
|
||||
top: 60px !important;
|
||||
transition: all .2s;
|
||||
}
|
||||
|
||||
/**选择配色方案 */
|
||||
.layuimini-color .color-title {
|
||||
padding: 10px 0 10px 20px;
|
||||
border-bottom: 1px solid #d9dada;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.layuimini-color .color-content {
|
||||
padding: 10px 5px 0 5px;
|
||||
}
|
||||
|
||||
.layuimini-color .color-content ul {
|
||||
list-style: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.layuimini-color .color-content ul li {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
width: 80px;
|
||||
height: 50px;
|
||||
margin: 0 15px 15px 0;
|
||||
padding: 2px 2px 4px 2px;
|
||||
background-color: #f2f2f2;
|
||||
cursor: pointer;
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.layuimini-color .color-content li.layui-this:after, .layuimini-color .color-content li:hover:after {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 4px;
|
||||
top: -5px;
|
||||
left: -5px;
|
||||
border-color: #d8d8d8;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.layuimini-color .color-content li:after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
z-index: 20;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 1px;
|
||||
height: 0;
|
||||
border: 1px solid #f2f2f2;
|
||||
transition: all .3s;
|
||||
-webkit-transition: all .3s;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
|
||||
/**其它 */
|
||||
.layui-tab-item {
|
||||
width: 100% !important;
|
||||
height: 100% !important;
|
||||
}
|
||||
|
||||
.layui-nav-item.layui-this {
|
||||
background-color: #1b1d21;
|
||||
}
|
||||
|
||||
.layui-width-height {
|
||||
width: 100%;
|
||||
height: 95%;
|
||||
}
|
||||
|
||||
.layui-tab {
|
||||
margin: 0 0 0 0;
|
||||
z-index: 99999;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
height: 30px !important;
|
||||
line-height: 30px !important;
|
||||
text-align: center !important;
|
||||
}
|
||||
|
||||
.layui-nav {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.layui-nav .layui-this:after, .layui-nav-bar, .layui-nav-tree .layui-nav-itemed:after {
|
||||
width: 0 !important;
|
||||
height: 0 !important;
|
||||
}
|
||||
|
||||
.layui-layout-admin .layui-side {
|
||||
top: 60px !important;
|
||||
}
|
||||
|
||||
.layui-tab-card {
|
||||
box-shadow: 0px 0px 0px #888888;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
/**自定义滚动条样式 */
|
||||
::-webkit-scrollbar {
|
||||
display: none
|
||||
}
|
||||
|
||||
|
||||
/*移动端遮罩层*/
|
||||
.layuimini-make {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
top: 0;
|
||||
z-index: 1000;
|
||||
background: rgba(0, 0, 0, .5);
|
||||
display: none;
|
||||
}
|
||||
|
||||
.layuimini-mini .layui-header {
|
||||
z-index: 1001;
|
||||
}
|
||||
|
||||
/**初始化加载层*/
|
||||
.layuimini-loader {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #ffffff;
|
||||
z-index: 999999;
|
||||
}
|
||||
|
||||
.layuimini-loader .layuimini-loader-inner {
|
||||
display: block;
|
||||
position: relative;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
margin: -75px 0 0 -75px;
|
||||
border-radius: 50%;
|
||||
border: 3px solid transparent;
|
||||
border-top-color: #1E9FFF;
|
||||
animation: spin 2s linear infinite;
|
||||
}
|
||||
|
||||
.layuimini-loader .layuimini-loader-inner:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
left: 5px;
|
||||
right: 5px;
|
||||
bottom: 5px;
|
||||
border-radius: 50%;
|
||||
border: 3px solid transparent;
|
||||
border-top-color: #1E9FFF;
|
||||
animation: spin 3s linear infinite;
|
||||
}
|
||||
|
||||
.layuimini-loader .layuimini-loader-inner:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
left: 15px;
|
||||
right: 15px;
|
||||
bottom: 15px;
|
||||
border-radius: 50%;
|
||||
border: 3px solid transparent;
|
||||
border-top-color: #1E9FFF;
|
||||
animation: spin 1.5s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
to {
|
||||
transform: rotate(1turn);
|
||||
}
|
||||
}
|
||||
|
||||
/*系统设置*/
|
||||
|
||||
.layuimini-color .layui-word-aux {
|
||||
position: absolute;
|
||||
left: 60px;
|
||||
top: 12px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.layuimini-color .layui-input-block {
|
||||
margin-left: 15px;
|
||||
min-height: 36px;
|
||||
}
|
||||
|
||||
.layuimini-color .more-menu-list {
|
||||
width: 100%;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
|
||||
.layuimini-color .more-menu-item:first-child {
|
||||
border-top: 1px solid #e8e8e8;
|
||||
}
|
||||
|
||||
.layuimini-color .more-menu-item .layui-icon {
|
||||
font-size: 18px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.layuimini-color .more-menu-item {
|
||||
color: #595959;
|
||||
height: 50px;
|
||||
line-height: 50px;
|
||||
font-size: 16px;
|
||||
padding: 0 25px;
|
||||
border-bottom: 1px solid #e8e8e8;
|
||||
font-style: normal;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.layuimini-color .more-menu-item:hover {
|
||||
background-color: whitesmoke;
|
||||
}
|
||||
|
||||
.layuimini-color .more-menu-item:after {
|
||||
color: #8c8c8c;
|
||||
right: 16px;
|
||||
content: "\e602";
|
||||
position: absolute;
|
||||
font-family: layui-icon !important;
|
||||
}
|
||||
|
||||
/**
|
||||
鼠标右键
|
||||
*/
|
||||
.layuimini-tab-mousedown {
|
||||
display: none;
|
||||
width: 80px;
|
||||
position: absolute;
|
||||
top: 0px !important;
|
||||
left: 0px !important;
|
||||
}
|
||||
|
||||
.layuimini-tab-mousedown dd a {
|
||||
padding: 0 15px;
|
||||
color: #484545;
|
||||
}
|
||||
|
||||
.layuimini-tab-make{
|
||||
position: absolute;
|
||||
top: 36px;
|
||||
bottom: 0px;
|
||||
width: 100%;
|
||||
background: rgb(255, 255, 255,0);
|
||||
padding: 0px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/**
|
||||
菜单缩放
|
||||
*/
|
||||
.popup-tips .layui-layer-TipsG{
|
||||
display: none;
|
||||
}
|
||||
.popup-tips.layui-layer-tips .layui-layer-content{
|
||||
padding: 0;
|
||||
}
|
||||
.popup-tips .layui-nav-tree{
|
||||
width: 150px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
/**左侧菜单字体间距*/
|
||||
.layuimini-menu-left .layui-nav-item a span {
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
/**头部菜单字体间距*/
|
||||
.layui-layout-admin .layui-header .layuimini-header-menu.layuimini-pc-show,.layui-layout-admin .layui-header .layuimini-header-menu.layuimini-mobile-show {
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
|
||||
/**左侧菜单更多下拉样式*/
|
||||
.layuimini-menu-left .layui-nav-more,.layuimini-menu-left-zoom .layui-nav-more {
|
||||
font-family: layui-icon !important;
|
||||
font-size: 12px;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
overflow: hidden;
|
||||
width: auto;
|
||||
height: auto;
|
||||
line-height: normal;
|
||||
border: none;
|
||||
display: inline-block;
|
||||
margin-top: -6px !important;
|
||||
}
|
||||
|
||||
.layuimini-menu-left .layui-nav-child .layui-nav-more {
|
||||
margin-top: -6px !important;
|
||||
}
|
||||
|
||||
.layuimini-menu-left .layui-nav .layui-nav-mored,.layuimini-menu-left .layui-nav-itemed>a .layui-nav-more{
|
||||
margin-top: -9px!important;
|
||||
}
|
||||
|
||||
.layuimini-menu-left-zoom.layui-nav .layui-nav-mored,.layuimini-menu-left-zoom.layui-nav-itemed>a .layui-nav-more{
|
||||
margin-top: -9px!important;
|
||||
}
|
||||
|
||||
.layuimini-menu-left .layui-nav-more:before,.layuimini-menu-left-zoom .layui-nav-more:before {
|
||||
content: "\e61a";
|
||||
}
|
||||
.layuimini-menu-left .layui-nav-itemed > a > .layui-nav-more,.layuimini-menu-left-zoom .layui-nav-itemed > a > .layui-nav-more {
|
||||
transform: rotate(180deg);
|
||||
-ms-transform: rotate(180deg);
|
||||
-moz-transform: rotate(180deg);
|
||||
-webkit-transform: rotate(180deg);
|
||||
-o-transform: rotate(180deg);
|
||||
width: 12px;
|
||||
text-align: center;
|
||||
border-style:none;
|
||||
}
|
||||
|
||||
.layuimini-menu-left .layui-nav-itemed > a > .layui-nav-more:before,.layuimini-menu-left-zoom .layui-nav-itemed > a > .layui-nav-more:before {
|
||||
content: '\e61a';
|
||||
background-color: transparent;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/**修复左侧菜单字体不对齐的问题*/
|
||||
.layuimini-menu-left .layui-nav-item a .fa,.layuimini-menu-left .layui-nav-item a .layui-icon{
|
||||
width: 20px;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
PC版样式
|
||||
*/
|
||||
@media screen and (min-width: 1025px) {
|
||||
/**头部样式(缩放) */
|
||||
.layuimini-mini .layui-layout-left.layuimini-header-menu.layuimini-pc-show {
|
||||
left: 155px !important;
|
||||
}
|
||||
|
||||
/**logo演示(缩放) */
|
||||
.layuimini-mini .layui-layout-admin .layuimini-logo {
|
||||
width: 60px !important;
|
||||
}
|
||||
|
||||
.layuimini-mini .layui-layout-admin .layuimini-logo h1 {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**左侧菜单栏(缩放) */
|
||||
.layuimini-mini .layuimini-menu-left {
|
||||
width: 80px !important;
|
||||
}
|
||||
|
||||
.layuimini-mini .layui-side.layui-bg-black, .layuimini-mini .layuimini-menu-left > ul, .layuimini-mini .layuimini-menu-left > ul li i {
|
||||
width: 60px !important;
|
||||
}
|
||||
|
||||
.layuimini-mini .layuimini-menu-left > ul li span:first-child {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.layuimini-mini .layuimini-menu-left > ul li span:last-child {
|
||||
float: right;
|
||||
right: 7px;
|
||||
}
|
||||
|
||||
.layuimini-mini .layuimini-menu-left .layui-nav .layui-nav-item a {
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
padding-right: 0px !important;
|
||||
}
|
||||
|
||||
/**内容主体(缩放) */
|
||||
.layuimini-mini .layui-layout-admin .layui-body {
|
||||
left: 60px !important;
|
||||
}
|
||||
|
||||
.layuimini-mini .layuimini-tool {
|
||||
left: 95px !important;
|
||||
}
|
||||
|
||||
.layuimini-pc-show{
|
||||
display: block;
|
||||
}
|
||||
.layuimini-mobile-show{
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**菜单缩放*/
|
||||
.layuimini-mini .layuimini-menu-left .layui-nav-more,.layuimini-mini .layuimini-menu-left .layui-nav-child{
|
||||
display: none;!important;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
手机自适应样式
|
||||
*/
|
||||
@media screen and (max-width: 1024px) {
|
||||
|
||||
/**
|
||||
todo 修复低版本IOS不能滑动问题, 但还是有问题, 低版本IOS部分情况下子页面无法自适应
|
||||
*/
|
||||
.layuimini-tab .layui-tab-content .layui-tab-item {
|
||||
-webkit-overflow-scrolling: touch;
|
||||
overflow: scroll;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.layuimini-tab .layui-tab-content .layui-tab-item iframe {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.layuimini-pc-show{
|
||||
display: none;
|
||||
}
|
||||
.layuimini-mobile-show{
|
||||
display: block;
|
||||
}
|
||||
.layuimini-header-content {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.layui-layout-admin .layui-body .layui-tab-item.layui-show {
|
||||
border-top: 1px solid #e2e2e2;
|
||||
}
|
||||
|
||||
.layuimini-all .layui-layout-left.layuimini-header-menu {
|
||||
left: 15px !important
|
||||
}
|
||||
|
||||
.layuimini-mini .layui-layout-left.layuimini-header-menu {
|
||||
left: 205px !important
|
||||
}
|
||||
|
||||
.layui-layout-admin .layui-nav.layui-layout-right > li:not(.layuimini-setting) {
|
||||
width: 40px !important;
|
||||
}
|
||||
|
||||
.layui-layout-admin .layui-nav.layui-layout-right > li:not(.layuimini-setting) a {
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
.layuimini-all .layui-layout-admin .layui-body {
|
||||
left: 0px !important;
|
||||
}
|
||||
|
||||
.layuimini-mini .layui-layout-admin .layuimini-menu-left, .layuimini-mini .layui-header .layuimini-logo {
|
||||
left: 0;
|
||||
transition: left .2s;
|
||||
z-index: 1001 !important;
|
||||
}
|
||||
|
||||
.layuimini-all .layui-layout-admin .layuimini-menu-left, .layuimini-all .layui-header .layuimini-logo {
|
||||
left: -200px;
|
||||
transition: left .2s;
|
||||
top: 0;
|
||||
z-index: 1002;
|
||||
}
|
||||
|
||||
.layuimini-mini .layui-layout-admin .layui-body {
|
||||
left: 0!important;
|
||||
transition: left .2s;
|
||||
top: 0;
|
||||
z-index: 998;
|
||||
}
|
||||
|
||||
.layuimini-mini .layuimini-make {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.layuimini-multi-module .layuimini-header-content .layuimini-tool {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.layuimini-single-module .layuimini-header-content .layuimini-tool {
|
||||
left: 15px;
|
||||
}
|
||||
|
||||
.layuimini-mini .layuimini-site-mobile {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.layuimini-site-mobile {
|
||||
display: block !important;
|
||||
position: fixed;
|
||||
z-index: 100000;
|
||||
bottom: 15px;
|
||||
left: 15px;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
border-radius: 2px;
|
||||
text-align: center;
|
||||
background-color: rgba(0, 0, 0, .7);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.layuimini-header-content {
|
||||
z-index: 997;
|
||||
}
|
||||
|
||||
/*修复UC之类的浏览器点击无效*/
|
||||
.layuimini-make {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.layuimini-site-mobile {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 550px){
|
||||
|
||||
/**头部右侧数据*/
|
||||
.layuimini-multi-module.layuimini-mini .layuimini-header-content .layui-layout-right {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
body {
|
||||
margin: 15px 15px 15px 15px;
|
||||
background: #f2f2f2;
|
||||
}
|
||||
|
||||
.layuimini-container {
|
||||
border: 1px solid #f2f2f2;
|
||||
border-radius: 5px;
|
||||
background-color: #ffffff
|
||||
}
|
||||
|
||||
.layuimini-main {
|
||||
margin: 10px 10px 10px 10px;
|
||||
}
|
||||
|
||||
/**必填红点 */
|
||||
.layuimini-form > .layui-form-item > .required:after {
|
||||
content: '*';
|
||||
color: red;
|
||||
position: absolute;
|
||||
margin-left: 4px;
|
||||
font-weight: bold;
|
||||
line-height: 1.8em;
|
||||
top: 6px;
|
||||
right: 5px;
|
||||
}
|
||||
|
||||
.layuimini-form > .layui-form-item > .layui-form-label {
|
||||
width: 120px !important;
|
||||
}
|
||||
|
||||
.layuimini-form > .layui-form-item > .layui-input-block {
|
||||
margin-left: 150px !important;
|
||||
}
|
||||
|
||||
.layuimini-form > .layui-form-item > .layui-input-block > tip {
|
||||
display: inline-block;
|
||||
margin-top: 10px;
|
||||
line-height: 10px;
|
||||
font-size: 10px;
|
||||
color: #a29c9c;
|
||||
}
|
||||
|
||||
/**搜索框*/
|
||||
.layuimini-container .table-search-fieldset {
|
||||
margin: 0;
|
||||
border: 1px solid #e6e6e6;
|
||||
padding: 10px 20px 5px 20px;
|
||||
color: #6b6b6b;
|
||||
}
|
||||
|
||||
/**自定义滚动条样式 */
|
||||
::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
height: 6px
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: transparent;
|
||||
-webkit-border-radius: 2em;
|
||||
-moz-border-radius: 2em;
|
||||
border-radius: 2em;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #9c9da0;
|
||||
-webkit-border-radius: 2em;
|
||||
-moz-border-radius: 2em;
|
||||
border-radius: 2em
|
||||
}
|
||||
@@ -0,0 +1,95 @@
|
||||
/*头部右侧背景色 headerRightBg */
|
||||
.layui-layout-admin .layui-header {
|
||||
background-color: #ffffff !important;
|
||||
}
|
||||
|
||||
/*头部右侧选中背景色 headerRightBgThis */
|
||||
.layui-layout-admin .layui-header .layuimini-header-content > ul > .layui-nav-item.layui-this, .layuimini-tool i:hover {
|
||||
background-color: #e4e4e4 !important;
|
||||
}
|
||||
|
||||
/*头部右侧字体颜色 headerRightColor */
|
||||
.layui-layout-admin .layui-header .layui-nav .layui-nav-item a {
|
||||
color: rgba(107, 107, 107, 0.7);
|
||||
}
|
||||
|
||||
/**头部右侧下拉字体颜色 headerRightChildColor */
|
||||
.layui-layout-admin .layui-header .layui-nav .layui-nav-item .layui-nav-child a {
|
||||
color: rgba(107, 107, 107, 0.7) !important;
|
||||
}
|
||||
|
||||
/*头部右侧鼠标选中 headerRightColorThis */
|
||||
.layui-header .layuimini-menu-header-pc.layui-nav .layui-nav-item a:hover, .layui-header .layuimini-header-menu.layuimini-pc-show.layui-nav .layui-this a {
|
||||
color: #565656 !important;
|
||||
}
|
||||
|
||||
/*头部右侧更多下拉颜色 headerRightNavMore */
|
||||
.layui-header .layui-nav .layui-nav-more {
|
||||
border-top-color: rgba(160, 160, 160, 0.7) !important;
|
||||
}
|
||||
|
||||
/*头部右侧更多下拉颜色 headerRightNavMore */
|
||||
.layui-header .layui-nav .layui-nav-mored, .layui-header .layui-nav-itemed > a .layui-nav-more {
|
||||
border-color: transparent transparent rgba(160, 160, 160, 0.7) !important;
|
||||
}
|
||||
|
||||
/**头部右侧更多下拉配置色 headerRightNavMoreBg headerRightNavMoreColor */
|
||||
.layui-header .layui-nav .layui-nav-child dd.layui-this a, .layui-header .layui-nav-child dd.layui-this, .layui-layout-admin .layui-header .layui-nav .layui-nav-item .layui-nav-child .layui-this a {
|
||||
background-color: #1E9FFF !important;
|
||||
color: #ffffff !important;
|
||||
}
|
||||
|
||||
/*头部缩放按钮样式 headerRightToolColor */
|
||||
.layui-layout-admin .layui-header .layuimini-tool i {
|
||||
color: #565656;
|
||||
}
|
||||
|
||||
/*logo背景颜色 headerLogoBg */
|
||||
.layui-layout-admin .layuimini-logo {
|
||||
background-color: #192027 !important;
|
||||
}
|
||||
|
||||
/*logo字体颜色 headerLogoColor */
|
||||
.layui-layout-admin .layuimini-logo h1 {
|
||||
color: rgb(191, 187, 187);
|
||||
}
|
||||
|
||||
/*左侧菜单更多下拉样式 leftMenuNavMore */
|
||||
.layuimini-menu-left .layui-nav .layui-nav-more, .layuimini-menu-left-zoom.layui-nav .layui-nav-more {
|
||||
border-top-color: rgb(191, 187, 187);
|
||||
}
|
||||
|
||||
/*左侧菜单更多下拉样式 leftMenuNavMore */
|
||||
.layuimini-menu-left .layui-nav .layui-nav-mored, .layuimini-menu-left .layui-nav-itemed > a .layui-nav-more, .layuimini-menu-left-zoom.layui-nav .layui-nav-mored, .layuimini-menu-left-zoom.layui-nav-itemed > a .layui-nav-more {
|
||||
border-color: transparent transparent rgb(191, 187, 187) !important;
|
||||
}
|
||||
|
||||
/*左侧菜单背景 leftMenuBg */
|
||||
.layui-side.layui-bg-black, .layui-side.layui-bg-black > .layuimini-menu-left > ul, .layuimini-menu-left-zoom > ul {
|
||||
background-color: #28333E !important;
|
||||
}
|
||||
|
||||
/*左侧菜单选中背景 leftMenuBgThis */
|
||||
.layuimini-menu-left .layui-nav-tree .layui-this, .layuimini-menu-left .layui-nav-tree .layui-this > a, .layuimini-menu-left .layui-nav-tree .layui-nav-child dd.layui-this, .layuimini-menu-left .layui-nav-tree .layui-nav-child dd.layui-this a, .layuimini-menu-left-zoom.layui-nav-tree .layui-this, .layuimini-menu-left-zoom.layui-nav-tree .layui-this > a, .layuimini-menu-left-zoom.layui-nav-tree .layui-nav-child dd.layui-this, .layuimini-menu-left-zoom.layui-nav-tree .layui-nav-child dd.layui-this a {
|
||||
background-color: #1E9FFF !important
|
||||
}
|
||||
|
||||
/*左侧菜单子菜单背景 leftMenuChildBg */
|
||||
.layuimini-menu-left .layui-nav-itemed > .layui-nav-child {
|
||||
background-color: #0c0f13 !important;
|
||||
}
|
||||
|
||||
/*左侧菜单字体颜色 leftMenuColor */
|
||||
.layuimini-menu-left .layui-nav .layui-nav-item a, .layuimini-menu-left-zoom.layui-nav .layui-nav-item a {
|
||||
color: rgb(191, 187, 187) !important;
|
||||
}
|
||||
|
||||
/*左侧菜单选中字体颜色 leftMenuColorThis */
|
||||
.layuimini-menu-left .layui-nav .layui-nav-item a:hover, .layuimini-menu-left .layui-nav .layui-this a, .layuimini-menu-left-zoom.layui-nav .layui-nav-item a:hover, .layuimini-menu-left-zoom.layui-nav .layui-this a {
|
||||
color: #ffffff !important;
|
||||
}
|
||||
|
||||
/**tab选项卡选中颜色 tabActiveColor */
|
||||
.layuimini-tab .layui-tab-title .layui-this .layuimini-tab-active {
|
||||
background-color: #1e9fff;
|
||||
}
|
||||
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 671 KiB |
|
After Width: | Height: | Size: 74 KiB |
@@ -0,0 +1,194 @@
|
||||
<!--
|
||||
~ Copyright (c) 2023 codvision.com All Rights Reserved.
|
||||
-->
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>基础平台微服务组件版</title>
|
||||
<meta name="keywords" content="基础平台微服务组件">
|
||||
<meta name="description" content="基础平台微服务组件版">
|
||||
<meta name="renderer" content="webkit">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta http-equiv="Access-Control-Allow-Origin" content="*">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
<link rel="icon" href="images/favicon.ico">
|
||||
<link rel="stylesheet" href="lib/layui-v2.6.3/css/layui.css" media="all">
|
||||
<link rel="stylesheet" href="css/layuimini.css?v=2.0.4.2" media="all">
|
||||
<link rel="stylesheet" href="css/themes/default.css" media="all">
|
||||
<link rel="stylesheet" href="lib/font-awesome-4.7.0/css/font-awesome.min.css" media="all">
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
|
||||
<script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
<style id="layuimini-bg-color">
|
||||
</style>
|
||||
</head>
|
||||
<body class="layui-layout-body layuimini-all">
|
||||
<div class="layui-layout layui-layout-admin">
|
||||
|
||||
<div class="layui-header header">
|
||||
<div class="layui-logo layuimini-logo"></div>
|
||||
|
||||
<div class="layuimini-header-content">
|
||||
<a>
|
||||
<div class="layuimini-tool"><i title="展开" class="fa fa-outdent" data-side-fold="1"></i></div>
|
||||
</a>
|
||||
|
||||
<!--电脑端头部菜单-->
|
||||
<!--<ul class="layui-nav layui-layout-left layuimini-header-menu layuimini-menu-header-pc layuimini-pc-show">
|
||||
</ul>-->
|
||||
|
||||
<!--手机端头部菜单-->
|
||||
<ul class="layui-nav layui-layout-left layuimini-header-menu layuimini-mobile-show">
|
||||
<li class="layui-nav-item">
|
||||
<a href="javascript:;"><i class="fa fa-list-ul"></i> 选择模块</a>
|
||||
<dl class="layui-nav-child layuimini-menu-header-mobile">
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<ul class="layui-nav layui-layout-right">
|
||||
|
||||
<li class="layui-nav-item" lay-unselect>
|
||||
<a href="javascript:;" data-refresh="刷新"><i class="fa fa-refresh"></i></a>
|
||||
</li>
|
||||
<li class="layui-nav-item" lay-unselect>
|
||||
<a href="javascript:;" data-clear="清理" class="layuimini-clear"><i class="fa fa-trash-o"></i></a>
|
||||
</li>
|
||||
<li class="layui-nav-item mobile layui-hide-xs" lay-unselect>
|
||||
<a href="javascript:;" data-check-screen="full"><i class="fa fa-arrows-alt"></i></a>
|
||||
</li>
|
||||
<li class="layui-nav-item layuimini-setting">
|
||||
<a id="nickname" href="javascript:;"></a>
|
||||
<dl class="layui-nav-child">
|
||||
<dd>
|
||||
<a href="javascript:;" layuimini-content-href="page/user-password.html"
|
||||
data-title="修改密码" data-icon="fa fa-gears">修改密码</a>
|
||||
</dd>
|
||||
<dd>
|
||||
<hr>
|
||||
</dd>
|
||||
<dd>
|
||||
<a href="javascript:;" class="login-out">退出登录</a>
|
||||
</dd>
|
||||
</dl>
|
||||
</li>
|
||||
<li class="layui-nav-item layuimini-select-bgcolor" lay-unselect>
|
||||
<a href="javascript:;" data-bgcolor="配色方案"><i class="fa fa-ellipsis-v"></i></a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--无限极左侧菜单-->
|
||||
<div class="layui-side layui-bg-black layuimini-menu-left">
|
||||
</div>
|
||||
|
||||
<!--初始化加载层-->
|
||||
<div class="layuimini-loader">
|
||||
<div class="layuimini-loader-inner"></div>
|
||||
</div>
|
||||
|
||||
<!--手机端遮罩层-->
|
||||
<div class="layuimini-make"></div>
|
||||
|
||||
<!-- 移动导航 -->
|
||||
<div class="layuimini-site-mobile"><i class="layui-icon"></i></div>
|
||||
|
||||
<div class="layui-body">
|
||||
|
||||
<div class="layuimini-tab layui-tab-rollTool layui-tab" lay-filter="layuiminiTab" lay-allowclose="true">
|
||||
<ul class="layui-tab-title">
|
||||
<li class="layui-this" id="layuiminiHomeTabId" lay-id=""></li>
|
||||
</ul>
|
||||
<div class="layui-tab-control">
|
||||
<li class="layuimini-tab-roll-left layui-icon layui-icon-left"></li>
|
||||
<li class="layuimini-tab-roll-right layui-icon layui-icon-right"></li>
|
||||
<li class="layui-tab-tool layui-icon layui-icon-down">
|
||||
<ul class="layui-nav close-box">
|
||||
<li class="layui-nav-item">
|
||||
<a href="javascript:;"><span class="layui-nav-more"></span></a>
|
||||
<dl class="layui-nav-child">
|
||||
<dd><a href="javascript:;" layuimini-tab-close="current">关 闭 当 前</a></dd>
|
||||
<dd><a href="javascript:;" layuimini-tab-close="other">关 闭 其 他</a></dd>
|
||||
<dd><a href="javascript:;" layuimini-tab-close="all">关 闭 全 部</a></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</div>
|
||||
<div class="layui-tab-content">
|
||||
<div id="layuiminiHomeTabIframe" class="layui-tab-item layui-show"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<script src="lib/layui-v2.6.3/layui.js" charset="utf-8"></script>
|
||||
<script src="js/lay-config.js?v=2.0.0" charset="utf-8"></script>
|
||||
<script>
|
||||
layui.use(['jquery', 'layer', 'miniAdmin'], function () {
|
||||
var $ = layui.jquery,
|
||||
layer = layui.layer,
|
||||
miniAdmin = layui.miniAdmin;
|
||||
|
||||
var options = {
|
||||
iniUrl: "api/init.json", // 初始化接口
|
||||
clearUrl: "api/clear.json", // 缓存清理接口
|
||||
urlHashLocation: true, // 是否打开hash定位
|
||||
bgColorDefault: false, // 主题默认配置
|
||||
multiModule: false, // 是否开启多模块
|
||||
menuChildOpen: false, // 是否默认展开菜单
|
||||
loadingTime: 0, // 初始化加载时间
|
||||
pageAnim: true, // iframe窗口动画
|
||||
maxTabNum: 20, // 最大的tab打开数量
|
||||
};
|
||||
miniAdmin.render(options);
|
||||
|
||||
layui.use(function () {
|
||||
var laytpl = layui.laytpl;
|
||||
|
||||
$.ajax({
|
||||
url: '/backend/api/user/getUserInfo',
|
||||
type: 'get',
|
||||
success: function (result) {
|
||||
console.log(result)
|
||||
if (result.code == 200) {
|
||||
laytpl('{{= d.nickname }}').render({
|
||||
nickname: result.data.nickname
|
||||
}, function (str) {
|
||||
var elemView = document.getElementById('nickname');
|
||||
elemView.innerHTML = str;
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
|
||||
$('.login-out').on("click", function () {
|
||||
$.ajax({
|
||||
url: '/backend/api/user/logout',
|
||||
type: 'get',
|
||||
success: function (result) {
|
||||
console.log(result)
|
||||
if (result.code == 200) {
|
||||
layer.msg('退出登录成功', function () {
|
||||
window.location = 'page/login.html';
|
||||
});
|
||||
} else {
|
||||
layer.msg('退出登录失败');
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,30 @@
|
||||
/**
|
||||
* date:2019/08/16
|
||||
* author:Mr.Chung
|
||||
* description:此处放layui自定义扩展
|
||||
* version:2.0.4
|
||||
*/
|
||||
|
||||
window.rootPath = (function (src) {
|
||||
src = document.scripts[document.scripts.length - 1].src;
|
||||
return src.substring(0, src.lastIndexOf("/") + 1);
|
||||
})();
|
||||
|
||||
layui.config({
|
||||
base: rootPath + "lay-module/",
|
||||
version: true
|
||||
}).extend({
|
||||
miniAdmin: "layuimini/miniAdmin", // layuimini后台扩展
|
||||
miniMenu: "layuimini/miniMenu", // layuimini菜单扩展
|
||||
miniTab: "layuimini/miniTab", // layuimini tab扩展
|
||||
miniTheme: "layuimini/miniTheme", // layuimini 主题扩展
|
||||
miniTongji: "layuimini/miniTongji", // layuimini 统计扩展
|
||||
step: 'step-lay/step', // 分步表单扩展
|
||||
treetable: 'treetable-lay/treetable', //table树形扩展
|
||||
tableSelect: 'tableSelect/tableSelect', // table选择扩展
|
||||
iconPickerFa: 'iconPicker/iconPickerFa', // fa图标选择扩展
|
||||
echarts: 'echarts/echarts', // echarts图表扩展
|
||||
echartsTheme: 'echarts/echartsTheme', // echarts图表主题扩展
|
||||
wangEditor: 'wangEditor/wangEditor', // wangEditor富文本扩展
|
||||
layarea: 'layarea/layarea', // 省市县区三级联动下拉选择器
|
||||
});
|
||||
@@ -0,0 +1,492 @@
|
||||
layui.define(function(exports) {
|
||||
exports('echartsTheme',
|
||||
{
|
||||
"color": [
|
||||
"#3fb1e3",
|
||||
"#6be6c1",
|
||||
"#626c91",
|
||||
"#a0a7e6",
|
||||
"#c4ebad",
|
||||
"#96dee8"
|
||||
],
|
||||
"backgroundColor": "rgba(252,252,252,0)",
|
||||
"textStyle": {},
|
||||
"title": {
|
||||
"textStyle": {
|
||||
"color": "#666666"
|
||||
},
|
||||
"subtextStyle": {
|
||||
"color": "#999999"
|
||||
}
|
||||
},
|
||||
"line": {
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"borderWidth": "3"
|
||||
}
|
||||
},
|
||||
"lineStyle": {
|
||||
"normal": {
|
||||
"width": "4"
|
||||
}
|
||||
},
|
||||
"symbolSize": "10",
|
||||
"symbol": "emptyCircle",
|
||||
"smooth": true
|
||||
},
|
||||
"radar": {
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"borderWidth": "3"
|
||||
}
|
||||
},
|
||||
"lineStyle": {
|
||||
"normal": {
|
||||
"width": "4"
|
||||
}
|
||||
},
|
||||
"symbolSize": "10",
|
||||
"symbol": "emptyCircle",
|
||||
"smooth": true
|
||||
},
|
||||
"bar": {
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"barBorderWidth": 0,
|
||||
"barBorderColor": "#ccc"
|
||||
},
|
||||
"emphasis": {
|
||||
"barBorderWidth": 0,
|
||||
"barBorderColor": "#ccc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"pie": {
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
},
|
||||
"emphasis": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"scatter": {
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
},
|
||||
"emphasis": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"boxplot": {
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
},
|
||||
"emphasis": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"parallel": {
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
},
|
||||
"emphasis": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"sankey": {
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
},
|
||||
"emphasis": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"funnel": {
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
},
|
||||
"emphasis": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"gauge": {
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
},
|
||||
"emphasis": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
}
|
||||
}
|
||||
},
|
||||
"candlestick": {
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"color": "#e6a0d2",
|
||||
"color0": "transparent",
|
||||
"borderColor": "#e6a0d2",
|
||||
"borderColor0": "#3fb1e3",
|
||||
"borderWidth": "2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"graph": {
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"borderWidth": 0,
|
||||
"borderColor": "#ccc"
|
||||
}
|
||||
},
|
||||
"lineStyle": {
|
||||
"normal": {
|
||||
"width": "1",
|
||||
"color": "#cccccc"
|
||||
}
|
||||
},
|
||||
"symbolSize": "10",
|
||||
"symbol": "emptyCircle",
|
||||
"smooth": true,
|
||||
"color": [
|
||||
"#3fb1e3",
|
||||
"#6be6c1",
|
||||
"#626c91",
|
||||
"#a0a7e6",
|
||||
"#c4ebad",
|
||||
"#96dee8"
|
||||
],
|
||||
"label": {
|
||||
"normal": {
|
||||
"textStyle": {
|
||||
"color": "#ffffff"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"map": {
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"areaColor": "#eeeeee",
|
||||
"borderColor": "#aaaaaa",
|
||||
"borderWidth": 0.5
|
||||
},
|
||||
"emphasis": {
|
||||
"areaColor": "rgba(63,177,227,0.25)",
|
||||
"borderColor": "#3fb1e3",
|
||||
"borderWidth": 1
|
||||
}
|
||||
},
|
||||
"label": {
|
||||
"normal": {
|
||||
"textStyle": {
|
||||
"color": "#ffffff"
|
||||
}
|
||||
},
|
||||
"emphasis": {
|
||||
"textStyle": {
|
||||
"color": "rgb(63,177,227)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"geo": {
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"areaColor": "#eeeeee",
|
||||
"borderColor": "#aaaaaa",
|
||||
"borderWidth": 0.5
|
||||
},
|
||||
"emphasis": {
|
||||
"areaColor": "rgba(63,177,227,0.25)",
|
||||
"borderColor": "#3fb1e3",
|
||||
"borderWidth": 1
|
||||
}
|
||||
},
|
||||
"label": {
|
||||
"normal": {
|
||||
"textStyle": {
|
||||
"color": "#ffffff"
|
||||
}
|
||||
},
|
||||
"emphasis": {
|
||||
"textStyle": {
|
||||
"color": "rgb(63,177,227)"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"categoryAxis": {
|
||||
"axisLine": {
|
||||
"show": true,
|
||||
"lineStyle": {
|
||||
"color": "#cccccc"
|
||||
}
|
||||
},
|
||||
"axisTick": {
|
||||
"show": false,
|
||||
"lineStyle": {
|
||||
"color": "#333"
|
||||
}
|
||||
},
|
||||
"axisLabel": {
|
||||
"show": true,
|
||||
"textStyle": {
|
||||
"color": "#999999"
|
||||
}
|
||||
},
|
||||
"splitLine": {
|
||||
"show": true,
|
||||
"lineStyle": {
|
||||
"color": [
|
||||
"#eeeeee"
|
||||
]
|
||||
}
|
||||
},
|
||||
"splitArea": {
|
||||
"show": false,
|
||||
"areaStyle": {
|
||||
"color": [
|
||||
"rgba(250,250,250,0.05)",
|
||||
"rgba(200,200,200,0.02)"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"valueAxis": {
|
||||
"axisLine": {
|
||||
"show": true,
|
||||
"lineStyle": {
|
||||
"color": "#cccccc"
|
||||
}
|
||||
},
|
||||
"axisTick": {
|
||||
"show": false,
|
||||
"lineStyle": {
|
||||
"color": "#333"
|
||||
}
|
||||
},
|
||||
"axisLabel": {
|
||||
"show": true,
|
||||
"textStyle": {
|
||||
"color": "#999999"
|
||||
}
|
||||
},
|
||||
"splitLine": {
|
||||
"show": true,
|
||||
"lineStyle": {
|
||||
"color": [
|
||||
"#eeeeee"
|
||||
]
|
||||
}
|
||||
},
|
||||
"splitArea": {
|
||||
"show": false,
|
||||
"areaStyle": {
|
||||
"color": [
|
||||
"rgba(250,250,250,0.05)",
|
||||
"rgba(200,200,200,0.02)"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"logAxis": {
|
||||
"axisLine": {
|
||||
"show": true,
|
||||
"lineStyle": {
|
||||
"color": "#cccccc"
|
||||
}
|
||||
},
|
||||
"axisTick": {
|
||||
"show": false,
|
||||
"lineStyle": {
|
||||
"color": "#333"
|
||||
}
|
||||
},
|
||||
"axisLabel": {
|
||||
"show": true,
|
||||
"textStyle": {
|
||||
"color": "#999999"
|
||||
}
|
||||
},
|
||||
"splitLine": {
|
||||
"show": true,
|
||||
"lineStyle": {
|
||||
"color": [
|
||||
"#eeeeee"
|
||||
]
|
||||
}
|
||||
},
|
||||
"splitArea": {
|
||||
"show": false,
|
||||
"areaStyle": {
|
||||
"color": [
|
||||
"rgba(250,250,250,0.05)",
|
||||
"rgba(200,200,200,0.02)"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"timeAxis": {
|
||||
"axisLine": {
|
||||
"show": true,
|
||||
"lineStyle": {
|
||||
"color": "#cccccc"
|
||||
}
|
||||
},
|
||||
"axisTick": {
|
||||
"show": false,
|
||||
"lineStyle": {
|
||||
"color": "#333"
|
||||
}
|
||||
},
|
||||
"axisLabel": {
|
||||
"show": true,
|
||||
"textStyle": {
|
||||
"color": "#999999"
|
||||
}
|
||||
},
|
||||
"splitLine": {
|
||||
"show": true,
|
||||
"lineStyle": {
|
||||
"color": [
|
||||
"#eeeeee"
|
||||
]
|
||||
}
|
||||
},
|
||||
"splitArea": {
|
||||
"show": false,
|
||||
"areaStyle": {
|
||||
"color": [
|
||||
"rgba(250,250,250,0.05)",
|
||||
"rgba(200,200,200,0.02)"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"toolbox": {
|
||||
"iconStyle": {
|
||||
"normal": {
|
||||
"borderColor": "#999999"
|
||||
},
|
||||
"emphasis": {
|
||||
"borderColor": "#666666"
|
||||
}
|
||||
}
|
||||
},
|
||||
"legend": {
|
||||
"textStyle": {
|
||||
"color": "#999999"
|
||||
}
|
||||
},
|
||||
"tooltip": {
|
||||
"axisPointer": {
|
||||
"lineStyle": {
|
||||
"color": "#cccccc",
|
||||
"width": 1
|
||||
},
|
||||
"crossStyle": {
|
||||
"color": "#cccccc",
|
||||
"width": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"timeline": {
|
||||
"lineStyle": {
|
||||
"color": "#626c91",
|
||||
"width": 1
|
||||
},
|
||||
"itemStyle": {
|
||||
"normal": {
|
||||
"color": "#626c91",
|
||||
"borderWidth": 1
|
||||
},
|
||||
"emphasis": {
|
||||
"color": "#626c91"
|
||||
}
|
||||
},
|
||||
"controlStyle": {
|
||||
"normal": {
|
||||
"color": "#626c91",
|
||||
"borderColor": "#626c91",
|
||||
"borderWidth": 0.5
|
||||
},
|
||||
"emphasis": {
|
||||
"color": "#626c91",
|
||||
"borderColor": "#626c91",
|
||||
"borderWidth": 0.5
|
||||
}
|
||||
},
|
||||
"checkpointStyle": {
|
||||
"color": "#3fb1e3",
|
||||
"borderColor": "rgba(63,177,227,0.15)"
|
||||
},
|
||||
"label": {
|
||||
"normal": {
|
||||
"textStyle": {
|
||||
"color": "#626c91"
|
||||
}
|
||||
},
|
||||
"emphasis": {
|
||||
"textStyle": {
|
||||
"color": "#626c91"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"visualMap": {
|
||||
"color": [
|
||||
"#2a99c9",
|
||||
"#afe8ff"
|
||||
]
|
||||
},
|
||||
"dataZoom": {
|
||||
"backgroundColor": "rgba(255,255,255,0)",
|
||||
"dataBackgroundColor": "rgba(222,222,222,1)",
|
||||
"fillerColor": "rgba(114,230,212,0.25)",
|
||||
"handleColor": "#cccccc",
|
||||
"handleSize": "100%",
|
||||
"textStyle": {
|
||||
"color": "#999999"
|
||||
}
|
||||
},
|
||||
"markPoint": {
|
||||
"label": {
|
||||
"normal": {
|
||||
"textStyle": {
|
||||
"color": "#ffffff"
|
||||
}
|
||||
},
|
||||
"emphasis": {
|
||||
"textStyle": {
|
||||
"color": "#ffffff"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,399 @@
|
||||
/**
|
||||
* fa图标选择器 根据开源项目https://gitee.com/wujiawei0926/iconpicker修改而来
|
||||
* @author wujiawei0926@yeah.net chung@99php.cn
|
||||
* @version 1.1
|
||||
*/
|
||||
|
||||
layui.define(['laypage', 'form'], function (exports) {
|
||||
"use strict";
|
||||
|
||||
var IconPicker = function () {
|
||||
this.v = '1.1';
|
||||
}, _MOD = 'iconPickerFa',
|
||||
_this = this,
|
||||
$ = layui.jquery,
|
||||
laypage = layui.laypage,
|
||||
form = layui.form,
|
||||
BODY = 'body',
|
||||
TIPS = '请选择图标';
|
||||
|
||||
/**
|
||||
* 渲染组件
|
||||
*/
|
||||
IconPicker.prototype.render = function (options) {
|
||||
var opts = options,
|
||||
// DOM选择器
|
||||
elem = opts.elem,
|
||||
// 数据类型:fontClass/unicode
|
||||
url = opts.url,
|
||||
// 是否分页:true/false
|
||||
page = opts.page == null ? true : opts.page,
|
||||
// 每页显示数量
|
||||
limit = opts.limit == null ? 12 : opts.limit,
|
||||
// 是否开启搜索:true/false
|
||||
search = opts.search == null ? true : opts.search,
|
||||
// 每个图标格子的宽度:'43px'或'20%'
|
||||
cellWidth = opts.cellWidth,
|
||||
// 点击回调
|
||||
click = opts.click,
|
||||
// 渲染成功后的回调
|
||||
success = opts.success,
|
||||
// json数据
|
||||
data = {},
|
||||
// 唯一标识
|
||||
tmp = new Date().getTime(),
|
||||
// 初始化时input的值
|
||||
ORIGINAL_ELEM_VALUE = $(elem).val(),
|
||||
TITLE = 'layui-select-title',
|
||||
TITLE_ID = 'layui-select-title-' + tmp,
|
||||
ICON_BODY = 'layui-iconpicker-' + tmp,
|
||||
PICKER_BODY = 'layui-iconpicker-body-' + tmp,
|
||||
PAGE_ID = 'layui-iconpicker-page-' + tmp,
|
||||
LIST_BOX = 'layui-iconpicker-list-box',
|
||||
selected = 'layui-form-selected',
|
||||
unselect = 'layui-unselect';
|
||||
|
||||
var a = {
|
||||
init: function () {
|
||||
data = common.getData(url);
|
||||
|
||||
a.hideElem().createSelect().createBody().toggleSelect();
|
||||
a.preventEvent().inputListen();
|
||||
common.loadCss();
|
||||
|
||||
if (success) {
|
||||
success(this.successHandle());
|
||||
}
|
||||
|
||||
return a;
|
||||
},
|
||||
successHandle: function () {
|
||||
var d = {
|
||||
options: opts,
|
||||
data: data,
|
||||
id: tmp,
|
||||
elem: $('#' + ICON_BODY)
|
||||
};
|
||||
return d;
|
||||
},
|
||||
/**
|
||||
* 隐藏elem
|
||||
*/
|
||||
hideElem: function () {
|
||||
$(elem).hide();
|
||||
return a;
|
||||
},
|
||||
/**
|
||||
* 绘制select下拉选择框
|
||||
*/
|
||||
createSelect: function () {
|
||||
var oriIcon = '<i class="fa">';
|
||||
|
||||
// 默认图标
|
||||
if (ORIGINAL_ELEM_VALUE === '') {
|
||||
ORIGINAL_ELEM_VALUE = 'fa-adjust';
|
||||
|
||||
}
|
||||
|
||||
|
||||
oriIcon = '<i class="fa ' + ORIGINAL_ELEM_VALUE + '">';
|
||||
|
||||
oriIcon += '</i>';
|
||||
|
||||
var selectHtml = '<div class="layui-iconpicker layui-unselect layui-form-select" id="' + ICON_BODY + '">' +
|
||||
'<div class="' + TITLE + '" id="' + TITLE_ID + '">' +
|
||||
'<div class="layui-iconpicker-item">' +
|
||||
'<span class="layui-iconpicker-icon layui-unselect">' +
|
||||
oriIcon +
|
||||
'</span>' +
|
||||
'<i class="layui-edge"></i>' +
|
||||
'</div>' +
|
||||
'</div>' +
|
||||
'<div class="layui-anim layui-anim-upbit" style="">' +
|
||||
'123' +
|
||||
'</div>';
|
||||
$(elem).after(selectHtml);
|
||||
return a;
|
||||
},
|
||||
/**
|
||||
* 展开/折叠下拉框
|
||||
*/
|
||||
toggleSelect: function () {
|
||||
var item = '#' + TITLE_ID + ' .layui-iconpicker-item,#' + TITLE_ID + ' .layui-iconpicker-item .layui-edge';
|
||||
a.event('click', item, function (e) {
|
||||
var $icon = $('#' + ICON_BODY);
|
||||
if ($icon.hasClass(selected)) {
|
||||
$icon.removeClass(selected).addClass(unselect);
|
||||
} else {
|
||||
// 隐藏其他picker
|
||||
$('.layui-form-select').removeClass(selected);
|
||||
// 显示当前picker
|
||||
$icon.addClass(selected).removeClass(unselect);
|
||||
}
|
||||
e.stopPropagation();
|
||||
});
|
||||
return a;
|
||||
},
|
||||
/**
|
||||
* 绘制主体部分
|
||||
*/
|
||||
createBody: function () {
|
||||
// 获取数据
|
||||
var searchHtml = '';
|
||||
|
||||
if (search) {
|
||||
searchHtml = '<div class="layui-iconpicker-search">' +
|
||||
'<input class="layui-input">' +
|
||||
'<i class="layui-icon"></i>' +
|
||||
'</div>';
|
||||
}
|
||||
|
||||
// 组合dom
|
||||
var bodyHtml = '<div class="layui-iconpicker-body" id="' + PICKER_BODY + '">' +
|
||||
searchHtml +
|
||||
'<div class="' + LIST_BOX + '"></div> ' +
|
||||
'</div>';
|
||||
$('#' + ICON_BODY).find('.layui-anim').eq(0).html(bodyHtml);
|
||||
a.search().createList().check().page();
|
||||
|
||||
return a;
|
||||
},
|
||||
/**
|
||||
* 绘制图标列表
|
||||
* @param text 模糊查询关键字
|
||||
* @returns {string}
|
||||
*/
|
||||
createList: function (text) {
|
||||
var d = data,
|
||||
l = d.length,
|
||||
pageHtml = '',
|
||||
listHtml = $('<div class="layui-iconpicker-list">')//'<div class="layui-iconpicker-list">';
|
||||
|
||||
// 计算分页数据
|
||||
var _limit = limit, // 每页显示数量
|
||||
_pages = l % _limit === 0 ? l / _limit : parseInt(l / _limit + 1), // 总计多少页
|
||||
_id = PAGE_ID;
|
||||
|
||||
// 图标列表
|
||||
var icons = [];
|
||||
|
||||
for (var i = 0; i < l; i++) {
|
||||
var obj = d[i];
|
||||
|
||||
// 判断是否模糊查询
|
||||
if (text && obj.indexOf(text) === -1) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// 是否自定义格子宽度
|
||||
var style = '';
|
||||
if (cellWidth !== null) {
|
||||
style += ' style="width:' + cellWidth + '"';
|
||||
}
|
||||
|
||||
// 每个图标dom
|
||||
var icon = '<div class="layui-iconpicker-icon-item" title="' + obj + '" ' + style + '>';
|
||||
|
||||
icon += '<i class="fa ' + obj + '"></i>';
|
||||
|
||||
icon += '</div>';
|
||||
|
||||
icons.push(icon);
|
||||
}
|
||||
|
||||
// 查询出图标后再分页
|
||||
l = icons.length;
|
||||
_pages = l % _limit === 0 ? l / _limit : parseInt(l / _limit + 1);
|
||||
for (var i = 0; i < _pages; i++) {
|
||||
// 按limit分块
|
||||
var lm = $('<div class="layui-iconpicker-icon-limit" id="layui-iconpicker-icon-limit-' + tmp + (i + 1) + '">');
|
||||
|
||||
for (var j = i * _limit; j < (i + 1) * _limit && j < l; j++) {
|
||||
lm.append(icons[j]);
|
||||
}
|
||||
|
||||
listHtml.append(lm);
|
||||
}
|
||||
|
||||
// 无数据
|
||||
if (l === 0) {
|
||||
listHtml.append('<p class="layui-iconpicker-tips">无数据</p>');
|
||||
}
|
||||
|
||||
// 判断是否分页
|
||||
if (page) {
|
||||
$('#' + PICKER_BODY).addClass('layui-iconpicker-body-page');
|
||||
pageHtml = '<div class="layui-iconpicker-page" id="' + PAGE_ID + '">' +
|
||||
'<div class="layui-iconpicker-page-count">' +
|
||||
'<span id="' + PAGE_ID + '-current">1</span>/' +
|
||||
'<span id="' + PAGE_ID + '-pages">' + _pages + '</span>' +
|
||||
' (<span id="' + PAGE_ID + '-length">' + l + '</span>)' +
|
||||
'</div>' +
|
||||
'<div class="layui-iconpicker-page-operate">' +
|
||||
'<i class="layui-icon" id="' + PAGE_ID + '-prev" data-index="0" prev></i> ' +
|
||||
'<i class="layui-icon" id="' + PAGE_ID + '-next" data-index="2" next></i> ' +
|
||||
'</div>' +
|
||||
'</div>';
|
||||
}
|
||||
|
||||
|
||||
$('#' + ICON_BODY).find('.layui-anim').find('.' + LIST_BOX).html('').append(listHtml).append(pageHtml);
|
||||
return a;
|
||||
},
|
||||
// 阻止Layui的一些默认事件
|
||||
preventEvent: function () {
|
||||
var item = '#' + ICON_BODY + ' .layui-anim';
|
||||
a.event('click', item, function (e) {
|
||||
e.stopPropagation();
|
||||
});
|
||||
return a;
|
||||
},
|
||||
// 分页
|
||||
page: function () {
|
||||
var icon = '#' + PAGE_ID + ' .layui-iconpicker-page-operate .layui-icon';
|
||||
|
||||
$(icon).unbind('click');
|
||||
a.event('click', icon, function (e) {
|
||||
var elem = e.currentTarget,
|
||||
total = parseInt($('#' + PAGE_ID + '-pages').html()),
|
||||
isPrev = $(elem).attr('prev') !== undefined,
|
||||
// 按钮上标的页码
|
||||
index = parseInt($(elem).attr('data-index')),
|
||||
$cur = $('#' + PAGE_ID + '-current'),
|
||||
// 点击时正在显示的页码
|
||||
current = parseInt($cur.html());
|
||||
|
||||
// 分页数据
|
||||
if (isPrev && current > 1) {
|
||||
current = current - 1;
|
||||
$(icon + '[prev]').attr('data-index', current);
|
||||
} else if (!isPrev && current < total) {
|
||||
current = current + 1;
|
||||
$(icon + '[next]').attr('data-index', current);
|
||||
}
|
||||
$cur.html(current);
|
||||
|
||||
// 图标数据
|
||||
$('#' + ICON_BODY + ' .layui-iconpicker-icon-limit').hide();
|
||||
$('#layui-iconpicker-icon-limit-' + tmp + current).show();
|
||||
e.stopPropagation();
|
||||
});
|
||||
return a;
|
||||
},
|
||||
/**
|
||||
* 搜索
|
||||
*/
|
||||
search: function () {
|
||||
var item = '#' + PICKER_BODY + ' .layui-iconpicker-search .layui-input';
|
||||
a.event('input propertychange', item, function (e) {
|
||||
var elem = e.target,
|
||||
t = $(elem).val();
|
||||
a.createList(t);
|
||||
});
|
||||
return a;
|
||||
},
|
||||
/**
|
||||
* 点击选中图标
|
||||
*/
|
||||
check: function () {
|
||||
var item = '#' + PICKER_BODY + ' .layui-iconpicker-icon-item';
|
||||
a.event('click', item, function (e) {
|
||||
var el = $(e.currentTarget).find('.fa'),
|
||||
icon = '';
|
||||
|
||||
var clsArr = el.attr('class').split(/[\s\n]/),
|
||||
cls = clsArr[1],
|
||||
icon = cls;
|
||||
$('#' + TITLE_ID).find('.layui-iconpicker-item .fa').html('').attr('class', clsArr.join(' '));
|
||||
|
||||
|
||||
$('#' + ICON_BODY).removeClass(selected).addClass(unselect);
|
||||
$(elem).val(icon).attr('value', icon);
|
||||
// 回调
|
||||
if (click) {
|
||||
click({
|
||||
icon: icon
|
||||
});
|
||||
}
|
||||
|
||||
});
|
||||
return a;
|
||||
},
|
||||
// 监听原始input数值改变
|
||||
inputListen: function () {
|
||||
var el = $(elem);
|
||||
a.event('change', elem, function () {
|
||||
var value = el.val();
|
||||
})
|
||||
// el.change(function(){
|
||||
|
||||
// });
|
||||
return a;
|
||||
},
|
||||
event: function (evt, el, fn) {
|
||||
$(BODY).on(evt, el, fn);
|
||||
}
|
||||
};
|
||||
|
||||
var common = {
|
||||
/**
|
||||
* 加载样式表
|
||||
*/
|
||||
loadCss: function () {
|
||||
var css = '.layui-iconpicker {max-width: 280px;}.layui-iconpicker .layui-anim{display:none;position:absolute;left:0;top:42px;padding:5px 0;z-index:899;min-width:100%;border:1px solid #d2d2d2;max-height:300px;overflow-y:auto;background-color:#fff;border-radius:2px;box-shadow:0 2px 4px rgba(0,0,0,.12);box-sizing:border-box;}.layui-iconpicker-item{border:1px solid #e6e6e6;width:90px;height:38px;border-radius:4px;cursor:pointer;position:relative;}.layui-iconpicker-icon{border-right:1px solid #e6e6e6;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;width:60px;height:100%;float:left;text-align:center;background:#fff;transition:all .3s;}.layui-iconpicker-icon i{line-height:38px;font-size:18px;}.layui-iconpicker-item > .layui-edge{left:70px;}.layui-iconpicker-item:hover{border-color:#D2D2D2!important;}.layui-iconpicker-item:hover .layui-iconpicker-icon{border-color:#D2D2D2!important;}.layui-iconpicker.layui-form-selected .layui-anim{display:block;}.layui-iconpicker-body{padding:6px;}.layui-iconpicker .layui-iconpicker-list{background-color:#fff;border:1px solid #ccc;border-radius:4px;}.layui-iconpicker .layui-iconpicker-icon-item{display:inline-block;width:21.1%;line-height:36px;text-align:center;cursor:pointer;vertical-align:top;height:36px;margin:4px;border:1px solid #ddd;border-radius:2px;transition:300ms;}.layui-iconpicker .layui-iconpicker-icon-item i.layui-icon{font-size:17px;}.layui-iconpicker .layui-iconpicker-icon-item:hover{background-color:#eee;border-color:#ccc;-webkit-box-shadow:0 0 2px #aaa,0 0 2px #fff inset;-moz-box-shadow:0 0 2px #aaa,0 0 2px #fff inset;box-shadow:0 0 2px #aaa,0 0 2px #fff inset;text-shadow:0 0 1px #fff;}.layui-iconpicker-search{position:relative;margin:0 0 6px 0;border:1px solid #e6e6e6;border-radius:2px;transition:300ms;}.layui-iconpicker-search:hover{border-color:#D2D2D2!important;}.layui-iconpicker-search .layui-input{cursor:text;display:inline-block;width:86%;border:none;padding-right:0;margin-top:1px;}.layui-iconpicker-search .layui-icon{position:absolute;top:11px;right:4%;}.layui-iconpicker-tips{text-align:center;padding:8px 0;cursor:not-allowed;}.layui-iconpicker-page{margin-top:6px;margin-bottom:-6px;font-size:12px;padding:0 2px;}.layui-iconpicker-page-count{display:inline-block;}.layui-iconpicker-page-operate{display:inline-block;float:right;cursor:default;}.layui-iconpicker-page-operate .layui-icon{font-size:12px;cursor:pointer;}.layui-iconpicker-body-page .layui-iconpicker-icon-limit{display:none;}.layui-iconpicker-body-page .layui-iconpicker-icon-limit:first-child{display:block;}';
|
||||
var $style = $('head').find('style[iconpicker]');
|
||||
if ($style.length === 0) {
|
||||
$('head').append('<style rel="stylesheet" iconpicker>' + css + '</style>');
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 获取数据
|
||||
*/
|
||||
getData: function (url) {
|
||||
var iconlist = [];
|
||||
$.ajax({
|
||||
url: url,
|
||||
type: 'get',
|
||||
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
|
||||
async: false,
|
||||
success: function (ret) {
|
||||
var exp = /fa-var-(.*):/ig;
|
||||
var result;
|
||||
while ((result = exp.exec(ret)) != null) {
|
||||
iconlist.push('fa-' + result[1]);
|
||||
}
|
||||
},
|
||||
error: function (xhr, textstatus, thrown) {
|
||||
layer.msg('fa图标接口有误');
|
||||
}
|
||||
});
|
||||
return iconlist;
|
||||
}
|
||||
};
|
||||
|
||||
a.init();
|
||||
return new IconPicker();
|
||||
};
|
||||
|
||||
/**
|
||||
* 选中图标
|
||||
* @param filter lay-filter
|
||||
* @param iconName 图标名称,自动识别fontClass/unicode
|
||||
*/
|
||||
IconPicker.prototype.checkIcon = function (filter, iconName) {
|
||||
var el = $('*[lay-filter=' + filter + ']'),
|
||||
p = el.next().find('.layui-iconpicker-item .fa'),
|
||||
c = iconName;
|
||||
|
||||
if (c.indexOf('#xe') > 0) {
|
||||
p.html(c);
|
||||
} else {
|
||||
p.html('').attr('class', 'fa ' + c);
|
||||
}
|
||||
el.attr('value', c).val(c);
|
||||
};
|
||||
|
||||
var iconPicker = new IconPicker();
|
||||
exports(_MOD, iconPicker);
|
||||
});
|
||||
@@ -0,0 +1,350 @@
|
||||
/**
|
||||
* date:2020/02/27
|
||||
* author:Mr.Chung
|
||||
* version:2.0
|
||||
* description:layuimini 主体框架扩展
|
||||
*/
|
||||
layui.define(["jquery", "miniMenu", "element","miniTab", "miniTheme"], function (exports) {
|
||||
var $ = layui.$,
|
||||
layer = layui.layer,
|
||||
miniMenu = layui.miniMenu,
|
||||
miniTheme = layui.miniTheme,
|
||||
element = layui.element ,
|
||||
miniTab = layui.miniTab;
|
||||
|
||||
if (!/http(s*):\/\//.test(location.href)) {
|
||||
var tips = "请先将项目部署至web容器(Apache/Tomcat/Nginx/IIS/等),否则部分数据将无法显示";
|
||||
return layer.alert(tips);
|
||||
}
|
||||
|
||||
var miniAdmin = {
|
||||
|
||||
/**
|
||||
* 后台框架初始化
|
||||
* @param options.iniUrl 后台初始化接口地址
|
||||
* @param options.clearUrl 后台清理缓存接口
|
||||
* @param options.urlHashLocation URL地址hash定位
|
||||
* @param options.bgColorDefault 默认皮肤
|
||||
* @param options.multiModule 是否开启多模块
|
||||
* @param options.menuChildOpen 是否展开子菜单
|
||||
* @param options.loadingTime 初始化加载时间
|
||||
* @param options.pageAnim iframe窗口动画
|
||||
* @param options.maxTabNum 最大的tab打开数量
|
||||
*/
|
||||
render: function (options) {
|
||||
options.iniUrl = options.iniUrl || null;
|
||||
options.clearUrl = options.clearUrl || null;
|
||||
options.urlHashLocation = options.urlHashLocation || false;
|
||||
options.bgColorDefault = options.bgColorDefault || 0;
|
||||
options.multiModule = options.multiModule || false;
|
||||
options.menuChildOpen = options.menuChildOpen || false;
|
||||
options.loadingTime = options.loadingTime || 1;
|
||||
options.pageAnim = options.pageAnim || false;
|
||||
options.maxTabNum = options.maxTabNum || 20;
|
||||
$.getJSON(options.iniUrl, function (data) {
|
||||
if (data == null) {
|
||||
miniAdmin.error('暂无菜单信息')
|
||||
} else {
|
||||
miniAdmin.renderLogo(data.logoInfo);
|
||||
miniAdmin.renderClear(options.clearUrl);
|
||||
miniAdmin.renderHome(data.homeInfo);
|
||||
miniAdmin.renderAnim(options.pageAnim);
|
||||
miniAdmin.listen();
|
||||
miniMenu.render({
|
||||
menuList: data.menuInfo,
|
||||
multiModule: options.multiModule,
|
||||
menuChildOpen: options.menuChildOpen
|
||||
});
|
||||
miniTab.render({
|
||||
filter: 'layuiminiTab',
|
||||
urlHashLocation: options.urlHashLocation,
|
||||
multiModule: options.multiModule,
|
||||
menuChildOpen: options.menuChildOpen,
|
||||
maxTabNum: options.maxTabNum,
|
||||
menuList: data.menuInfo,
|
||||
homeInfo: data.homeInfo,
|
||||
listenSwichCallback: function () {
|
||||
miniAdmin.renderDevice();
|
||||
}
|
||||
});
|
||||
miniTheme.render({
|
||||
bgColorDefault: options.bgColorDefault,
|
||||
listen: true,
|
||||
});
|
||||
miniAdmin.deleteLoader(options.loadingTime);
|
||||
}
|
||||
}).fail(function () {
|
||||
miniAdmin.error('菜单接口有误');
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* 初始化logo
|
||||
* @param data
|
||||
*/
|
||||
renderLogo: function (data) {
|
||||
var html = '<a href="' + data.href + '"><img src="' + data.image + '" alt="logo"><h1>' + data.title + '</h1></a>';
|
||||
$('.layuimini-logo').html(html);
|
||||
},
|
||||
|
||||
/**
|
||||
* 初始化首页
|
||||
* @param data
|
||||
*/
|
||||
renderHome: function (data) {
|
||||
sessionStorage.setItem('layuiminiHomeHref', data.href);
|
||||
$('#layuiminiHomeTabId').html('<span class="layuimini-tab-active"></span><span class="disable-close">' + data.title + '</span><i class="layui-icon layui-unselect layui-tab-close">ဆ</i>');
|
||||
$('#layuiminiHomeTabId').attr('lay-id', data.href);
|
||||
$('#layuiminiHomeTabIframe').html('<iframe width="100%" height="100%" frameborder="no" border="0" marginwidth="0" marginheight="0" src="' + data.href + '"></iframe>');
|
||||
},
|
||||
|
||||
/**
|
||||
* 初始化缓存地址
|
||||
* @param clearUrl
|
||||
*/
|
||||
renderClear: function (clearUrl) {
|
||||
$('.layuimini-clear').attr('data-href',clearUrl);
|
||||
},
|
||||
|
||||
/**
|
||||
* 初始化iframe窗口动画
|
||||
* @param anim
|
||||
*/
|
||||
renderAnim: function (anim) {
|
||||
if (anim) {
|
||||
$('#layuimini-bg-color').after('<style id="layuimini-page-anim">' +
|
||||
'.layui-tab-item.layui-show {animation:moveTop 1s;-webkit-animation:moveTop 1s;animation-fill-mode:both;-webkit-animation-fill-mode:both;position:relative;height:100%;-webkit-overflow-scrolling:touch;}\n' +
|
||||
'@keyframes moveTop {0% {opacity:0;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px);}\n' +
|
||||
' 100% {opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);}\n' +
|
||||
'}\n' +
|
||||
'@-o-keyframes moveTop {0% {opacity:0;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px);}\n' +
|
||||
' 100% {opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);}\n' +
|
||||
'}\n' +
|
||||
'@-moz-keyframes moveTop {0% {opacity:0;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px);}\n' +
|
||||
' 100% {opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);}\n' +
|
||||
'}\n' +
|
||||
'@-webkit-keyframes moveTop {0% {opacity:0;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px);}\n' +
|
||||
' 100% {opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);}\n' +
|
||||
'}' +
|
||||
'</style>');
|
||||
}
|
||||
},
|
||||
|
||||
fullScreen: function () {
|
||||
var el = document.documentElement;
|
||||
var rfs = el.requestFullScreen || el.webkitRequestFullScreen;
|
||||
if (typeof rfs != "undefined" && rfs) {
|
||||
rfs.call(el);
|
||||
} else if (typeof window.ActiveXObject != "undefined") {
|
||||
var wscript = new ActiveXObject("WScript.Shell");
|
||||
if (wscript != null) {
|
||||
wscript.SendKeys("{F11}");
|
||||
}
|
||||
} else if (el.msRequestFullscreen) {
|
||||
el.msRequestFullscreen();
|
||||
} else if (el.oRequestFullscreen) {
|
||||
el.oRequestFullscreen();
|
||||
} else if (el.webkitRequestFullscreen) {
|
||||
el.webkitRequestFullscreen();
|
||||
} else if (el.mozRequestFullScreen) {
|
||||
el.mozRequestFullScreen();
|
||||
} else {
|
||||
miniAdmin.error('浏览器不支持全屏调用!');
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 退出全屏
|
||||
*/
|
||||
exitFullScreen: function () {
|
||||
var el = document;
|
||||
var cfs = el.cancelFullScreen || el.webkitCancelFullScreen || el.exitFullScreen;
|
||||
if (typeof cfs != "undefined" && cfs) {
|
||||
cfs.call(el);
|
||||
} else if (typeof window.ActiveXObject != "undefined") {
|
||||
var wscript = new ActiveXObject("WScript.Shell");
|
||||
if (wscript != null) {
|
||||
wscript.SendKeys("{F11}");
|
||||
}
|
||||
} else if (el.msExitFullscreen) {
|
||||
el.msExitFullscreen();
|
||||
} else if (el.oRequestFullscreen) {
|
||||
el.oCancelFullScreen();
|
||||
}else if (el.mozCancelFullScreen) {
|
||||
el.mozCancelFullScreen();
|
||||
} else if (el.webkitCancelFullScreen) {
|
||||
el.webkitCancelFullScreen();
|
||||
} else {
|
||||
miniAdmin.error('浏览器不支持全屏调用!');
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 初始化设备端
|
||||
*/
|
||||
renderDevice: function () {
|
||||
if (miniAdmin.checkMobile()) {
|
||||
$('.layuimini-tool i').attr('data-side-fold', 1);
|
||||
$('.layuimini-tool i').attr('class', 'fa fa-outdent');
|
||||
$('.layui-layout-body').removeClass('layuimini-mini');
|
||||
$('.layui-layout-body').addClass('layuimini-all');
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* 初始化加载时间
|
||||
* @param loadingTime
|
||||
*/
|
||||
deleteLoader: function (loadingTime) {
|
||||
setTimeout(function () {
|
||||
$('.layuimini-loader').fadeOut();
|
||||
}, loadingTime * 1000)
|
||||
},
|
||||
|
||||
/**
|
||||
* 成功
|
||||
* @param title
|
||||
* @returns {*}
|
||||
*/
|
||||
success: function (title) {
|
||||
return layer.msg(title, {icon: 1, shade: this.shade, scrollbar: false, time: 2000, shadeClose: true});
|
||||
},
|
||||
|
||||
/**
|
||||
* 失败
|
||||
* @param title
|
||||
* @returns {*}
|
||||
*/
|
||||
error: function (title) {
|
||||
return layer.msg(title, {icon: 2, shade: this.shade, scrollbar: false, time: 3000, shadeClose: true});
|
||||
},
|
||||
|
||||
/**
|
||||
* 判断是否为手机
|
||||
* @returns {boolean}
|
||||
*/
|
||||
checkMobile: function () {
|
||||
var ua = navigator.userAgent.toLocaleLowerCase();
|
||||
var pf = navigator.platform.toLocaleLowerCase();
|
||||
var isAndroid = (/android/i).test(ua) || ((/iPhone|iPod|iPad/i).test(ua) && (/linux/i).test(pf))
|
||||
|| (/ucweb.*linux/i.test(ua));
|
||||
var isIOS = (/iPhone|iPod|iPad/i).test(ua) && !isAndroid;
|
||||
var isWinPhone = (/Windows Phone|ZuneWP7/i).test(ua);
|
||||
var clientWidth = document.documentElement.clientWidth;
|
||||
if (!isAndroid && !isIOS && !isWinPhone && clientWidth > 1024) {
|
||||
return false;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 监听
|
||||
*/
|
||||
listen: function () {
|
||||
|
||||
/**
|
||||
* 清理
|
||||
*/
|
||||
$('body').on('click', '[data-clear]', function () {
|
||||
var loading = layer.load(0, {shade: false, time: 2 * 1000});
|
||||
sessionStorage.clear();
|
||||
|
||||
// 判断是否清理服务端
|
||||
var clearUrl = $(this).attr('data-href');
|
||||
if (clearUrl != undefined && clearUrl != '' && clearUrl != null) {
|
||||
$.getJSON(clearUrl, function (data, status) {
|
||||
layer.close(loading);
|
||||
if (data.code != 1) {
|
||||
return miniAdmin.error(data.msg);
|
||||
} else {
|
||||
return miniAdmin.success(data.msg);
|
||||
}
|
||||
}).fail(function () {
|
||||
layer.close(loading);
|
||||
return miniAdmin.error('清理缓存接口有误');
|
||||
});
|
||||
} else {
|
||||
layer.close(loading);
|
||||
return miniAdmin.success('清除缓存成功');
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* 刷新
|
||||
*/
|
||||
$('body').on('click', '[data-refresh]', function () {
|
||||
$(".layui-tab-item.layui-show").find("iframe")[0].contentWindow.location.reload();
|
||||
miniAdmin.success('刷新成功');
|
||||
});
|
||||
|
||||
/**
|
||||
* 监听提示信息
|
||||
*/
|
||||
$("body").on("mouseenter", ".layui-nav-tree .menu-li", function () {
|
||||
if (miniAdmin.checkMobile()) {
|
||||
return false;
|
||||
}
|
||||
var classInfo = $(this).attr('class'),
|
||||
tips = $(this).prop("innerHTML"),
|
||||
isShow = $('.layuimini-tool i').attr('data-side-fold');
|
||||
if (isShow == 0 && tips) {
|
||||
tips = "<ul class='layuimini-menu-left-zoom layui-nav layui-nav-tree layui-this'><li class='layui-nav-item layui-nav-itemed'>"+tips+"</li></ul>" ;
|
||||
window.openTips = layer.tips(tips, $(this), {
|
||||
tips: [2, '#2f4056'],
|
||||
time: 300000,
|
||||
skin:"popup-tips",
|
||||
success:function (el) {
|
||||
var left = $(el).position().left - 10 ;
|
||||
$(el).css({ left:left });
|
||||
element.render();
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
$("body").on("mouseleave", ".popup-tips", function () {
|
||||
if (miniAdmin.checkMobile()) {
|
||||
return false;
|
||||
}
|
||||
var isShow = $('.layuimini-tool i').attr('data-side-fold');
|
||||
if (isShow == 0) {
|
||||
try {
|
||||
layer.close(window.openTips);
|
||||
} catch (e) {
|
||||
console.log(e.message);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
/**
|
||||
* 全屏
|
||||
*/
|
||||
$('body').on('click', '[data-check-screen]', function () {
|
||||
var check = $(this).attr('data-check-screen');
|
||||
if (check == 'full') {
|
||||
miniAdmin.fullScreen();
|
||||
$(this).attr('data-check-screen', 'exit');
|
||||
$(this).html('<i class="fa fa-compress"></i>');
|
||||
} else {
|
||||
miniAdmin.exitFullScreen();
|
||||
$(this).attr('data-check-screen', 'full');
|
||||
$(this).html('<i class="fa fa-arrows-alt"></i>');
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* 点击遮罩层
|
||||
*/
|
||||
$('body').on('click', '.layuimini-make', function () {
|
||||
miniAdmin.renderDevice();
|
||||
});
|
||||
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
exports("miniAdmin", miniAdmin);
|
||||
});
|
||||
@@ -0,0 +1,250 @@
|
||||
/**
|
||||
* date:2020/02/27
|
||||
* author:Mr.Chung
|
||||
* version:2.0
|
||||
* description:layuimini 菜单框架扩展
|
||||
*/
|
||||
layui.define(["element","laytpl" ,"jquery"], function (exports) {
|
||||
var element = layui.element,
|
||||
$ = layui.$,
|
||||
laytpl = layui.laytpl,
|
||||
layer = layui.layer;
|
||||
|
||||
var miniMenu = {
|
||||
|
||||
/**
|
||||
* 菜单初始化
|
||||
* @param options.menuList 菜单数据信息
|
||||
* @param options.multiModule 是否开启多模块
|
||||
* @param options.menuChildOpen 是否展开子菜单
|
||||
*/
|
||||
render: function (options) {
|
||||
options.menuList = options.menuList || [];
|
||||
options.multiModule = options.multiModule || false;
|
||||
options.menuChildOpen = options.menuChildOpen || false;
|
||||
if (options.multiModule) {
|
||||
miniMenu.renderMultiModule(options.menuList, options.menuChildOpen);
|
||||
} else {
|
||||
miniMenu.renderSingleModule(options.menuList, options.menuChildOpen);
|
||||
}
|
||||
miniMenu.listen();
|
||||
},
|
||||
|
||||
/**
|
||||
* 单模块
|
||||
* @param menuList 菜单数据
|
||||
* @param menuChildOpen 是否默认展开
|
||||
*/
|
||||
renderSingleModule: function (menuList, menuChildOpen) {
|
||||
menuList = menuList || [];
|
||||
var leftMenuHtml = '',
|
||||
childOpenClass = '',
|
||||
leftMenuCheckDefault = 'layui-this';
|
||||
var me = this ;
|
||||
if (menuChildOpen) childOpenClass = ' layui-nav-itemed';
|
||||
leftMenuHtml = this.renderLeftMenu(menuList,{ childOpenClass:childOpenClass }) ;
|
||||
$('.layui-layout-body').addClass('layuimini-single-module'); //单模块标识
|
||||
$('.layuimini-header-menu').remove();
|
||||
$('.layuimini-menu-left').html(leftMenuHtml);
|
||||
|
||||
element.init();
|
||||
},
|
||||
|
||||
/**
|
||||
* 渲染一级菜单
|
||||
*/
|
||||
compileMenu: function(menu,isSub){
|
||||
var menuHtml = '<li {{#if( d.menu){ }} data-menu="{{d.menu}}" {{#}}} class="layui-nav-item menu-li {{d.childOpenClass}} {{d.className}}" {{#if( d.id){ }} id="{{d.id}}" {{#}}}> <a {{#if( d.href){ }} layuimini-href="{{d.href}}" {{#}}} {{#if( d.target){ }} target="{{d.target}}" {{#}}} href="javascript:;">{{#if( d.icon){ }} <i class="{{d.icon}}"></i> {{#}}} <span class="layui-left-nav">{{d.title}}</span></a> {{# if(d.children){}} {{d.children}} {{#}}} </li>' ;
|
||||
if(isSub){
|
||||
menuHtml = '<dd class="menu-dd {{d.childOpenClass}} {{ d.className }}"> <a href="javascript:;" {{#if( d.menu){ }} data-menu="{{d.menu}}" {{#}}} {{#if( d.id){ }} id="{{d.id}}" {{#}}} {{#if(( !d.child || !d.child.length ) && d.href){ }} layuimini-href="{{d.href}}" {{#}}} {{#if( d.target){ }} target="{{d.target}}" {{#}}}> {{#if( d.icon){ }} <i class="{{d.icon}}"></i> {{#}}} <span class="layui-left-nav"> {{d.title}}</span></a> {{# if(d.children){}} {{d.children}} {{#}}}</dd>'
|
||||
}
|
||||
return laytpl(menuHtml).render(menu);
|
||||
},
|
||||
compileMenuContainer :function(menu,isSub){
|
||||
var wrapperHtml = '<ul class="layui-nav layui-nav-tree layui-left-nav-tree {{d.className}}" id="{{d.id}}">{{d.children}}</ul>' ;
|
||||
if(isSub){
|
||||
wrapperHtml = '<dl class="layui-nav-child ">{{d.children}}</dl>' ;
|
||||
}
|
||||
if(!menu.children){
|
||||
return "";
|
||||
}
|
||||
return laytpl(wrapperHtml).render(menu);
|
||||
},
|
||||
|
||||
each:function(list,callback){
|
||||
var _list = [];
|
||||
for(var i = 0 ,length = list.length ; i<length ;i++ ){
|
||||
_list[i] = callback(i,list[i]) ;
|
||||
}
|
||||
return _list ;
|
||||
},
|
||||
renderChildrenMenu:function(menuList,options){
|
||||
var me = this ;
|
||||
menuList = menuList || [] ;
|
||||
var html = this.each(menuList,function (idx,menu) {
|
||||
if(menu.child && menu.child.length){
|
||||
menu.children = me.renderChildrenMenu(menu.child,{ childOpenClass: options.childOpenClass || '' });
|
||||
}
|
||||
menu.className = "" ;
|
||||
menu.childOpenClass = options.childOpenClass || ''
|
||||
return me.compileMenu(menu,true)
|
||||
}).join("");
|
||||
return me.compileMenuContainer({ children:html },true)
|
||||
},
|
||||
renderLeftMenu :function(leftMenus,options){
|
||||
options = options || {};
|
||||
var me = this ;
|
||||
var leftMenusHtml = me.each(leftMenus || [],function (idx,leftMenu) { // 左侧菜单遍历
|
||||
var children = me.renderChildrenMenu(leftMenu.child, { childOpenClass:options.childOpenClass });
|
||||
var leftMenuHtml = me.compileMenu({
|
||||
href: leftMenu.href,
|
||||
target: leftMenu.target,
|
||||
childOpenClass: options.childOpenClass,
|
||||
icon: leftMenu.icon,
|
||||
title: leftMenu.title,
|
||||
children: children,
|
||||
className: '',
|
||||
});
|
||||
return leftMenuHtml ;
|
||||
}).join("");
|
||||
|
||||
leftMenusHtml = me.compileMenuContainer({ id:options.parentMenuId,className:options.leftMenuCheckDefault,children:leftMenusHtml }) ;
|
||||
return leftMenusHtml ;
|
||||
},
|
||||
/**
|
||||
* 多模块
|
||||
* @param menuList 菜单数据
|
||||
* @param menuChildOpen 是否默认展开
|
||||
*/
|
||||
renderMultiModule: function (menuList, menuChildOpen) {
|
||||
menuList = menuList || [];
|
||||
var me = this ;
|
||||
var headerMenuHtml = '',
|
||||
headerMobileMenuHtml = '',
|
||||
leftMenuHtml = '',
|
||||
leftMenuCheckDefault = 'layui-this',
|
||||
childOpenClass = '',
|
||||
headerMenuCheckDefault = 'layui-this';
|
||||
|
||||
if (menuChildOpen) childOpenClass = ' layui-nav-itemed';
|
||||
var headerMenuHtml = this.each(menuList, function (index, val) { //顶部菜单渲染
|
||||
var menu = 'multi_module_' + index ;
|
||||
var id = menu+"HeaderId";
|
||||
var topMenuItemHtml = "" ;
|
||||
topMenuItemHtml = me.compileMenu({
|
||||
className:headerMenuCheckDefault,
|
||||
menu:menu,
|
||||
id:id,
|
||||
title:val.title,
|
||||
href:"",
|
||||
target:"",
|
||||
children:""
|
||||
});
|
||||
leftMenuHtml+=me.renderLeftMenu(val.child,{
|
||||
parentMenuId:menu,
|
||||
childOpenClass:childOpenClass,
|
||||
leftMenuCheckDefault:leftMenuCheckDefault
|
||||
});
|
||||
headerMobileMenuHtml +=me.compileMenu({ id:id,menu:menu,id:id,icon:val.icon, title:val.title, },true);
|
||||
headerMenuCheckDefault = "";
|
||||
leftMenuCheckDefault = "layui-hide" ;
|
||||
return topMenuItemHtml ;
|
||||
}).join("");
|
||||
$('.layui-layout-body').addClass('layuimini-multi-module'); //多模块标识
|
||||
$('.layuimini-menu-header-pc').html(headerMenuHtml); //电脑
|
||||
$('.layuimini-menu-left').html(leftMenuHtml);
|
||||
$('.layuimini-menu-header-mobile').html(headerMobileMenuHtml); //手机
|
||||
element.init();
|
||||
},
|
||||
|
||||
/**
|
||||
* 监听
|
||||
*/
|
||||
listen: function () {
|
||||
|
||||
/**
|
||||
* 菜单模块切换
|
||||
*/
|
||||
$('body').on('click', '[data-menu]', function () {
|
||||
var loading = layer.load(0, {shade: false, time: 2 * 1000});
|
||||
var menuId = $(this).attr('data-menu');
|
||||
// header
|
||||
$(".layuimini-header-menu .layui-nav-item.layui-this").removeClass('layui-this');
|
||||
$(this).addClass('layui-this');
|
||||
// left
|
||||
$(".layuimini-menu-left .layui-nav.layui-nav-tree.layui-this").addClass('layui-hide');
|
||||
$(".layuimini-menu-left .layui-nav.layui-nav-tree.layui-this.layui-hide").removeClass('layui-this');
|
||||
$("#" + menuId).removeClass('layui-hide');
|
||||
$("#" + menuId).addClass('layui-this');
|
||||
layer.close(loading);
|
||||
});
|
||||
|
||||
/**
|
||||
* 菜单缩放
|
||||
*/
|
||||
$('body').on('click', '.layuimini-site-mobile', function () {
|
||||
var loading = layer.load(0, {shade: false, time: 2 * 1000});
|
||||
var isShow = $('.layuimini-tool [data-side-fold]').attr('data-side-fold');
|
||||
if (isShow == 1) { // 缩放
|
||||
$('.layuimini-tool [data-side-fold]').attr('data-side-fold', 0);
|
||||
$('.layuimini-tool [data-side-fold]').attr('class', 'fa fa-indent');
|
||||
$('.layui-layout-body').removeClass('layuimini-all');
|
||||
$('.layui-layout-body').addClass('layuimini-mini');
|
||||
} else { // 正常
|
||||
$('.layuimini-tool [data-side-fold]').attr('data-side-fold', 1);
|
||||
$('.layuimini-tool [data-side-fold]').attr('class', 'fa fa-outdent');
|
||||
$('.layui-layout-body').removeClass('layuimini-mini');
|
||||
$('.layui-layout-body').addClass('layuimini-all');
|
||||
layer.close(window.openTips);
|
||||
}
|
||||
element.init();
|
||||
layer.close(loading);
|
||||
});
|
||||
/**
|
||||
* 菜单缩放
|
||||
*/
|
||||
$('body').on('click', '[data-side-fold]', function () {
|
||||
var loading = layer.load(0, {shade: false, time: 2 * 1000});
|
||||
var isShow = $('.layuimini-tool [data-side-fold]').attr('data-side-fold');
|
||||
if (isShow == 1) { // 缩放
|
||||
$('.layuimini-tool [data-side-fold]').attr('data-side-fold', 0);
|
||||
$('.layuimini-tool [data-side-fold]').attr('class', 'fa fa-indent');
|
||||
$('.layui-layout-body').removeClass('layuimini-all');
|
||||
$('.layui-layout-body').addClass('layuimini-mini');
|
||||
// $(".menu-li").each(function (idx,el) {
|
||||
// $(el).addClass("hidden-sub-menu");
|
||||
// });
|
||||
|
||||
} else { // 正常
|
||||
$('.layuimini-tool [data-side-fold]').attr('data-side-fold', 1);
|
||||
$('.layuimini-tool [data-side-fold]').attr('class', 'fa fa-outdent');
|
||||
$('.layui-layout-body').removeClass('layuimini-mini');
|
||||
$('.layui-layout-body').addClass('layuimini-all');
|
||||
// $(".menu-li").each(function (idx,el) {
|
||||
// $(el).removeClass("hidden-sub-menu");
|
||||
// });
|
||||
layer.close(window.openTips);
|
||||
}
|
||||
element.init();
|
||||
layer.close(loading);
|
||||
});
|
||||
|
||||
/**
|
||||
* 手机端点开模块
|
||||
*/
|
||||
$('body').on('click', '.layuimini-header-menu.layuimini-mobile-show dd', function () {
|
||||
var loading = layer.load(0, {shade: false, time: 2 * 1000});
|
||||
var check = $('.layuimini-tool [data-side-fold]').attr('data-side-fold');
|
||||
if(check === "1"){
|
||||
$('.layuimini-site-mobile').trigger("click");
|
||||
element.init();
|
||||
}
|
||||
layer.close(loading);
|
||||
});
|
||||
},
|
||||
|
||||
};
|
||||
|
||||
|
||||
exports("miniMenu", miniMenu);
|
||||
});
|
||||
@@ -0,0 +1,582 @@
|
||||
/**
|
||||
* date:2020/02/27
|
||||
* author:Mr.Chung
|
||||
* version:2.0
|
||||
* description:layuimini tab框架扩展
|
||||
*/
|
||||
layui.define(["element", "layer", "jquery"], function (exports) {
|
||||
var element = layui.element,
|
||||
layer = layui.layer,
|
||||
$ = layui.$;
|
||||
|
||||
|
||||
var miniTab = {
|
||||
|
||||
/**
|
||||
* 初始化tab
|
||||
* @param options
|
||||
*/
|
||||
render: function (options) {
|
||||
options.filter = options.filter || null;
|
||||
options.multiModule = options.multiModule || false;
|
||||
options.urlHashLocation = options.urlHashLocation || false;
|
||||
options.maxTabNum = options.maxTabNum || 20;
|
||||
options.menuList = options.menuList || []; // todo 后期菜单想改为不操作dom, 而是直接操作初始化传过来的数据
|
||||
options.homeInfo = options.homeInfo || {};
|
||||
options.listenSwichCallback = options.listenSwichCallback || function () {
|
||||
};
|
||||
miniTab.listen(options);
|
||||
miniTab.listenRoll();
|
||||
miniTab.listenSwitch(options);
|
||||
miniTab.listenHash(options);
|
||||
},
|
||||
|
||||
/**
|
||||
* 新建tab窗口
|
||||
* @param options.tabId
|
||||
* @param options.href
|
||||
* @param options.title
|
||||
* @param options.isIframe
|
||||
* @param options.maxTabNum
|
||||
*/
|
||||
create: function (options) {
|
||||
options.tabId = options.tabId || null;
|
||||
options.href = options.href || null;
|
||||
options.title = options.title || null;
|
||||
options.isIframe = options.isIframe || false;
|
||||
options.maxTabNum = options.maxTabNum || 20;
|
||||
if ($(".layuimini-tab .layui-tab-title li").length >= options.maxTabNum) {
|
||||
layer.msg('Tab窗口已达到限定数量,请先关闭部分Tab');
|
||||
return false;
|
||||
}
|
||||
var ele = element;
|
||||
if (options.isIframe) ele = parent.layui.element;
|
||||
ele.tabAdd('layuiminiTab', {
|
||||
title: '<span class="layuimini-tab-active"></span><span>' + options.title + '</span><i class="layui-icon layui-unselect layui-tab-close">ဆ</i>' //用于演示
|
||||
, content: '<iframe width="100%" height="100%" frameborder="no" border="0" marginwidth="0" marginheight="0" src="' + options.href + '"></iframe>'
|
||||
, id: options.tabId
|
||||
});
|
||||
$('.layuimini-menu-left').attr('layuimini-tab-tag', 'add');
|
||||
sessionStorage.setItem('layuiminimenu_' + options.tabId, options.title);
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* 切换选项卡
|
||||
* @param tabId
|
||||
*/
|
||||
change: function (tabId) {
|
||||
element.tabChange('layuiminiTab', tabId);
|
||||
},
|
||||
|
||||
/**
|
||||
* 删除tab窗口
|
||||
* @param tabId
|
||||
* @param isParent
|
||||
*/
|
||||
delete: function (tabId, isParent) {
|
||||
// todo 未知BUG,不知道是不是layui问题,必须先删除元素
|
||||
$(".layuimini-tab .layui-tab-title .layui-unselect.layui-tab-bar").remove();
|
||||
|
||||
if (isParent === true) {
|
||||
parent.layui.element.tabDelete('layuiminiTab', tabId);
|
||||
} else {
|
||||
element.tabDelete('layuiminiTab', tabId);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 在iframe层打开新tab方法
|
||||
*/
|
||||
openNewTabByIframe: function (options) {
|
||||
options.href = options.href || null;
|
||||
options.title = options.title || null;
|
||||
var loading = parent.layer.load(0, {shade: false, time: 2 * 1000});
|
||||
if (options.href === null || options.href === undefined) options.href = new Date().getTime();
|
||||
var checkTab = miniTab.check(options.href, true);
|
||||
if (!checkTab) {
|
||||
miniTab.create({
|
||||
tabId: options.href,
|
||||
href: options.href,
|
||||
title: options.title,
|
||||
isIframe: true,
|
||||
});
|
||||
}
|
||||
parent.layui.element.tabChange('layuiminiTab', options.href);
|
||||
parent.layer.close(loading);
|
||||
},
|
||||
|
||||
/**
|
||||
* 在iframe层关闭当前tab方法
|
||||
*/
|
||||
deleteCurrentByIframe: function () {
|
||||
var ele = $(".layuimini-tab .layui-tab-title li.layui-this", parent.document);
|
||||
if (ele.length > 0) {
|
||||
var layId = $(ele[0]).attr('lay-id');
|
||||
miniTab.delete(layId, true);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 判断tab窗口
|
||||
*/
|
||||
check: function (tabId, isIframe) {
|
||||
// 判断选项卡上是否有
|
||||
var checkTab = false;
|
||||
if (isIframe === undefined || isIframe === false) {
|
||||
$(".layui-tab-title li").each(function () {
|
||||
var checkTabId = $(this).attr('lay-id');
|
||||
if (checkTabId != null && checkTabId === tabId) {
|
||||
checkTab = true;
|
||||
}
|
||||
});
|
||||
} else {
|
||||
parent.layui.$(".layui-tab-title li").each(function () {
|
||||
var checkTabId = $(this).attr('lay-id');
|
||||
if (checkTabId != null && checkTabId === tabId) {
|
||||
checkTab = true;
|
||||
}
|
||||
});
|
||||
}
|
||||
return checkTab;
|
||||
},
|
||||
|
||||
/**
|
||||
* 开启tab右键菜单
|
||||
* @param tabId
|
||||
* @param left
|
||||
*/
|
||||
openTabRignMenu: function (tabId, left) {
|
||||
miniTab.closeTabRignMenu();
|
||||
var menuHtml = '<div class="layui-unselect layui-form-select layui-form-selected layuimini-tab-mousedown layui-show" data-tab-id="' + tabId + '" style="left: ' + left + 'px!important">\n' +
|
||||
'<dl>\n' +
|
||||
'<dd><a href="javascript:;" layuimini-tab-menu-close="current">关 闭 当 前</a></dd>\n' +
|
||||
'<dd><a href="javascript:;" layuimini-tab-menu-close="other">关 闭 其 他</a></dd>\n' +
|
||||
'<dd><a href="javascript:;" layuimini-tab-menu-close="all">关 闭 全 部</a></dd>\n' +
|
||||
'</dl>\n' +
|
||||
'</div>';
|
||||
var makeHtml = '<div class="layuimini-tab-make"></div>';
|
||||
$('.layuimini-tab .layui-tab-title').after(menuHtml);
|
||||
$('.layuimini-tab .layui-tab-content').after(makeHtml);
|
||||
},
|
||||
|
||||
/**
|
||||
* 关闭tab右键菜单
|
||||
*/
|
||||
closeTabRignMenu: function () {
|
||||
$('.layuimini-tab-mousedown').remove();
|
||||
$('.layuimini-tab-make').remove();
|
||||
},
|
||||
|
||||
/**
|
||||
* 查询菜单信息
|
||||
* @param href
|
||||
* @param menuList
|
||||
*/
|
||||
searchMenu: function (href, menuList) {
|
||||
var menu;
|
||||
for (key in menuList) {
|
||||
var item = menuList[key];
|
||||
if (item.href === href) {
|
||||
menu = item;
|
||||
break;
|
||||
}
|
||||
if (item.child) {
|
||||
newMenu = miniTab.searchMenu(href, item.child);
|
||||
if (newMenu) {
|
||||
menu = newMenu;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return menu;
|
||||
},
|
||||
|
||||
/**
|
||||
* 监听
|
||||
* @param options
|
||||
*/
|
||||
listen: function (options) {
|
||||
options = options || {};
|
||||
options.maxTabNum = options.maxTabNum || 20;
|
||||
|
||||
/**
|
||||
* 打开新窗口
|
||||
*/
|
||||
$('body').on('click', '[layuimini-href]', function () {
|
||||
var loading = layer.load(0, {shade: false, time: 2 * 1000});
|
||||
var tabId = $(this).attr('layuimini-href'),
|
||||
href = $(this).attr('layuimini-href'),
|
||||
title = $(this).text(),
|
||||
target = $(this).attr('target');
|
||||
|
||||
var el = $("[layuimini-href='" + href + "']", ".layuimini-menu-left");
|
||||
layer.close(window.openTips);
|
||||
if (el.length) {
|
||||
$(el).closest(".layui-nav-tree").find(".layui-this").removeClass("layui-this");
|
||||
$(el).parent().addClass("layui-this");
|
||||
}
|
||||
|
||||
if (target === '_blank') {
|
||||
layer.close(loading);
|
||||
window.open(href, "_blank");
|
||||
return false;
|
||||
}
|
||||
|
||||
if (tabId === null || tabId === undefined) tabId = new Date().getTime();
|
||||
var checkTab = miniTab.check(tabId);
|
||||
if (!checkTab) {
|
||||
miniTab.create({
|
||||
tabId: tabId,
|
||||
href: href,
|
||||
title: title,
|
||||
isIframe: false,
|
||||
maxTabNum: options.maxTabNum,
|
||||
});
|
||||
}
|
||||
element.tabChange('layuiminiTab', tabId);
|
||||
layer.close(loading);
|
||||
});
|
||||
|
||||
/**
|
||||
* 在iframe子菜单上打开新窗口
|
||||
*/
|
||||
$('body').on('click', '[layuimini-content-href]', function () {
|
||||
var loading = parent.layer.load(0, {shade: false, time: 2 * 1000});
|
||||
var tabId = $(this).attr('layuimini-content-href'),
|
||||
href = $(this).attr('layuimini-content-href'),
|
||||
title = $(this).attr('data-title'),
|
||||
target = $(this).attr('target');
|
||||
if (target === '_blank') {
|
||||
parent.layer.close(loading);
|
||||
window.open(href, "_blank");
|
||||
return false;
|
||||
}
|
||||
if (tabId === null || tabId === undefined) tabId = new Date().getTime();
|
||||
var checkTab = miniTab.check(tabId, true);
|
||||
if (!checkTab) {
|
||||
miniTab.create({
|
||||
tabId: tabId,
|
||||
href: href,
|
||||
title: title,
|
||||
isIframe: true,
|
||||
maxTabNum: options.maxTabNum,
|
||||
});
|
||||
}
|
||||
parent.layui.element.tabChange('layuiminiTab', tabId);
|
||||
parent.layer.close(loading);
|
||||
});
|
||||
|
||||
/**
|
||||
* 关闭选项卡
|
||||
**/
|
||||
$('body').on('click', '.layuimini-tab .layui-tab-title .layui-tab-close', function () {
|
||||
var loading = layer.load(0, {shade: false, time: 2 * 1000});
|
||||
var $parent = $(this).parent();
|
||||
var tabId = $parent.attr('lay-id');
|
||||
if (tabId !== undefined || tabId !== null) {
|
||||
miniTab.delete(tabId);
|
||||
}
|
||||
layer.close(loading);
|
||||
});
|
||||
|
||||
/**
|
||||
* 选项卡操作
|
||||
*/
|
||||
$('body').on('click', '[layuimini-tab-close]', function () {
|
||||
var loading = layer.load(0, {shade: false, time: 2 * 1000});
|
||||
var closeType = $(this).attr('layuimini-tab-close');
|
||||
$(".layuimini-tab .layui-tab-title li").each(function () {
|
||||
var tabId = $(this).attr('lay-id');
|
||||
var id = $(this).attr('id');
|
||||
var isCurrent = $(this).hasClass('layui-this');
|
||||
if (id !== 'layuiminiHomeTabId') {
|
||||
if (closeType === 'all') {
|
||||
miniTab.delete(tabId);
|
||||
} else {
|
||||
if (closeType === 'current' && isCurrent) {
|
||||
miniTab.delete(tabId);
|
||||
} else if (closeType === 'other' && !isCurrent) {
|
||||
miniTab.delete(tabId);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
layer.close(loading);
|
||||
});
|
||||
|
||||
/**
|
||||
* 禁用网页右键
|
||||
*/
|
||||
$(".layuimini-tab .layui-tab-title").unbind("mousedown").bind("contextmenu", function (e) {
|
||||
e.preventDefault();
|
||||
return false;
|
||||
});
|
||||
|
||||
/**
|
||||
* 注册鼠标右键
|
||||
*/
|
||||
$('body').on('mousedown', '.layuimini-tab .layui-tab-title li', function (e) {
|
||||
var left = $(this).offset().left - $('.layuimini-tab ').offset().left + ($(this).width() / 2),
|
||||
tabId = $(this).attr('lay-id');
|
||||
if (e.which === 3) {
|
||||
miniTab.openTabRignMenu(tabId, left);
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* 关闭tab右键菜单
|
||||
*/
|
||||
$('body').on('click', '.layui-body,.layui-header,.layuimini-menu-left,.layuimini-tab-make', function () {
|
||||
miniTab.closeTabRignMenu();
|
||||
});
|
||||
|
||||
/**
|
||||
* tab右键选项卡操作
|
||||
*/
|
||||
$('body').on('click', '[layuimini-tab-menu-close]', function () {
|
||||
var loading = layer.load(0, {shade: false, time: 2 * 1000});
|
||||
var closeType = $(this).attr('layuimini-tab-menu-close'),
|
||||
currentTabId = $('.layuimini-tab-mousedown').attr('data-tab-id');
|
||||
$(".layuimini-tab .layui-tab-title li").each(function () {
|
||||
var tabId = $(this).attr('lay-id');
|
||||
var id = $(this).attr('id');
|
||||
if (id !== 'layuiminiHomeTabId') {
|
||||
if (closeType === 'all') {
|
||||
miniTab.delete(tabId);
|
||||
} else {
|
||||
if (closeType === 'current' && currentTabId === tabId) {
|
||||
miniTab.delete(tabId);
|
||||
} else if (closeType === 'other' && currentTabId !== tabId) {
|
||||
miniTab.delete(tabId);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
miniTab.closeTabRignMenu();
|
||||
layer.close(loading);
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* 监听tab切换
|
||||
* @param options
|
||||
*/
|
||||
listenSwitch: function (options) {
|
||||
options.filter = options.filter || null;
|
||||
options.multiModule = options.multiModule || false;
|
||||
options.urlHashLocation = options.urlHashLocation || false;
|
||||
options.listenSwichCallback = options.listenSwichCallback || function () {
|
||||
|
||||
};
|
||||
element.on('tab(' + options.filter + ')', function (data) {
|
||||
var tabId = $(this).attr('lay-id');
|
||||
if (options.urlHashLocation) {
|
||||
location.hash = '/' + tabId;
|
||||
}
|
||||
if (typeof options.listenSwichCallback === 'function') {
|
||||
options.listenSwichCallback();
|
||||
}
|
||||
// 判断是否为新增窗口
|
||||
if ($('.layuimini-menu-left').attr('layuimini-tab-tag') === 'add') {
|
||||
$('.layuimini-menu-left').attr('layuimini-tab-tag', 'no')
|
||||
} else {
|
||||
$("[layuimini-href]").parent().removeClass('layui-this');
|
||||
if (options.multiModule) {
|
||||
miniTab.listenSwitchMultiModule(tabId);
|
||||
} else {
|
||||
miniTab.listenSwitchSingleModule(tabId);
|
||||
}
|
||||
}
|
||||
miniTab.rollPosition();
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* 监听hash变化
|
||||
* @param options
|
||||
* @returns {boolean}
|
||||
*/
|
||||
listenHash: function (options) {
|
||||
options.urlHashLocation = options.urlHashLocation || false;
|
||||
options.maxTabNum = options.maxTabNum || 20;
|
||||
options.homeInfo = options.homeInfo || {};
|
||||
options.menuList = options.menuList || [];
|
||||
if (!options.urlHashLocation) return false;
|
||||
var tabId = location.hash.replace(/^#\//, '');
|
||||
if (tabId === null || tabId === undefined || tabId ==='') return false;
|
||||
|
||||
// 判断是否为首页
|
||||
if(tabId ===options.homeInfo.href) return false;
|
||||
|
||||
// 判断是否为右侧菜单
|
||||
var menu = miniTab.searchMenu(tabId, options.menuList);
|
||||
if (menu !== undefined) {
|
||||
miniTab.create({
|
||||
tabId: tabId,
|
||||
href: tabId,
|
||||
title: menu.title,
|
||||
isIframe: false,
|
||||
maxTabNum: options.maxTabNum,
|
||||
});
|
||||
$('.layuimini-menu-left').attr('layuimini-tab-tag', 'no');
|
||||
element.tabChange('layuiminiTab', tabId);
|
||||
return false;
|
||||
}
|
||||
|
||||
// 判断是否为快捷菜单
|
||||
var isSearchMenu = false;
|
||||
$("[layuimini-content-href]").each(function () {
|
||||
if ($(this).attr("layuimini-content-href") === tabId) {
|
||||
var title = $(this).attr("data-title");
|
||||
miniTab.create({
|
||||
tabId: tabId,
|
||||
href: tabId,
|
||||
title: title,
|
||||
isIframe: false,
|
||||
maxTabNum: options.maxTabNum,
|
||||
});
|
||||
$('.layuimini-menu-left').attr('layuimini-tab-tag', 'no');
|
||||
element.tabChange('layuiminiTab', tabId);
|
||||
isSearchMenu = true;
|
||||
return false;
|
||||
}
|
||||
});
|
||||
if (isSearchMenu) return false;
|
||||
|
||||
// 既不是右侧菜单、快捷菜单,就直接打开
|
||||
var title = sessionStorage.getItem('layuiminimenu_' + tabId) === null ? tabId : sessionStorage.getItem('layuiminimenu_' + tabId);
|
||||
miniTab.create({
|
||||
tabId: tabId,
|
||||
href: tabId,
|
||||
title: title,
|
||||
isIframe: false,
|
||||
maxTabNum: options.maxTabNum,
|
||||
});
|
||||
element.tabChange('layuiminiTab', tabId);
|
||||
return false;
|
||||
},
|
||||
|
||||
/**
|
||||
* 监听滚动
|
||||
*/
|
||||
listenRoll: function () {
|
||||
$(".layuimini-tab-roll-left").click(function () {
|
||||
miniTab.rollClick("left");
|
||||
});
|
||||
$(".layuimini-tab-roll-right").click(function () {
|
||||
miniTab.rollClick("right");
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* 单模块切换
|
||||
* @param tabId
|
||||
*/
|
||||
listenSwitchSingleModule: function (tabId) {
|
||||
$("[layuimini-href]").each(function () {
|
||||
if ($(this).attr("layuimini-href") === tabId) {
|
||||
// 自动展开菜单栏
|
||||
var addMenuClass = function ($element, type) {
|
||||
if (type === 1) {
|
||||
$element.addClass('layui-this');
|
||||
if ($element.hasClass('layui-nav-item') && $element.hasClass('layui-this')) {
|
||||
$(".layuimini-header-menu li").attr('class', 'layui-nav-item');
|
||||
} else {
|
||||
addMenuClass($element.parent().parent(), 2);
|
||||
}
|
||||
} else {
|
||||
$element.addClass('layui-nav-itemed');
|
||||
if ($element.hasClass('layui-nav-item') && $element.hasClass('layui-nav-itemed')) {
|
||||
$(".layuimini-header-menu li").attr('class', 'layui-nav-item');
|
||||
} else {
|
||||
addMenuClass($element.parent().parent(), 2);
|
||||
}
|
||||
}
|
||||
};
|
||||
addMenuClass($(this).parent(), 1);
|
||||
return false;
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* 多模块切换
|
||||
* @param tabId
|
||||
*/
|
||||
listenSwitchMultiModule: function (tabId) {
|
||||
$("[layuimini-href]").each(function () {
|
||||
if ($(this).attr("layuimini-href") === tabId) {
|
||||
|
||||
// 自动展开菜单栏
|
||||
var addMenuClass = function ($element, type) {
|
||||
if (type === 1) {
|
||||
$element.addClass('layui-this');
|
||||
if ($element.hasClass('layui-nav-item') && $element.hasClass('layui-this')) {
|
||||
var moduleId = $element.parent().attr('id');
|
||||
$(".layuimini-header-menu li").attr('class', 'layui-nav-item');
|
||||
$("#" + moduleId + "HeaderId").addClass("layui-this");
|
||||
$(".layuimini-menu-left .layui-nav.layui-nav-tree").attr('class', 'layui-nav layui-nav-tree layui-hide');
|
||||
$("#" + moduleId).attr('class', 'layui-nav layui-nav-tree layui-this');
|
||||
} else {
|
||||
addMenuClass($element.parent().parent(), 2);
|
||||
}
|
||||
} else {
|
||||
$element.addClass('layui-nav-itemed');
|
||||
if ($element.hasClass('layui-nav-item') && $element.hasClass('layui-nav-itemed')) {
|
||||
var moduleId = $element.parent().attr('id');
|
||||
$(".layuimini-header-menu li").attr('class', 'layui-nav-item');
|
||||
$("#" + moduleId + "HeaderId").addClass("layui-this");
|
||||
$(".layuimini-menu-left .layui-nav.layui-nav-tree").attr('class', 'layui-nav layui-nav-tree layui-hide');
|
||||
$("#" + moduleId).attr('class', 'layui-nav layui-nav-tree layui-this');
|
||||
} else {
|
||||
addMenuClass($element.parent().parent(), 2);
|
||||
}
|
||||
}
|
||||
};
|
||||
addMenuClass($(this).parent(), 1);
|
||||
return false;
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* 自动定位
|
||||
*/
|
||||
rollPosition: function () {
|
||||
var $tabTitle = $('.layuimini-tab .layui-tab-title');
|
||||
var autoLeft = 0;
|
||||
$tabTitle.children("li").each(function () {
|
||||
if ($(this).hasClass('layui-this')) {
|
||||
return false;
|
||||
} else {
|
||||
autoLeft += $(this).outerWidth();
|
||||
}
|
||||
});
|
||||
$tabTitle.animate({
|
||||
scrollLeft: autoLeft - $tabTitle.width() / 3
|
||||
}, 200);
|
||||
},
|
||||
|
||||
/**
|
||||
* 点击滚动
|
||||
* @param direction
|
||||
*/
|
||||
rollClick: function (direction) {
|
||||
var $tabTitle = $('.layuimini-tab .layui-tab-title');
|
||||
var left = $tabTitle.scrollLeft();
|
||||
if ('left' === direction) {
|
||||
$tabTitle.animate({
|
||||
scrollLeft: left - 450
|
||||
}, 200);
|
||||
} else {
|
||||
$tabTitle.animate({
|
||||
scrollLeft: left + 450
|
||||
}, 200);
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
exports("miniTab", miniTab);
|
||||
});
|
||||
@@ -0,0 +1,469 @@
|
||||
/**
|
||||
* date:2020/02/28
|
||||
* author:Mr.Chung
|
||||
* version:2.0
|
||||
* description:layuimini tab框架扩展
|
||||
*/
|
||||
layui.define(["jquery", "layer"], function (exports) {
|
||||
var $ = layui.$,
|
||||
layer = layui.layer;
|
||||
|
||||
var miniTheme = {
|
||||
|
||||
/**
|
||||
* 主题配置项
|
||||
* @param bgcolorId
|
||||
* @returns {{headerLogo, menuLeftHover, headerRight, menuLeft, headerRightThis, menuLeftThis}|*|*[]}
|
||||
*/
|
||||
config: function (bgcolorId) {
|
||||
var bgColorConfig = [
|
||||
{
|
||||
headerRightBg: '#ffffff', //头部右侧背景色
|
||||
headerRightBgThis: '#e4e4e4', //头部右侧选中背景色,
|
||||
headerRightColor: 'rgba(107, 107, 107, 0.7)', //头部右侧字体颜色,
|
||||
headerRightChildColor: 'rgba(107, 107, 107, 0.7)', //头部右侧下拉字体颜色,
|
||||
headerRightColorThis: '#565656', //头部右侧鼠标选中,
|
||||
headerRightNavMore: 'rgba(160, 160, 160, 0.7)', //头部右侧更多下拉颜色,
|
||||
headerRightNavMoreBg: '#1E9FFF', //头部右侧更多下拉列表选中背景色,
|
||||
headerRightNavMoreColor: '#ffffff', //头部右侧更多下拉列表字体色,
|
||||
headerRightToolColor: '#565656', //头部缩放按钮样式,
|
||||
headerLogoBg: '#192027', //logo背景颜色,
|
||||
headerLogoColor: 'rgb(191, 187, 187)', //logo字体颜色,
|
||||
leftMenuNavMore: 'rgb(191, 187, 187)', //左侧菜单更多下拉样式,
|
||||
leftMenuBg: '#28333E', //左侧菜单背景,
|
||||
leftMenuBgThis: '#1E9FFF', //左侧菜单选中背景,
|
||||
leftMenuChildBg: '#0c0f13', //左侧菜单子菜单背景,
|
||||
leftMenuColor: 'rgb(191, 187, 187)', //左侧菜单字体颜色,
|
||||
leftMenuColorThis: '#ffffff', //左侧菜单选中字体颜色,
|
||||
tabActiveColor: '#1e9fff', //tab选项卡选中颜色,
|
||||
},
|
||||
{
|
||||
headerRightBg: '#23262e', //头部右侧背景色
|
||||
headerRightBgThis: '#0c0c0c', //头部右侧选中背景色,
|
||||
headerRightColor: 'rgba(255,255,255,.7)', //头部右侧字体颜色,
|
||||
headerRightChildColor: '#676767', //头部右侧下拉字体颜色,
|
||||
headerRightColorThis: '#ffffff', //头部右侧鼠标选中,
|
||||
headerRightNavMore: 'rgba(255,255,255,.7)', //头部右侧更多下拉颜色,
|
||||
headerRightNavMoreBg: '#1aa094', //头部右侧更多下拉列表选中背景色,
|
||||
headerRightNavMoreColor: '#ffffff', //头部右侧更多下拉列表字体色,
|
||||
headerRightToolColor: '#bbe3df', //头部缩放按钮样式,
|
||||
headerLogoBg: '#0c0c0c', //logo背景颜色,
|
||||
headerLogoColor: '#ffffff', //logo字体颜色,
|
||||
leftMenuNavMore: 'rgb(191, 187, 187)', //左侧菜单更多下拉样式,
|
||||
leftMenuBg: '#23262e', //左侧菜单背景,
|
||||
leftMenuBgThis: '#737373', //左侧菜单选中背景,
|
||||
leftMenuChildBg: 'rgba(0,0,0,.3)', //左侧菜单子菜单背景,
|
||||
leftMenuColor: 'rgb(191, 187, 187)', //左侧菜单字体颜色,
|
||||
leftMenuColorThis: '#ffffff', //左侧菜单选中字体颜色,
|
||||
tabActiveColor: '#23262e', //tab选项卡选中颜色,
|
||||
},
|
||||
{
|
||||
headerRightBg: '#ffa4d1', //头部右侧背景色
|
||||
headerRightBgThis: '#bf7b9d', //头部右侧选中背景色,
|
||||
headerRightColor: 'rgba(255,255,255,.7)', //头部右侧字体颜色,
|
||||
headerRightChildColor: '#676767', //头部右侧下拉字体颜色,
|
||||
headerRightColorThis: '#ffffff', //头部右侧鼠标选中,
|
||||
headerRightNavMore: 'rgba(255,255,255,.7)', //头部右侧更多下拉颜色,
|
||||
headerRightNavMoreBg: '#ffa4d1', //头部右侧更多下拉列表选中背景色,
|
||||
headerRightNavMoreColor: '#ffffff', //头部右侧更多下拉列表字体色,
|
||||
headerRightToolColor: '#bbe3df', //头部缩放按钮样式,
|
||||
headerLogoBg: '#e694bd', //logo背景颜色,
|
||||
headerLogoColor: '#ffffff', //logo字体颜色,
|
||||
leftMenuNavMore: 'rgb(191, 187, 187)', //左侧菜单更多下拉样式,
|
||||
leftMenuBg: '#1f1f1f', //左侧菜单背景,
|
||||
leftMenuBgThis: '#737373', //左侧菜单选中背景,
|
||||
leftMenuChildBg: 'rgba(0,0,0,.3)', //左侧菜单子菜单背景,
|
||||
leftMenuColor: 'rgb(191, 187, 187)', //左侧菜单字体颜色,
|
||||
leftMenuColorThis: '#ffffff', //左侧菜单选中字体颜色,
|
||||
tabActiveColor: '#ffa4d1', //tab选项卡选中颜色,
|
||||
},
|
||||
{
|
||||
headerRightBg: '#1aa094', //头部右侧背景色
|
||||
headerRightBgThis: '#197971', //头部右侧选中背景色,
|
||||
headerRightColor: 'rgba(255,255,255,.7)', //头部右侧字体颜色,
|
||||
headerRightChildColor: '#676767', //头部右侧下拉字体颜色,
|
||||
headerRightColorThis: '#ffffff', //头部右侧鼠标选中,
|
||||
headerRightNavMore: 'rgba(255,255,255,.7)', //头部右侧更多下拉颜色,
|
||||
headerRightNavMoreBg: '#1aa094', //头部右侧更多下拉列表选中背景色,
|
||||
headerRightNavMoreColor: '#ffffff', //头部右侧更多下拉列表字体色,
|
||||
headerRightToolColor: '#bbe3df', //头部缩放按钮样式,
|
||||
headerLogoBg: '#0c0c0c', //logo背景颜色,
|
||||
headerLogoColor: '#ffffff', //logo字体颜色,
|
||||
leftMenuNavMore: 'rgb(191, 187, 187)', //左侧菜单更多下拉样式,
|
||||
leftMenuBg: '#23262e', //左侧菜单背景,
|
||||
leftMenuBgThis: '#1aa094', //左侧菜单选中背景,
|
||||
leftMenuChildBg: 'rgba(0,0,0,.3)', //左侧菜单子菜单背景,
|
||||
leftMenuColor: 'rgb(191, 187, 187)', //左侧菜单字体颜色,
|
||||
leftMenuColorThis: '#ffffff', //左侧菜单选中字体颜色,
|
||||
tabActiveColor: '#1aa094', //tab选项卡选中颜色,
|
||||
},
|
||||
{
|
||||
headerRightBg: '#1e9fff', //头部右侧背景色
|
||||
headerRightBgThis: '#0069b7', //头部右侧选中背景色,
|
||||
headerRightColor: 'rgba(255,255,255,.7)', //头部右侧字体颜色,
|
||||
headerRightChildColor: '#676767', //头部右侧下拉字体颜色,
|
||||
headerRightColorThis: '#ffffff', //头部右侧鼠标选中,
|
||||
headerRightNavMore: 'rgba(255,255,255,.7)', //头部右侧更多下拉颜色,
|
||||
headerRightNavMoreBg: '#1e9fff', //头部右侧更多下拉列表选中背景色,
|
||||
headerRightNavMoreColor: '#ffffff', //头部右侧更多下拉列表字体色,
|
||||
headerRightToolColor: '#bbe3df', //头部缩放按钮样式,
|
||||
headerLogoBg: '#0c0c0c', //logo背景颜色,
|
||||
headerLogoColor: '#ffffff', //logo字体颜色,
|
||||
leftMenuNavMore: 'rgb(191, 187, 187)', //左侧菜单更多下拉样式,
|
||||
leftMenuBg: '#1f1f1f', //左侧菜单背景,
|
||||
leftMenuBgThis: '#1e9fff', //左侧菜单选中背景,
|
||||
leftMenuChildBg: 'rgba(0,0,0,.3)', //左侧菜单子菜单背景,
|
||||
leftMenuColor: 'rgb(191, 187, 187)', //左侧菜单字体颜色,
|
||||
leftMenuColorThis: '#ffffff', //左侧菜单选中字体颜色,
|
||||
tabActiveColor: '#1e9fff', //tab选项卡选中颜色,
|
||||
},
|
||||
{
|
||||
headerRightBg: '#ffb800', //头部右侧背景色
|
||||
headerRightBgThis: '#d09600', //头部右侧选中背景色,
|
||||
headerRightColor: 'rgba(255,255,255,.7)', //头部右侧字体颜色,
|
||||
headerRightChildColor: '#676767', //头部右侧下拉字体颜色,
|
||||
headerRightColorThis: '#ffffff', //头部右侧鼠标选中,
|
||||
headerRightNavMore: 'rgba(255,255,255,.7)', //头部右侧更多下拉颜色,
|
||||
headerRightNavMoreBg: '#d09600', //头部右侧更多下拉列表选中背景色,
|
||||
headerRightNavMoreColor: '#ffffff', //头部右侧更多下拉列表字体色,
|
||||
headerRightToolColor: '#bbe3df', //头部缩放按钮样式,
|
||||
headerLogoBg: '#243346', //logo背景颜色,
|
||||
headerLogoColor: '#ffffff', //logo字体颜色,
|
||||
leftMenuNavMore: 'rgb(191, 187, 187)', //左侧菜单更多下拉样式,
|
||||
leftMenuBg: '#2f4056', //左侧菜单背景,
|
||||
leftMenuBgThis: '#8593a7', //左侧菜单选中背景,
|
||||
leftMenuChildBg: 'rgba(0,0,0,.3)', //左侧菜单子菜单背景,
|
||||
leftMenuColor: 'rgb(191, 187, 187)', //左侧菜单字体颜色,
|
||||
leftMenuColorThis: '#ffffff', //左侧菜单选中字体颜色,
|
||||
tabActiveColor: '#ffb800', //tab选项卡选中颜色,
|
||||
},
|
||||
{
|
||||
headerRightBg: '#e82121', //头部右侧背景色
|
||||
headerRightBgThis: '#ae1919', //头部右侧选中背景色,
|
||||
headerRightColor: 'rgba(255,255,255,.7)', //头部右侧字体颜色,
|
||||
headerRightChildColor: '#676767', //头部右侧下拉字体颜色,
|
||||
headerRightColorThis: '#ffffff', //头部右侧鼠标选中,
|
||||
headerRightNavMore: 'rgba(255,255,255,.7)', //头部右侧更多下拉颜色,
|
||||
headerRightNavMoreBg: '#ae1919', //头部右侧更多下拉列表选中背景色,
|
||||
headerRightNavMoreColor: '#ffffff', //头部右侧更多下拉列表字体色,
|
||||
headerRightToolColor: '#bbe3df', //头部缩放按钮样式,
|
||||
headerLogoBg: '#0c0c0c', //logo背景颜色,
|
||||
headerLogoColor: '#ffffff', //logo字体颜色,
|
||||
leftMenuNavMore: 'rgb(191, 187, 187)', //左侧菜单更多下拉样式,
|
||||
leftMenuBg: '#1f1f1f', //左侧菜单背景,
|
||||
leftMenuBgThis: '#3b3f4b', //左侧菜单选中背景,
|
||||
leftMenuChildBg: 'rgba(0,0,0,.3)', //左侧菜单子菜单背景,
|
||||
leftMenuColor: 'rgb(191, 187, 187)', //左侧菜单字体颜色,
|
||||
leftMenuColorThis: '#ffffff', //左侧菜单选中字体颜色,
|
||||
tabActiveColor: '#e82121', //tab选项卡选中颜色,
|
||||
},
|
||||
{
|
||||
headerRightBg: '#963885', //头部右侧背景色
|
||||
headerRightBgThis: '#772c6a', //头部右侧选中背景色,
|
||||
headerRightColor: 'rgba(255,255,255,.7)', //头部右侧字体颜色,
|
||||
headerRightChildColor: '#676767', //头部右侧下拉字体颜色,
|
||||
headerRightColorThis: '#ffffff', //头部右侧鼠标选中,
|
||||
headerRightNavMore: 'rgba(255,255,255,.7)', //头部右侧更多下拉颜色,
|
||||
headerRightNavMoreBg: '#772c6a', //头部右侧更多下拉列表选中背景色,
|
||||
headerRightNavMoreColor: '#ffffff', //头部右侧更多下拉列表字体色,
|
||||
headerRightToolColor: '#bbe3df', //头部缩放按钮样式,
|
||||
headerLogoBg: '#243346', //logo背景颜色,
|
||||
headerLogoColor: '#ffffff', //logo字体颜色,
|
||||
leftMenuNavMore: 'rgb(191, 187, 187)', //左侧菜单更多下拉样式,
|
||||
leftMenuBg: '#2f4056', //左侧菜单背景,
|
||||
leftMenuBgThis: '#586473', //左侧菜单选中背景,
|
||||
leftMenuChildBg: 'rgba(0,0,0,.3)', //左侧菜单子菜单背景,
|
||||
leftMenuColor: 'rgb(191, 187, 187)', //左侧菜单字体颜色,
|
||||
leftMenuColorThis: '#ffffff', //左侧菜单选中字体颜色,
|
||||
tabActiveColor: '#963885', //tab选项卡选中颜色,
|
||||
},
|
||||
{
|
||||
headerRightBg: '#2D8CF0', //头部右侧背景色
|
||||
headerRightBgThis: '#0069b7', //头部右侧选中背景色,
|
||||
headerRightColor: 'rgba(255,255,255,.7)', //头部右侧字体颜色,
|
||||
headerRightChildColor: '#676767', //头部右侧下拉字体颜色,
|
||||
headerRightColorThis: '#ffffff', //头部右侧鼠标选中,
|
||||
headerRightNavMore: 'rgba(255,255,255,.7)', //头部右侧更多下拉颜色,
|
||||
headerRightNavMoreBg: '#0069b7', //头部右侧更多下拉列表选中背景色,
|
||||
headerRightNavMoreColor: '#ffffff', //头部右侧更多下拉列表字体色,
|
||||
headerRightToolColor: '#bbe3df', //头部缩放按钮样式,
|
||||
headerLogoBg: '#0069b7', //logo背景颜色,
|
||||
headerLogoColor: '#ffffff', //logo字体颜色,
|
||||
leftMenuNavMore: 'rgb(191, 187, 187)', //左侧菜单更多下拉样式,
|
||||
leftMenuBg: '#1f1f1f', //左侧菜单背景,
|
||||
leftMenuBgThis: '#2D8CF0', //左侧菜单选中背景,
|
||||
leftMenuChildBg: 'rgba(0,0,0,.3)', //左侧菜单子菜单背景,
|
||||
leftMenuColor: 'rgb(191, 187, 187)', //左侧菜单字体颜色,
|
||||
leftMenuColorThis: '#ffffff', //左侧菜单选中字体颜色,
|
||||
tabActiveColor: '#2d8cf0', //tab选项卡选中颜色,
|
||||
},
|
||||
{
|
||||
headerRightBg: '#ffb800', //头部右侧背景色
|
||||
headerRightBgThis: '#d09600', //头部右侧选中背景色,
|
||||
headerRightColor: 'rgba(255,255,255,.7)', //头部右侧字体颜色,
|
||||
headerRightChildColor: '#676767', //头部右侧下拉字体颜色,
|
||||
headerRightColorThis: '#ffffff', //头部右侧鼠标选中,
|
||||
headerRightNavMore: 'rgba(255,255,255,.7)', //头部右侧更多下拉颜色,
|
||||
headerRightNavMoreBg: '#d09600', //头部右侧更多下拉列表选中背景色,
|
||||
headerRightNavMoreColor: '#ffffff', //头部右侧更多下拉列表字体色,
|
||||
headerRightToolColor: '#bbe3df', //头部缩放按钮样式,
|
||||
headerLogoBg: '#d09600', //logo背景颜色,
|
||||
headerLogoColor: '#ffffff', //logo字体颜色,
|
||||
leftMenuNavMore: 'rgb(191, 187, 187)', //左侧菜单更多下拉样式,
|
||||
leftMenuBg: '#2f4056', //左侧菜单背景,
|
||||
leftMenuBgThis: '#3b3f4b', //左侧菜单选中背景,
|
||||
leftMenuChildBg: 'rgba(0,0,0,.3)', //左侧菜单子菜单背景,
|
||||
leftMenuColor: 'rgb(191, 187, 187)', //左侧菜单字体颜色,
|
||||
leftMenuColorThis: '#ffffff', //左侧菜单选中字体颜色,
|
||||
tabActiveColor: '#ffb800', //tab选项卡选中颜色,
|
||||
},
|
||||
{
|
||||
headerRightBg: '#e82121', //头部右侧背景色
|
||||
headerRightBgThis: '#ae1919', //头部右侧选中背景色,
|
||||
headerRightColor: 'rgba(255,255,255,.7)', //头部右侧字体颜色,
|
||||
headerRightChildColor: '#676767', //头部右侧下拉字体颜色,
|
||||
headerRightColorThis: '#ffffff', //头部右侧鼠标选中,
|
||||
headerRightNavMore: 'rgba(255,255,255,.7)', //头部右侧更多下拉颜色,
|
||||
headerRightNavMoreBg: '#ae1919', //头部右侧更多下拉列表选中背景色,
|
||||
headerRightNavMoreColor: '#ffffff', //头部右侧更多下拉列表字体色,
|
||||
headerRightToolColor: '#bbe3df', //头部缩放按钮样式,
|
||||
headerLogoBg: '#d91f1f', //logo背景颜色,
|
||||
headerLogoColor: '#ffffff', //logo字体颜色,
|
||||
leftMenuNavMore: 'rgb(191, 187, 187)', //左侧菜单更多下拉样式,
|
||||
leftMenuBg: '#1f1f1f', //左侧菜单背景,
|
||||
leftMenuBgThis: '#3b3f4b', //左侧菜单选中背景,
|
||||
leftMenuChildBg: 'rgba(0,0,0,.3)', //左侧菜单子菜单背景,
|
||||
leftMenuColor: 'rgb(191, 187, 187)', //左侧菜单字体颜色,
|
||||
leftMenuColorThis: '#ffffff', //左侧菜单选中字体颜色,
|
||||
tabActiveColor: '#e82121', //tab选项卡选中颜色,
|
||||
},
|
||||
{
|
||||
headerRightBg: '#963885', //头部右侧背景色
|
||||
headerRightBgThis: '#772c6a', //头部右侧选中背景色,
|
||||
headerRightColor: 'rgba(255,255,255,.7)', //头部右侧字体颜色,
|
||||
headerRightChildColor: '#676767', //头部右侧下拉字体颜色,
|
||||
headerRightColorThis: '#ffffff', //头部右侧鼠标选中,
|
||||
headerRightNavMore: 'rgba(255,255,255,.7)', //头部右侧更多下拉颜色,
|
||||
headerRightNavMoreBg: '#772c6a', //头部右侧更多下拉列表选中背景色,
|
||||
headerRightNavMoreColor: '#ffffff', //头部右侧更多下拉列表字体色,
|
||||
headerRightToolColor: '#bbe3df', //头部缩放按钮样式,
|
||||
headerLogoBg: '#772c6a', //logo背景颜色,
|
||||
headerLogoColor: '#ffffff', //logo字体颜色,
|
||||
leftMenuNavMore: 'rgb(191, 187, 187)', //左侧菜单更多下拉样式,
|
||||
leftMenuBg: '#2f4056', //左侧菜单背景,
|
||||
leftMenuBgThis: '#626f7f', //左侧菜单选中背景,
|
||||
leftMenuChildBg: 'rgba(0,0,0,.3)', //左侧菜单子菜单背景,
|
||||
leftMenuColor: 'rgb(191, 187, 187)', //左侧菜单字体颜色,
|
||||
leftMenuColorThis: '#ffffff', //左侧菜单选中字体颜色,
|
||||
tabActiveColor: '#963885', //tab选项卡选中颜色,
|
||||
}
|
||||
];
|
||||
if (bgcolorId === undefined) {
|
||||
return bgColorConfig;
|
||||
} else {
|
||||
return bgColorConfig[bgcolorId];
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 初始化
|
||||
* @param options
|
||||
*/
|
||||
render: function (options) {
|
||||
options.bgColorDefault = options.bgColorDefault || false;
|
||||
options.listen = options.listen || false;
|
||||
var bgcolorId = sessionStorage.getItem('layuiminiBgcolorId');
|
||||
if (bgcolorId === null || bgcolorId === undefined || bgcolorId === '') {
|
||||
bgcolorId = options.bgColorDefault;
|
||||
}
|
||||
miniTheme.buildThemeCss(bgcolorId);
|
||||
if (options.listen) miniTheme.listen(options);
|
||||
},
|
||||
|
||||
/**
|
||||
* 构建主题样式
|
||||
* @param bgcolorId
|
||||
* @returns {boolean}
|
||||
*/
|
||||
buildThemeCss: function (bgcolorId) {
|
||||
if (!bgcolorId) {
|
||||
return false;
|
||||
}
|
||||
var bgcolorData = miniTheme.config(bgcolorId);
|
||||
var styleHtml = '/*头部右侧背景色 headerRightBg */\n' +
|
||||
'.layui-layout-admin .layui-header {\n' +
|
||||
' background-color: ' + bgcolorData.headerRightBg + ' !important;\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/*头部右侧选中背景色 headerRightBgThis */\n' +
|
||||
'.layui-layout-admin .layui-header .layuimini-header-content > ul > .layui-nav-item.layui-this, .layuimini-tool i:hover {\n' +
|
||||
' background-color: ' + bgcolorData.headerRightBgThis + ' !important;\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/*头部右侧字体颜色 headerRightColor */\n' +
|
||||
'.layui-layout-admin .layui-header .layui-nav .layui-nav-item a {\n' +
|
||||
' color: ' + bgcolorData.headerRightColor + ';\n' +
|
||||
'}\n' +
|
||||
'/**头部右侧下拉字体颜色 headerRightChildColor */\n' +
|
||||
'.layui-layout-admin .layui-header .layui-nav .layui-nav-item .layui-nav-child a {\n' +
|
||||
' color: ' + bgcolorData.headerRightChildColor + '!important;\n' +
|
||||
'}\n'+
|
||||
'\n' +
|
||||
'/*头部右侧鼠标选中 headerRightColorThis */\n' +
|
||||
'.layui-header .layuimini-menu-header-pc.layui-nav .layui-nav-item a:hover, .layui-header .layuimini-header-menu.layuimini-pc-show.layui-nav .layui-this a {\n' +
|
||||
' color: ' + bgcolorData.headerRightColorThis + ' !important;\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/*头部右侧更多下拉颜色 headerRightNavMore */\n' +
|
||||
'.layui-header .layui-nav .layui-nav-more {\n' +
|
||||
' border-top-color: ' + bgcolorData.headerRightNavMore + ' !important;\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/*头部右侧更多下拉颜色 headerRightNavMore */\n' +
|
||||
'.layui-header .layui-nav .layui-nav-mored, .layui-header .layui-nav-itemed > a .layui-nav-more {\n' +
|
||||
' border-color: transparent transparent ' + bgcolorData.headerRightNavMore + ' !important;\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/**头部右侧更多下拉配置色 headerRightNavMoreBg headerRightNavMoreColor */\n' +
|
||||
'.layui-header .layui-nav .layui-nav-child dd.layui-this a, .layui-header .layui-nav-child dd.layui-this, .layui-layout-admin .layui-header .layui-nav .layui-nav-item .layui-nav-child .layui-this a {\n' +
|
||||
' background-color: ' + bgcolorData.headerRightNavMoreBg + ' !important;\n' +
|
||||
' color:' + bgcolorData.headerRightNavMoreColor + ' !important;\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/*头部缩放按钮样式 headerRightToolColor */\n' +
|
||||
'.layui-layout-admin .layui-header .layuimini-tool i {\n' +
|
||||
' color: ' + bgcolorData.headerRightToolColor + ';\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/*logo背景颜色 headerLogoBg */\n' +
|
||||
'.layui-layout-admin .layuimini-logo {\n' +
|
||||
' background-color: ' + bgcolorData.headerLogoBg + ' !important;\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/*logo字体颜色 headerLogoColor */\n' +
|
||||
'.layui-layout-admin .layuimini-logo h1 {\n' +
|
||||
' color: ' + bgcolorData.headerLogoColor + ';\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/*左侧菜单更多下拉样式 leftMenuNavMore */\n' +
|
||||
'.layuimini-menu-left .layui-nav .layui-nav-more,.layuimini-menu-left-zoom.layui-nav .layui-nav-more {\n' +
|
||||
' border-top-color: ' + bgcolorData.leftMenuNavMore + ';\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/*左侧菜单更多下拉样式 leftMenuNavMore */\n' +
|
||||
'.layuimini-menu-left .layui-nav .layui-nav-mored, .layuimini-menu-left .layui-nav-itemed > a .layui-nav-more, .layuimini-menu-left-zoom.layui-nav .layui-nav-mored, .layuimini-menu-left-zoom.layui-nav-itemed > a .layui-nav-more {\n' +
|
||||
' border-color: transparent transparent ' + bgcolorData.leftMenuNavMore + ' !important;\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/*左侧菜单背景 leftMenuBg */\n' +
|
||||
'.layui-side.layui-bg-black, .layui-side.layui-bg-black > .layuimini-menu-left > ul, .layuimini-menu-left-zoom > ul {\n' +
|
||||
' background-color: ' + bgcolorData.leftMenuBg + ' !important;\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/*左侧菜单选中背景 leftMenuBgThis */\n' +
|
||||
'.layuimini-menu-left .layui-nav-tree .layui-this, .layuimini-menu-left .layui-nav-tree .layui-this > a, .layuimini-menu-left .layui-nav-tree .layui-nav-child dd.layui-this, .layuimini-menu-left .layui-nav-tree .layui-nav-child dd.layui-this a, .layuimini-menu-left-zoom.layui-nav-tree .layui-this, .layuimini-menu-left-zoom.layui-nav-tree .layui-this > a, .layuimini-menu-left-zoom.layui-nav-tree .layui-nav-child dd.layui-this, .layuimini-menu-left-zoom.layui-nav-tree .layui-nav-child dd.layui-this a {\n' +
|
||||
' background-color: ' + bgcolorData.leftMenuBgThis + ' !important\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/*左侧菜单子菜单背景 leftMenuChildBg */\n' +
|
||||
'.layuimini-menu-left .layui-nav-itemed > .layui-nav-child{\n' +
|
||||
' background-color: ' + bgcolorData.leftMenuChildBg + ' !important;\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/*左侧菜单字体颜色 leftMenuColor */\n' +
|
||||
'.layuimini-menu-left .layui-nav .layui-nav-item a, .layuimini-menu-left-zoom.layui-nav .layui-nav-item a {\n' +
|
||||
' color: ' + bgcolorData.leftMenuColor + ' !important;\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/*左侧菜单选中字体颜色 leftMenuColorThis */\n' +
|
||||
'.layuimini-menu-left .layui-nav .layui-nav-item a:hover, .layuimini-menu-left .layui-nav .layui-this a, .layuimini-menu-left-zoom.layui-nav .layui-nav-item a:hover, .layuimini-menu-left-zoom.layui-nav .layui-this a {\n' +
|
||||
' color:' + bgcolorData.leftMenuColorThis + ' !important;\n' +
|
||||
'}\n' +
|
||||
'\n' +
|
||||
'/**tab选项卡选中颜色 tabActiveColor */\n' +
|
||||
'.layuimini-tab .layui-tab-title .layui-this .layuimini-tab-active {\n' +
|
||||
' background-color: ' + bgcolorData.tabActiveColor + ';\n' +
|
||||
'}\n';
|
||||
$('#layuimini-bg-color').html(styleHtml);
|
||||
},
|
||||
|
||||
/**
|
||||
* 构建主题选择html
|
||||
* @param options
|
||||
* @returns {string}
|
||||
*/
|
||||
buildBgColorHtml: function (options) {
|
||||
options.bgColorDefault = options.bgColorDefault || 0;
|
||||
var bgcolorId = parseInt(sessionStorage.getItem('layuiminiBgcolorId'));
|
||||
if (isNaN(bgcolorId)) bgcolorId = options.bgColorDefault;
|
||||
var bgColorConfig = miniTheme.config();
|
||||
var html = '';
|
||||
$.each(bgColorConfig, function (key, val) {
|
||||
if (key === bgcolorId) {
|
||||
html += '<li class="layui-this" data-select-bgcolor="' + key + '">\n';
|
||||
} else {
|
||||
html += '<li data-select-bgcolor="' + key + '">\n';
|
||||
}
|
||||
html += '<a href="javascript:;" data-skin="skin-blue" style="" class="clearfix full-opacity-hover">\n' +
|
||||
'<div><span style="display:block; width: 20%; float: left; height: 12px; background: ' + val.headerLogoBg + ';"></span><span style="display:block; width: 80%; float: left; height: 12px; background: ' + val.headerRightBg + ';"></span></div>\n' +
|
||||
'<div><span style="display:block; width: 20%; float: left; height: 40px; background: ' + val.leftMenuBg + ';"></span><span style="display:block; width: 80%; float: left; height: 40px; background: #ffffff;"></span></div>\n' +
|
||||
'</a>\n' +
|
||||
'</li>';
|
||||
});
|
||||
return html;
|
||||
},
|
||||
|
||||
/**
|
||||
* 监听
|
||||
* @param options
|
||||
*/
|
||||
listen: function (options) {
|
||||
$('body').on('click', '[data-bgcolor]', function () {
|
||||
var loading = layer.load(0, {shade: false, time: 2 * 1000});
|
||||
var clientHeight = (document.documentElement.clientHeight) - 60;
|
||||
var bgColorHtml = miniTheme.buildBgColorHtml(options);
|
||||
var html = '<div class="layuimini-color">\n' +
|
||||
'<div class="color-title">\n' +
|
||||
'<span>配色方案</span>\n' +
|
||||
'</div>\n' +
|
||||
'<div class="color-content">\n' +
|
||||
'<ul>\n' + bgColorHtml + '</ul>\n' +
|
||||
'</div>\n' +
|
||||
'</div>';
|
||||
layer.open({
|
||||
type: 1,
|
||||
title: false,
|
||||
closeBtn: 0,
|
||||
shade: 0.2,
|
||||
anim: 2,
|
||||
shadeClose: true,
|
||||
id: 'layuiminiBgColor',
|
||||
area: ['340px', clientHeight + 'px'],
|
||||
offset: 'rb',
|
||||
content: html,
|
||||
success: function (index, layero) {
|
||||
},
|
||||
end: function () {
|
||||
$('.layuimini-select-bgcolor').removeClass('layui-this');
|
||||
}
|
||||
});
|
||||
layer.close(loading);
|
||||
});
|
||||
|
||||
$('body').on('click', '[data-select-bgcolor]', function () {
|
||||
var bgcolorId = $(this).attr('data-select-bgcolor');
|
||||
$('.layuimini-color .color-content ul .layui-this').attr('class', '');
|
||||
$(this).attr('class', 'layui-this');
|
||||
sessionStorage.setItem('layuiminiBgcolorId', bgcolorId);
|
||||
miniTheme.render({
|
||||
bgColorDefault: bgcolorId,
|
||||
listen: false,
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
exports("miniTheme", miniTheme);
|
||||
|
||||
})
|
||||
;
|
||||
@@ -0,0 +1,40 @@
|
||||
/**
|
||||
* date:2020/03/01
|
||||
* author:Mr.Chung
|
||||
* version:2.0
|
||||
* description:layuimini 统计框架扩展
|
||||
*/
|
||||
layui.define(["jquery"], function (exports) {
|
||||
var $ = layui.$;
|
||||
|
||||
var miniTongji = {
|
||||
|
||||
/**
|
||||
* 初始化
|
||||
* @param options
|
||||
*/
|
||||
render: function (options) {
|
||||
options.specific = options.specific || false;
|
||||
options.domains = options.domains || [];
|
||||
var domain = window.location.hostname;
|
||||
if (options.specific === false || (options.specific === true && options.domains.indexOf(domain) >=0)) {
|
||||
miniTongji.listen();
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* 监听统计代码
|
||||
*/
|
||||
listen: function () {
|
||||
var _hmt = _hmt || [];
|
||||
(function () {
|
||||
var hm = document.createElement("script");
|
||||
hm.src = "https://hm.baidu.com/hm.js?d97abf6d61c21d773f97835defbdef4e";
|
||||
var s = document.getElementsByTagName("script")[0];
|
||||
s.parentNode.insertBefore(hm, s);
|
||||
})();
|
||||
}
|
||||
};
|
||||
|
||||
exports("miniTongji", miniTongji);
|
||||
});
|
||||
@@ -0,0 +1,79 @@
|
||||
.lay-step {
|
||||
font-size: 0;
|
||||
width: 400px;
|
||||
margin: 0 auto;
|
||||
max-width: 100%;
|
||||
padding-left: 200px;
|
||||
}
|
||||
|
||||
.step-item {
|
||||
display: inline-block;
|
||||
line-height: 26px;
|
||||
position: relative;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.step-item-tail {
|
||||
width: 100%;
|
||||
padding: 0 10px;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 13px;
|
||||
}
|
||||
|
||||
.step-item-tail i {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
vertical-align: top;
|
||||
background: #c2c2c2;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.step-item-tail .step-item-tail-done {
|
||||
background: #009688;
|
||||
}
|
||||
|
||||
.step-item-head {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
height: 26px;
|
||||
width: 26px;
|
||||
text-align: center;
|
||||
vertical-align: top;
|
||||
color: #009688;
|
||||
border: 1px solid #009688;
|
||||
border-radius: 50%;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.step-item-head.step-item-head-active {
|
||||
background: #009688;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.step-item-main {
|
||||
display: block;
|
||||
position: relative;
|
||||
margin-left: -50%;
|
||||
margin-right: 50%;
|
||||
padding-left: 26px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.step-item-main-title {
|
||||
font-weight: bolder;
|
||||
color: #555555;
|
||||
}
|
||||
|
||||
.step-item-main-desc {
|
||||
color: #aaaaaa;
|
||||
}
|
||||
|
||||
.lay-step + [carousel-item]:before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.lay-step + [carousel-item] > * {
|
||||
background-color: transparent;
|
||||
}
|
||||
@@ -0,0 +1,101 @@
|
||||
layui.define(['layer', 'carousel'], function (exports) {
|
||||
var $ = layui.jquery;
|
||||
var layer = layui.layer;
|
||||
var carousel = layui.carousel;
|
||||
|
||||
// 添加步骤条dom节点
|
||||
var renderDom = function (elem, stepItems, postion) {
|
||||
var stepDiv = '<div class="lay-step">';
|
||||
for (var i = 0; i < stepItems.length; i++) {
|
||||
stepDiv += '<div class="step-item">';
|
||||
// 线
|
||||
if (i < (stepItems.length - 1)) {
|
||||
if (i < postion) {
|
||||
stepDiv += '<div class="step-item-tail"><i class="step-item-tail-done"></i></div>';
|
||||
} else {
|
||||
stepDiv += '<div class="step-item-tail"><i class=""></i></div>';
|
||||
}
|
||||
}
|
||||
|
||||
// 数字
|
||||
var number = stepItems[i].number;
|
||||
if (!number) {
|
||||
number = i + 1;
|
||||
}
|
||||
if (i == postion) {
|
||||
stepDiv += '<div class="step-item-head step-item-head-active"><i class="layui-icon">' + number + '</i></div>';
|
||||
} else if (i < postion) {
|
||||
stepDiv += '<div class="step-item-head"><i class="layui-icon layui-icon-ok"></i></div>';
|
||||
} else {
|
||||
stepDiv += '<div class="step-item-head "><i class="layui-icon">' + number + '</i></div>';
|
||||
}
|
||||
|
||||
// 标题和描述
|
||||
var title = stepItems[i].title;
|
||||
var desc = stepItems[i].desc;
|
||||
if (title || desc) {
|
||||
stepDiv += '<div class="step-item-main">';
|
||||
if (title) {
|
||||
stepDiv += '<div class="step-item-main-title">' + title + '</div>';
|
||||
}
|
||||
if (desc) {
|
||||
stepDiv += '<div class="step-item-main-desc">' + desc + '</div>';
|
||||
}
|
||||
stepDiv += '</div>';
|
||||
}
|
||||
stepDiv += '</div>';
|
||||
}
|
||||
stepDiv += '</div>';
|
||||
|
||||
$(elem).prepend(stepDiv);
|
||||
|
||||
// 计算每一个条目的宽度
|
||||
var bfb = 100 / stepItems.length;
|
||||
$('.step-item').css('width', bfb + '%');
|
||||
};
|
||||
|
||||
var step = {
|
||||
// 渲染步骤条
|
||||
render: function (param) {
|
||||
param.indicator = 'none'; // 不显示指示器
|
||||
param.arrow = 'always'; // 始终显示箭头
|
||||
param.autoplay = false; // 关闭自动播放
|
||||
if (!param.stepWidth) {
|
||||
param.stepWidth = '400px';
|
||||
}
|
||||
|
||||
// 渲染轮播图
|
||||
carousel.render(param);
|
||||
|
||||
// 渲染步骤条
|
||||
var stepItems = param.stepItems;
|
||||
renderDom(param.elem, stepItems, 0);
|
||||
$('.lay-step').css('width', param.stepWidth);
|
||||
|
||||
//监听轮播切换事件
|
||||
carousel.on('change(' + param.filter + ')', function (obj) {
|
||||
$(param.elem).find('.lay-step').remove();
|
||||
renderDom(param.elem, stepItems, obj.index);
|
||||
$('.lay-step').css('width', param.stepWidth);
|
||||
});
|
||||
|
||||
// 隐藏左右箭头按钮
|
||||
$(param.elem).find('.layui-carousel-arrow').css('display', 'none');
|
||||
|
||||
// 去掉轮播图的背景颜色
|
||||
$(param.elem).css('background-color', 'transparent');
|
||||
},
|
||||
// 下一步
|
||||
next: function (elem) {
|
||||
$(elem).find('.layui-carousel-arrow[lay-type=add]').trigger('click');
|
||||
},
|
||||
// 上一步
|
||||
pre: function (elem) {
|
||||
$(elem).find('.layui-carousel-arrow[lay-type=sub]').trigger('click');
|
||||
}
|
||||
};
|
||||
|
||||
layui.link(layui.cache.base + 'step-lay/step.css');
|
||||
|
||||
exports('step', step);
|
||||
});
|
||||
@@ -0,0 +1,272 @@
|
||||
layui.define(['table', 'jquery', 'form'], function (exports) {
|
||||
"use strict";
|
||||
|
||||
var MOD_NAME = 'tableSelect',
|
||||
$ = layui.jquery,
|
||||
table = layui.table,
|
||||
form = layui.form;
|
||||
var tableSelect = function () {
|
||||
this.v = '1.1.0';
|
||||
};
|
||||
|
||||
/**
|
||||
* 初始化表格选择器
|
||||
*/
|
||||
tableSelect.prototype.render = function (opt) {
|
||||
var elem = $(opt.elem);
|
||||
var tableDone = opt.table.done || function(){};
|
||||
|
||||
//默认设置
|
||||
opt.searchKey = opt.searchKey || 'keyword';
|
||||
opt.searchPlaceholder = opt.searchPlaceholder || '关键词搜索';
|
||||
opt.checkedKey = opt.checkedKey;
|
||||
opt.table.page = opt.table.page || true;
|
||||
opt.table.height = opt.height || 315;
|
||||
|
||||
//最小宽度
|
||||
opt.width = opt.width || '530';
|
||||
|
||||
//多搜索条件
|
||||
opt.searchType = opt.searchType || 'one';
|
||||
opt.searchList = opt.searchList || [{key: opt.searchKey, placeholder: opt.searchPlaceholder}];
|
||||
|
||||
elem.off('click').on('click', function(e) {
|
||||
e.stopPropagation();
|
||||
|
||||
if($('div.tableSelect').length >= 1){
|
||||
return false;
|
||||
}
|
||||
|
||||
var t = elem.offset().top + elem.outerHeight()+"px";
|
||||
var l = elem.offset().left +"px";
|
||||
var tableName = "tableSelect_table_" + new Date().getTime();
|
||||
var tableBox = '<div class="tableSelect layui-anim layui-anim-upbit" style="left:'+l+';top:'+t+';border: 1px solid #d2d2d2;background-color: #fff;box-shadow: 0 2px 4px rgba(0,0,0,.12);padding:10px 10px 0 10px;position: absolute;z-index:66666666;margin: 5px 0;border-radius: 2px;min-width:'+opt.width+'px;">';
|
||||
tableBox += '<div class="tableSelectBar">';
|
||||
tableBox += '<form class="layui-form" action="" style="display:inline-block;">';
|
||||
|
||||
//判断是否多搜索条件
|
||||
if(opt.searchType == 'more'){
|
||||
$.each(opt.searchList, function (index, item) {
|
||||
tableBox += '<input style="display:inline-block;width:190px;height:30px;vertical-align:middle;margin-right:-1px;border: 1px solid #C9C9C9;" type="text" name="'+item.searchKey+'" placeholder="'+item.searchPlaceholder+'" autocomplete="off" class="layui-input">';
|
||||
});
|
||||
}else{
|
||||
tableBox += '<input style="display:inline-block;width:190px;height:30px;vertical-align:middle;margin-right:-1px;border: 1px solid #C9C9C9;" type="text" name="'+opt.searchKey+'" placeholder="'+opt.searchPlaceholder+'" autocomplete="off" class="layui-input">';
|
||||
}
|
||||
|
||||
tableBox += '<button class="layui-btn layui-btn-sm layui-btn-primary tableSelect_btn_search" lay-submit lay-filter="tableSelect_btn_search"><i class="layui-icon layui-icon-search"></i></button>';
|
||||
tableBox += '</form>';
|
||||
tableBox += '<button style="float:right;" class="layui-btn layui-btn-sm tableSelect_btn_select">选择<span></span></button>';
|
||||
tableBox += '</div>';
|
||||
tableBox += '<table id="'+tableName+'" lay-filter="'+tableName+'"></table>';
|
||||
tableBox += '</div>';
|
||||
tableBox = $(tableBox);
|
||||
$('body').append(tableBox);
|
||||
|
||||
//数据缓存
|
||||
var checkedData = [];
|
||||
|
||||
//渲染TABLE
|
||||
opt.table.elem = "#"+tableName;
|
||||
opt.table.id = tableName;
|
||||
opt.table.done = function(res, curr, count){
|
||||
defaultChecked(res, curr, count);
|
||||
setChecked(res, curr, count);
|
||||
tableDone(res, curr, count);
|
||||
};
|
||||
var tableSelect_table = table.render(opt.table);
|
||||
|
||||
//分页选中保存数组
|
||||
table.on('radio('+tableName+')', function(obj){
|
||||
if(opt.checkedKey){
|
||||
checkedData = table.checkStatus(tableName).data
|
||||
}
|
||||
updataButton(table.checkStatus(tableName).data.length)
|
||||
})
|
||||
table.on('checkbox('+tableName+')', function(obj){
|
||||
if(opt.checkedKey){
|
||||
if(obj.checked){
|
||||
for (var i=0;i<table.checkStatus(tableName).data.length;i++){
|
||||
checkedData.push(table.checkStatus(tableName).data[i])
|
||||
}
|
||||
}else{
|
||||
if(obj.type=='all'){
|
||||
for (var j=0;j<table.cache[tableName].length;j++) {
|
||||
for (var i=0;i<checkedData.length;i++){
|
||||
if(checkedData[i][opt.checkedKey] == table.cache[tableName][j][opt.checkedKey]){
|
||||
checkedData.splice(i,1)
|
||||
}
|
||||
}
|
||||
}
|
||||
}else{
|
||||
//因为LAYUI问题,操作到变化全选状态时获取到的obj为空,这里用函数获取未选中的项。
|
||||
function nu (){
|
||||
var noCheckedKey = '';
|
||||
for (var i=0;i<table.cache[tableName].length;i++){
|
||||
if(!table.cache[tableName][i].LAY_CHECKED){
|
||||
noCheckedKey = table.cache[tableName][i][opt.checkedKey];
|
||||
}
|
||||
}
|
||||
return noCheckedKey
|
||||
}
|
||||
var noCheckedKey = obj.data[opt.checkedKey] || nu();
|
||||
for (var i=0;i<checkedData.length;i++){
|
||||
if(checkedData[i][opt.checkedKey] == noCheckedKey){
|
||||
checkedData.splice(i,1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
checkedData = uniqueObjArray(checkedData, opt.checkedKey);
|
||||
updataButton(checkedData.length)
|
||||
}else{
|
||||
updataButton(table.checkStatus(tableName).data.length)
|
||||
}
|
||||
});
|
||||
|
||||
//渲染表格后选中
|
||||
function setChecked (res, curr, count) {
|
||||
for(var i=0;i<res.data.length;i++){
|
||||
for (var j=0;j<checkedData.length;j++) {
|
||||
if(res.data[i][opt.checkedKey] == checkedData[j][opt.checkedKey]){
|
||||
res.data[i].LAY_CHECKED = true;
|
||||
var index= res.data[i]['LAY_TABLE_INDEX'];
|
||||
var checkbox = $('#'+tableName+'').next().find('tr[data-index=' + index + '] input[type="checkbox"]');
|
||||
checkbox.prop('checked', true).next().addClass('layui-form-checked');
|
||||
var radio = $('#'+tableName+'').next().find('tr[data-index=' + index + '] input[type="radio"]');
|
||||
radio.prop('checked', true).next().addClass('layui-form-radioed').find("i").html('');
|
||||
}
|
||||
}
|
||||
}
|
||||
var checkStatus = table.checkStatus(tableName);
|
||||
if(checkStatus.isAll){
|
||||
$('#'+tableName+'').next().find('.layui-table-header th[data-field="0"] input[type="checkbox"]').prop('checked', true);
|
||||
$('#'+tableName+'').next().find('.layui-table-header th[data-field="0"] input[type="checkbox"]').next().addClass('layui-form-checked');
|
||||
}
|
||||
updataButton(checkedData.length)
|
||||
}
|
||||
|
||||
//写入默认选中值(puash checkedData)
|
||||
function defaultChecked (res, curr, count){
|
||||
if(opt.checkedKey && elem.attr('ts-selected')){
|
||||
var selected = elem.attr('ts-selected').split(",");
|
||||
for(var i=0;i<res.data.length;i++){
|
||||
for(var j=0;j<selected.length;j++){
|
||||
if(res.data[i][opt.checkedKey] == selected[j]){
|
||||
checkedData.push(res.data[i])
|
||||
}
|
||||
}
|
||||
}
|
||||
checkedData = uniqueObjArray(checkedData, opt.checkedKey);
|
||||
}
|
||||
}
|
||||
|
||||
//更新选中数量
|
||||
function updataButton (n) {
|
||||
tableBox.find('.tableSelect_btn_select span').html(n==0?'':'('+n+')')
|
||||
}
|
||||
|
||||
//数组去重
|
||||
function uniqueObjArray(arr, type){
|
||||
var newArr = [];
|
||||
var tArr = [];
|
||||
if(arr.length == 0){
|
||||
return arr;
|
||||
}else{
|
||||
if(type){
|
||||
for(var i=0;i<arr.length;i++){
|
||||
if(!tArr[arr[i][type]]){
|
||||
newArr.push(arr[i]);
|
||||
tArr[arr[i][type]] = true;
|
||||
}
|
||||
}
|
||||
return newArr;
|
||||
}else{
|
||||
for(var i=0;i<arr.length;i++){
|
||||
if(!tArr[arr[i]]){
|
||||
newArr.push(arr[i]);
|
||||
tArr[arr[i]] = true;
|
||||
}
|
||||
}
|
||||
return newArr;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//FIX位置
|
||||
var overHeight = (elem.offset().top + elem.outerHeight() + tableBox.outerHeight() - $(window).scrollTop()) > $(window).height();
|
||||
var overWidth = (elem.offset().left + tableBox.outerWidth()) > $(window).width();
|
||||
overHeight && tableBox.css({'top':'auto','bottom':'0px'});
|
||||
overWidth && tableBox.css({'left':'auto','right':'5px'})
|
||||
|
||||
//关键词搜索
|
||||
form.on('submit(tableSelect_btn_search)', function(data){
|
||||
tableSelect_table.reload({
|
||||
where: data.field,
|
||||
page: {
|
||||
curr: 1
|
||||
}
|
||||
});
|
||||
return false;
|
||||
});
|
||||
|
||||
//双击行选中
|
||||
table.on('rowDouble('+tableName+')', function(obj){
|
||||
var checkStatus = {data:[obj.data]};
|
||||
selectDone(checkStatus);
|
||||
})
|
||||
|
||||
//按钮选中
|
||||
tableBox.find('.tableSelect_btn_select').on('click', function() {
|
||||
var checkStatus = table.checkStatus(tableName);
|
||||
if(checkedData.length > 1){
|
||||
checkStatus.data = checkedData;
|
||||
}
|
||||
selectDone(checkStatus);
|
||||
})
|
||||
|
||||
//写值回调和关闭
|
||||
function selectDone (checkStatus){
|
||||
if(opt.checkedKey){
|
||||
var selected = [];
|
||||
for(var i=0;i<checkStatus.data.length;i++){
|
||||
selected.push(checkStatus.data[i][opt.checkedKey])
|
||||
}
|
||||
elem.attr("ts-selected",selected.join(","));
|
||||
}
|
||||
opt.done(elem, checkStatus);
|
||||
tableBox.remove();
|
||||
delete table.cache[tableName];
|
||||
checkedData = [];
|
||||
}
|
||||
|
||||
//点击其他区域关闭
|
||||
$(document).mouseup(function(e){
|
||||
var userSet_con = $(''+opt.elem+',.tableSelect');
|
||||
if(!userSet_con.is(e.target) && userSet_con.has(e.target).length === 0){
|
||||
tableBox.remove();
|
||||
delete table.cache[tableName];
|
||||
checkedData = [];
|
||||
}
|
||||
});
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 隐藏选择器
|
||||
*/
|
||||
tableSelect.prototype.hide = function (opt) {
|
||||
$('.tableSelect').remove();
|
||||
}
|
||||
|
||||
//自动完成渲染
|
||||
var tableSelect = new tableSelect();
|
||||
|
||||
//FIX 滚动时错位
|
||||
if(window.top == window.self){
|
||||
$(window).scroll(function () {
|
||||
tableSelect.hide();
|
||||
});
|
||||
}
|
||||
|
||||
exports(MOD_NAME, tableSelect);
|
||||
})
|
||||
@@ -0,0 +1,18 @@
|
||||
.treeTable-empty {
|
||||
width: 20px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.treeTable-icon {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.treeTable-icon .layui-icon-triangle-d:before {
|
||||
content: "\e623";
|
||||
}
|
||||
|
||||
.treeTable-icon.open .layui-icon-triangle-d:before {
|
||||
content: "\e625";
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,206 @@
|
||||
layui.define(['layer', 'table'], function (exports) {
|
||||
var $ = layui.jquery;
|
||||
var layer = layui.layer;
|
||||
var table = layui.table;
|
||||
|
||||
var treetable = {
|
||||
// 渲染树形表格
|
||||
render: function (param) {
|
||||
// 检查参数
|
||||
if (!treetable.checkParam(param)) {
|
||||
return;
|
||||
}
|
||||
// 获取数据
|
||||
if (param.data) {
|
||||
treetable.init(param, param.data);
|
||||
} else {
|
||||
$.getJSON(param.url, param.where, function (res) {
|
||||
treetable.init(param, res.data);
|
||||
});
|
||||
}
|
||||
},
|
||||
// 渲染表格
|
||||
init: function (param, data) {
|
||||
var mData = [];
|
||||
var doneCallback = param.done;
|
||||
var tNodes = data;
|
||||
// 补上id和pid字段
|
||||
for (var i = 0; i < tNodes.length; i++) {
|
||||
var tt = tNodes[i];
|
||||
if (!tt.id) {
|
||||
if (!param.treeIdName) {
|
||||
layer.msg('参数treeIdName不能为空', {icon: 5});
|
||||
return;
|
||||
}
|
||||
tt.id = tt[param.treeIdName];
|
||||
}
|
||||
if (!tt.pid) {
|
||||
if (!param.treePidName) {
|
||||
layer.msg('参数treePidName不能为空', {icon: 5});
|
||||
return;
|
||||
}
|
||||
tt.pid = tt[param.treePidName];
|
||||
}
|
||||
}
|
||||
|
||||
// 对数据进行排序
|
||||
var sort = function (s_pid, data) {
|
||||
for (var i = 0; i < data.length; i++) {
|
||||
if (data[i].pid == s_pid) {
|
||||
var len = mData.length;
|
||||
if (len > 0 && mData[len - 1].id == s_pid) {
|
||||
mData[len - 1].isParent = true;
|
||||
}
|
||||
mData.push(data[i]);
|
||||
sort(data[i].id, data);
|
||||
}
|
||||
}
|
||||
};
|
||||
sort(param.treeSpid, tNodes);
|
||||
|
||||
// 重写参数
|
||||
param.url = undefined;
|
||||
param.data = mData;
|
||||
param.page = {
|
||||
count: param.data.length,
|
||||
limit: param.data.length
|
||||
};
|
||||
param.cols[0][param.treeColIndex].templet = function (d) {
|
||||
var mId = d.id;
|
||||
var mPid = d.pid;
|
||||
var isDir = d.isParent;
|
||||
var emptyNum = treetable.getEmptyNum(mPid, mData);
|
||||
var iconHtml = '';
|
||||
for (var i = 0; i < emptyNum; i++) {
|
||||
iconHtml += '<span class="treeTable-empty"></span>';
|
||||
}
|
||||
if (isDir) {
|
||||
iconHtml += '<i class="layui-icon layui-icon-triangle-d"></i> <i class="layui-icon layui-icon-layer"></i>';
|
||||
} else {
|
||||
iconHtml += '<i class="layui-icon layui-icon-file"></i>';
|
||||
}
|
||||
iconHtml += ' ';
|
||||
var ttype = isDir ? 'dir' : 'file';
|
||||
var vg = '<span class="treeTable-icon open" lay-tid="' + mId + '" lay-tpid="' + mPid + '" lay-ttype="' + ttype + '">';
|
||||
return vg + iconHtml + d[param.cols[0][param.treeColIndex].field] + '</span>'
|
||||
};
|
||||
|
||||
param.done = function (res, curr, count) {
|
||||
$(param.elem).next().addClass('treeTable');
|
||||
$('.treeTable .layui-table-page').css('display', 'none');
|
||||
$(param.elem).next().attr('treeLinkage', param.treeLinkage);
|
||||
// 绑定事件换成对body绑定
|
||||
/*$('.treeTable .treeTable-icon').click(function () {
|
||||
treetable.toggleRows($(this), param.treeLinkage);
|
||||
});*/
|
||||
if (param.treeDefaultClose) {
|
||||
treetable.foldAll(param.elem);
|
||||
}
|
||||
if (doneCallback) {
|
||||
doneCallback(res, curr, count);
|
||||
}
|
||||
};
|
||||
|
||||
// 渲染表格
|
||||
table.render(param);
|
||||
},
|
||||
// 计算缩进的数量
|
||||
getEmptyNum: function (pid, data) {
|
||||
var num = 0;
|
||||
if (!pid) {
|
||||
return num;
|
||||
}
|
||||
var tPid;
|
||||
for (var i = 0; i < data.length; i++) {
|
||||
if (pid == data[i].id) {
|
||||
num += 1;
|
||||
tPid = data[i].pid;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return num + treetable.getEmptyNum(tPid, data);
|
||||
},
|
||||
// 展开/折叠行
|
||||
toggleRows: function ($dom, linkage) {
|
||||
var type = $dom.attr('lay-ttype');
|
||||
if ('file' == type) {
|
||||
return;
|
||||
}
|
||||
var mId = $dom.attr('lay-tid');
|
||||
var isOpen = $dom.hasClass('open');
|
||||
if (isOpen) {
|
||||
$dom.removeClass('open');
|
||||
} else {
|
||||
$dom.addClass('open');
|
||||
}
|
||||
$dom.closest('tbody').find('tr').each(function () {
|
||||
var $ti = $(this).find('.treeTable-icon');
|
||||
var pid = $ti.attr('lay-tpid');
|
||||
var ttype = $ti.attr('lay-ttype');
|
||||
var tOpen = $ti.hasClass('open');
|
||||
if (mId == pid) {
|
||||
if (isOpen) {
|
||||
$(this).hide();
|
||||
if ('dir' == ttype && tOpen == isOpen) {
|
||||
$ti.trigger('click');
|
||||
}
|
||||
} else {
|
||||
$(this).show();
|
||||
if (linkage && 'dir' == ttype && tOpen == isOpen) {
|
||||
$ti.trigger('click');
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
// 检查参数
|
||||
checkParam: function (param) {
|
||||
if (!param.treeSpid && param.treeSpid != 0) {
|
||||
layer.msg('参数treeSpid不能为空', {icon: 5});
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!param.treeColIndex && param.treeColIndex != 0) {
|
||||
layer.msg('参数treeColIndex不能为空', {icon: 5});
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
},
|
||||
// 展开所有
|
||||
expandAll: function (dom) {
|
||||
$(dom).next('.treeTable').find('.layui-table-body tbody tr').each(function () {
|
||||
var $ti = $(this).find('.treeTable-icon');
|
||||
var ttype = $ti.attr('lay-ttype');
|
||||
var tOpen = $ti.hasClass('open');
|
||||
if ('dir' == ttype && !tOpen) {
|
||||
$ti.trigger('click');
|
||||
}
|
||||
});
|
||||
},
|
||||
// 折叠所有
|
||||
foldAll: function (dom) {
|
||||
$(dom).next('.treeTable').find('.layui-table-body tbody tr').each(function () {
|
||||
var $ti = $(this).find('.treeTable-icon');
|
||||
var ttype = $ti.attr('lay-ttype');
|
||||
var tOpen = $ti.hasClass('open');
|
||||
if ('dir' == ttype && tOpen) {
|
||||
$ti.trigger('click');
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
layui.link(layui.cache.base + 'treetable-lay/treetable.css');
|
||||
|
||||
// 给图标列绑定事件
|
||||
$('body').on('click', '.treeTable .treeTable-icon', function () {
|
||||
var treeLinkage = $(this).parents('.treeTable').attr('treeLinkage');
|
||||
if ('true' == treeLinkage) {
|
||||
treetable.toggleRows($(this), true);
|
||||
} else {
|
||||
treetable.toggleRows($(this), false);
|
||||
}
|
||||
});
|
||||
|
||||
exports('treetable', treetable);
|
||||
});
|
||||
@@ -0,0 +1,7 @@
|
||||
I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project,
|
||||
Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome,
|
||||
comprehensive icon sets or copy and paste your own.
|
||||
|
||||
Please. Check it out.
|
||||
|
||||
-Dave Gandy
|
||||
2337
template/cvbp/cvbp-base/src/main/resources/static/backend/lib/font-awesome-4.7.0/css/font-awesome.css
vendored
Normal file
|
After Width: | Height: | Size: 434 KiB |
@@ -0,0 +1,34 @@
|
||||
// Animated Icons
|
||||
// --------------------------
|
||||
|
||||
.@{fa-css-prefix}-spin {
|
||||
-webkit-animation: fa-spin 2s infinite linear;
|
||||
animation: fa-spin 2s infinite linear;
|
||||
}
|
||||
|
||||
.@{fa-css-prefix}-pulse {
|
||||
-webkit-animation: fa-spin 1s infinite steps(8);
|
||||
animation: fa-spin 1s infinite steps(8);
|
||||
}
|
||||
|
||||
@-webkit-keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
// Bordered & Pulled
|
||||
// -------------------------
|
||||
|
||||
.@{fa-css-prefix}-border {
|
||||
padding: .2em .25em .15em;
|
||||
border: solid .08em @fa-border-color;
|
||||
border-radius: .1em;
|
||||
}
|
||||
|
||||
.@{fa-css-prefix}-pull-left { float: left; }
|
||||
.@{fa-css-prefix}-pull-right { float: right; }
|
||||
|
||||
.@{fa-css-prefix} {
|
||||
&.@{fa-css-prefix}-pull-left { margin-right: .3em; }
|
||||
&.@{fa-css-prefix}-pull-right { margin-left: .3em; }
|
||||
}
|
||||
|
||||
/* Deprecated as of 4.4.0 */
|
||||
.pull-right { float: right; }
|
||||
.pull-left { float: left; }
|
||||
|
||||
.@{fa-css-prefix} {
|
||||
&.pull-left { margin-right: .3em; }
|
||||
&.pull-right { margin-left: .3em; }
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
// Base Class Definition
|
||||
// -------------------------
|
||||
|
||||
.@{fa-css-prefix} {
|
||||
display: inline-block;
|
||||
font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
|
||||
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
||||
text-rendering: auto; // optimizelegibility throws things off #1094
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
// Fixed Width Icons
|
||||
// -------------------------
|
||||
.@{fa-css-prefix}-fw {
|
||||
width: (18em / 14);
|
||||
text-align: center;
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/*!
|
||||
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
|
||||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||||
*/
|
||||
|
||||
@import "variables.less";
|
||||
@import "mixins.less";
|
||||
@import "path.less";
|
||||
@import "core.less";
|
||||
@import "larger.less";
|
||||
@import "fixed-width.less";
|
||||
@import "list.less";
|
||||
@import "bordered-pulled.less";
|
||||
@import "animated.less";
|
||||
@import "rotated-flipped.less";
|
||||
@import "stacked.less";
|
||||
@import "icons.less";
|
||||
@import "screen-reader.less";
|
||||
@@ -0,0 +1,789 @@
|
||||
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
||||
readers do not read off random characters that represent icons */
|
||||
|
||||
.@{fa-css-prefix}-glass:before { content: @fa-var-glass; }
|
||||
.@{fa-css-prefix}-music:before { content: @fa-var-music; }
|
||||
.@{fa-css-prefix}-search:before { content: @fa-var-search; }
|
||||
.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; }
|
||||
.@{fa-css-prefix}-heart:before { content: @fa-var-heart; }
|
||||
.@{fa-css-prefix}-star:before { content: @fa-var-star; }
|
||||
.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; }
|
||||
.@{fa-css-prefix}-user:before { content: @fa-var-user; }
|
||||
.@{fa-css-prefix}-film:before { content: @fa-var-film; }
|
||||
.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; }
|
||||
.@{fa-css-prefix}-th:before { content: @fa-var-th; }
|
||||
.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; }
|
||||
.@{fa-css-prefix}-check:before { content: @fa-var-check; }
|
||||
.@{fa-css-prefix}-remove:before,
|
||||
.@{fa-css-prefix}-close:before,
|
||||
.@{fa-css-prefix}-times:before { content: @fa-var-times; }
|
||||
.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; }
|
||||
.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; }
|
||||
.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; }
|
||||
.@{fa-css-prefix}-signal:before { content: @fa-var-signal; }
|
||||
.@{fa-css-prefix}-gear:before,
|
||||
.@{fa-css-prefix}-cog:before { content: @fa-var-cog; }
|
||||
.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; }
|
||||
.@{fa-css-prefix}-home:before { content: @fa-var-home; }
|
||||
.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; }
|
||||
.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; }
|
||||
.@{fa-css-prefix}-road:before { content: @fa-var-road; }
|
||||
.@{fa-css-prefix}-download:before { content: @fa-var-download; }
|
||||
.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; }
|
||||
.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; }
|
||||
.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; }
|
||||
.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; }
|
||||
.@{fa-css-prefix}-rotate-right:before,
|
||||
.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; }
|
||||
.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; }
|
||||
.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; }
|
||||
.@{fa-css-prefix}-lock:before { content: @fa-var-lock; }
|
||||
.@{fa-css-prefix}-flag:before { content: @fa-var-flag; }
|
||||
.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; }
|
||||
.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; }
|
||||
.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; }
|
||||
.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; }
|
||||
.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; }
|
||||
.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; }
|
||||
.@{fa-css-prefix}-tag:before { content: @fa-var-tag; }
|
||||
.@{fa-css-prefix}-tags:before { content: @fa-var-tags; }
|
||||
.@{fa-css-prefix}-book:before { content: @fa-var-book; }
|
||||
.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; }
|
||||
.@{fa-css-prefix}-print:before { content: @fa-var-print; }
|
||||
.@{fa-css-prefix}-camera:before { content: @fa-var-camera; }
|
||||
.@{fa-css-prefix}-font:before { content: @fa-var-font; }
|
||||
.@{fa-css-prefix}-bold:before { content: @fa-var-bold; }
|
||||
.@{fa-css-prefix}-italic:before { content: @fa-var-italic; }
|
||||
.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; }
|
||||
.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; }
|
||||
.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; }
|
||||
.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; }
|
||||
.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; }
|
||||
.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; }
|
||||
.@{fa-css-prefix}-list:before { content: @fa-var-list; }
|
||||
.@{fa-css-prefix}-dedent:before,
|
||||
.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; }
|
||||
.@{fa-css-prefix}-indent:before { content: @fa-var-indent; }
|
||||
.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; }
|
||||
.@{fa-css-prefix}-photo:before,
|
||||
.@{fa-css-prefix}-image:before,
|
||||
.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; }
|
||||
.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; }
|
||||
.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; }
|
||||
.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; }
|
||||
.@{fa-css-prefix}-tint:before { content: @fa-var-tint; }
|
||||
.@{fa-css-prefix}-edit:before,
|
||||
.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; }
|
||||
.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; }
|
||||
.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; }
|
||||
.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; }
|
||||
.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; }
|
||||
.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; }
|
||||
.@{fa-css-prefix}-backward:before { content: @fa-var-backward; }
|
||||
.@{fa-css-prefix}-play:before { content: @fa-var-play; }
|
||||
.@{fa-css-prefix}-pause:before { content: @fa-var-pause; }
|
||||
.@{fa-css-prefix}-stop:before { content: @fa-var-stop; }
|
||||
.@{fa-css-prefix}-forward:before { content: @fa-var-forward; }
|
||||
.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; }
|
||||
.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; }
|
||||
.@{fa-css-prefix}-eject:before { content: @fa-var-eject; }
|
||||
.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; }
|
||||
.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; }
|
||||
.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; }
|
||||
.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; }
|
||||
.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; }
|
||||
.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; }
|
||||
.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; }
|
||||
.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; }
|
||||
.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; }
|
||||
.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; }
|
||||
.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; }
|
||||
.@{fa-css-prefix}-ban:before { content: @fa-var-ban; }
|
||||
.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; }
|
||||
.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; }
|
||||
.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; }
|
||||
.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; }
|
||||
.@{fa-css-prefix}-mail-forward:before,
|
||||
.@{fa-css-prefix}-share:before { content: @fa-var-share; }
|
||||
.@{fa-css-prefix}-expand:before { content: @fa-var-expand; }
|
||||
.@{fa-css-prefix}-compress:before { content: @fa-var-compress; }
|
||||
.@{fa-css-prefix}-plus:before { content: @fa-var-plus; }
|
||||
.@{fa-css-prefix}-minus:before { content: @fa-var-minus; }
|
||||
.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; }
|
||||
.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; }
|
||||
.@{fa-css-prefix}-gift:before { content: @fa-var-gift; }
|
||||
.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; }
|
||||
.@{fa-css-prefix}-fire:before { content: @fa-var-fire; }
|
||||
.@{fa-css-prefix}-eye:before { content: @fa-var-eye; }
|
||||
.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; }
|
||||
.@{fa-css-prefix}-warning:before,
|
||||
.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; }
|
||||
.@{fa-css-prefix}-plane:before { content: @fa-var-plane; }
|
||||
.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; }
|
||||
.@{fa-css-prefix}-random:before { content: @fa-var-random; }
|
||||
.@{fa-css-prefix}-comment:before { content: @fa-var-comment; }
|
||||
.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; }
|
||||
.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; }
|
||||
.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; }
|
||||
.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; }
|
||||
.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; }
|
||||
.@{fa-css-prefix}-folder:before { content: @fa-var-folder; }
|
||||
.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; }
|
||||
.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; }
|
||||
.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; }
|
||||
.@{fa-css-prefix}-bar-chart-o:before,
|
||||
.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; }
|
||||
.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; }
|
||||
.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; }
|
||||
.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; }
|
||||
.@{fa-css-prefix}-key:before { content: @fa-var-key; }
|
||||
.@{fa-css-prefix}-gears:before,
|
||||
.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; }
|
||||
.@{fa-css-prefix}-comments:before { content: @fa-var-comments; }
|
||||
.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; }
|
||||
.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; }
|
||||
.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; }
|
||||
.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; }
|
||||
.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; }
|
||||
.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; }
|
||||
.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; }
|
||||
.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; }
|
||||
.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; }
|
||||
.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; }
|
||||
.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; }
|
||||
.@{fa-css-prefix}-upload:before { content: @fa-var-upload; }
|
||||
.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; }
|
||||
.@{fa-css-prefix}-phone:before { content: @fa-var-phone; }
|
||||
.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; }
|
||||
.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; }
|
||||
.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; }
|
||||
.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; }
|
||||
.@{fa-css-prefix}-facebook-f:before,
|
||||
.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; }
|
||||
.@{fa-css-prefix}-github:before { content: @fa-var-github; }
|
||||
.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; }
|
||||
.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; }
|
||||
.@{fa-css-prefix}-feed:before,
|
||||
.@{fa-css-prefix}-rss:before { content: @fa-var-rss; }
|
||||
.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; }
|
||||
.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; }
|
||||
.@{fa-css-prefix}-bell:before { content: @fa-var-bell; }
|
||||
.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; }
|
||||
.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; }
|
||||
.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; }
|
||||
.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; }
|
||||
.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; }
|
||||
.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; }
|
||||
.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; }
|
||||
.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; }
|
||||
.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; }
|
||||
.@{fa-css-prefix}-globe:before { content: @fa-var-globe; }
|
||||
.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; }
|
||||
.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; }
|
||||
.@{fa-css-prefix}-filter:before { content: @fa-var-filter; }
|
||||
.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; }
|
||||
.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; }
|
||||
.@{fa-css-prefix}-group:before,
|
||||
.@{fa-css-prefix}-users:before { content: @fa-var-users; }
|
||||
.@{fa-css-prefix}-chain:before,
|
||||
.@{fa-css-prefix}-link:before { content: @fa-var-link; }
|
||||
.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; }
|
||||
.@{fa-css-prefix}-flask:before { content: @fa-var-flask; }
|
||||
.@{fa-css-prefix}-cut:before,
|
||||
.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; }
|
||||
.@{fa-css-prefix}-copy:before,
|
||||
.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; }
|
||||
.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; }
|
||||
.@{fa-css-prefix}-save:before,
|
||||
.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; }
|
||||
.@{fa-css-prefix}-square:before { content: @fa-var-square; }
|
||||
.@{fa-css-prefix}-navicon:before,
|
||||
.@{fa-css-prefix}-reorder:before,
|
||||
.@{fa-css-prefix}-bars:before { content: @fa-var-bars; }
|
||||
.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; }
|
||||
.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; }
|
||||
.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; }
|
||||
.@{fa-css-prefix}-underline:before { content: @fa-var-underline; }
|
||||
.@{fa-css-prefix}-table:before { content: @fa-var-table; }
|
||||
.@{fa-css-prefix}-magic:before { content: @fa-var-magic; }
|
||||
.@{fa-css-prefix}-truck:before { content: @fa-var-truck; }
|
||||
.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; }
|
||||
.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; }
|
||||
.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; }
|
||||
.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; }
|
||||
.@{fa-css-prefix}-money:before { content: @fa-var-money; }
|
||||
.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; }
|
||||
.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; }
|
||||
.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; }
|
||||
.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; }
|
||||
.@{fa-css-prefix}-columns:before { content: @fa-var-columns; }
|
||||
.@{fa-css-prefix}-unsorted:before,
|
||||
.@{fa-css-prefix}-sort:before { content: @fa-var-sort; }
|
||||
.@{fa-css-prefix}-sort-down:before,
|
||||
.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; }
|
||||
.@{fa-css-prefix}-sort-up:before,
|
||||
.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; }
|
||||
.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; }
|
||||
.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; }
|
||||
.@{fa-css-prefix}-rotate-left:before,
|
||||
.@{fa-css-prefix}-undo:before { content: @fa-var-undo; }
|
||||
.@{fa-css-prefix}-legal:before,
|
||||
.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; }
|
||||
.@{fa-css-prefix}-dashboard:before,
|
||||
.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; }
|
||||
.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; }
|
||||
.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; }
|
||||
.@{fa-css-prefix}-flash:before,
|
||||
.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; }
|
||||
.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; }
|
||||
.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; }
|
||||
.@{fa-css-prefix}-paste:before,
|
||||
.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; }
|
||||
.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; }
|
||||
.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; }
|
||||
.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; }
|
||||
.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; }
|
||||
.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; }
|
||||
.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; }
|
||||
.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; }
|
||||
.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; }
|
||||
.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; }
|
||||
.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; }
|
||||
.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; }
|
||||
.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; }
|
||||
.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; }
|
||||
.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; }
|
||||
.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; }
|
||||
.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; }
|
||||
.@{fa-css-prefix}-beer:before { content: @fa-var-beer; }
|
||||
.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; }
|
||||
.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; }
|
||||
.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; }
|
||||
.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; }
|
||||
.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; }
|
||||
.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; }
|
||||
.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; }
|
||||
.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; }
|
||||
.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; }
|
||||
.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; }
|
||||
.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; }
|
||||
.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; }
|
||||
.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; }
|
||||
.@{fa-css-prefix}-mobile-phone:before,
|
||||
.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; }
|
||||
.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; }
|
||||
.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; }
|
||||
.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; }
|
||||
.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; }
|
||||
.@{fa-css-prefix}-circle:before { content: @fa-var-circle; }
|
||||
.@{fa-css-prefix}-mail-reply:before,
|
||||
.@{fa-css-prefix}-reply:before { content: @fa-var-reply; }
|
||||
.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; }
|
||||
.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; }
|
||||
.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; }
|
||||
.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; }
|
||||
.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; }
|
||||
.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; }
|
||||
.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; }
|
||||
.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; }
|
||||
.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; }
|
||||
.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; }
|
||||
.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; }
|
||||
.@{fa-css-prefix}-code:before { content: @fa-var-code; }
|
||||
.@{fa-css-prefix}-mail-reply-all:before,
|
||||
.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; }
|
||||
.@{fa-css-prefix}-star-half-empty:before,
|
||||
.@{fa-css-prefix}-star-half-full:before,
|
||||
.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; }
|
||||
.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; }
|
||||
.@{fa-css-prefix}-crop:before { content: @fa-var-crop; }
|
||||
.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; }
|
||||
.@{fa-css-prefix}-unlink:before,
|
||||
.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; }
|
||||
.@{fa-css-prefix}-question:before { content: @fa-var-question; }
|
||||
.@{fa-css-prefix}-info:before { content: @fa-var-info; }
|
||||
.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; }
|
||||
.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; }
|
||||
.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; }
|
||||
.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; }
|
||||
.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; }
|
||||
.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; }
|
||||
.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; }
|
||||
.@{fa-css-prefix}-shield:before { content: @fa-var-shield; }
|
||||
.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; }
|
||||
.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; }
|
||||
.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; }
|
||||
.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; }
|
||||
.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; }
|
||||
.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; }
|
||||
.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; }
|
||||
.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; }
|
||||
.@{fa-css-prefix}-html5:before { content: @fa-var-html5; }
|
||||
.@{fa-css-prefix}-css3:before { content: @fa-var-css3; }
|
||||
.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; }
|
||||
.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; }
|
||||
.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; }
|
||||
.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; }
|
||||
.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; }
|
||||
.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; }
|
||||
.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; }
|
||||
.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; }
|
||||
.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; }
|
||||
.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; }
|
||||
.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; }
|
||||
.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; }
|
||||
.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; }
|
||||
.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; }
|
||||
.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; }
|
||||
.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; }
|
||||
.@{fa-css-prefix}-compass:before { content: @fa-var-compass; }
|
||||
.@{fa-css-prefix}-toggle-down:before,
|
||||
.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; }
|
||||
.@{fa-css-prefix}-toggle-up:before,
|
||||
.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; }
|
||||
.@{fa-css-prefix}-toggle-right:before,
|
||||
.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; }
|
||||
.@{fa-css-prefix}-euro:before,
|
||||
.@{fa-css-prefix}-eur:before { content: @fa-var-eur; }
|
||||
.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; }
|
||||
.@{fa-css-prefix}-dollar:before,
|
||||
.@{fa-css-prefix}-usd:before { content: @fa-var-usd; }
|
||||
.@{fa-css-prefix}-rupee:before,
|
||||
.@{fa-css-prefix}-inr:before { content: @fa-var-inr; }
|
||||
.@{fa-css-prefix}-cny:before,
|
||||
.@{fa-css-prefix}-rmb:before,
|
||||
.@{fa-css-prefix}-yen:before,
|
||||
.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; }
|
||||
.@{fa-css-prefix}-ruble:before,
|
||||
.@{fa-css-prefix}-rouble:before,
|
||||
.@{fa-css-prefix}-rub:before { content: @fa-var-rub; }
|
||||
.@{fa-css-prefix}-won:before,
|
||||
.@{fa-css-prefix}-krw:before { content: @fa-var-krw; }
|
||||
.@{fa-css-prefix}-bitcoin:before,
|
||||
.@{fa-css-prefix}-btc:before { content: @fa-var-btc; }
|
||||
.@{fa-css-prefix}-file:before { content: @fa-var-file; }
|
||||
.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; }
|
||||
.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; }
|
||||
.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; }
|
||||
.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; }
|
||||
.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; }
|
||||
.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; }
|
||||
.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; }
|
||||
.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; }
|
||||
.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; }
|
||||
.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; }
|
||||
.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; }
|
||||
.@{fa-css-prefix}-xing:before { content: @fa-var-xing; }
|
||||
.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; }
|
||||
.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; }
|
||||
.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; }
|
||||
.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; }
|
||||
.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; }
|
||||
.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; }
|
||||
.@{fa-css-prefix}-adn:before { content: @fa-var-adn; }
|
||||
.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; }
|
||||
.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; }
|
||||
.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; }
|
||||
.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; }
|
||||
.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; }
|
||||
.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; }
|
||||
.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; }
|
||||
.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; }
|
||||
.@{fa-css-prefix}-apple:before { content: @fa-var-apple; }
|
||||
.@{fa-css-prefix}-windows:before { content: @fa-var-windows; }
|
||||
.@{fa-css-prefix}-android:before { content: @fa-var-android; }
|
||||
.@{fa-css-prefix}-linux:before { content: @fa-var-linux; }
|
||||
.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; }
|
||||
.@{fa-css-prefix}-skype:before { content: @fa-var-skype; }
|
||||
.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; }
|
||||
.@{fa-css-prefix}-trello:before { content: @fa-var-trello; }
|
||||
.@{fa-css-prefix}-female:before { content: @fa-var-female; }
|
||||
.@{fa-css-prefix}-male:before { content: @fa-var-male; }
|
||||
.@{fa-css-prefix}-gittip:before,
|
||||
.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; }
|
||||
.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; }
|
||||
.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; }
|
||||
.@{fa-css-prefix}-archive:before { content: @fa-var-archive; }
|
||||
.@{fa-css-prefix}-bug:before { content: @fa-var-bug; }
|
||||
.@{fa-css-prefix}-vk:before { content: @fa-var-vk; }
|
||||
.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; }
|
||||
.@{fa-css-prefix}-renren:before { content: @fa-var-renren; }
|
||||
.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; }
|
||||
.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; }
|
||||
.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; }
|
||||
.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; }
|
||||
.@{fa-css-prefix}-toggle-left:before,
|
||||
.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; }
|
||||
.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; }
|
||||
.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; }
|
||||
.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; }
|
||||
.@{fa-css-prefix}-turkish-lira:before,
|
||||
.@{fa-css-prefix}-try:before { content: @fa-var-try; }
|
||||
.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }
|
||||
.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }
|
||||
.@{fa-css-prefix}-slack:before { content: @fa-var-slack; }
|
||||
.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; }
|
||||
.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; }
|
||||
.@{fa-css-prefix}-openid:before { content: @fa-var-openid; }
|
||||
.@{fa-css-prefix}-institution:before,
|
||||
.@{fa-css-prefix}-bank:before,
|
||||
.@{fa-css-prefix}-university:before { content: @fa-var-university; }
|
||||
.@{fa-css-prefix}-mortar-board:before,
|
||||
.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; }
|
||||
.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; }
|
||||
.@{fa-css-prefix}-google:before { content: @fa-var-google; }
|
||||
.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; }
|
||||
.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; }
|
||||
.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; }
|
||||
.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; }
|
||||
.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; }
|
||||
.@{fa-css-prefix}-digg:before { content: @fa-var-digg; }
|
||||
.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; }
|
||||
.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; }
|
||||
.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; }
|
||||
.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; }
|
||||
.@{fa-css-prefix}-language:before { content: @fa-var-language; }
|
||||
.@{fa-css-prefix}-fax:before { content: @fa-var-fax; }
|
||||
.@{fa-css-prefix}-building:before { content: @fa-var-building; }
|
||||
.@{fa-css-prefix}-child:before { content: @fa-var-child; }
|
||||
.@{fa-css-prefix}-paw:before { content: @fa-var-paw; }
|
||||
.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; }
|
||||
.@{fa-css-prefix}-cube:before { content: @fa-var-cube; }
|
||||
.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; }
|
||||
.@{fa-css-prefix}-behance:before { content: @fa-var-behance; }
|
||||
.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; }
|
||||
.@{fa-css-prefix}-steam:before { content: @fa-var-steam; }
|
||||
.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; }
|
||||
.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; }
|
||||
.@{fa-css-prefix}-automobile:before,
|
||||
.@{fa-css-prefix}-car:before { content: @fa-var-car; }
|
||||
.@{fa-css-prefix}-cab:before,
|
||||
.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; }
|
||||
.@{fa-css-prefix}-tree:before { content: @fa-var-tree; }
|
||||
.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; }
|
||||
.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; }
|
||||
.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; }
|
||||
.@{fa-css-prefix}-database:before { content: @fa-var-database; }
|
||||
.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; }
|
||||
.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; }
|
||||
.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; }
|
||||
.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; }
|
||||
.@{fa-css-prefix}-file-photo-o:before,
|
||||
.@{fa-css-prefix}-file-picture-o:before,
|
||||
.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; }
|
||||
.@{fa-css-prefix}-file-zip-o:before,
|
||||
.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; }
|
||||
.@{fa-css-prefix}-file-sound-o:before,
|
||||
.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; }
|
||||
.@{fa-css-prefix}-file-movie-o:before,
|
||||
.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; }
|
||||
.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; }
|
||||
.@{fa-css-prefix}-vine:before { content: @fa-var-vine; }
|
||||
.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; }
|
||||
.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; }
|
||||
.@{fa-css-prefix}-life-bouy:before,
|
||||
.@{fa-css-prefix}-life-buoy:before,
|
||||
.@{fa-css-prefix}-life-saver:before,
|
||||
.@{fa-css-prefix}-support:before,
|
||||
.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; }
|
||||
.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; }
|
||||
.@{fa-css-prefix}-ra:before,
|
||||
.@{fa-css-prefix}-resistance:before,
|
||||
.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; }
|
||||
.@{fa-css-prefix}-ge:before,
|
||||
.@{fa-css-prefix}-empire:before { content: @fa-var-empire; }
|
||||
.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; }
|
||||
.@{fa-css-prefix}-git:before { content: @fa-var-git; }
|
||||
.@{fa-css-prefix}-y-combinator-square:before,
|
||||
.@{fa-css-prefix}-yc-square:before,
|
||||
.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; }
|
||||
.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; }
|
||||
.@{fa-css-prefix}-qq:before { content: @fa-var-qq; }
|
||||
.@{fa-css-prefix}-wechat:before,
|
||||
.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; }
|
||||
.@{fa-css-prefix}-send:before,
|
||||
.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; }
|
||||
.@{fa-css-prefix}-send-o:before,
|
||||
.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; }
|
||||
.@{fa-css-prefix}-history:before { content: @fa-var-history; }
|
||||
.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; }
|
||||
.@{fa-css-prefix}-header:before { content: @fa-var-header; }
|
||||
.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; }
|
||||
.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; }
|
||||
.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; }
|
||||
.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; }
|
||||
.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; }
|
||||
.@{fa-css-prefix}-soccer-ball-o:before,
|
||||
.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; }
|
||||
.@{fa-css-prefix}-tty:before { content: @fa-var-tty; }
|
||||
.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; }
|
||||
.@{fa-css-prefix}-plug:before { content: @fa-var-plug; }
|
||||
.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }
|
||||
.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }
|
||||
.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }
|
||||
.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }
|
||||
.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }
|
||||
.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }
|
||||
.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }
|
||||
.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }
|
||||
.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }
|
||||
.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }
|
||||
.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }
|
||||
.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }
|
||||
.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }
|
||||
.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }
|
||||
.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; }
|
||||
.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; }
|
||||
.@{fa-css-prefix}-trash:before { content: @fa-var-trash; }
|
||||
.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; }
|
||||
.@{fa-css-prefix}-at:before { content: @fa-var-at; }
|
||||
.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; }
|
||||
.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; }
|
||||
.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; }
|
||||
.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; }
|
||||
.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; }
|
||||
.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }
|
||||
.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }
|
||||
.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }
|
||||
.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }
|
||||
.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }
|
||||
.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; }
|
||||
.@{fa-css-prefix}-bus:before { content: @fa-var-bus; }
|
||||
.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; }
|
||||
.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; }
|
||||
.@{fa-css-prefix}-cc:before { content: @fa-var-cc; }
|
||||
.@{fa-css-prefix}-shekel:before,
|
||||
.@{fa-css-prefix}-sheqel:before,
|
||||
.@{fa-css-prefix}-ils:before { content: @fa-var-ils; }
|
||||
.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; }
|
||||
.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; }
|
||||
.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; }
|
||||
.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; }
|
||||
.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; }
|
||||
.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; }
|
||||
.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; }
|
||||
.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; }
|
||||
.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; }
|
||||
.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; }
|
||||
.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; }
|
||||
.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; }
|
||||
.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; }
|
||||
.@{fa-css-prefix}-ship:before { content: @fa-var-ship; }
|
||||
.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; }
|
||||
.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; }
|
||||
.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; }
|
||||
.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; }
|
||||
.@{fa-css-prefix}-venus:before { content: @fa-var-venus; }
|
||||
.@{fa-css-prefix}-mars:before { content: @fa-var-mars; }
|
||||
.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; }
|
||||
.@{fa-css-prefix}-intersex:before,
|
||||
.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; }
|
||||
.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; }
|
||||
.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; }
|
||||
.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; }
|
||||
.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; }
|
||||
.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; }
|
||||
.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; }
|
||||
.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; }
|
||||
.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; }
|
||||
.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; }
|
||||
.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; }
|
||||
.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; }
|
||||
.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; }
|
||||
.@{fa-css-prefix}-server:before { content: @fa-var-server; }
|
||||
.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; }
|
||||
.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; }
|
||||
.@{fa-css-prefix}-hotel:before,
|
||||
.@{fa-css-prefix}-bed:before { content: @fa-var-bed; }
|
||||
.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; }
|
||||
.@{fa-css-prefix}-train:before { content: @fa-var-train; }
|
||||
.@{fa-css-prefix}-subway:before { content: @fa-var-subway; }
|
||||
.@{fa-css-prefix}-medium:before { content: @fa-var-medium; }
|
||||
.@{fa-css-prefix}-yc:before,
|
||||
.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; }
|
||||
.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; }
|
||||
.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; }
|
||||
.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; }
|
||||
.@{fa-css-prefix}-battery-4:before,
|
||||
.@{fa-css-prefix}-battery:before,
|
||||
.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; }
|
||||
.@{fa-css-prefix}-battery-3:before,
|
||||
.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; }
|
||||
.@{fa-css-prefix}-battery-2:before,
|
||||
.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; }
|
||||
.@{fa-css-prefix}-battery-1:before,
|
||||
.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; }
|
||||
.@{fa-css-prefix}-battery-0:before,
|
||||
.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; }
|
||||
.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; }
|
||||
.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; }
|
||||
.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; }
|
||||
.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; }
|
||||
.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; }
|
||||
.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; }
|
||||
.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; }
|
||||
.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; }
|
||||
.@{fa-css-prefix}-clone:before { content: @fa-var-clone; }
|
||||
.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; }
|
||||
.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; }
|
||||
.@{fa-css-prefix}-hourglass-1:before,
|
||||
.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; }
|
||||
.@{fa-css-prefix}-hourglass-2:before,
|
||||
.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; }
|
||||
.@{fa-css-prefix}-hourglass-3:before,
|
||||
.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; }
|
||||
.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; }
|
||||
.@{fa-css-prefix}-hand-grab-o:before,
|
||||
.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; }
|
||||
.@{fa-css-prefix}-hand-stop-o:before,
|
||||
.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; }
|
||||
.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; }
|
||||
.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; }
|
||||
.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; }
|
||||
.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; }
|
||||
.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; }
|
||||
.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; }
|
||||
.@{fa-css-prefix}-registered:before { content: @fa-var-registered; }
|
||||
.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; }
|
||||
.@{fa-css-prefix}-gg:before { content: @fa-var-gg; }
|
||||
.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; }
|
||||
.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; }
|
||||
.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; }
|
||||
.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; }
|
||||
.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; }
|
||||
.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; }
|
||||
.@{fa-css-prefix}-safari:before { content: @fa-var-safari; }
|
||||
.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; }
|
||||
.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; }
|
||||
.@{fa-css-prefix}-opera:before { content: @fa-var-opera; }
|
||||
.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; }
|
||||
.@{fa-css-prefix}-tv:before,
|
||||
.@{fa-css-prefix}-television:before { content: @fa-var-television; }
|
||||
.@{fa-css-prefix}-contao:before { content: @fa-var-contao; }
|
||||
.@{fa-css-prefix}-500px:before { content: @fa-var-500px; }
|
||||
.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; }
|
||||
.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; }
|
||||
.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; }
|
||||
.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; }
|
||||
.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; }
|
||||
.@{fa-css-prefix}-industry:before { content: @fa-var-industry; }
|
||||
.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; }
|
||||
.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; }
|
||||
.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; }
|
||||
.@{fa-css-prefix}-map:before { content: @fa-var-map; }
|
||||
.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; }
|
||||
.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; }
|
||||
.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; }
|
||||
.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; }
|
||||
.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; }
|
||||
.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; }
|
||||
.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; }
|
||||
.@{fa-css-prefix}-edge:before { content: @fa-var-edge; }
|
||||
.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; }
|
||||
.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; }
|
||||
.@{fa-css-prefix}-modx:before { content: @fa-var-modx; }
|
||||
.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; }
|
||||
.@{fa-css-prefix}-usb:before { content: @fa-var-usb; }
|
||||
.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; }
|
||||
.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; }
|
||||
.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; }
|
||||
.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; }
|
||||
.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; }
|
||||
.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; }
|
||||
.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; }
|
||||
.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; }
|
||||
.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; }
|
||||
.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; }
|
||||
.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; }
|
||||
.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; }
|
||||
.@{fa-css-prefix}-percent:before { content: @fa-var-percent; }
|
||||
.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; }
|
||||
.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; }
|
||||
.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; }
|
||||
.@{fa-css-prefix}-envira:before { content: @fa-var-envira; }
|
||||
.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; }
|
||||
.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; }
|
||||
.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }
|
||||
.@{fa-css-prefix}-blind:before { content: @fa-var-blind; }
|
||||
.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; }
|
||||
.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; }
|
||||
.@{fa-css-prefix}-braille:before { content: @fa-var-braille; }
|
||||
.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; }
|
||||
.@{fa-css-prefix}-asl-interpreting:before,
|
||||
.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; }
|
||||
.@{fa-css-prefix}-deafness:before,
|
||||
.@{fa-css-prefix}-hard-of-hearing:before,
|
||||
.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; }
|
||||
.@{fa-css-prefix}-glide:before { content: @fa-var-glide; }
|
||||
.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; }
|
||||
.@{fa-css-prefix}-signing:before,
|
||||
.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; }
|
||||
.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; }
|
||||
.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; }
|
||||
.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; }
|
||||
.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; }
|
||||
.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; }
|
||||
.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; }
|
||||
.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; }
|
||||
.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; }
|
||||
.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; }
|
||||
.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; }
|
||||
.@{fa-css-prefix}-google-plus-circle:before,
|
||||
.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; }
|
||||
.@{fa-css-prefix}-fa:before,
|
||||
.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; }
|
||||
.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; }
|
||||
.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; }
|
||||
.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; }
|
||||
.@{fa-css-prefix}-linode:before { content: @fa-var-linode; }
|
||||
.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; }
|
||||
.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; }
|
||||
.@{fa-css-prefix}-vcard:before,
|
||||
.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; }
|
||||
.@{fa-css-prefix}-vcard-o:before,
|
||||
.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; }
|
||||
.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; }
|
||||
.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; }
|
||||
.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; }
|
||||
.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; }
|
||||
.@{fa-css-prefix}-drivers-license:before,
|
||||
.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; }
|
||||
.@{fa-css-prefix}-drivers-license-o:before,
|
||||
.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; }
|
||||
.@{fa-css-prefix}-quora:before { content: @fa-var-quora; }
|
||||
.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; }
|
||||
.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; }
|
||||
.@{fa-css-prefix}-thermometer-4:before,
|
||||
.@{fa-css-prefix}-thermometer:before,
|
||||
.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; }
|
||||
.@{fa-css-prefix}-thermometer-3:before,
|
||||
.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; }
|
||||
.@{fa-css-prefix}-thermometer-2:before,
|
||||
.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; }
|
||||
.@{fa-css-prefix}-thermometer-1:before,
|
||||
.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; }
|
||||
.@{fa-css-prefix}-thermometer-0:before,
|
||||
.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; }
|
||||
.@{fa-css-prefix}-shower:before { content: @fa-var-shower; }
|
||||
.@{fa-css-prefix}-bathtub:before,
|
||||
.@{fa-css-prefix}-s15:before,
|
||||
.@{fa-css-prefix}-bath:before { content: @fa-var-bath; }
|
||||
.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; }
|
||||
.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; }
|
||||
.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; }
|
||||
.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; }
|
||||
.@{fa-css-prefix}-times-rectangle:before,
|
||||
.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; }
|
||||
.@{fa-css-prefix}-times-rectangle-o:before,
|
||||
.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; }
|
||||
.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; }
|
||||
.@{fa-css-prefix}-grav:before { content: @fa-var-grav; }
|
||||
.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; }
|
||||
.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; }
|
||||
.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; }
|
||||
.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; }
|
||||
.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; }
|
||||
.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; }
|
||||
.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; }
|
||||
.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; }
|
||||
.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; }
|
||||
@@ -0,0 +1,13 @@
|
||||
// Icon Sizes
|
||||
// -------------------------
|
||||
|
||||
/* makes the font 33% larger relative to the icon container */
|
||||
.@{fa-css-prefix}-lg {
|
||||
font-size: (4em / 3);
|
||||
line-height: (3em / 4);
|
||||
vertical-align: -15%;
|
||||
}
|
||||
.@{fa-css-prefix}-2x { font-size: 2em; }
|
||||
.@{fa-css-prefix}-3x { font-size: 3em; }
|
||||
.@{fa-css-prefix}-4x { font-size: 4em; }
|
||||
.@{fa-css-prefix}-5x { font-size: 5em; }
|
||||
@@ -0,0 +1,19 @@
|
||||
// List Icons
|
||||
// -------------------------
|
||||
|
||||
.@{fa-css-prefix}-ul {
|
||||
padding-left: 0;
|
||||
margin-left: @fa-li-width;
|
||||
list-style-type: none;
|
||||
> li { position: relative; }
|
||||
}
|
||||
.@{fa-css-prefix}-li {
|
||||
position: absolute;
|
||||
left: -@fa-li-width;
|
||||
width: @fa-li-width;
|
||||
top: (2em / 14);
|
||||
text-align: center;
|
||||
&.@{fa-css-prefix}-lg {
|
||||
left: (-@fa-li-width + (4em / 14));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
// Mixins
|
||||
// --------------------------
|
||||
|
||||
.fa-icon() {
|
||||
display: inline-block;
|
||||
font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
|
||||
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
||||
text-rendering: auto; // optimizelegibility throws things off #1094
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
}
|
||||
|
||||
.fa-icon-rotate(@degrees, @rotation) {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})";
|
||||
-webkit-transform: rotate(@degrees);
|
||||
-ms-transform: rotate(@degrees);
|
||||
transform: rotate(@degrees);
|
||||
}
|
||||
|
||||
.fa-icon-flip(@horiz, @vert, @rotation) {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)";
|
||||
-webkit-transform: scale(@horiz, @vert);
|
||||
-ms-transform: scale(@horiz, @vert);
|
||||
transform: scale(@horiz, @vert);
|
||||
}
|
||||
|
||||
|
||||
// Only display content to screen readers. A la Bootstrap 4.
|
||||
//
|
||||
// See: http://a11yproject.com/posts/how-to-hide-content/
|
||||
|
||||
.sr-only() {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
padding: 0;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0,0,0,0);
|
||||
border: 0;
|
||||
}
|
||||
|
||||
// Use in conjunction with .sr-only to only display content when it's focused.
|
||||
//
|
||||
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
||||
//
|
||||
// Credit: HTML5 Boilerplate
|
||||
|
||||
.sr-only-focusable() {
|
||||
&:active,
|
||||
&:focus {
|
||||
position: static;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
overflow: visible;
|
||||
clip: auto;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
/* FONT PATH
|
||||
* -------------------------- */
|
||||
|
||||
@font-face {
|
||||
font-family: 'FontAwesome';
|
||||
src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
|
||||
src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
|
||||
url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),
|
||||
url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
|
||||
url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
|
||||
url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
|
||||
// src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
// Rotated & Flipped Icons
|
||||
// -------------------------
|
||||
|
||||
.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); }
|
||||
.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
|
||||
.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
|
||||
|
||||
.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
|
||||
.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
|
||||
|
||||
// Hook for IE8-9
|
||||
// -------------------------
|
||||
|
||||
:root .@{fa-css-prefix}-rotate-90,
|
||||
:root .@{fa-css-prefix}-rotate-180,
|
||||
:root .@{fa-css-prefix}-rotate-270,
|
||||
:root .@{fa-css-prefix}-flip-horizontal,
|
||||
:root .@{fa-css-prefix}-flip-vertical {
|
||||
filter: none;
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// Screen Readers
|
||||
// -------------------------
|
||||
|
||||
.sr-only { .sr-only(); }
|
||||
.sr-only-focusable { .sr-only-focusable(); }
|
||||
@@ -0,0 +1,20 @@
|
||||
// Stacked Icons
|
||||
// -------------------------
|
||||
|
||||
.@{fa-css-prefix}-stack {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
line-height: 2em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
.@{fa-css-prefix}-stack-1x { line-height: inherit; }
|
||||
.@{fa-css-prefix}-stack-2x { font-size: 2em; }
|
||||
.@{fa-css-prefix}-inverse { color: @fa-inverse; }
|
||||
@@ -0,0 +1,800 @@
|
||||
// Variables
|
||||
// --------------------------
|
||||
|
||||
@fa-font-path: "../fonts";
|
||||
@fa-font-size-base: 14px;
|
||||
@fa-line-height-base: 1;
|
||||
//@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts"; // for referencing Bootstrap CDN font files directly
|
||||
@fa-css-prefix: fa;
|
||||
@fa-version: "4.7.0";
|
||||
@fa-border-color: #eee;
|
||||
@fa-inverse: #fff;
|
||||
@fa-li-width: (30em / 14);
|
||||
|
||||
@fa-var-500px: "\f26e";
|
||||
@fa-var-address-book: "\f2b9";
|
||||
@fa-var-address-book-o: "\f2ba";
|
||||
@fa-var-address-card: "\f2bb";
|
||||
@fa-var-address-card-o: "\f2bc";
|
||||
@fa-var-adjust: "\f042";
|
||||
@fa-var-adn: "\f170";
|
||||
@fa-var-align-center: "\f037";
|
||||
@fa-var-align-justify: "\f039";
|
||||
@fa-var-align-left: "\f036";
|
||||
@fa-var-align-right: "\f038";
|
||||
@fa-var-amazon: "\f270";
|
||||
@fa-var-ambulance: "\f0f9";
|
||||
@fa-var-american-sign-language-interpreting: "\f2a3";
|
||||
@fa-var-anchor: "\f13d";
|
||||
@fa-var-android: "\f17b";
|
||||
@fa-var-angellist: "\f209";
|
||||
@fa-var-angle-double-down: "\f103";
|
||||
@fa-var-angle-double-left: "\f100";
|
||||
@fa-var-angle-double-right: "\f101";
|
||||
@fa-var-angle-double-up: "\f102";
|
||||
@fa-var-angle-down: "\f107";
|
||||
@fa-var-angle-left: "\f104";
|
||||
@fa-var-angle-right: "\f105";
|
||||
@fa-var-angle-up: "\f106";
|
||||
@fa-var-apple: "\f179";
|
||||
@fa-var-archive: "\f187";
|
||||
@fa-var-area-chart: "\f1fe";
|
||||
@fa-var-arrow-circle-down: "\f0ab";
|
||||
@fa-var-arrow-circle-left: "\f0a8";
|
||||
@fa-var-arrow-circle-o-down: "\f01a";
|
||||
@fa-var-arrow-circle-o-left: "\f190";
|
||||
@fa-var-arrow-circle-o-right: "\f18e";
|
||||
@fa-var-arrow-circle-o-up: "\f01b";
|
||||
@fa-var-arrow-circle-right: "\f0a9";
|
||||
@fa-var-arrow-circle-up: "\f0aa";
|
||||
@fa-var-arrow-down: "\f063";
|
||||
@fa-var-arrow-left: "\f060";
|
||||
@fa-var-arrow-right: "\f061";
|
||||
@fa-var-arrow-up: "\f062";
|
||||
@fa-var-arrows: "\f047";
|
||||
@fa-var-arrows-alt: "\f0b2";
|
||||
@fa-var-arrows-h: "\f07e";
|
||||
@fa-var-arrows-v: "\f07d";
|
||||
@fa-var-asl-interpreting: "\f2a3";
|
||||
@fa-var-assistive-listening-systems: "\f2a2";
|
||||
@fa-var-asterisk: "\f069";
|
||||
@fa-var-at: "\f1fa";
|
||||
@fa-var-audio-description: "\f29e";
|
||||
@fa-var-automobile: "\f1b9";
|
||||
@fa-var-backward: "\f04a";
|
||||
@fa-var-balance-scale: "\f24e";
|
||||
@fa-var-ban: "\f05e";
|
||||
@fa-var-bandcamp: "\f2d5";
|
||||
@fa-var-bank: "\f19c";
|
||||
@fa-var-bar-chart: "\f080";
|
||||
@fa-var-bar-chart-o: "\f080";
|
||||
@fa-var-barcode: "\f02a";
|
||||
@fa-var-bars: "\f0c9";
|
||||
@fa-var-bath: "\f2cd";
|
||||
@fa-var-bathtub: "\f2cd";
|
||||
@fa-var-battery: "\f240";
|
||||
@fa-var-battery-0: "\f244";
|
||||
@fa-var-battery-1: "\f243";
|
||||
@fa-var-battery-2: "\f242";
|
||||
@fa-var-battery-3: "\f241";
|
||||
@fa-var-battery-4: "\f240";
|
||||
@fa-var-battery-empty: "\f244";
|
||||
@fa-var-battery-full: "\f240";
|
||||
@fa-var-battery-half: "\f242";
|
||||
@fa-var-battery-quarter: "\f243";
|
||||
@fa-var-battery-three-quarters: "\f241";
|
||||
@fa-var-bed: "\f236";
|
||||
@fa-var-beer: "\f0fc";
|
||||
@fa-var-behance: "\f1b4";
|
||||
@fa-var-behance-square: "\f1b5";
|
||||
@fa-var-bell: "\f0f3";
|
||||
@fa-var-bell-o: "\f0a2";
|
||||
@fa-var-bell-slash: "\f1f6";
|
||||
@fa-var-bell-slash-o: "\f1f7";
|
||||
@fa-var-bicycle: "\f206";
|
||||
@fa-var-binoculars: "\f1e5";
|
||||
@fa-var-birthday-cake: "\f1fd";
|
||||
@fa-var-bitbucket: "\f171";
|
||||
@fa-var-bitbucket-square: "\f172";
|
||||
@fa-var-bitcoin: "\f15a";
|
||||
@fa-var-black-tie: "\f27e";
|
||||
@fa-var-blind: "\f29d";
|
||||
@fa-var-bluetooth: "\f293";
|
||||
@fa-var-bluetooth-b: "\f294";
|
||||
@fa-var-bold: "\f032";
|
||||
@fa-var-bolt: "\f0e7";
|
||||
@fa-var-bomb: "\f1e2";
|
||||
@fa-var-book: "\f02d";
|
||||
@fa-var-bookmark: "\f02e";
|
||||
@fa-var-bookmark-o: "\f097";
|
||||
@fa-var-braille: "\f2a1";
|
||||
@fa-var-briefcase: "\f0b1";
|
||||
@fa-var-btc: "\f15a";
|
||||
@fa-var-bug: "\f188";
|
||||
@fa-var-building: "\f1ad";
|
||||
@fa-var-building-o: "\f0f7";
|
||||
@fa-var-bullhorn: "\f0a1";
|
||||
@fa-var-bullseye: "\f140";
|
||||
@fa-var-bus: "\f207";
|
||||
@fa-var-buysellads: "\f20d";
|
||||
@fa-var-cab: "\f1ba";
|
||||
@fa-var-calculator: "\f1ec";
|
||||
@fa-var-calendar: "\f073";
|
||||
@fa-var-calendar-check-o: "\f274";
|
||||
@fa-var-calendar-minus-o: "\f272";
|
||||
@fa-var-calendar-o: "\f133";
|
||||
@fa-var-calendar-plus-o: "\f271";
|
||||
@fa-var-calendar-times-o: "\f273";
|
||||
@fa-var-camera: "\f030";
|
||||
@fa-var-camera-retro: "\f083";
|
||||
@fa-var-car: "\f1b9";
|
||||
@fa-var-caret-down: "\f0d7";
|
||||
@fa-var-caret-left: "\f0d9";
|
||||
@fa-var-caret-right: "\f0da";
|
||||
@fa-var-caret-square-o-down: "\f150";
|
||||
@fa-var-caret-square-o-left: "\f191";
|
||||
@fa-var-caret-square-o-right: "\f152";
|
||||
@fa-var-caret-square-o-up: "\f151";
|
||||
@fa-var-caret-up: "\f0d8";
|
||||
@fa-var-cart-arrow-down: "\f218";
|
||||
@fa-var-cart-plus: "\f217";
|
||||
@fa-var-cc: "\f20a";
|
||||
@fa-var-cc-amex: "\f1f3";
|
||||
@fa-var-cc-diners-club: "\f24c";
|
||||
@fa-var-cc-discover: "\f1f2";
|
||||
@fa-var-cc-jcb: "\f24b";
|
||||
@fa-var-cc-mastercard: "\f1f1";
|
||||
@fa-var-cc-paypal: "\f1f4";
|
||||
@fa-var-cc-stripe: "\f1f5";
|
||||
@fa-var-cc-visa: "\f1f0";
|
||||
@fa-var-certificate: "\f0a3";
|
||||
@fa-var-chain: "\f0c1";
|
||||
@fa-var-chain-broken: "\f127";
|
||||
@fa-var-check: "\f00c";
|
||||
@fa-var-check-circle: "\f058";
|
||||
@fa-var-check-circle-o: "\f05d";
|
||||
@fa-var-check-square: "\f14a";
|
||||
@fa-var-check-square-o: "\f046";
|
||||
@fa-var-chevron-circle-down: "\f13a";
|
||||
@fa-var-chevron-circle-left: "\f137";
|
||||
@fa-var-chevron-circle-right: "\f138";
|
||||
@fa-var-chevron-circle-up: "\f139";
|
||||
@fa-var-chevron-down: "\f078";
|
||||
@fa-var-chevron-left: "\f053";
|
||||
@fa-var-chevron-right: "\f054";
|
||||
@fa-var-chevron-up: "\f077";
|
||||
@fa-var-child: "\f1ae";
|
||||
@fa-var-chrome: "\f268";
|
||||
@fa-var-circle: "\f111";
|
||||
@fa-var-circle-o: "\f10c";
|
||||
@fa-var-circle-o-notch: "\f1ce";
|
||||
@fa-var-circle-thin: "\f1db";
|
||||
@fa-var-clipboard: "\f0ea";
|
||||
@fa-var-clock-o: "\f017";
|
||||
@fa-var-clone: "\f24d";
|
||||
@fa-var-close: "\f00d";
|
||||
@fa-var-cloud: "\f0c2";
|
||||
@fa-var-cloud-download: "\f0ed";
|
||||
@fa-var-cloud-upload: "\f0ee";
|
||||
@fa-var-cny: "\f157";
|
||||
@fa-var-code: "\f121";
|
||||
@fa-var-code-fork: "\f126";
|
||||
@fa-var-codepen: "\f1cb";
|
||||
@fa-var-codiepie: "\f284";
|
||||
@fa-var-coffee: "\f0f4";
|
||||
@fa-var-cog: "\f013";
|
||||
@fa-var-cogs: "\f085";
|
||||
@fa-var-columns: "\f0db";
|
||||
@fa-var-comment: "\f075";
|
||||
@fa-var-comment-o: "\f0e5";
|
||||
@fa-var-commenting: "\f27a";
|
||||
@fa-var-commenting-o: "\f27b";
|
||||
@fa-var-comments: "\f086";
|
||||
@fa-var-comments-o: "\f0e6";
|
||||
@fa-var-compass: "\f14e";
|
||||
@fa-var-compress: "\f066";
|
||||
@fa-var-connectdevelop: "\f20e";
|
||||
@fa-var-contao: "\f26d";
|
||||
@fa-var-copy: "\f0c5";
|
||||
@fa-var-copyright: "\f1f9";
|
||||
@fa-var-creative-commons: "\f25e";
|
||||
@fa-var-credit-card: "\f09d";
|
||||
@fa-var-credit-card-alt: "\f283";
|
||||
@fa-var-crop: "\f125";
|
||||
@fa-var-crosshairs: "\f05b";
|
||||
@fa-var-css3: "\f13c";
|
||||
@fa-var-cube: "\f1b2";
|
||||
@fa-var-cubes: "\f1b3";
|
||||
@fa-var-cut: "\f0c4";
|
||||
@fa-var-cutlery: "\f0f5";
|
||||
@fa-var-dashboard: "\f0e4";
|
||||
@fa-var-dashcube: "\f210";
|
||||
@fa-var-database: "\f1c0";
|
||||
@fa-var-deaf: "\f2a4";
|
||||
@fa-var-deafness: "\f2a4";
|
||||
@fa-var-dedent: "\f03b";
|
||||
@fa-var-delicious: "\f1a5";
|
||||
@fa-var-desktop: "\f108";
|
||||
@fa-var-deviantart: "\f1bd";
|
||||
@fa-var-diamond: "\f219";
|
||||
@fa-var-digg: "\f1a6";
|
||||
@fa-var-dollar: "\f155";
|
||||
@fa-var-dot-circle-o: "\f192";
|
||||
@fa-var-download: "\f019";
|
||||
@fa-var-dribbble: "\f17d";
|
||||
@fa-var-drivers-license: "\f2c2";
|
||||
@fa-var-drivers-license-o: "\f2c3";
|
||||
@fa-var-dropbox: "\f16b";
|
||||
@fa-var-drupal: "\f1a9";
|
||||
@fa-var-edge: "\f282";
|
||||
@fa-var-edit: "\f044";
|
||||
@fa-var-eercast: "\f2da";
|
||||
@fa-var-eject: "\f052";
|
||||
@fa-var-ellipsis-h: "\f141";
|
||||
@fa-var-ellipsis-v: "\f142";
|
||||
@fa-var-empire: "\f1d1";
|
||||
@fa-var-envelope: "\f0e0";
|
||||
@fa-var-envelope-o: "\f003";
|
||||
@fa-var-envelope-open: "\f2b6";
|
||||
@fa-var-envelope-open-o: "\f2b7";
|
||||
@fa-var-envelope-square: "\f199";
|
||||
@fa-var-envira: "\f299";
|
||||
@fa-var-eraser: "\f12d";
|
||||
@fa-var-etsy: "\f2d7";
|
||||
@fa-var-eur: "\f153";
|
||||
@fa-var-euro: "\f153";
|
||||
@fa-var-exchange: "\f0ec";
|
||||
@fa-var-exclamation: "\f12a";
|
||||
@fa-var-exclamation-circle: "\f06a";
|
||||
@fa-var-exclamation-triangle: "\f071";
|
||||
@fa-var-expand: "\f065";
|
||||
@fa-var-expeditedssl: "\f23e";
|
||||
@fa-var-external-link: "\f08e";
|
||||
@fa-var-external-link-square: "\f14c";
|
||||
@fa-var-eye: "\f06e";
|
||||
@fa-var-eye-slash: "\f070";
|
||||
@fa-var-eyedropper: "\f1fb";
|
||||
@fa-var-fa: "\f2b4";
|
||||
@fa-var-facebook: "\f09a";
|
||||
@fa-var-facebook-f: "\f09a";
|
||||
@fa-var-facebook-official: "\f230";
|
||||
@fa-var-facebook-square: "\f082";
|
||||
@fa-var-fast-backward: "\f049";
|
||||
@fa-var-fast-forward: "\f050";
|
||||
@fa-var-fax: "\f1ac";
|
||||
@fa-var-feed: "\f09e";
|
||||
@fa-var-female: "\f182";
|
||||
@fa-var-fighter-jet: "\f0fb";
|
||||
@fa-var-file: "\f15b";
|
||||
@fa-var-file-archive-o: "\f1c6";
|
||||
@fa-var-file-audio-o: "\f1c7";
|
||||
@fa-var-file-code-o: "\f1c9";
|
||||
@fa-var-file-excel-o: "\f1c3";
|
||||
@fa-var-file-image-o: "\f1c5";
|
||||
@fa-var-file-movie-o: "\f1c8";
|
||||
@fa-var-file-o: "\f016";
|
||||
@fa-var-file-pdf-o: "\f1c1";
|
||||
@fa-var-file-photo-o: "\f1c5";
|
||||
@fa-var-file-picture-o: "\f1c5";
|
||||
@fa-var-file-powerpoint-o: "\f1c4";
|
||||
@fa-var-file-sound-o: "\f1c7";
|
||||
@fa-var-file-text: "\f15c";
|
||||
@fa-var-file-text-o: "\f0f6";
|
||||
@fa-var-file-video-o: "\f1c8";
|
||||
@fa-var-file-word-o: "\f1c2";
|
||||
@fa-var-file-zip-o: "\f1c6";
|
||||
@fa-var-files-o: "\f0c5";
|
||||
@fa-var-film: "\f008";
|
||||
@fa-var-filter: "\f0b0";
|
||||
@fa-var-fire: "\f06d";
|
||||
@fa-var-fire-extinguisher: "\f134";
|
||||
@fa-var-firefox: "\f269";
|
||||
@fa-var-first-order: "\f2b0";
|
||||
@fa-var-flag: "\f024";
|
||||
@fa-var-flag-checkered: "\f11e";
|
||||
@fa-var-flag-o: "\f11d";
|
||||
@fa-var-flash: "\f0e7";
|
||||
@fa-var-flask: "\f0c3";
|
||||
@fa-var-flickr: "\f16e";
|
||||
@fa-var-floppy-o: "\f0c7";
|
||||
@fa-var-folder: "\f07b";
|
||||
@fa-var-folder-o: "\f114";
|
||||
@fa-var-folder-open: "\f07c";
|
||||
@fa-var-folder-open-o: "\f115";
|
||||
@fa-var-font: "\f031";
|
||||
@fa-var-font-awesome: "\f2b4";
|
||||
@fa-var-fonticons: "\f280";
|
||||
@fa-var-fort-awesome: "\f286";
|
||||
@fa-var-forumbee: "\f211";
|
||||
@fa-var-forward: "\f04e";
|
||||
@fa-var-foursquare: "\f180";
|
||||
@fa-var-free-code-camp: "\f2c5";
|
||||
@fa-var-frown-o: "\f119";
|
||||
@fa-var-futbol-o: "\f1e3";
|
||||
@fa-var-gamepad: "\f11b";
|
||||
@fa-var-gavel: "\f0e3";
|
||||
@fa-var-gbp: "\f154";
|
||||
@fa-var-ge: "\f1d1";
|
||||
@fa-var-gear: "\f013";
|
||||
@fa-var-gears: "\f085";
|
||||
@fa-var-genderless: "\f22d";
|
||||
@fa-var-get-pocket: "\f265";
|
||||
@fa-var-gg: "\f260";
|
||||
@fa-var-gg-circle: "\f261";
|
||||
@fa-var-gift: "\f06b";
|
||||
@fa-var-git: "\f1d3";
|
||||
@fa-var-git-square: "\f1d2";
|
||||
@fa-var-github: "\f09b";
|
||||
@fa-var-github-alt: "\f113";
|
||||
@fa-var-github-square: "\f092";
|
||||
@fa-var-gitlab: "\f296";
|
||||
@fa-var-gittip: "\f184";
|
||||
@fa-var-glass: "\f000";
|
||||
@fa-var-glide: "\f2a5";
|
||||
@fa-var-glide-g: "\f2a6";
|
||||
@fa-var-globe: "\f0ac";
|
||||
@fa-var-google: "\f1a0";
|
||||
@fa-var-google-plus: "\f0d5";
|
||||
@fa-var-google-plus-circle: "\f2b3";
|
||||
@fa-var-google-plus-official: "\f2b3";
|
||||
@fa-var-google-plus-square: "\f0d4";
|
||||
@fa-var-google-wallet: "\f1ee";
|
||||
@fa-var-graduation-cap: "\f19d";
|
||||
@fa-var-gratipay: "\f184";
|
||||
@fa-var-grav: "\f2d6";
|
||||
@fa-var-group: "\f0c0";
|
||||
@fa-var-h-square: "\f0fd";
|
||||
@fa-var-hacker-news: "\f1d4";
|
||||
@fa-var-hand-grab-o: "\f255";
|
||||
@fa-var-hand-lizard-o: "\f258";
|
||||
@fa-var-hand-o-down: "\f0a7";
|
||||
@fa-var-hand-o-left: "\f0a5";
|
||||
@fa-var-hand-o-right: "\f0a4";
|
||||
@fa-var-hand-o-up: "\f0a6";
|
||||
@fa-var-hand-paper-o: "\f256";
|
||||
@fa-var-hand-peace-o: "\f25b";
|
||||
@fa-var-hand-pointer-o: "\f25a";
|
||||
@fa-var-hand-rock-o: "\f255";
|
||||
@fa-var-hand-scissors-o: "\f257";
|
||||
@fa-var-hand-spock-o: "\f259";
|
||||
@fa-var-hand-stop-o: "\f256";
|
||||
@fa-var-handshake-o: "\f2b5";
|
||||
@fa-var-hard-of-hearing: "\f2a4";
|
||||
@fa-var-hashtag: "\f292";
|
||||
@fa-var-hdd-o: "\f0a0";
|
||||
@fa-var-header: "\f1dc";
|
||||
@fa-var-headphones: "\f025";
|
||||
@fa-var-heart: "\f004";
|
||||
@fa-var-heart-o: "\f08a";
|
||||
@fa-var-heartbeat: "\f21e";
|
||||
@fa-var-history: "\f1da";
|
||||
@fa-var-home: "\f015";
|
||||
@fa-var-hospital-o: "\f0f8";
|
||||
@fa-var-hotel: "\f236";
|
||||
@fa-var-hourglass: "\f254";
|
||||
@fa-var-hourglass-1: "\f251";
|
||||
@fa-var-hourglass-2: "\f252";
|
||||
@fa-var-hourglass-3: "\f253";
|
||||
@fa-var-hourglass-end: "\f253";
|
||||
@fa-var-hourglass-half: "\f252";
|
||||
@fa-var-hourglass-o: "\f250";
|
||||
@fa-var-hourglass-start: "\f251";
|
||||
@fa-var-houzz: "\f27c";
|
||||
@fa-var-html5: "\f13b";
|
||||
@fa-var-i-cursor: "\f246";
|
||||
@fa-var-id-badge: "\f2c1";
|
||||
@fa-var-id-card: "\f2c2";
|
||||
@fa-var-id-card-o: "\f2c3";
|
||||
@fa-var-ils: "\f20b";
|
||||
@fa-var-image: "\f03e";
|
||||
@fa-var-imdb: "\f2d8";
|
||||
@fa-var-inbox: "\f01c";
|
||||
@fa-var-indent: "\f03c";
|
||||
@fa-var-industry: "\f275";
|
||||
@fa-var-info: "\f129";
|
||||
@fa-var-info-circle: "\f05a";
|
||||
@fa-var-inr: "\f156";
|
||||
@fa-var-instagram: "\f16d";
|
||||
@fa-var-institution: "\f19c";
|
||||
@fa-var-internet-explorer: "\f26b";
|
||||
@fa-var-intersex: "\f224";
|
||||
@fa-var-ioxhost: "\f208";
|
||||
@fa-var-italic: "\f033";
|
||||
@fa-var-joomla: "\f1aa";
|
||||
@fa-var-jpy: "\f157";
|
||||
@fa-var-jsfiddle: "\f1cc";
|
||||
@fa-var-key: "\f084";
|
||||
@fa-var-keyboard-o: "\f11c";
|
||||
@fa-var-krw: "\f159";
|
||||
@fa-var-language: "\f1ab";
|
||||
@fa-var-laptop: "\f109";
|
||||
@fa-var-lastfm: "\f202";
|
||||
@fa-var-lastfm-square: "\f203";
|
||||
@fa-var-leaf: "\f06c";
|
||||
@fa-var-leanpub: "\f212";
|
||||
@fa-var-legal: "\f0e3";
|
||||
@fa-var-lemon-o: "\f094";
|
||||
@fa-var-level-down: "\f149";
|
||||
@fa-var-level-up: "\f148";
|
||||
@fa-var-life-bouy: "\f1cd";
|
||||
@fa-var-life-buoy: "\f1cd";
|
||||
@fa-var-life-ring: "\f1cd";
|
||||
@fa-var-life-saver: "\f1cd";
|
||||
@fa-var-lightbulb-o: "\f0eb";
|
||||
@fa-var-line-chart: "\f201";
|
||||
@fa-var-link: "\f0c1";
|
||||
@fa-var-linkedin: "\f0e1";
|
||||
@fa-var-linkedin-square: "\f08c";
|
||||
@fa-var-linode: "\f2b8";
|
||||
@fa-var-linux: "\f17c";
|
||||
@fa-var-list: "\f03a";
|
||||
@fa-var-list-alt: "\f022";
|
||||
@fa-var-list-ol: "\f0cb";
|
||||
@fa-var-list-ul: "\f0ca";
|
||||
@fa-var-location-arrow: "\f124";
|
||||
@fa-var-lock: "\f023";
|
||||
@fa-var-long-arrow-down: "\f175";
|
||||
@fa-var-long-arrow-left: "\f177";
|
||||
@fa-var-long-arrow-right: "\f178";
|
||||
@fa-var-long-arrow-up: "\f176";
|
||||
@fa-var-low-vision: "\f2a8";
|
||||
@fa-var-magic: "\f0d0";
|
||||
@fa-var-magnet: "\f076";
|
||||
@fa-var-mail-forward: "\f064";
|
||||
@fa-var-mail-reply: "\f112";
|
||||
@fa-var-mail-reply-all: "\f122";
|
||||
@fa-var-male: "\f183";
|
||||
@fa-var-map: "\f279";
|
||||
@fa-var-map-marker: "\f041";
|
||||
@fa-var-map-o: "\f278";
|
||||
@fa-var-map-pin: "\f276";
|
||||
@fa-var-map-signs: "\f277";
|
||||
@fa-var-mars: "\f222";
|
||||
@fa-var-mars-double: "\f227";
|
||||
@fa-var-mars-stroke: "\f229";
|
||||
@fa-var-mars-stroke-h: "\f22b";
|
||||
@fa-var-mars-stroke-v: "\f22a";
|
||||
@fa-var-maxcdn: "\f136";
|
||||
@fa-var-meanpath: "\f20c";
|
||||
@fa-var-medium: "\f23a";
|
||||
@fa-var-medkit: "\f0fa";
|
||||
@fa-var-meetup: "\f2e0";
|
||||
@fa-var-meh-o: "\f11a";
|
||||
@fa-var-mercury: "\f223";
|
||||
@fa-var-microchip: "\f2db";
|
||||
@fa-var-microphone: "\f130";
|
||||
@fa-var-microphone-slash: "\f131";
|
||||
@fa-var-minus: "\f068";
|
||||
@fa-var-minus-circle: "\f056";
|
||||
@fa-var-minus-square: "\f146";
|
||||
@fa-var-minus-square-o: "\f147";
|
||||
@fa-var-mixcloud: "\f289";
|
||||
@fa-var-mobile: "\f10b";
|
||||
@fa-var-mobile-phone: "\f10b";
|
||||
@fa-var-modx: "\f285";
|
||||
@fa-var-money: "\f0d6";
|
||||
@fa-var-moon-o: "\f186";
|
||||
@fa-var-mortar-board: "\f19d";
|
||||
@fa-var-motorcycle: "\f21c";
|
||||
@fa-var-mouse-pointer: "\f245";
|
||||
@fa-var-music: "\f001";
|
||||
@fa-var-navicon: "\f0c9";
|
||||
@fa-var-neuter: "\f22c";
|
||||
@fa-var-newspaper-o: "\f1ea";
|
||||
@fa-var-object-group: "\f247";
|
||||
@fa-var-object-ungroup: "\f248";
|
||||
@fa-var-odnoklassniki: "\f263";
|
||||
@fa-var-odnoklassniki-square: "\f264";
|
||||
@fa-var-opencart: "\f23d";
|
||||
@fa-var-openid: "\f19b";
|
||||
@fa-var-opera: "\f26a";
|
||||
@fa-var-optin-monster: "\f23c";
|
||||
@fa-var-outdent: "\f03b";
|
||||
@fa-var-pagelines: "\f18c";
|
||||
@fa-var-paint-brush: "\f1fc";
|
||||
@fa-var-paper-plane: "\f1d8";
|
||||
@fa-var-paper-plane-o: "\f1d9";
|
||||
@fa-var-paperclip: "\f0c6";
|
||||
@fa-var-paragraph: "\f1dd";
|
||||
@fa-var-paste: "\f0ea";
|
||||
@fa-var-pause: "\f04c";
|
||||
@fa-var-pause-circle: "\f28b";
|
||||
@fa-var-pause-circle-o: "\f28c";
|
||||
@fa-var-paw: "\f1b0";
|
||||
@fa-var-paypal: "\f1ed";
|
||||
@fa-var-pencil: "\f040";
|
||||
@fa-var-pencil-square: "\f14b";
|
||||
@fa-var-pencil-square-o: "\f044";
|
||||
@fa-var-percent: "\f295";
|
||||
@fa-var-phone: "\f095";
|
||||
@fa-var-phone-square: "\f098";
|
||||
@fa-var-photo: "\f03e";
|
||||
@fa-var-picture-o: "\f03e";
|
||||
@fa-var-pie-chart: "\f200";
|
||||
@fa-var-pied-piper: "\f2ae";
|
||||
@fa-var-pied-piper-alt: "\f1a8";
|
||||
@fa-var-pied-piper-pp: "\f1a7";
|
||||
@fa-var-pinterest: "\f0d2";
|
||||
@fa-var-pinterest-p: "\f231";
|
||||
@fa-var-pinterest-square: "\f0d3";
|
||||
@fa-var-plane: "\f072";
|
||||
@fa-var-play: "\f04b";
|
||||
@fa-var-play-circle: "\f144";
|
||||
@fa-var-play-circle-o: "\f01d";
|
||||
@fa-var-plug: "\f1e6";
|
||||
@fa-var-plus: "\f067";
|
||||
@fa-var-plus-circle: "\f055";
|
||||
@fa-var-plus-square: "\f0fe";
|
||||
@fa-var-plus-square-o: "\f196";
|
||||
@fa-var-podcast: "\f2ce";
|
||||
@fa-var-power-off: "\f011";
|
||||
@fa-var-print: "\f02f";
|
||||
@fa-var-product-hunt: "\f288";
|
||||
@fa-var-puzzle-piece: "\f12e";
|
||||
@fa-var-qq: "\f1d6";
|
||||
@fa-var-qrcode: "\f029";
|
||||
@fa-var-question: "\f128";
|
||||
@fa-var-question-circle: "\f059";
|
||||
@fa-var-question-circle-o: "\f29c";
|
||||
@fa-var-quora: "\f2c4";
|
||||
@fa-var-quote-left: "\f10d";
|
||||
@fa-var-quote-right: "\f10e";
|
||||
@fa-var-ra: "\f1d0";
|
||||
@fa-var-random: "\f074";
|
||||
@fa-var-ravelry: "\f2d9";
|
||||
@fa-var-rebel: "\f1d0";
|
||||
@fa-var-recycle: "\f1b8";
|
||||
@fa-var-reddit: "\f1a1";
|
||||
@fa-var-reddit-alien: "\f281";
|
||||
@fa-var-reddit-square: "\f1a2";
|
||||
@fa-var-refresh: "\f021";
|
||||
@fa-var-registered: "\f25d";
|
||||
@fa-var-remove: "\f00d";
|
||||
@fa-var-renren: "\f18b";
|
||||
@fa-var-reorder: "\f0c9";
|
||||
@fa-var-repeat: "\f01e";
|
||||
@fa-var-reply: "\f112";
|
||||
@fa-var-reply-all: "\f122";
|
||||
@fa-var-resistance: "\f1d0";
|
||||
@fa-var-retweet: "\f079";
|
||||
@fa-var-rmb: "\f157";
|
||||
@fa-var-road: "\f018";
|
||||
@fa-var-rocket: "\f135";
|
||||
@fa-var-rotate-left: "\f0e2";
|
||||
@fa-var-rotate-right: "\f01e";
|
||||
@fa-var-rouble: "\f158";
|
||||
@fa-var-rss: "\f09e";
|
||||
@fa-var-rss-square: "\f143";
|
||||
@fa-var-rub: "\f158";
|
||||
@fa-var-ruble: "\f158";
|
||||
@fa-var-rupee: "\f156";
|
||||
@fa-var-s15: "\f2cd";
|
||||
@fa-var-safari: "\f267";
|
||||
@fa-var-save: "\f0c7";
|
||||
@fa-var-scissors: "\f0c4";
|
||||
@fa-var-scribd: "\f28a";
|
||||
@fa-var-search: "\f002";
|
||||
@fa-var-search-minus: "\f010";
|
||||
@fa-var-search-plus: "\f00e";
|
||||
@fa-var-sellsy: "\f213";
|
||||
@fa-var-send: "\f1d8";
|
||||
@fa-var-send-o: "\f1d9";
|
||||
@fa-var-server: "\f233";
|
||||
@fa-var-share: "\f064";
|
||||
@fa-var-share-alt: "\f1e0";
|
||||
@fa-var-share-alt-square: "\f1e1";
|
||||
@fa-var-share-square: "\f14d";
|
||||
@fa-var-share-square-o: "\f045";
|
||||
@fa-var-shekel: "\f20b";
|
||||
@fa-var-sheqel: "\f20b";
|
||||
@fa-var-shield: "\f132";
|
||||
@fa-var-ship: "\f21a";
|
||||
@fa-var-shirtsinbulk: "\f214";
|
||||
@fa-var-shopping-bag: "\f290";
|
||||
@fa-var-shopping-basket: "\f291";
|
||||
@fa-var-shopping-cart: "\f07a";
|
||||
@fa-var-shower: "\f2cc";
|
||||
@fa-var-sign-in: "\f090";
|
||||
@fa-var-sign-language: "\f2a7";
|
||||
@fa-var-sign-out: "\f08b";
|
||||
@fa-var-signal: "\f012";
|
||||
@fa-var-signing: "\f2a7";
|
||||
@fa-var-simplybuilt: "\f215";
|
||||
@fa-var-sitemap: "\f0e8";
|
||||
@fa-var-skyatlas: "\f216";
|
||||
@fa-var-skype: "\f17e";
|
||||
@fa-var-slack: "\f198";
|
||||
@fa-var-sliders: "\f1de";
|
||||
@fa-var-slideshare: "\f1e7";
|
||||
@fa-var-smile-o: "\f118";
|
||||
@fa-var-snapchat: "\f2ab";
|
||||
@fa-var-snapchat-ghost: "\f2ac";
|
||||
@fa-var-snapchat-square: "\f2ad";
|
||||
@fa-var-snowflake-o: "\f2dc";
|
||||
@fa-var-soccer-ball-o: "\f1e3";
|
||||
@fa-var-sort: "\f0dc";
|
||||
@fa-var-sort-alpha-asc: "\f15d";
|
||||
@fa-var-sort-alpha-desc: "\f15e";
|
||||
@fa-var-sort-amount-asc: "\f160";
|
||||
@fa-var-sort-amount-desc: "\f161";
|
||||
@fa-var-sort-asc: "\f0de";
|
||||
@fa-var-sort-desc: "\f0dd";
|
||||
@fa-var-sort-down: "\f0dd";
|
||||
@fa-var-sort-numeric-asc: "\f162";
|
||||
@fa-var-sort-numeric-desc: "\f163";
|
||||
@fa-var-sort-up: "\f0de";
|
||||
@fa-var-soundcloud: "\f1be";
|
||||
@fa-var-space-shuttle: "\f197";
|
||||
@fa-var-spinner: "\f110";
|
||||
@fa-var-spoon: "\f1b1";
|
||||
@fa-var-spotify: "\f1bc";
|
||||
@fa-var-square: "\f0c8";
|
||||
@fa-var-square-o: "\f096";
|
||||
@fa-var-stack-exchange: "\f18d";
|
||||
@fa-var-stack-overflow: "\f16c";
|
||||
@fa-var-star: "\f005";
|
||||
@fa-var-star-half: "\f089";
|
||||
@fa-var-star-half-empty: "\f123";
|
||||
@fa-var-star-half-full: "\f123";
|
||||
@fa-var-star-half-o: "\f123";
|
||||
@fa-var-star-o: "\f006";
|
||||
@fa-var-steam: "\f1b6";
|
||||
@fa-var-steam-square: "\f1b7";
|
||||
@fa-var-step-backward: "\f048";
|
||||
@fa-var-step-forward: "\f051";
|
||||
@fa-var-stethoscope: "\f0f1";
|
||||
@fa-var-sticky-note: "\f249";
|
||||
@fa-var-sticky-note-o: "\f24a";
|
||||
@fa-var-stop: "\f04d";
|
||||
@fa-var-stop-circle: "\f28d";
|
||||
@fa-var-stop-circle-o: "\f28e";
|
||||
@fa-var-street-view: "\f21d";
|
||||
@fa-var-strikethrough: "\f0cc";
|
||||
@fa-var-stumbleupon: "\f1a4";
|
||||
@fa-var-stumbleupon-circle: "\f1a3";
|
||||
@fa-var-subscript: "\f12c";
|
||||
@fa-var-subway: "\f239";
|
||||
@fa-var-suitcase: "\f0f2";
|
||||
@fa-var-sun-o: "\f185";
|
||||
@fa-var-superpowers: "\f2dd";
|
||||
@fa-var-superscript: "\f12b";
|
||||
@fa-var-support: "\f1cd";
|
||||
@fa-var-table: "\f0ce";
|
||||
@fa-var-tablet: "\f10a";
|
||||
@fa-var-tachometer: "\f0e4";
|
||||
@fa-var-tag: "\f02b";
|
||||
@fa-var-tags: "\f02c";
|
||||
@fa-var-tasks: "\f0ae";
|
||||
@fa-var-taxi: "\f1ba";
|
||||
@fa-var-telegram: "\f2c6";
|
||||
@fa-var-television: "\f26c";
|
||||
@fa-var-tencent-weibo: "\f1d5";
|
||||
@fa-var-terminal: "\f120";
|
||||
@fa-var-text-height: "\f034";
|
||||
@fa-var-text-width: "\f035";
|
||||
@fa-var-th: "\f00a";
|
||||
@fa-var-th-large: "\f009";
|
||||
@fa-var-th-list: "\f00b";
|
||||
@fa-var-themeisle: "\f2b2";
|
||||
@fa-var-thermometer: "\f2c7";
|
||||
@fa-var-thermometer-0: "\f2cb";
|
||||
@fa-var-thermometer-1: "\f2ca";
|
||||
@fa-var-thermometer-2: "\f2c9";
|
||||
@fa-var-thermometer-3: "\f2c8";
|
||||
@fa-var-thermometer-4: "\f2c7";
|
||||
@fa-var-thermometer-empty: "\f2cb";
|
||||
@fa-var-thermometer-full: "\f2c7";
|
||||
@fa-var-thermometer-half: "\f2c9";
|
||||
@fa-var-thermometer-quarter: "\f2ca";
|
||||
@fa-var-thermometer-three-quarters: "\f2c8";
|
||||
@fa-var-thumb-tack: "\f08d";
|
||||
@fa-var-thumbs-down: "\f165";
|
||||
@fa-var-thumbs-o-down: "\f088";
|
||||
@fa-var-thumbs-o-up: "\f087";
|
||||
@fa-var-thumbs-up: "\f164";
|
||||
@fa-var-ticket: "\f145";
|
||||
@fa-var-times: "\f00d";
|
||||
@fa-var-times-circle: "\f057";
|
||||
@fa-var-times-circle-o: "\f05c";
|
||||
@fa-var-times-rectangle: "\f2d3";
|
||||
@fa-var-times-rectangle-o: "\f2d4";
|
||||
@fa-var-tint: "\f043";
|
||||
@fa-var-toggle-down: "\f150";
|
||||
@fa-var-toggle-left: "\f191";
|
||||
@fa-var-toggle-off: "\f204";
|
||||
@fa-var-toggle-on: "\f205";
|
||||
@fa-var-toggle-right: "\f152";
|
||||
@fa-var-toggle-up: "\f151";
|
||||
@fa-var-trademark: "\f25c";
|
||||
@fa-var-train: "\f238";
|
||||
@fa-var-transgender: "\f224";
|
||||
@fa-var-transgender-alt: "\f225";
|
||||
@fa-var-trash: "\f1f8";
|
||||
@fa-var-trash-o: "\f014";
|
||||
@fa-var-tree: "\f1bb";
|
||||
@fa-var-trello: "\f181";
|
||||
@fa-var-tripadvisor: "\f262";
|
||||
@fa-var-trophy: "\f091";
|
||||
@fa-var-truck: "\f0d1";
|
||||
@fa-var-try: "\f195";
|
||||
@fa-var-tty: "\f1e4";
|
||||
@fa-var-tumblr: "\f173";
|
||||
@fa-var-tumblr-square: "\f174";
|
||||
@fa-var-turkish-lira: "\f195";
|
||||
@fa-var-tv: "\f26c";
|
||||
@fa-var-twitch: "\f1e8";
|
||||
@fa-var-twitter: "\f099";
|
||||
@fa-var-twitter-square: "\f081";
|
||||
@fa-var-umbrella: "\f0e9";
|
||||
@fa-var-underline: "\f0cd";
|
||||
@fa-var-undo: "\f0e2";
|
||||
@fa-var-universal-access: "\f29a";
|
||||
@fa-var-university: "\f19c";
|
||||
@fa-var-unlink: "\f127";
|
||||
@fa-var-unlock: "\f09c";
|
||||
@fa-var-unlock-alt: "\f13e";
|
||||
@fa-var-unsorted: "\f0dc";
|
||||
@fa-var-upload: "\f093";
|
||||
@fa-var-usb: "\f287";
|
||||
@fa-var-usd: "\f155";
|
||||
@fa-var-user: "\f007";
|
||||
@fa-var-user-circle: "\f2bd";
|
||||
@fa-var-user-circle-o: "\f2be";
|
||||
@fa-var-user-md: "\f0f0";
|
||||
@fa-var-user-o: "\f2c0";
|
||||
@fa-var-user-plus: "\f234";
|
||||
@fa-var-user-secret: "\f21b";
|
||||
@fa-var-user-times: "\f235";
|
||||
@fa-var-users: "\f0c0";
|
||||
@fa-var-vcard: "\f2bb";
|
||||
@fa-var-vcard-o: "\f2bc";
|
||||
@fa-var-venus: "\f221";
|
||||
@fa-var-venus-double: "\f226";
|
||||
@fa-var-venus-mars: "\f228";
|
||||
@fa-var-viacoin: "\f237";
|
||||
@fa-var-viadeo: "\f2a9";
|
||||
@fa-var-viadeo-square: "\f2aa";
|
||||
@fa-var-video-camera: "\f03d";
|
||||
@fa-var-vimeo: "\f27d";
|
||||
@fa-var-vimeo-square: "\f194";
|
||||
@fa-var-vine: "\f1ca";
|
||||
@fa-var-vk: "\f189";
|
||||
@fa-var-volume-control-phone: "\f2a0";
|
||||
@fa-var-volume-down: "\f027";
|
||||
@fa-var-volume-off: "\f026";
|
||||
@fa-var-volume-up: "\f028";
|
||||
@fa-var-warning: "\f071";
|
||||
@fa-var-wechat: "\f1d7";
|
||||
@fa-var-weibo: "\f18a";
|
||||
@fa-var-weixin: "\f1d7";
|
||||
@fa-var-whatsapp: "\f232";
|
||||
@fa-var-wheelchair: "\f193";
|
||||
@fa-var-wheelchair-alt: "\f29b";
|
||||
@fa-var-wifi: "\f1eb";
|
||||
@fa-var-wikipedia-w: "\f266";
|
||||
@fa-var-window-close: "\f2d3";
|
||||
@fa-var-window-close-o: "\f2d4";
|
||||
@fa-var-window-maximize: "\f2d0";
|
||||
@fa-var-window-minimize: "\f2d1";
|
||||
@fa-var-window-restore: "\f2d2";
|
||||
@fa-var-windows: "\f17a";
|
||||
@fa-var-won: "\f159";
|
||||
@fa-var-wordpress: "\f19a";
|
||||
@fa-var-wpbeginner: "\f297";
|
||||
@fa-var-wpexplorer: "\f2de";
|
||||
@fa-var-wpforms: "\f298";
|
||||
@fa-var-wrench: "\f0ad";
|
||||
@fa-var-xing: "\f168";
|
||||
@fa-var-xing-square: "\f169";
|
||||
@fa-var-y-combinator: "\f23b";
|
||||
@fa-var-y-combinator-square: "\f1d4";
|
||||
@fa-var-yahoo: "\f19e";
|
||||
@fa-var-yc: "\f23b";
|
||||
@fa-var-yc-square: "\f1d4";
|
||||
@fa-var-yelp: "\f1e9";
|
||||
@fa-var-yen: "\f157";
|
||||
@fa-var-yoast: "\f2b1";
|
||||
@fa-var-youtube: "\f167";
|
||||
@fa-var-youtube-play: "\f16a";
|
||||
@fa-var-youtube-square: "\f166";
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
// Spinning Icons
|
||||
// --------------------------
|
||||
|
||||
.#{$fa-css-prefix}-spin {
|
||||
-webkit-animation: fa-spin 2s infinite linear;
|
||||
animation: fa-spin 2s infinite linear;
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-pulse {
|
||||
-webkit-animation: fa-spin 1s infinite steps(8);
|
||||
animation: fa-spin 1s infinite steps(8);
|
||||
}
|
||||
|
||||
@-webkit-keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fa-spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg);
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
// Bordered & Pulled
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix}-border {
|
||||
padding: .2em .25em .15em;
|
||||
border: solid .08em $fa-border-color;
|
||||
border-radius: .1em;
|
||||
}
|
||||
|
||||
.#{$fa-css-prefix}-pull-left { float: left; }
|
||||
.#{$fa-css-prefix}-pull-right { float: right; }
|
||||
|
||||
.#{$fa-css-prefix} {
|
||||
&.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
|
||||
&.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
|
||||
}
|
||||
|
||||
/* Deprecated as of 4.4.0 */
|
||||
.pull-right { float: right; }
|
||||
.pull-left { float: left; }
|
||||
|
||||
.#{$fa-css-prefix} {
|
||||
&.pull-left { margin-right: .3em; }
|
||||
&.pull-right { margin-left: .3em; }
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
// Base Class Definition
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix} {
|
||||
display: inline-block;
|
||||
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
|
||||
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
||||
text-rendering: auto; // optimizelegibility throws things off #1094
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
// Fixed Width Icons
|
||||
// -------------------------
|
||||
.#{$fa-css-prefix}-fw {
|
||||
width: (18em / 14);
|
||||
text-align: center;
|
||||
}
|
||||
@@ -0,0 +1,789 @@
|
||||
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
||||
readers do not read off random characters that represent icons */
|
||||
|
||||
.#{$fa-css-prefix}-glass:before { content: $fa-var-glass; }
|
||||
.#{$fa-css-prefix}-music:before { content: $fa-var-music; }
|
||||
.#{$fa-css-prefix}-search:before { content: $fa-var-search; }
|
||||
.#{$fa-css-prefix}-envelope-o:before { content: $fa-var-envelope-o; }
|
||||
.#{$fa-css-prefix}-heart:before { content: $fa-var-heart; }
|
||||
.#{$fa-css-prefix}-star:before { content: $fa-var-star; }
|
||||
.#{$fa-css-prefix}-star-o:before { content: $fa-var-star-o; }
|
||||
.#{$fa-css-prefix}-user:before { content: $fa-var-user; }
|
||||
.#{$fa-css-prefix}-film:before { content: $fa-var-film; }
|
||||
.#{$fa-css-prefix}-th-large:before { content: $fa-var-th-large; }
|
||||
.#{$fa-css-prefix}-th:before { content: $fa-var-th; }
|
||||
.#{$fa-css-prefix}-th-list:before { content: $fa-var-th-list; }
|
||||
.#{$fa-css-prefix}-check:before { content: $fa-var-check; }
|
||||
.#{$fa-css-prefix}-remove:before,
|
||||
.#{$fa-css-prefix}-close:before,
|
||||
.#{$fa-css-prefix}-times:before { content: $fa-var-times; }
|
||||
.#{$fa-css-prefix}-search-plus:before { content: $fa-var-search-plus; }
|
||||
.#{$fa-css-prefix}-search-minus:before { content: $fa-var-search-minus; }
|
||||
.#{$fa-css-prefix}-power-off:before { content: $fa-var-power-off; }
|
||||
.#{$fa-css-prefix}-signal:before { content: $fa-var-signal; }
|
||||
.#{$fa-css-prefix}-gear:before,
|
||||
.#{$fa-css-prefix}-cog:before { content: $fa-var-cog; }
|
||||
.#{$fa-css-prefix}-trash-o:before { content: $fa-var-trash-o; }
|
||||
.#{$fa-css-prefix}-home:before { content: $fa-var-home; }
|
||||
.#{$fa-css-prefix}-file-o:before { content: $fa-var-file-o; }
|
||||
.#{$fa-css-prefix}-clock-o:before { content: $fa-var-clock-o; }
|
||||
.#{$fa-css-prefix}-road:before { content: $fa-var-road; }
|
||||
.#{$fa-css-prefix}-download:before { content: $fa-var-download; }
|
||||
.#{$fa-css-prefix}-arrow-circle-o-down:before { content: $fa-var-arrow-circle-o-down; }
|
||||
.#{$fa-css-prefix}-arrow-circle-o-up:before { content: $fa-var-arrow-circle-o-up; }
|
||||
.#{$fa-css-prefix}-inbox:before { content: $fa-var-inbox; }
|
||||
.#{$fa-css-prefix}-play-circle-o:before { content: $fa-var-play-circle-o; }
|
||||
.#{$fa-css-prefix}-rotate-right:before,
|
||||
.#{$fa-css-prefix}-repeat:before { content: $fa-var-repeat; }
|
||||
.#{$fa-css-prefix}-refresh:before { content: $fa-var-refresh; }
|
||||
.#{$fa-css-prefix}-list-alt:before { content: $fa-var-list-alt; }
|
||||
.#{$fa-css-prefix}-lock:before { content: $fa-var-lock; }
|
||||
.#{$fa-css-prefix}-flag:before { content: $fa-var-flag; }
|
||||
.#{$fa-css-prefix}-headphones:before { content: $fa-var-headphones; }
|
||||
.#{$fa-css-prefix}-volume-off:before { content: $fa-var-volume-off; }
|
||||
.#{$fa-css-prefix}-volume-down:before { content: $fa-var-volume-down; }
|
||||
.#{$fa-css-prefix}-volume-up:before { content: $fa-var-volume-up; }
|
||||
.#{$fa-css-prefix}-qrcode:before { content: $fa-var-qrcode; }
|
||||
.#{$fa-css-prefix}-barcode:before { content: $fa-var-barcode; }
|
||||
.#{$fa-css-prefix}-tag:before { content: $fa-var-tag; }
|
||||
.#{$fa-css-prefix}-tags:before { content: $fa-var-tags; }
|
||||
.#{$fa-css-prefix}-book:before { content: $fa-var-book; }
|
||||
.#{$fa-css-prefix}-bookmark:before { content: $fa-var-bookmark; }
|
||||
.#{$fa-css-prefix}-print:before { content: $fa-var-print; }
|
||||
.#{$fa-css-prefix}-camera:before { content: $fa-var-camera; }
|
||||
.#{$fa-css-prefix}-font:before { content: $fa-var-font; }
|
||||
.#{$fa-css-prefix}-bold:before { content: $fa-var-bold; }
|
||||
.#{$fa-css-prefix}-italic:before { content: $fa-var-italic; }
|
||||
.#{$fa-css-prefix}-text-height:before { content: $fa-var-text-height; }
|
||||
.#{$fa-css-prefix}-text-width:before { content: $fa-var-text-width; }
|
||||
.#{$fa-css-prefix}-align-left:before { content: $fa-var-align-left; }
|
||||
.#{$fa-css-prefix}-align-center:before { content: $fa-var-align-center; }
|
||||
.#{$fa-css-prefix}-align-right:before { content: $fa-var-align-right; }
|
||||
.#{$fa-css-prefix}-align-justify:before { content: $fa-var-align-justify; }
|
||||
.#{$fa-css-prefix}-list:before { content: $fa-var-list; }
|
||||
.#{$fa-css-prefix}-dedent:before,
|
||||
.#{$fa-css-prefix}-outdent:before { content: $fa-var-outdent; }
|
||||
.#{$fa-css-prefix}-indent:before { content: $fa-var-indent; }
|
||||
.#{$fa-css-prefix}-video-camera:before { content: $fa-var-video-camera; }
|
||||
.#{$fa-css-prefix}-photo:before,
|
||||
.#{$fa-css-prefix}-image:before,
|
||||
.#{$fa-css-prefix}-picture-o:before { content: $fa-var-picture-o; }
|
||||
.#{$fa-css-prefix}-pencil:before { content: $fa-var-pencil; }
|
||||
.#{$fa-css-prefix}-map-marker:before { content: $fa-var-map-marker; }
|
||||
.#{$fa-css-prefix}-adjust:before { content: $fa-var-adjust; }
|
||||
.#{$fa-css-prefix}-tint:before { content: $fa-var-tint; }
|
||||
.#{$fa-css-prefix}-edit:before,
|
||||
.#{$fa-css-prefix}-pencil-square-o:before { content: $fa-var-pencil-square-o; }
|
||||
.#{$fa-css-prefix}-share-square-o:before { content: $fa-var-share-square-o; }
|
||||
.#{$fa-css-prefix}-check-square-o:before { content: $fa-var-check-square-o; }
|
||||
.#{$fa-css-prefix}-arrows:before { content: $fa-var-arrows; }
|
||||
.#{$fa-css-prefix}-step-backward:before { content: $fa-var-step-backward; }
|
||||
.#{$fa-css-prefix}-fast-backward:before { content: $fa-var-fast-backward; }
|
||||
.#{$fa-css-prefix}-backward:before { content: $fa-var-backward; }
|
||||
.#{$fa-css-prefix}-play:before { content: $fa-var-play; }
|
||||
.#{$fa-css-prefix}-pause:before { content: $fa-var-pause; }
|
||||
.#{$fa-css-prefix}-stop:before { content: $fa-var-stop; }
|
||||
.#{$fa-css-prefix}-forward:before { content: $fa-var-forward; }
|
||||
.#{$fa-css-prefix}-fast-forward:before { content: $fa-var-fast-forward; }
|
||||
.#{$fa-css-prefix}-step-forward:before { content: $fa-var-step-forward; }
|
||||
.#{$fa-css-prefix}-eject:before { content: $fa-var-eject; }
|
||||
.#{$fa-css-prefix}-chevron-left:before { content: $fa-var-chevron-left; }
|
||||
.#{$fa-css-prefix}-chevron-right:before { content: $fa-var-chevron-right; }
|
||||
.#{$fa-css-prefix}-plus-circle:before { content: $fa-var-plus-circle; }
|
||||
.#{$fa-css-prefix}-minus-circle:before { content: $fa-var-minus-circle; }
|
||||
.#{$fa-css-prefix}-times-circle:before { content: $fa-var-times-circle; }
|
||||
.#{$fa-css-prefix}-check-circle:before { content: $fa-var-check-circle; }
|
||||
.#{$fa-css-prefix}-question-circle:before { content: $fa-var-question-circle; }
|
||||
.#{$fa-css-prefix}-info-circle:before { content: $fa-var-info-circle; }
|
||||
.#{$fa-css-prefix}-crosshairs:before { content: $fa-var-crosshairs; }
|
||||
.#{$fa-css-prefix}-times-circle-o:before { content: $fa-var-times-circle-o; }
|
||||
.#{$fa-css-prefix}-check-circle-o:before { content: $fa-var-check-circle-o; }
|
||||
.#{$fa-css-prefix}-ban:before { content: $fa-var-ban; }
|
||||
.#{$fa-css-prefix}-arrow-left:before { content: $fa-var-arrow-left; }
|
||||
.#{$fa-css-prefix}-arrow-right:before { content: $fa-var-arrow-right; }
|
||||
.#{$fa-css-prefix}-arrow-up:before { content: $fa-var-arrow-up; }
|
||||
.#{$fa-css-prefix}-arrow-down:before { content: $fa-var-arrow-down; }
|
||||
.#{$fa-css-prefix}-mail-forward:before,
|
||||
.#{$fa-css-prefix}-share:before { content: $fa-var-share; }
|
||||
.#{$fa-css-prefix}-expand:before { content: $fa-var-expand; }
|
||||
.#{$fa-css-prefix}-compress:before { content: $fa-var-compress; }
|
||||
.#{$fa-css-prefix}-plus:before { content: $fa-var-plus; }
|
||||
.#{$fa-css-prefix}-minus:before { content: $fa-var-minus; }
|
||||
.#{$fa-css-prefix}-asterisk:before { content: $fa-var-asterisk; }
|
||||
.#{$fa-css-prefix}-exclamation-circle:before { content: $fa-var-exclamation-circle; }
|
||||
.#{$fa-css-prefix}-gift:before { content: $fa-var-gift; }
|
||||
.#{$fa-css-prefix}-leaf:before { content: $fa-var-leaf; }
|
||||
.#{$fa-css-prefix}-fire:before { content: $fa-var-fire; }
|
||||
.#{$fa-css-prefix}-eye:before { content: $fa-var-eye; }
|
||||
.#{$fa-css-prefix}-eye-slash:before { content: $fa-var-eye-slash; }
|
||||
.#{$fa-css-prefix}-warning:before,
|
||||
.#{$fa-css-prefix}-exclamation-triangle:before { content: $fa-var-exclamation-triangle; }
|
||||
.#{$fa-css-prefix}-plane:before { content: $fa-var-plane; }
|
||||
.#{$fa-css-prefix}-calendar:before { content: $fa-var-calendar; }
|
||||
.#{$fa-css-prefix}-random:before { content: $fa-var-random; }
|
||||
.#{$fa-css-prefix}-comment:before { content: $fa-var-comment; }
|
||||
.#{$fa-css-prefix}-magnet:before { content: $fa-var-magnet; }
|
||||
.#{$fa-css-prefix}-chevron-up:before { content: $fa-var-chevron-up; }
|
||||
.#{$fa-css-prefix}-chevron-down:before { content: $fa-var-chevron-down; }
|
||||
.#{$fa-css-prefix}-retweet:before { content: $fa-var-retweet; }
|
||||
.#{$fa-css-prefix}-shopping-cart:before { content: $fa-var-shopping-cart; }
|
||||
.#{$fa-css-prefix}-folder:before { content: $fa-var-folder; }
|
||||
.#{$fa-css-prefix}-folder-open:before { content: $fa-var-folder-open; }
|
||||
.#{$fa-css-prefix}-arrows-v:before { content: $fa-var-arrows-v; }
|
||||
.#{$fa-css-prefix}-arrows-h:before { content: $fa-var-arrows-h; }
|
||||
.#{$fa-css-prefix}-bar-chart-o:before,
|
||||
.#{$fa-css-prefix}-bar-chart:before { content: $fa-var-bar-chart; }
|
||||
.#{$fa-css-prefix}-twitter-square:before { content: $fa-var-twitter-square; }
|
||||
.#{$fa-css-prefix}-facebook-square:before { content: $fa-var-facebook-square; }
|
||||
.#{$fa-css-prefix}-camera-retro:before { content: $fa-var-camera-retro; }
|
||||
.#{$fa-css-prefix}-key:before { content: $fa-var-key; }
|
||||
.#{$fa-css-prefix}-gears:before,
|
||||
.#{$fa-css-prefix}-cogs:before { content: $fa-var-cogs; }
|
||||
.#{$fa-css-prefix}-comments:before { content: $fa-var-comments; }
|
||||
.#{$fa-css-prefix}-thumbs-o-up:before { content: $fa-var-thumbs-o-up; }
|
||||
.#{$fa-css-prefix}-thumbs-o-down:before { content: $fa-var-thumbs-o-down; }
|
||||
.#{$fa-css-prefix}-star-half:before { content: $fa-var-star-half; }
|
||||
.#{$fa-css-prefix}-heart-o:before { content: $fa-var-heart-o; }
|
||||
.#{$fa-css-prefix}-sign-out:before { content: $fa-var-sign-out; }
|
||||
.#{$fa-css-prefix}-linkedin-square:before { content: $fa-var-linkedin-square; }
|
||||
.#{$fa-css-prefix}-thumb-tack:before { content: $fa-var-thumb-tack; }
|
||||
.#{$fa-css-prefix}-external-link:before { content: $fa-var-external-link; }
|
||||
.#{$fa-css-prefix}-sign-in:before { content: $fa-var-sign-in; }
|
||||
.#{$fa-css-prefix}-trophy:before { content: $fa-var-trophy; }
|
||||
.#{$fa-css-prefix}-github-square:before { content: $fa-var-github-square; }
|
||||
.#{$fa-css-prefix}-upload:before { content: $fa-var-upload; }
|
||||
.#{$fa-css-prefix}-lemon-o:before { content: $fa-var-lemon-o; }
|
||||
.#{$fa-css-prefix}-phone:before { content: $fa-var-phone; }
|
||||
.#{$fa-css-prefix}-square-o:before { content: $fa-var-square-o; }
|
||||
.#{$fa-css-prefix}-bookmark-o:before { content: $fa-var-bookmark-o; }
|
||||
.#{$fa-css-prefix}-phone-square:before { content: $fa-var-phone-square; }
|
||||
.#{$fa-css-prefix}-twitter:before { content: $fa-var-twitter; }
|
||||
.#{$fa-css-prefix}-facebook-f:before,
|
||||
.#{$fa-css-prefix}-facebook:before { content: $fa-var-facebook; }
|
||||
.#{$fa-css-prefix}-github:before { content: $fa-var-github; }
|
||||
.#{$fa-css-prefix}-unlock:before { content: $fa-var-unlock; }
|
||||
.#{$fa-css-prefix}-credit-card:before { content: $fa-var-credit-card; }
|
||||
.#{$fa-css-prefix}-feed:before,
|
||||
.#{$fa-css-prefix}-rss:before { content: $fa-var-rss; }
|
||||
.#{$fa-css-prefix}-hdd-o:before { content: $fa-var-hdd-o; }
|
||||
.#{$fa-css-prefix}-bullhorn:before { content: $fa-var-bullhorn; }
|
||||
.#{$fa-css-prefix}-bell:before { content: $fa-var-bell; }
|
||||
.#{$fa-css-prefix}-certificate:before { content: $fa-var-certificate; }
|
||||
.#{$fa-css-prefix}-hand-o-right:before { content: $fa-var-hand-o-right; }
|
||||
.#{$fa-css-prefix}-hand-o-left:before { content: $fa-var-hand-o-left; }
|
||||
.#{$fa-css-prefix}-hand-o-up:before { content: $fa-var-hand-o-up; }
|
||||
.#{$fa-css-prefix}-hand-o-down:before { content: $fa-var-hand-o-down; }
|
||||
.#{$fa-css-prefix}-arrow-circle-left:before { content: $fa-var-arrow-circle-left; }
|
||||
.#{$fa-css-prefix}-arrow-circle-right:before { content: $fa-var-arrow-circle-right; }
|
||||
.#{$fa-css-prefix}-arrow-circle-up:before { content: $fa-var-arrow-circle-up; }
|
||||
.#{$fa-css-prefix}-arrow-circle-down:before { content: $fa-var-arrow-circle-down; }
|
||||
.#{$fa-css-prefix}-globe:before { content: $fa-var-globe; }
|
||||
.#{$fa-css-prefix}-wrench:before { content: $fa-var-wrench; }
|
||||
.#{$fa-css-prefix}-tasks:before { content: $fa-var-tasks; }
|
||||
.#{$fa-css-prefix}-filter:before { content: $fa-var-filter; }
|
||||
.#{$fa-css-prefix}-briefcase:before { content: $fa-var-briefcase; }
|
||||
.#{$fa-css-prefix}-arrows-alt:before { content: $fa-var-arrows-alt; }
|
||||
.#{$fa-css-prefix}-group:before,
|
||||
.#{$fa-css-prefix}-users:before { content: $fa-var-users; }
|
||||
.#{$fa-css-prefix}-chain:before,
|
||||
.#{$fa-css-prefix}-link:before { content: $fa-var-link; }
|
||||
.#{$fa-css-prefix}-cloud:before { content: $fa-var-cloud; }
|
||||
.#{$fa-css-prefix}-flask:before { content: $fa-var-flask; }
|
||||
.#{$fa-css-prefix}-cut:before,
|
||||
.#{$fa-css-prefix}-scissors:before { content: $fa-var-scissors; }
|
||||
.#{$fa-css-prefix}-copy:before,
|
||||
.#{$fa-css-prefix}-files-o:before { content: $fa-var-files-o; }
|
||||
.#{$fa-css-prefix}-paperclip:before { content: $fa-var-paperclip; }
|
||||
.#{$fa-css-prefix}-save:before,
|
||||
.#{$fa-css-prefix}-floppy-o:before { content: $fa-var-floppy-o; }
|
||||
.#{$fa-css-prefix}-square:before { content: $fa-var-square; }
|
||||
.#{$fa-css-prefix}-navicon:before,
|
||||
.#{$fa-css-prefix}-reorder:before,
|
||||
.#{$fa-css-prefix}-bars:before { content: $fa-var-bars; }
|
||||
.#{$fa-css-prefix}-list-ul:before { content: $fa-var-list-ul; }
|
||||
.#{$fa-css-prefix}-list-ol:before { content: $fa-var-list-ol; }
|
||||
.#{$fa-css-prefix}-strikethrough:before { content: $fa-var-strikethrough; }
|
||||
.#{$fa-css-prefix}-underline:before { content: $fa-var-underline; }
|
||||
.#{$fa-css-prefix}-table:before { content: $fa-var-table; }
|
||||
.#{$fa-css-prefix}-magic:before { content: $fa-var-magic; }
|
||||
.#{$fa-css-prefix}-truck:before { content: $fa-var-truck; }
|
||||
.#{$fa-css-prefix}-pinterest:before { content: $fa-var-pinterest; }
|
||||
.#{$fa-css-prefix}-pinterest-square:before { content: $fa-var-pinterest-square; }
|
||||
.#{$fa-css-prefix}-google-plus-square:before { content: $fa-var-google-plus-square; }
|
||||
.#{$fa-css-prefix}-google-plus:before { content: $fa-var-google-plus; }
|
||||
.#{$fa-css-prefix}-money:before { content: $fa-var-money; }
|
||||
.#{$fa-css-prefix}-caret-down:before { content: $fa-var-caret-down; }
|
||||
.#{$fa-css-prefix}-caret-up:before { content: $fa-var-caret-up; }
|
||||
.#{$fa-css-prefix}-caret-left:before { content: $fa-var-caret-left; }
|
||||
.#{$fa-css-prefix}-caret-right:before { content: $fa-var-caret-right; }
|
||||
.#{$fa-css-prefix}-columns:before { content: $fa-var-columns; }
|
||||
.#{$fa-css-prefix}-unsorted:before,
|
||||
.#{$fa-css-prefix}-sort:before { content: $fa-var-sort; }
|
||||
.#{$fa-css-prefix}-sort-down:before,
|
||||
.#{$fa-css-prefix}-sort-desc:before { content: $fa-var-sort-desc; }
|
||||
.#{$fa-css-prefix}-sort-up:before,
|
||||
.#{$fa-css-prefix}-sort-asc:before { content: $fa-var-sort-asc; }
|
||||
.#{$fa-css-prefix}-envelope:before { content: $fa-var-envelope; }
|
||||
.#{$fa-css-prefix}-linkedin:before { content: $fa-var-linkedin; }
|
||||
.#{$fa-css-prefix}-rotate-left:before,
|
||||
.#{$fa-css-prefix}-undo:before { content: $fa-var-undo; }
|
||||
.#{$fa-css-prefix}-legal:before,
|
||||
.#{$fa-css-prefix}-gavel:before { content: $fa-var-gavel; }
|
||||
.#{$fa-css-prefix}-dashboard:before,
|
||||
.#{$fa-css-prefix}-tachometer:before { content: $fa-var-tachometer; }
|
||||
.#{$fa-css-prefix}-comment-o:before { content: $fa-var-comment-o; }
|
||||
.#{$fa-css-prefix}-comments-o:before { content: $fa-var-comments-o; }
|
||||
.#{$fa-css-prefix}-flash:before,
|
||||
.#{$fa-css-prefix}-bolt:before { content: $fa-var-bolt; }
|
||||
.#{$fa-css-prefix}-sitemap:before { content: $fa-var-sitemap; }
|
||||
.#{$fa-css-prefix}-umbrella:before { content: $fa-var-umbrella; }
|
||||
.#{$fa-css-prefix}-paste:before,
|
||||
.#{$fa-css-prefix}-clipboard:before { content: $fa-var-clipboard; }
|
||||
.#{$fa-css-prefix}-lightbulb-o:before { content: $fa-var-lightbulb-o; }
|
||||
.#{$fa-css-prefix}-exchange:before { content: $fa-var-exchange; }
|
||||
.#{$fa-css-prefix}-cloud-download:before { content: $fa-var-cloud-download; }
|
||||
.#{$fa-css-prefix}-cloud-upload:before { content: $fa-var-cloud-upload; }
|
||||
.#{$fa-css-prefix}-user-md:before { content: $fa-var-user-md; }
|
||||
.#{$fa-css-prefix}-stethoscope:before { content: $fa-var-stethoscope; }
|
||||
.#{$fa-css-prefix}-suitcase:before { content: $fa-var-suitcase; }
|
||||
.#{$fa-css-prefix}-bell-o:before { content: $fa-var-bell-o; }
|
||||
.#{$fa-css-prefix}-coffee:before { content: $fa-var-coffee; }
|
||||
.#{$fa-css-prefix}-cutlery:before { content: $fa-var-cutlery; }
|
||||
.#{$fa-css-prefix}-file-text-o:before { content: $fa-var-file-text-o; }
|
||||
.#{$fa-css-prefix}-building-o:before { content: $fa-var-building-o; }
|
||||
.#{$fa-css-prefix}-hospital-o:before { content: $fa-var-hospital-o; }
|
||||
.#{$fa-css-prefix}-ambulance:before { content: $fa-var-ambulance; }
|
||||
.#{$fa-css-prefix}-medkit:before { content: $fa-var-medkit; }
|
||||
.#{$fa-css-prefix}-fighter-jet:before { content: $fa-var-fighter-jet; }
|
||||
.#{$fa-css-prefix}-beer:before { content: $fa-var-beer; }
|
||||
.#{$fa-css-prefix}-h-square:before { content: $fa-var-h-square; }
|
||||
.#{$fa-css-prefix}-plus-square:before { content: $fa-var-plus-square; }
|
||||
.#{$fa-css-prefix}-angle-double-left:before { content: $fa-var-angle-double-left; }
|
||||
.#{$fa-css-prefix}-angle-double-right:before { content: $fa-var-angle-double-right; }
|
||||
.#{$fa-css-prefix}-angle-double-up:before { content: $fa-var-angle-double-up; }
|
||||
.#{$fa-css-prefix}-angle-double-down:before { content: $fa-var-angle-double-down; }
|
||||
.#{$fa-css-prefix}-angle-left:before { content: $fa-var-angle-left; }
|
||||
.#{$fa-css-prefix}-angle-right:before { content: $fa-var-angle-right; }
|
||||
.#{$fa-css-prefix}-angle-up:before { content: $fa-var-angle-up; }
|
||||
.#{$fa-css-prefix}-angle-down:before { content: $fa-var-angle-down; }
|
||||
.#{$fa-css-prefix}-desktop:before { content: $fa-var-desktop; }
|
||||
.#{$fa-css-prefix}-laptop:before { content: $fa-var-laptop; }
|
||||
.#{$fa-css-prefix}-tablet:before { content: $fa-var-tablet; }
|
||||
.#{$fa-css-prefix}-mobile-phone:before,
|
||||
.#{$fa-css-prefix}-mobile:before { content: $fa-var-mobile; }
|
||||
.#{$fa-css-prefix}-circle-o:before { content: $fa-var-circle-o; }
|
||||
.#{$fa-css-prefix}-quote-left:before { content: $fa-var-quote-left; }
|
||||
.#{$fa-css-prefix}-quote-right:before { content: $fa-var-quote-right; }
|
||||
.#{$fa-css-prefix}-spinner:before { content: $fa-var-spinner; }
|
||||
.#{$fa-css-prefix}-circle:before { content: $fa-var-circle; }
|
||||
.#{$fa-css-prefix}-mail-reply:before,
|
||||
.#{$fa-css-prefix}-reply:before { content: $fa-var-reply; }
|
||||
.#{$fa-css-prefix}-github-alt:before { content: $fa-var-github-alt; }
|
||||
.#{$fa-css-prefix}-folder-o:before { content: $fa-var-folder-o; }
|
||||
.#{$fa-css-prefix}-folder-open-o:before { content: $fa-var-folder-open-o; }
|
||||
.#{$fa-css-prefix}-smile-o:before { content: $fa-var-smile-o; }
|
||||
.#{$fa-css-prefix}-frown-o:before { content: $fa-var-frown-o; }
|
||||
.#{$fa-css-prefix}-meh-o:before { content: $fa-var-meh-o; }
|
||||
.#{$fa-css-prefix}-gamepad:before { content: $fa-var-gamepad; }
|
||||
.#{$fa-css-prefix}-keyboard-o:before { content: $fa-var-keyboard-o; }
|
||||
.#{$fa-css-prefix}-flag-o:before { content: $fa-var-flag-o; }
|
||||
.#{$fa-css-prefix}-flag-checkered:before { content: $fa-var-flag-checkered; }
|
||||
.#{$fa-css-prefix}-terminal:before { content: $fa-var-terminal; }
|
||||
.#{$fa-css-prefix}-code:before { content: $fa-var-code; }
|
||||
.#{$fa-css-prefix}-mail-reply-all:before,
|
||||
.#{$fa-css-prefix}-reply-all:before { content: $fa-var-reply-all; }
|
||||
.#{$fa-css-prefix}-star-half-empty:before,
|
||||
.#{$fa-css-prefix}-star-half-full:before,
|
||||
.#{$fa-css-prefix}-star-half-o:before { content: $fa-var-star-half-o; }
|
||||
.#{$fa-css-prefix}-location-arrow:before { content: $fa-var-location-arrow; }
|
||||
.#{$fa-css-prefix}-crop:before { content: $fa-var-crop; }
|
||||
.#{$fa-css-prefix}-code-fork:before { content: $fa-var-code-fork; }
|
||||
.#{$fa-css-prefix}-unlink:before,
|
||||
.#{$fa-css-prefix}-chain-broken:before { content: $fa-var-chain-broken; }
|
||||
.#{$fa-css-prefix}-question:before { content: $fa-var-question; }
|
||||
.#{$fa-css-prefix}-info:before { content: $fa-var-info; }
|
||||
.#{$fa-css-prefix}-exclamation:before { content: $fa-var-exclamation; }
|
||||
.#{$fa-css-prefix}-superscript:before { content: $fa-var-superscript; }
|
||||
.#{$fa-css-prefix}-subscript:before { content: $fa-var-subscript; }
|
||||
.#{$fa-css-prefix}-eraser:before { content: $fa-var-eraser; }
|
||||
.#{$fa-css-prefix}-puzzle-piece:before { content: $fa-var-puzzle-piece; }
|
||||
.#{$fa-css-prefix}-microphone:before { content: $fa-var-microphone; }
|
||||
.#{$fa-css-prefix}-microphone-slash:before { content: $fa-var-microphone-slash; }
|
||||
.#{$fa-css-prefix}-shield:before { content: $fa-var-shield; }
|
||||
.#{$fa-css-prefix}-calendar-o:before { content: $fa-var-calendar-o; }
|
||||
.#{$fa-css-prefix}-fire-extinguisher:before { content: $fa-var-fire-extinguisher; }
|
||||
.#{$fa-css-prefix}-rocket:before { content: $fa-var-rocket; }
|
||||
.#{$fa-css-prefix}-maxcdn:before { content: $fa-var-maxcdn; }
|
||||
.#{$fa-css-prefix}-chevron-circle-left:before { content: $fa-var-chevron-circle-left; }
|
||||
.#{$fa-css-prefix}-chevron-circle-right:before { content: $fa-var-chevron-circle-right; }
|
||||
.#{$fa-css-prefix}-chevron-circle-up:before { content: $fa-var-chevron-circle-up; }
|
||||
.#{$fa-css-prefix}-chevron-circle-down:before { content: $fa-var-chevron-circle-down; }
|
||||
.#{$fa-css-prefix}-html5:before { content: $fa-var-html5; }
|
||||
.#{$fa-css-prefix}-css3:before { content: $fa-var-css3; }
|
||||
.#{$fa-css-prefix}-anchor:before { content: $fa-var-anchor; }
|
||||
.#{$fa-css-prefix}-unlock-alt:before { content: $fa-var-unlock-alt; }
|
||||
.#{$fa-css-prefix}-bullseye:before { content: $fa-var-bullseye; }
|
||||
.#{$fa-css-prefix}-ellipsis-h:before { content: $fa-var-ellipsis-h; }
|
||||
.#{$fa-css-prefix}-ellipsis-v:before { content: $fa-var-ellipsis-v; }
|
||||
.#{$fa-css-prefix}-rss-square:before { content: $fa-var-rss-square; }
|
||||
.#{$fa-css-prefix}-play-circle:before { content: $fa-var-play-circle; }
|
||||
.#{$fa-css-prefix}-ticket:before { content: $fa-var-ticket; }
|
||||
.#{$fa-css-prefix}-minus-square:before { content: $fa-var-minus-square; }
|
||||
.#{$fa-css-prefix}-minus-square-o:before { content: $fa-var-minus-square-o; }
|
||||
.#{$fa-css-prefix}-level-up:before { content: $fa-var-level-up; }
|
||||
.#{$fa-css-prefix}-level-down:before { content: $fa-var-level-down; }
|
||||
.#{$fa-css-prefix}-check-square:before { content: $fa-var-check-square; }
|
||||
.#{$fa-css-prefix}-pencil-square:before { content: $fa-var-pencil-square; }
|
||||
.#{$fa-css-prefix}-external-link-square:before { content: $fa-var-external-link-square; }
|
||||
.#{$fa-css-prefix}-share-square:before { content: $fa-var-share-square; }
|
||||
.#{$fa-css-prefix}-compass:before { content: $fa-var-compass; }
|
||||
.#{$fa-css-prefix}-toggle-down:before,
|
||||
.#{$fa-css-prefix}-caret-square-o-down:before { content: $fa-var-caret-square-o-down; }
|
||||
.#{$fa-css-prefix}-toggle-up:before,
|
||||
.#{$fa-css-prefix}-caret-square-o-up:before { content: $fa-var-caret-square-o-up; }
|
||||
.#{$fa-css-prefix}-toggle-right:before,
|
||||
.#{$fa-css-prefix}-caret-square-o-right:before { content: $fa-var-caret-square-o-right; }
|
||||
.#{$fa-css-prefix}-euro:before,
|
||||
.#{$fa-css-prefix}-eur:before { content: $fa-var-eur; }
|
||||
.#{$fa-css-prefix}-gbp:before { content: $fa-var-gbp; }
|
||||
.#{$fa-css-prefix}-dollar:before,
|
||||
.#{$fa-css-prefix}-usd:before { content: $fa-var-usd; }
|
||||
.#{$fa-css-prefix}-rupee:before,
|
||||
.#{$fa-css-prefix}-inr:before { content: $fa-var-inr; }
|
||||
.#{$fa-css-prefix}-cny:before,
|
||||
.#{$fa-css-prefix}-rmb:before,
|
||||
.#{$fa-css-prefix}-yen:before,
|
||||
.#{$fa-css-prefix}-jpy:before { content: $fa-var-jpy; }
|
||||
.#{$fa-css-prefix}-ruble:before,
|
||||
.#{$fa-css-prefix}-rouble:before,
|
||||
.#{$fa-css-prefix}-rub:before { content: $fa-var-rub; }
|
||||
.#{$fa-css-prefix}-won:before,
|
||||
.#{$fa-css-prefix}-krw:before { content: $fa-var-krw; }
|
||||
.#{$fa-css-prefix}-bitcoin:before,
|
||||
.#{$fa-css-prefix}-btc:before { content: $fa-var-btc; }
|
||||
.#{$fa-css-prefix}-file:before { content: $fa-var-file; }
|
||||
.#{$fa-css-prefix}-file-text:before { content: $fa-var-file-text; }
|
||||
.#{$fa-css-prefix}-sort-alpha-asc:before { content: $fa-var-sort-alpha-asc; }
|
||||
.#{$fa-css-prefix}-sort-alpha-desc:before { content: $fa-var-sort-alpha-desc; }
|
||||
.#{$fa-css-prefix}-sort-amount-asc:before { content: $fa-var-sort-amount-asc; }
|
||||
.#{$fa-css-prefix}-sort-amount-desc:before { content: $fa-var-sort-amount-desc; }
|
||||
.#{$fa-css-prefix}-sort-numeric-asc:before { content: $fa-var-sort-numeric-asc; }
|
||||
.#{$fa-css-prefix}-sort-numeric-desc:before { content: $fa-var-sort-numeric-desc; }
|
||||
.#{$fa-css-prefix}-thumbs-up:before { content: $fa-var-thumbs-up; }
|
||||
.#{$fa-css-prefix}-thumbs-down:before { content: $fa-var-thumbs-down; }
|
||||
.#{$fa-css-prefix}-youtube-square:before { content: $fa-var-youtube-square; }
|
||||
.#{$fa-css-prefix}-youtube:before { content: $fa-var-youtube; }
|
||||
.#{$fa-css-prefix}-xing:before { content: $fa-var-xing; }
|
||||
.#{$fa-css-prefix}-xing-square:before { content: $fa-var-xing-square; }
|
||||
.#{$fa-css-prefix}-youtube-play:before { content: $fa-var-youtube-play; }
|
||||
.#{$fa-css-prefix}-dropbox:before { content: $fa-var-dropbox; }
|
||||
.#{$fa-css-prefix}-stack-overflow:before { content: $fa-var-stack-overflow; }
|
||||
.#{$fa-css-prefix}-instagram:before { content: $fa-var-instagram; }
|
||||
.#{$fa-css-prefix}-flickr:before { content: $fa-var-flickr; }
|
||||
.#{$fa-css-prefix}-adn:before { content: $fa-var-adn; }
|
||||
.#{$fa-css-prefix}-bitbucket:before { content: $fa-var-bitbucket; }
|
||||
.#{$fa-css-prefix}-bitbucket-square:before { content: $fa-var-bitbucket-square; }
|
||||
.#{$fa-css-prefix}-tumblr:before { content: $fa-var-tumblr; }
|
||||
.#{$fa-css-prefix}-tumblr-square:before { content: $fa-var-tumblr-square; }
|
||||
.#{$fa-css-prefix}-long-arrow-down:before { content: $fa-var-long-arrow-down; }
|
||||
.#{$fa-css-prefix}-long-arrow-up:before { content: $fa-var-long-arrow-up; }
|
||||
.#{$fa-css-prefix}-long-arrow-left:before { content: $fa-var-long-arrow-left; }
|
||||
.#{$fa-css-prefix}-long-arrow-right:before { content: $fa-var-long-arrow-right; }
|
||||
.#{$fa-css-prefix}-apple:before { content: $fa-var-apple; }
|
||||
.#{$fa-css-prefix}-windows:before { content: $fa-var-windows; }
|
||||
.#{$fa-css-prefix}-android:before { content: $fa-var-android; }
|
||||
.#{$fa-css-prefix}-linux:before { content: $fa-var-linux; }
|
||||
.#{$fa-css-prefix}-dribbble:before { content: $fa-var-dribbble; }
|
||||
.#{$fa-css-prefix}-skype:before { content: $fa-var-skype; }
|
||||
.#{$fa-css-prefix}-foursquare:before { content: $fa-var-foursquare; }
|
||||
.#{$fa-css-prefix}-trello:before { content: $fa-var-trello; }
|
||||
.#{$fa-css-prefix}-female:before { content: $fa-var-female; }
|
||||
.#{$fa-css-prefix}-male:before { content: $fa-var-male; }
|
||||
.#{$fa-css-prefix}-gittip:before,
|
||||
.#{$fa-css-prefix}-gratipay:before { content: $fa-var-gratipay; }
|
||||
.#{$fa-css-prefix}-sun-o:before { content: $fa-var-sun-o; }
|
||||
.#{$fa-css-prefix}-moon-o:before { content: $fa-var-moon-o; }
|
||||
.#{$fa-css-prefix}-archive:before { content: $fa-var-archive; }
|
||||
.#{$fa-css-prefix}-bug:before { content: $fa-var-bug; }
|
||||
.#{$fa-css-prefix}-vk:before { content: $fa-var-vk; }
|
||||
.#{$fa-css-prefix}-weibo:before { content: $fa-var-weibo; }
|
||||
.#{$fa-css-prefix}-renren:before { content: $fa-var-renren; }
|
||||
.#{$fa-css-prefix}-pagelines:before { content: $fa-var-pagelines; }
|
||||
.#{$fa-css-prefix}-stack-exchange:before { content: $fa-var-stack-exchange; }
|
||||
.#{$fa-css-prefix}-arrow-circle-o-right:before { content: $fa-var-arrow-circle-o-right; }
|
||||
.#{$fa-css-prefix}-arrow-circle-o-left:before { content: $fa-var-arrow-circle-o-left; }
|
||||
.#{$fa-css-prefix}-toggle-left:before,
|
||||
.#{$fa-css-prefix}-caret-square-o-left:before { content: $fa-var-caret-square-o-left; }
|
||||
.#{$fa-css-prefix}-dot-circle-o:before { content: $fa-var-dot-circle-o; }
|
||||
.#{$fa-css-prefix}-wheelchair:before { content: $fa-var-wheelchair; }
|
||||
.#{$fa-css-prefix}-vimeo-square:before { content: $fa-var-vimeo-square; }
|
||||
.#{$fa-css-prefix}-turkish-lira:before,
|
||||
.#{$fa-css-prefix}-try:before { content: $fa-var-try; }
|
||||
.#{$fa-css-prefix}-plus-square-o:before { content: $fa-var-plus-square-o; }
|
||||
.#{$fa-css-prefix}-space-shuttle:before { content: $fa-var-space-shuttle; }
|
||||
.#{$fa-css-prefix}-slack:before { content: $fa-var-slack; }
|
||||
.#{$fa-css-prefix}-envelope-square:before { content: $fa-var-envelope-square; }
|
||||
.#{$fa-css-prefix}-wordpress:before { content: $fa-var-wordpress; }
|
||||
.#{$fa-css-prefix}-openid:before { content: $fa-var-openid; }
|
||||
.#{$fa-css-prefix}-institution:before,
|
||||
.#{$fa-css-prefix}-bank:before,
|
||||
.#{$fa-css-prefix}-university:before { content: $fa-var-university; }
|
||||
.#{$fa-css-prefix}-mortar-board:before,
|
||||
.#{$fa-css-prefix}-graduation-cap:before { content: $fa-var-graduation-cap; }
|
||||
.#{$fa-css-prefix}-yahoo:before { content: $fa-var-yahoo; }
|
||||
.#{$fa-css-prefix}-google:before { content: $fa-var-google; }
|
||||
.#{$fa-css-prefix}-reddit:before { content: $fa-var-reddit; }
|
||||
.#{$fa-css-prefix}-reddit-square:before { content: $fa-var-reddit-square; }
|
||||
.#{$fa-css-prefix}-stumbleupon-circle:before { content: $fa-var-stumbleupon-circle; }
|
||||
.#{$fa-css-prefix}-stumbleupon:before { content: $fa-var-stumbleupon; }
|
||||
.#{$fa-css-prefix}-delicious:before { content: $fa-var-delicious; }
|
||||
.#{$fa-css-prefix}-digg:before { content: $fa-var-digg; }
|
||||
.#{$fa-css-prefix}-pied-piper-pp:before { content: $fa-var-pied-piper-pp; }
|
||||
.#{$fa-css-prefix}-pied-piper-alt:before { content: $fa-var-pied-piper-alt; }
|
||||
.#{$fa-css-prefix}-drupal:before { content: $fa-var-drupal; }
|
||||
.#{$fa-css-prefix}-joomla:before { content: $fa-var-joomla; }
|
||||
.#{$fa-css-prefix}-language:before { content: $fa-var-language; }
|
||||
.#{$fa-css-prefix}-fax:before { content: $fa-var-fax; }
|
||||
.#{$fa-css-prefix}-building:before { content: $fa-var-building; }
|
||||
.#{$fa-css-prefix}-child:before { content: $fa-var-child; }
|
||||
.#{$fa-css-prefix}-paw:before { content: $fa-var-paw; }
|
||||
.#{$fa-css-prefix}-spoon:before { content: $fa-var-spoon; }
|
||||
.#{$fa-css-prefix}-cube:before { content: $fa-var-cube; }
|
||||
.#{$fa-css-prefix}-cubes:before { content: $fa-var-cubes; }
|
||||
.#{$fa-css-prefix}-behance:before { content: $fa-var-behance; }
|
||||
.#{$fa-css-prefix}-behance-square:before { content: $fa-var-behance-square; }
|
||||
.#{$fa-css-prefix}-steam:before { content: $fa-var-steam; }
|
||||
.#{$fa-css-prefix}-steam-square:before { content: $fa-var-steam-square; }
|
||||
.#{$fa-css-prefix}-recycle:before { content: $fa-var-recycle; }
|
||||
.#{$fa-css-prefix}-automobile:before,
|
||||
.#{$fa-css-prefix}-car:before { content: $fa-var-car; }
|
||||
.#{$fa-css-prefix}-cab:before,
|
||||
.#{$fa-css-prefix}-taxi:before { content: $fa-var-taxi; }
|
||||
.#{$fa-css-prefix}-tree:before { content: $fa-var-tree; }
|
||||
.#{$fa-css-prefix}-spotify:before { content: $fa-var-spotify; }
|
||||
.#{$fa-css-prefix}-deviantart:before { content: $fa-var-deviantart; }
|
||||
.#{$fa-css-prefix}-soundcloud:before { content: $fa-var-soundcloud; }
|
||||
.#{$fa-css-prefix}-database:before { content: $fa-var-database; }
|
||||
.#{$fa-css-prefix}-file-pdf-o:before { content: $fa-var-file-pdf-o; }
|
||||
.#{$fa-css-prefix}-file-word-o:before { content: $fa-var-file-word-o; }
|
||||
.#{$fa-css-prefix}-file-excel-o:before { content: $fa-var-file-excel-o; }
|
||||
.#{$fa-css-prefix}-file-powerpoint-o:before { content: $fa-var-file-powerpoint-o; }
|
||||
.#{$fa-css-prefix}-file-photo-o:before,
|
||||
.#{$fa-css-prefix}-file-picture-o:before,
|
||||
.#{$fa-css-prefix}-file-image-o:before { content: $fa-var-file-image-o; }
|
||||
.#{$fa-css-prefix}-file-zip-o:before,
|
||||
.#{$fa-css-prefix}-file-archive-o:before { content: $fa-var-file-archive-o; }
|
||||
.#{$fa-css-prefix}-file-sound-o:before,
|
||||
.#{$fa-css-prefix}-file-audio-o:before { content: $fa-var-file-audio-o; }
|
||||
.#{$fa-css-prefix}-file-movie-o:before,
|
||||
.#{$fa-css-prefix}-file-video-o:before { content: $fa-var-file-video-o; }
|
||||
.#{$fa-css-prefix}-file-code-o:before { content: $fa-var-file-code-o; }
|
||||
.#{$fa-css-prefix}-vine:before { content: $fa-var-vine; }
|
||||
.#{$fa-css-prefix}-codepen:before { content: $fa-var-codepen; }
|
||||
.#{$fa-css-prefix}-jsfiddle:before { content: $fa-var-jsfiddle; }
|
||||
.#{$fa-css-prefix}-life-bouy:before,
|
||||
.#{$fa-css-prefix}-life-buoy:before,
|
||||
.#{$fa-css-prefix}-life-saver:before,
|
||||
.#{$fa-css-prefix}-support:before,
|
||||
.#{$fa-css-prefix}-life-ring:before { content: $fa-var-life-ring; }
|
||||
.#{$fa-css-prefix}-circle-o-notch:before { content: $fa-var-circle-o-notch; }
|
||||
.#{$fa-css-prefix}-ra:before,
|
||||
.#{$fa-css-prefix}-resistance:before,
|
||||
.#{$fa-css-prefix}-rebel:before { content: $fa-var-rebel; }
|
||||
.#{$fa-css-prefix}-ge:before,
|
||||
.#{$fa-css-prefix}-empire:before { content: $fa-var-empire; }
|
||||
.#{$fa-css-prefix}-git-square:before { content: $fa-var-git-square; }
|
||||
.#{$fa-css-prefix}-git:before { content: $fa-var-git; }
|
||||
.#{$fa-css-prefix}-y-combinator-square:before,
|
||||
.#{$fa-css-prefix}-yc-square:before,
|
||||
.#{$fa-css-prefix}-hacker-news:before { content: $fa-var-hacker-news; }
|
||||
.#{$fa-css-prefix}-tencent-weibo:before { content: $fa-var-tencent-weibo; }
|
||||
.#{$fa-css-prefix}-qq:before { content: $fa-var-qq; }
|
||||
.#{$fa-css-prefix}-wechat:before,
|
||||
.#{$fa-css-prefix}-weixin:before { content: $fa-var-weixin; }
|
||||
.#{$fa-css-prefix}-send:before,
|
||||
.#{$fa-css-prefix}-paper-plane:before { content: $fa-var-paper-plane; }
|
||||
.#{$fa-css-prefix}-send-o:before,
|
||||
.#{$fa-css-prefix}-paper-plane-o:before { content: $fa-var-paper-plane-o; }
|
||||
.#{$fa-css-prefix}-history:before { content: $fa-var-history; }
|
||||
.#{$fa-css-prefix}-circle-thin:before { content: $fa-var-circle-thin; }
|
||||
.#{$fa-css-prefix}-header:before { content: $fa-var-header; }
|
||||
.#{$fa-css-prefix}-paragraph:before { content: $fa-var-paragraph; }
|
||||
.#{$fa-css-prefix}-sliders:before { content: $fa-var-sliders; }
|
||||
.#{$fa-css-prefix}-share-alt:before { content: $fa-var-share-alt; }
|
||||
.#{$fa-css-prefix}-share-alt-square:before { content: $fa-var-share-alt-square; }
|
||||
.#{$fa-css-prefix}-bomb:before { content: $fa-var-bomb; }
|
||||
.#{$fa-css-prefix}-soccer-ball-o:before,
|
||||
.#{$fa-css-prefix}-futbol-o:before { content: $fa-var-futbol-o; }
|
||||
.#{$fa-css-prefix}-tty:before { content: $fa-var-tty; }
|
||||
.#{$fa-css-prefix}-binoculars:before { content: $fa-var-binoculars; }
|
||||
.#{$fa-css-prefix}-plug:before { content: $fa-var-plug; }
|
||||
.#{$fa-css-prefix}-slideshare:before { content: $fa-var-slideshare; }
|
||||
.#{$fa-css-prefix}-twitch:before { content: $fa-var-twitch; }
|
||||
.#{$fa-css-prefix}-yelp:before { content: $fa-var-yelp; }
|
||||
.#{$fa-css-prefix}-newspaper-o:before { content: $fa-var-newspaper-o; }
|
||||
.#{$fa-css-prefix}-wifi:before { content: $fa-var-wifi; }
|
||||
.#{$fa-css-prefix}-calculator:before { content: $fa-var-calculator; }
|
||||
.#{$fa-css-prefix}-paypal:before { content: $fa-var-paypal; }
|
||||
.#{$fa-css-prefix}-google-wallet:before { content: $fa-var-google-wallet; }
|
||||
.#{$fa-css-prefix}-cc-visa:before { content: $fa-var-cc-visa; }
|
||||
.#{$fa-css-prefix}-cc-mastercard:before { content: $fa-var-cc-mastercard; }
|
||||
.#{$fa-css-prefix}-cc-discover:before { content: $fa-var-cc-discover; }
|
||||
.#{$fa-css-prefix}-cc-amex:before { content: $fa-var-cc-amex; }
|
||||
.#{$fa-css-prefix}-cc-paypal:before { content: $fa-var-cc-paypal; }
|
||||
.#{$fa-css-prefix}-cc-stripe:before { content: $fa-var-cc-stripe; }
|
||||
.#{$fa-css-prefix}-bell-slash:before { content: $fa-var-bell-slash; }
|
||||
.#{$fa-css-prefix}-bell-slash-o:before { content: $fa-var-bell-slash-o; }
|
||||
.#{$fa-css-prefix}-trash:before { content: $fa-var-trash; }
|
||||
.#{$fa-css-prefix}-copyright:before { content: $fa-var-copyright; }
|
||||
.#{$fa-css-prefix}-at:before { content: $fa-var-at; }
|
||||
.#{$fa-css-prefix}-eyedropper:before { content: $fa-var-eyedropper; }
|
||||
.#{$fa-css-prefix}-paint-brush:before { content: $fa-var-paint-brush; }
|
||||
.#{$fa-css-prefix}-birthday-cake:before { content: $fa-var-birthday-cake; }
|
||||
.#{$fa-css-prefix}-area-chart:before { content: $fa-var-area-chart; }
|
||||
.#{$fa-css-prefix}-pie-chart:before { content: $fa-var-pie-chart; }
|
||||
.#{$fa-css-prefix}-line-chart:before { content: $fa-var-line-chart; }
|
||||
.#{$fa-css-prefix}-lastfm:before { content: $fa-var-lastfm; }
|
||||
.#{$fa-css-prefix}-lastfm-square:before { content: $fa-var-lastfm-square; }
|
||||
.#{$fa-css-prefix}-toggle-off:before { content: $fa-var-toggle-off; }
|
||||
.#{$fa-css-prefix}-toggle-on:before { content: $fa-var-toggle-on; }
|
||||
.#{$fa-css-prefix}-bicycle:before { content: $fa-var-bicycle; }
|
||||
.#{$fa-css-prefix}-bus:before { content: $fa-var-bus; }
|
||||
.#{$fa-css-prefix}-ioxhost:before { content: $fa-var-ioxhost; }
|
||||
.#{$fa-css-prefix}-angellist:before { content: $fa-var-angellist; }
|
||||
.#{$fa-css-prefix}-cc:before { content: $fa-var-cc; }
|
||||
.#{$fa-css-prefix}-shekel:before,
|
||||
.#{$fa-css-prefix}-sheqel:before,
|
||||
.#{$fa-css-prefix}-ils:before { content: $fa-var-ils; }
|
||||
.#{$fa-css-prefix}-meanpath:before { content: $fa-var-meanpath; }
|
||||
.#{$fa-css-prefix}-buysellads:before { content: $fa-var-buysellads; }
|
||||
.#{$fa-css-prefix}-connectdevelop:before { content: $fa-var-connectdevelop; }
|
||||
.#{$fa-css-prefix}-dashcube:before { content: $fa-var-dashcube; }
|
||||
.#{$fa-css-prefix}-forumbee:before { content: $fa-var-forumbee; }
|
||||
.#{$fa-css-prefix}-leanpub:before { content: $fa-var-leanpub; }
|
||||
.#{$fa-css-prefix}-sellsy:before { content: $fa-var-sellsy; }
|
||||
.#{$fa-css-prefix}-shirtsinbulk:before { content: $fa-var-shirtsinbulk; }
|
||||
.#{$fa-css-prefix}-simplybuilt:before { content: $fa-var-simplybuilt; }
|
||||
.#{$fa-css-prefix}-skyatlas:before { content: $fa-var-skyatlas; }
|
||||
.#{$fa-css-prefix}-cart-plus:before { content: $fa-var-cart-plus; }
|
||||
.#{$fa-css-prefix}-cart-arrow-down:before { content: $fa-var-cart-arrow-down; }
|
||||
.#{$fa-css-prefix}-diamond:before { content: $fa-var-diamond; }
|
||||
.#{$fa-css-prefix}-ship:before { content: $fa-var-ship; }
|
||||
.#{$fa-css-prefix}-user-secret:before { content: $fa-var-user-secret; }
|
||||
.#{$fa-css-prefix}-motorcycle:before { content: $fa-var-motorcycle; }
|
||||
.#{$fa-css-prefix}-street-view:before { content: $fa-var-street-view; }
|
||||
.#{$fa-css-prefix}-heartbeat:before { content: $fa-var-heartbeat; }
|
||||
.#{$fa-css-prefix}-venus:before { content: $fa-var-venus; }
|
||||
.#{$fa-css-prefix}-mars:before { content: $fa-var-mars; }
|
||||
.#{$fa-css-prefix}-mercury:before { content: $fa-var-mercury; }
|
||||
.#{$fa-css-prefix}-intersex:before,
|
||||
.#{$fa-css-prefix}-transgender:before { content: $fa-var-transgender; }
|
||||
.#{$fa-css-prefix}-transgender-alt:before { content: $fa-var-transgender-alt; }
|
||||
.#{$fa-css-prefix}-venus-double:before { content: $fa-var-venus-double; }
|
||||
.#{$fa-css-prefix}-mars-double:before { content: $fa-var-mars-double; }
|
||||
.#{$fa-css-prefix}-venus-mars:before { content: $fa-var-venus-mars; }
|
||||
.#{$fa-css-prefix}-mars-stroke:before { content: $fa-var-mars-stroke; }
|
||||
.#{$fa-css-prefix}-mars-stroke-v:before { content: $fa-var-mars-stroke-v; }
|
||||
.#{$fa-css-prefix}-mars-stroke-h:before { content: $fa-var-mars-stroke-h; }
|
||||
.#{$fa-css-prefix}-neuter:before { content: $fa-var-neuter; }
|
||||
.#{$fa-css-prefix}-genderless:before { content: $fa-var-genderless; }
|
||||
.#{$fa-css-prefix}-facebook-official:before { content: $fa-var-facebook-official; }
|
||||
.#{$fa-css-prefix}-pinterest-p:before { content: $fa-var-pinterest-p; }
|
||||
.#{$fa-css-prefix}-whatsapp:before { content: $fa-var-whatsapp; }
|
||||
.#{$fa-css-prefix}-server:before { content: $fa-var-server; }
|
||||
.#{$fa-css-prefix}-user-plus:before { content: $fa-var-user-plus; }
|
||||
.#{$fa-css-prefix}-user-times:before { content: $fa-var-user-times; }
|
||||
.#{$fa-css-prefix}-hotel:before,
|
||||
.#{$fa-css-prefix}-bed:before { content: $fa-var-bed; }
|
||||
.#{$fa-css-prefix}-viacoin:before { content: $fa-var-viacoin; }
|
||||
.#{$fa-css-prefix}-train:before { content: $fa-var-train; }
|
||||
.#{$fa-css-prefix}-subway:before { content: $fa-var-subway; }
|
||||
.#{$fa-css-prefix}-medium:before { content: $fa-var-medium; }
|
||||
.#{$fa-css-prefix}-yc:before,
|
||||
.#{$fa-css-prefix}-y-combinator:before { content: $fa-var-y-combinator; }
|
||||
.#{$fa-css-prefix}-optin-monster:before { content: $fa-var-optin-monster; }
|
||||
.#{$fa-css-prefix}-opencart:before { content: $fa-var-opencart; }
|
||||
.#{$fa-css-prefix}-expeditedssl:before { content: $fa-var-expeditedssl; }
|
||||
.#{$fa-css-prefix}-battery-4:before,
|
||||
.#{$fa-css-prefix}-battery:before,
|
||||
.#{$fa-css-prefix}-battery-full:before { content: $fa-var-battery-full; }
|
||||
.#{$fa-css-prefix}-battery-3:before,
|
||||
.#{$fa-css-prefix}-battery-three-quarters:before { content: $fa-var-battery-three-quarters; }
|
||||
.#{$fa-css-prefix}-battery-2:before,
|
||||
.#{$fa-css-prefix}-battery-half:before { content: $fa-var-battery-half; }
|
||||
.#{$fa-css-prefix}-battery-1:before,
|
||||
.#{$fa-css-prefix}-battery-quarter:before { content: $fa-var-battery-quarter; }
|
||||
.#{$fa-css-prefix}-battery-0:before,
|
||||
.#{$fa-css-prefix}-battery-empty:before { content: $fa-var-battery-empty; }
|
||||
.#{$fa-css-prefix}-mouse-pointer:before { content: $fa-var-mouse-pointer; }
|
||||
.#{$fa-css-prefix}-i-cursor:before { content: $fa-var-i-cursor; }
|
||||
.#{$fa-css-prefix}-object-group:before { content: $fa-var-object-group; }
|
||||
.#{$fa-css-prefix}-object-ungroup:before { content: $fa-var-object-ungroup; }
|
||||
.#{$fa-css-prefix}-sticky-note:before { content: $fa-var-sticky-note; }
|
||||
.#{$fa-css-prefix}-sticky-note-o:before { content: $fa-var-sticky-note-o; }
|
||||
.#{$fa-css-prefix}-cc-jcb:before { content: $fa-var-cc-jcb; }
|
||||
.#{$fa-css-prefix}-cc-diners-club:before { content: $fa-var-cc-diners-club; }
|
||||
.#{$fa-css-prefix}-clone:before { content: $fa-var-clone; }
|
||||
.#{$fa-css-prefix}-balance-scale:before { content: $fa-var-balance-scale; }
|
||||
.#{$fa-css-prefix}-hourglass-o:before { content: $fa-var-hourglass-o; }
|
||||
.#{$fa-css-prefix}-hourglass-1:before,
|
||||
.#{$fa-css-prefix}-hourglass-start:before { content: $fa-var-hourglass-start; }
|
||||
.#{$fa-css-prefix}-hourglass-2:before,
|
||||
.#{$fa-css-prefix}-hourglass-half:before { content: $fa-var-hourglass-half; }
|
||||
.#{$fa-css-prefix}-hourglass-3:before,
|
||||
.#{$fa-css-prefix}-hourglass-end:before { content: $fa-var-hourglass-end; }
|
||||
.#{$fa-css-prefix}-hourglass:before { content: $fa-var-hourglass; }
|
||||
.#{$fa-css-prefix}-hand-grab-o:before,
|
||||
.#{$fa-css-prefix}-hand-rock-o:before { content: $fa-var-hand-rock-o; }
|
||||
.#{$fa-css-prefix}-hand-stop-o:before,
|
||||
.#{$fa-css-prefix}-hand-paper-o:before { content: $fa-var-hand-paper-o; }
|
||||
.#{$fa-css-prefix}-hand-scissors-o:before { content: $fa-var-hand-scissors-o; }
|
||||
.#{$fa-css-prefix}-hand-lizard-o:before { content: $fa-var-hand-lizard-o; }
|
||||
.#{$fa-css-prefix}-hand-spock-o:before { content: $fa-var-hand-spock-o; }
|
||||
.#{$fa-css-prefix}-hand-pointer-o:before { content: $fa-var-hand-pointer-o; }
|
||||
.#{$fa-css-prefix}-hand-peace-o:before { content: $fa-var-hand-peace-o; }
|
||||
.#{$fa-css-prefix}-trademark:before { content: $fa-var-trademark; }
|
||||
.#{$fa-css-prefix}-registered:before { content: $fa-var-registered; }
|
||||
.#{$fa-css-prefix}-creative-commons:before { content: $fa-var-creative-commons; }
|
||||
.#{$fa-css-prefix}-gg:before { content: $fa-var-gg; }
|
||||
.#{$fa-css-prefix}-gg-circle:before { content: $fa-var-gg-circle; }
|
||||
.#{$fa-css-prefix}-tripadvisor:before { content: $fa-var-tripadvisor; }
|
||||
.#{$fa-css-prefix}-odnoklassniki:before { content: $fa-var-odnoklassniki; }
|
||||
.#{$fa-css-prefix}-odnoklassniki-square:before { content: $fa-var-odnoklassniki-square; }
|
||||
.#{$fa-css-prefix}-get-pocket:before { content: $fa-var-get-pocket; }
|
||||
.#{$fa-css-prefix}-wikipedia-w:before { content: $fa-var-wikipedia-w; }
|
||||
.#{$fa-css-prefix}-safari:before { content: $fa-var-safari; }
|
||||
.#{$fa-css-prefix}-chrome:before { content: $fa-var-chrome; }
|
||||
.#{$fa-css-prefix}-firefox:before { content: $fa-var-firefox; }
|
||||
.#{$fa-css-prefix}-opera:before { content: $fa-var-opera; }
|
||||
.#{$fa-css-prefix}-internet-explorer:before { content: $fa-var-internet-explorer; }
|
||||
.#{$fa-css-prefix}-tv:before,
|
||||
.#{$fa-css-prefix}-television:before { content: $fa-var-television; }
|
||||
.#{$fa-css-prefix}-contao:before { content: $fa-var-contao; }
|
||||
.#{$fa-css-prefix}-500px:before { content: $fa-var-500px; }
|
||||
.#{$fa-css-prefix}-amazon:before { content: $fa-var-amazon; }
|
||||
.#{$fa-css-prefix}-calendar-plus-o:before { content: $fa-var-calendar-plus-o; }
|
||||
.#{$fa-css-prefix}-calendar-minus-o:before { content: $fa-var-calendar-minus-o; }
|
||||
.#{$fa-css-prefix}-calendar-times-o:before { content: $fa-var-calendar-times-o; }
|
||||
.#{$fa-css-prefix}-calendar-check-o:before { content: $fa-var-calendar-check-o; }
|
||||
.#{$fa-css-prefix}-industry:before { content: $fa-var-industry; }
|
||||
.#{$fa-css-prefix}-map-pin:before { content: $fa-var-map-pin; }
|
||||
.#{$fa-css-prefix}-map-signs:before { content: $fa-var-map-signs; }
|
||||
.#{$fa-css-prefix}-map-o:before { content: $fa-var-map-o; }
|
||||
.#{$fa-css-prefix}-map:before { content: $fa-var-map; }
|
||||
.#{$fa-css-prefix}-commenting:before { content: $fa-var-commenting; }
|
||||
.#{$fa-css-prefix}-commenting-o:before { content: $fa-var-commenting-o; }
|
||||
.#{$fa-css-prefix}-houzz:before { content: $fa-var-houzz; }
|
||||
.#{$fa-css-prefix}-vimeo:before { content: $fa-var-vimeo; }
|
||||
.#{$fa-css-prefix}-black-tie:before { content: $fa-var-black-tie; }
|
||||
.#{$fa-css-prefix}-fonticons:before { content: $fa-var-fonticons; }
|
||||
.#{$fa-css-prefix}-reddit-alien:before { content: $fa-var-reddit-alien; }
|
||||
.#{$fa-css-prefix}-edge:before { content: $fa-var-edge; }
|
||||
.#{$fa-css-prefix}-credit-card-alt:before { content: $fa-var-credit-card-alt; }
|
||||
.#{$fa-css-prefix}-codiepie:before { content: $fa-var-codiepie; }
|
||||
.#{$fa-css-prefix}-modx:before { content: $fa-var-modx; }
|
||||
.#{$fa-css-prefix}-fort-awesome:before { content: $fa-var-fort-awesome; }
|
||||
.#{$fa-css-prefix}-usb:before { content: $fa-var-usb; }
|
||||
.#{$fa-css-prefix}-product-hunt:before { content: $fa-var-product-hunt; }
|
||||
.#{$fa-css-prefix}-mixcloud:before { content: $fa-var-mixcloud; }
|
||||
.#{$fa-css-prefix}-scribd:before { content: $fa-var-scribd; }
|
||||
.#{$fa-css-prefix}-pause-circle:before { content: $fa-var-pause-circle; }
|
||||
.#{$fa-css-prefix}-pause-circle-o:before { content: $fa-var-pause-circle-o; }
|
||||
.#{$fa-css-prefix}-stop-circle:before { content: $fa-var-stop-circle; }
|
||||
.#{$fa-css-prefix}-stop-circle-o:before { content: $fa-var-stop-circle-o; }
|
||||
.#{$fa-css-prefix}-shopping-bag:before { content: $fa-var-shopping-bag; }
|
||||
.#{$fa-css-prefix}-shopping-basket:before { content: $fa-var-shopping-basket; }
|
||||
.#{$fa-css-prefix}-hashtag:before { content: $fa-var-hashtag; }
|
||||
.#{$fa-css-prefix}-bluetooth:before { content: $fa-var-bluetooth; }
|
||||
.#{$fa-css-prefix}-bluetooth-b:before { content: $fa-var-bluetooth-b; }
|
||||
.#{$fa-css-prefix}-percent:before { content: $fa-var-percent; }
|
||||
.#{$fa-css-prefix}-gitlab:before { content: $fa-var-gitlab; }
|
||||
.#{$fa-css-prefix}-wpbeginner:before { content: $fa-var-wpbeginner; }
|
||||
.#{$fa-css-prefix}-wpforms:before { content: $fa-var-wpforms; }
|
||||
.#{$fa-css-prefix}-envira:before { content: $fa-var-envira; }
|
||||
.#{$fa-css-prefix}-universal-access:before { content: $fa-var-universal-access; }
|
||||
.#{$fa-css-prefix}-wheelchair-alt:before { content: $fa-var-wheelchair-alt; }
|
||||
.#{$fa-css-prefix}-question-circle-o:before { content: $fa-var-question-circle-o; }
|
||||
.#{$fa-css-prefix}-blind:before { content: $fa-var-blind; }
|
||||
.#{$fa-css-prefix}-audio-description:before { content: $fa-var-audio-description; }
|
||||
.#{$fa-css-prefix}-volume-control-phone:before { content: $fa-var-volume-control-phone; }
|
||||
.#{$fa-css-prefix}-braille:before { content: $fa-var-braille; }
|
||||
.#{$fa-css-prefix}-assistive-listening-systems:before { content: $fa-var-assistive-listening-systems; }
|
||||
.#{$fa-css-prefix}-asl-interpreting:before,
|
||||
.#{$fa-css-prefix}-american-sign-language-interpreting:before { content: $fa-var-american-sign-language-interpreting; }
|
||||
.#{$fa-css-prefix}-deafness:before,
|
||||
.#{$fa-css-prefix}-hard-of-hearing:before,
|
||||
.#{$fa-css-prefix}-deaf:before { content: $fa-var-deaf; }
|
||||
.#{$fa-css-prefix}-glide:before { content: $fa-var-glide; }
|
||||
.#{$fa-css-prefix}-glide-g:before { content: $fa-var-glide-g; }
|
||||
.#{$fa-css-prefix}-signing:before,
|
||||
.#{$fa-css-prefix}-sign-language:before { content: $fa-var-sign-language; }
|
||||
.#{$fa-css-prefix}-low-vision:before { content: $fa-var-low-vision; }
|
||||
.#{$fa-css-prefix}-viadeo:before { content: $fa-var-viadeo; }
|
||||
.#{$fa-css-prefix}-viadeo-square:before { content: $fa-var-viadeo-square; }
|
||||
.#{$fa-css-prefix}-snapchat:before { content: $fa-var-snapchat; }
|
||||
.#{$fa-css-prefix}-snapchat-ghost:before { content: $fa-var-snapchat-ghost; }
|
||||
.#{$fa-css-prefix}-snapchat-square:before { content: $fa-var-snapchat-square; }
|
||||
.#{$fa-css-prefix}-pied-piper:before { content: $fa-var-pied-piper; }
|
||||
.#{$fa-css-prefix}-first-order:before { content: $fa-var-first-order; }
|
||||
.#{$fa-css-prefix}-yoast:before { content: $fa-var-yoast; }
|
||||
.#{$fa-css-prefix}-themeisle:before { content: $fa-var-themeisle; }
|
||||
.#{$fa-css-prefix}-google-plus-circle:before,
|
||||
.#{$fa-css-prefix}-google-plus-official:before { content: $fa-var-google-plus-official; }
|
||||
.#{$fa-css-prefix}-fa:before,
|
||||
.#{$fa-css-prefix}-font-awesome:before { content: $fa-var-font-awesome; }
|
||||
.#{$fa-css-prefix}-handshake-o:before { content: $fa-var-handshake-o; }
|
||||
.#{$fa-css-prefix}-envelope-open:before { content: $fa-var-envelope-open; }
|
||||
.#{$fa-css-prefix}-envelope-open-o:before { content: $fa-var-envelope-open-o; }
|
||||
.#{$fa-css-prefix}-linode:before { content: $fa-var-linode; }
|
||||
.#{$fa-css-prefix}-address-book:before { content: $fa-var-address-book; }
|
||||
.#{$fa-css-prefix}-address-book-o:before { content: $fa-var-address-book-o; }
|
||||
.#{$fa-css-prefix}-vcard:before,
|
||||
.#{$fa-css-prefix}-address-card:before { content: $fa-var-address-card; }
|
||||
.#{$fa-css-prefix}-vcard-o:before,
|
||||
.#{$fa-css-prefix}-address-card-o:before { content: $fa-var-address-card-o; }
|
||||
.#{$fa-css-prefix}-user-circle:before { content: $fa-var-user-circle; }
|
||||
.#{$fa-css-prefix}-user-circle-o:before { content: $fa-var-user-circle-o; }
|
||||
.#{$fa-css-prefix}-user-o:before { content: $fa-var-user-o; }
|
||||
.#{$fa-css-prefix}-id-badge:before { content: $fa-var-id-badge; }
|
||||
.#{$fa-css-prefix}-drivers-license:before,
|
||||
.#{$fa-css-prefix}-id-card:before { content: $fa-var-id-card; }
|
||||
.#{$fa-css-prefix}-drivers-license-o:before,
|
||||
.#{$fa-css-prefix}-id-card-o:before { content: $fa-var-id-card-o; }
|
||||
.#{$fa-css-prefix}-quora:before { content: $fa-var-quora; }
|
||||
.#{$fa-css-prefix}-free-code-camp:before { content: $fa-var-free-code-camp; }
|
||||
.#{$fa-css-prefix}-telegram:before { content: $fa-var-telegram; }
|
||||
.#{$fa-css-prefix}-thermometer-4:before,
|
||||
.#{$fa-css-prefix}-thermometer:before,
|
||||
.#{$fa-css-prefix}-thermometer-full:before { content: $fa-var-thermometer-full; }
|
||||
.#{$fa-css-prefix}-thermometer-3:before,
|
||||
.#{$fa-css-prefix}-thermometer-three-quarters:before { content: $fa-var-thermometer-three-quarters; }
|
||||
.#{$fa-css-prefix}-thermometer-2:before,
|
||||
.#{$fa-css-prefix}-thermometer-half:before { content: $fa-var-thermometer-half; }
|
||||
.#{$fa-css-prefix}-thermometer-1:before,
|
||||
.#{$fa-css-prefix}-thermometer-quarter:before { content: $fa-var-thermometer-quarter; }
|
||||
.#{$fa-css-prefix}-thermometer-0:before,
|
||||
.#{$fa-css-prefix}-thermometer-empty:before { content: $fa-var-thermometer-empty; }
|
||||
.#{$fa-css-prefix}-shower:before { content: $fa-var-shower; }
|
||||
.#{$fa-css-prefix}-bathtub:before,
|
||||
.#{$fa-css-prefix}-s15:before,
|
||||
.#{$fa-css-prefix}-bath:before { content: $fa-var-bath; }
|
||||
.#{$fa-css-prefix}-podcast:before { content: $fa-var-podcast; }
|
||||
.#{$fa-css-prefix}-window-maximize:before { content: $fa-var-window-maximize; }
|
||||
.#{$fa-css-prefix}-window-minimize:before { content: $fa-var-window-minimize; }
|
||||
.#{$fa-css-prefix}-window-restore:before { content: $fa-var-window-restore; }
|
||||
.#{$fa-css-prefix}-times-rectangle:before,
|
||||
.#{$fa-css-prefix}-window-close:before { content: $fa-var-window-close; }
|
||||
.#{$fa-css-prefix}-times-rectangle-o:before,
|
||||
.#{$fa-css-prefix}-window-close-o:before { content: $fa-var-window-close-o; }
|
||||
.#{$fa-css-prefix}-bandcamp:before { content: $fa-var-bandcamp; }
|
||||
.#{$fa-css-prefix}-grav:before { content: $fa-var-grav; }
|
||||
.#{$fa-css-prefix}-etsy:before { content: $fa-var-etsy; }
|
||||
.#{$fa-css-prefix}-imdb:before { content: $fa-var-imdb; }
|
||||
.#{$fa-css-prefix}-ravelry:before { content: $fa-var-ravelry; }
|
||||
.#{$fa-css-prefix}-eercast:before { content: $fa-var-eercast; }
|
||||
.#{$fa-css-prefix}-microchip:before { content: $fa-var-microchip; }
|
||||
.#{$fa-css-prefix}-snowflake-o:before { content: $fa-var-snowflake-o; }
|
||||
.#{$fa-css-prefix}-superpowers:before { content: $fa-var-superpowers; }
|
||||
.#{$fa-css-prefix}-wpexplorer:before { content: $fa-var-wpexplorer; }
|
||||
.#{$fa-css-prefix}-meetup:before { content: $fa-var-meetup; }
|
||||
@@ -0,0 +1,13 @@
|
||||
// Icon Sizes
|
||||
// -------------------------
|
||||
|
||||
/* makes the font 33% larger relative to the icon container */
|
||||
.#{$fa-css-prefix}-lg {
|
||||
font-size: (4em / 3);
|
||||
line-height: (3em / 4);
|
||||
vertical-align: -15%;
|
||||
}
|
||||
.#{$fa-css-prefix}-2x { font-size: 2em; }
|
||||
.#{$fa-css-prefix}-3x { font-size: 3em; }
|
||||
.#{$fa-css-prefix}-4x { font-size: 4em; }
|
||||
.#{$fa-css-prefix}-5x { font-size: 5em; }
|
||||
@@ -0,0 +1,19 @@
|
||||
// List Icons
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix}-ul {
|
||||
padding-left: 0;
|
||||
margin-left: $fa-li-width;
|
||||
list-style-type: none;
|
||||
> li { position: relative; }
|
||||
}
|
||||
.#{$fa-css-prefix}-li {
|
||||
position: absolute;
|
||||
left: -$fa-li-width;
|
||||
width: $fa-li-width;
|
||||
top: (2em / 14);
|
||||
text-align: center;
|
||||
&.#{$fa-css-prefix}-lg {
|
||||
left: -$fa-li-width + (4em / 14);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
// Mixins
|
||||
// --------------------------
|
||||
|
||||
@mixin fa-icon() {
|
||||
display: inline-block;
|
||||
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
|
||||
font-size: inherit; // can't have font-size inherit on line above, so need to override
|
||||
text-rendering: auto; // optimizelegibility throws things off #1094
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
}
|
||||
|
||||
@mixin fa-icon-rotate($degrees, $rotation) {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})";
|
||||
-webkit-transform: rotate($degrees);
|
||||
-ms-transform: rotate($degrees);
|
||||
transform: rotate($degrees);
|
||||
}
|
||||
|
||||
@mixin fa-icon-flip($horiz, $vert, $rotation) {
|
||||
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)";
|
||||
-webkit-transform: scale($horiz, $vert);
|
||||
-ms-transform: scale($horiz, $vert);
|
||||
transform: scale($horiz, $vert);
|
||||
}
|
||||
|
||||
|
||||
// Only display content to screen readers. A la Bootstrap 4.
|
||||
//
|
||||
// See: http://a11yproject.com/posts/how-to-hide-content/
|
||||
|
||||
@mixin sr-only {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
padding: 0;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0,0,0,0);
|
||||
border: 0;
|
||||
}
|
||||
|
||||
// Use in conjunction with .sr-only to only display content when it's focused.
|
||||
//
|
||||
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
|
||||
//
|
||||
// Credit: HTML5 Boilerplate
|
||||
|
||||
@mixin sr-only-focusable {
|
||||
&:active,
|
||||
&:focus {
|
||||
position: static;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
overflow: visible;
|
||||
clip: auto;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
/* FONT PATH
|
||||
* -------------------------- */
|
||||
|
||||
@font-face {
|
||||
font-family: 'FontAwesome';
|
||||
src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');
|
||||
src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
|
||||
url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'),
|
||||
url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),
|
||||
url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
|
||||
url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
|
||||
// src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
// Rotated & Flipped Icons
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
|
||||
.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
|
||||
.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
|
||||
|
||||
.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
|
||||
.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
|
||||
|
||||
// Hook for IE8-9
|
||||
// -------------------------
|
||||
|
||||
:root .#{$fa-css-prefix}-rotate-90,
|
||||
:root .#{$fa-css-prefix}-rotate-180,
|
||||
:root .#{$fa-css-prefix}-rotate-270,
|
||||
:root .#{$fa-css-prefix}-flip-horizontal,
|
||||
:root .#{$fa-css-prefix}-flip-vertical {
|
||||
filter: none;
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// Screen Readers
|
||||
// -------------------------
|
||||
|
||||
.sr-only { @include sr-only(); }
|
||||
.sr-only-focusable { @include sr-only-focusable(); }
|
||||
@@ -0,0 +1,20 @@
|
||||
// Stacked Icons
|
||||
// -------------------------
|
||||
|
||||
.#{$fa-css-prefix}-stack {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 2em;
|
||||
height: 2em;
|
||||
line-height: 2em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
.#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
}
|
||||
.#{$fa-css-prefix}-stack-1x { line-height: inherit; }
|
||||
.#{$fa-css-prefix}-stack-2x { font-size: 2em; }
|
||||
.#{$fa-css-prefix}-inverse { color: $fa-inverse; }
|
||||
@@ -0,0 +1,800 @@
|
||||
// Variables
|
||||
// --------------------------
|
||||
|
||||
$fa-font-path: "../fonts" !default;
|
||||
$fa-font-size-base: 14px !default;
|
||||
$fa-line-height-base: 1 !default;
|
||||
//$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts" !default; // for referencing Bootstrap CDN font files directly
|
||||
$fa-css-prefix: fa !default;
|
||||
$fa-version: "4.7.0" !default;
|
||||
$fa-border-color: #eee !default;
|
||||
$fa-inverse: #fff !default;
|
||||
$fa-li-width: (30em / 14) !default;
|
||||
|
||||
$fa-var-500px: "\f26e";
|
||||
$fa-var-address-book: "\f2b9";
|
||||
$fa-var-address-book-o: "\f2ba";
|
||||
$fa-var-address-card: "\f2bb";
|
||||
$fa-var-address-card-o: "\f2bc";
|
||||
$fa-var-adjust: "\f042";
|
||||
$fa-var-adn: "\f170";
|
||||
$fa-var-align-center: "\f037";
|
||||
$fa-var-align-justify: "\f039";
|
||||
$fa-var-align-left: "\f036";
|
||||
$fa-var-align-right: "\f038";
|
||||
$fa-var-amazon: "\f270";
|
||||
$fa-var-ambulance: "\f0f9";
|
||||
$fa-var-american-sign-language-interpreting: "\f2a3";
|
||||
$fa-var-anchor: "\f13d";
|
||||
$fa-var-android: "\f17b";
|
||||
$fa-var-angellist: "\f209";
|
||||
$fa-var-angle-double-down: "\f103";
|
||||
$fa-var-angle-double-left: "\f100";
|
||||
$fa-var-angle-double-right: "\f101";
|
||||
$fa-var-angle-double-up: "\f102";
|
||||
$fa-var-angle-down: "\f107";
|
||||
$fa-var-angle-left: "\f104";
|
||||
$fa-var-angle-right: "\f105";
|
||||
$fa-var-angle-up: "\f106";
|
||||
$fa-var-apple: "\f179";
|
||||
$fa-var-archive: "\f187";
|
||||
$fa-var-area-chart: "\f1fe";
|
||||
$fa-var-arrow-circle-down: "\f0ab";
|
||||
$fa-var-arrow-circle-left: "\f0a8";
|
||||
$fa-var-arrow-circle-o-down: "\f01a";
|
||||
$fa-var-arrow-circle-o-left: "\f190";
|
||||
$fa-var-arrow-circle-o-right: "\f18e";
|
||||
$fa-var-arrow-circle-o-up: "\f01b";
|
||||
$fa-var-arrow-circle-right: "\f0a9";
|
||||
$fa-var-arrow-circle-up: "\f0aa";
|
||||
$fa-var-arrow-down: "\f063";
|
||||
$fa-var-arrow-left: "\f060";
|
||||
$fa-var-arrow-right: "\f061";
|
||||
$fa-var-arrow-up: "\f062";
|
||||
$fa-var-arrows: "\f047";
|
||||
$fa-var-arrows-alt: "\f0b2";
|
||||
$fa-var-arrows-h: "\f07e";
|
||||
$fa-var-arrows-v: "\f07d";
|
||||
$fa-var-asl-interpreting: "\f2a3";
|
||||
$fa-var-assistive-listening-systems: "\f2a2";
|
||||
$fa-var-asterisk: "\f069";
|
||||
$fa-var-at: "\f1fa";
|
||||
$fa-var-audio-description: "\f29e";
|
||||
$fa-var-automobile: "\f1b9";
|
||||
$fa-var-backward: "\f04a";
|
||||
$fa-var-balance-scale: "\f24e";
|
||||
$fa-var-ban: "\f05e";
|
||||
$fa-var-bandcamp: "\f2d5";
|
||||
$fa-var-bank: "\f19c";
|
||||
$fa-var-bar-chart: "\f080";
|
||||
$fa-var-bar-chart-o: "\f080";
|
||||
$fa-var-barcode: "\f02a";
|
||||
$fa-var-bars: "\f0c9";
|
||||
$fa-var-bath: "\f2cd";
|
||||
$fa-var-bathtub: "\f2cd";
|
||||
$fa-var-battery: "\f240";
|
||||
$fa-var-battery-0: "\f244";
|
||||
$fa-var-battery-1: "\f243";
|
||||
$fa-var-battery-2: "\f242";
|
||||
$fa-var-battery-3: "\f241";
|
||||
$fa-var-battery-4: "\f240";
|
||||
$fa-var-battery-empty: "\f244";
|
||||
$fa-var-battery-full: "\f240";
|
||||
$fa-var-battery-half: "\f242";
|
||||
$fa-var-battery-quarter: "\f243";
|
||||
$fa-var-battery-three-quarters: "\f241";
|
||||
$fa-var-bed: "\f236";
|
||||
$fa-var-beer: "\f0fc";
|
||||
$fa-var-behance: "\f1b4";
|
||||
$fa-var-behance-square: "\f1b5";
|
||||
$fa-var-bell: "\f0f3";
|
||||
$fa-var-bell-o: "\f0a2";
|
||||
$fa-var-bell-slash: "\f1f6";
|
||||
$fa-var-bell-slash-o: "\f1f7";
|
||||
$fa-var-bicycle: "\f206";
|
||||
$fa-var-binoculars: "\f1e5";
|
||||
$fa-var-birthday-cake: "\f1fd";
|
||||
$fa-var-bitbucket: "\f171";
|
||||
$fa-var-bitbucket-square: "\f172";
|
||||
$fa-var-bitcoin: "\f15a";
|
||||
$fa-var-black-tie: "\f27e";
|
||||
$fa-var-blind: "\f29d";
|
||||
$fa-var-bluetooth: "\f293";
|
||||
$fa-var-bluetooth-b: "\f294";
|
||||
$fa-var-bold: "\f032";
|
||||
$fa-var-bolt: "\f0e7";
|
||||
$fa-var-bomb: "\f1e2";
|
||||
$fa-var-book: "\f02d";
|
||||
$fa-var-bookmark: "\f02e";
|
||||
$fa-var-bookmark-o: "\f097";
|
||||
$fa-var-braille: "\f2a1";
|
||||
$fa-var-briefcase: "\f0b1";
|
||||
$fa-var-btc: "\f15a";
|
||||
$fa-var-bug: "\f188";
|
||||
$fa-var-building: "\f1ad";
|
||||
$fa-var-building-o: "\f0f7";
|
||||
$fa-var-bullhorn: "\f0a1";
|
||||
$fa-var-bullseye: "\f140";
|
||||
$fa-var-bus: "\f207";
|
||||
$fa-var-buysellads: "\f20d";
|
||||
$fa-var-cab: "\f1ba";
|
||||
$fa-var-calculator: "\f1ec";
|
||||
$fa-var-calendar: "\f073";
|
||||
$fa-var-calendar-check-o: "\f274";
|
||||
$fa-var-calendar-minus-o: "\f272";
|
||||
$fa-var-calendar-o: "\f133";
|
||||
$fa-var-calendar-plus-o: "\f271";
|
||||
$fa-var-calendar-times-o: "\f273";
|
||||
$fa-var-camera: "\f030";
|
||||
$fa-var-camera-retro: "\f083";
|
||||
$fa-var-car: "\f1b9";
|
||||
$fa-var-caret-down: "\f0d7";
|
||||
$fa-var-caret-left: "\f0d9";
|
||||
$fa-var-caret-right: "\f0da";
|
||||
$fa-var-caret-square-o-down: "\f150";
|
||||
$fa-var-caret-square-o-left: "\f191";
|
||||
$fa-var-caret-square-o-right: "\f152";
|
||||
$fa-var-caret-square-o-up: "\f151";
|
||||
$fa-var-caret-up: "\f0d8";
|
||||
$fa-var-cart-arrow-down: "\f218";
|
||||
$fa-var-cart-plus: "\f217";
|
||||
$fa-var-cc: "\f20a";
|
||||
$fa-var-cc-amex: "\f1f3";
|
||||
$fa-var-cc-diners-club: "\f24c";
|
||||
$fa-var-cc-discover: "\f1f2";
|
||||
$fa-var-cc-jcb: "\f24b";
|
||||
$fa-var-cc-mastercard: "\f1f1";
|
||||
$fa-var-cc-paypal: "\f1f4";
|
||||
$fa-var-cc-stripe: "\f1f5";
|
||||
$fa-var-cc-visa: "\f1f0";
|
||||
$fa-var-certificate: "\f0a3";
|
||||
$fa-var-chain: "\f0c1";
|
||||
$fa-var-chain-broken: "\f127";
|
||||
$fa-var-check: "\f00c";
|
||||
$fa-var-check-circle: "\f058";
|
||||
$fa-var-check-circle-o: "\f05d";
|
||||
$fa-var-check-square: "\f14a";
|
||||
$fa-var-check-square-o: "\f046";
|
||||
$fa-var-chevron-circle-down: "\f13a";
|
||||
$fa-var-chevron-circle-left: "\f137";
|
||||
$fa-var-chevron-circle-right: "\f138";
|
||||
$fa-var-chevron-circle-up: "\f139";
|
||||
$fa-var-chevron-down: "\f078";
|
||||
$fa-var-chevron-left: "\f053";
|
||||
$fa-var-chevron-right: "\f054";
|
||||
$fa-var-chevron-up: "\f077";
|
||||
$fa-var-child: "\f1ae";
|
||||
$fa-var-chrome: "\f268";
|
||||
$fa-var-circle: "\f111";
|
||||
$fa-var-circle-o: "\f10c";
|
||||
$fa-var-circle-o-notch: "\f1ce";
|
||||
$fa-var-circle-thin: "\f1db";
|
||||
$fa-var-clipboard: "\f0ea";
|
||||
$fa-var-clock-o: "\f017";
|
||||
$fa-var-clone: "\f24d";
|
||||
$fa-var-close: "\f00d";
|
||||
$fa-var-cloud: "\f0c2";
|
||||
$fa-var-cloud-download: "\f0ed";
|
||||
$fa-var-cloud-upload: "\f0ee";
|
||||
$fa-var-cny: "\f157";
|
||||
$fa-var-code: "\f121";
|
||||
$fa-var-code-fork: "\f126";
|
||||
$fa-var-codepen: "\f1cb";
|
||||
$fa-var-codiepie: "\f284";
|
||||
$fa-var-coffee: "\f0f4";
|
||||
$fa-var-cog: "\f013";
|
||||
$fa-var-cogs: "\f085";
|
||||
$fa-var-columns: "\f0db";
|
||||
$fa-var-comment: "\f075";
|
||||
$fa-var-comment-o: "\f0e5";
|
||||
$fa-var-commenting: "\f27a";
|
||||
$fa-var-commenting-o: "\f27b";
|
||||
$fa-var-comments: "\f086";
|
||||
$fa-var-comments-o: "\f0e6";
|
||||
$fa-var-compass: "\f14e";
|
||||
$fa-var-compress: "\f066";
|
||||
$fa-var-connectdevelop: "\f20e";
|
||||
$fa-var-contao: "\f26d";
|
||||
$fa-var-copy: "\f0c5";
|
||||
$fa-var-copyright: "\f1f9";
|
||||
$fa-var-creative-commons: "\f25e";
|
||||
$fa-var-credit-card: "\f09d";
|
||||
$fa-var-credit-card-alt: "\f283";
|
||||
$fa-var-crop: "\f125";
|
||||
$fa-var-crosshairs: "\f05b";
|
||||
$fa-var-css3: "\f13c";
|
||||
$fa-var-cube: "\f1b2";
|
||||
$fa-var-cubes: "\f1b3";
|
||||
$fa-var-cut: "\f0c4";
|
||||
$fa-var-cutlery: "\f0f5";
|
||||
$fa-var-dashboard: "\f0e4";
|
||||
$fa-var-dashcube: "\f210";
|
||||
$fa-var-database: "\f1c0";
|
||||
$fa-var-deaf: "\f2a4";
|
||||
$fa-var-deafness: "\f2a4";
|
||||
$fa-var-dedent: "\f03b";
|
||||
$fa-var-delicious: "\f1a5";
|
||||
$fa-var-desktop: "\f108";
|
||||
$fa-var-deviantart: "\f1bd";
|
||||
$fa-var-diamond: "\f219";
|
||||
$fa-var-digg: "\f1a6";
|
||||
$fa-var-dollar: "\f155";
|
||||
$fa-var-dot-circle-o: "\f192";
|
||||
$fa-var-download: "\f019";
|
||||
$fa-var-dribbble: "\f17d";
|
||||
$fa-var-drivers-license: "\f2c2";
|
||||
$fa-var-drivers-license-o: "\f2c3";
|
||||
$fa-var-dropbox: "\f16b";
|
||||
$fa-var-drupal: "\f1a9";
|
||||
$fa-var-edge: "\f282";
|
||||
$fa-var-edit: "\f044";
|
||||
$fa-var-eercast: "\f2da";
|
||||
$fa-var-eject: "\f052";
|
||||
$fa-var-ellipsis-h: "\f141";
|
||||
$fa-var-ellipsis-v: "\f142";
|
||||
$fa-var-empire: "\f1d1";
|
||||
$fa-var-envelope: "\f0e0";
|
||||
$fa-var-envelope-o: "\f003";
|
||||
$fa-var-envelope-open: "\f2b6";
|
||||
$fa-var-envelope-open-o: "\f2b7";
|
||||
$fa-var-envelope-square: "\f199";
|
||||
$fa-var-envira: "\f299";
|
||||
$fa-var-eraser: "\f12d";
|
||||
$fa-var-etsy: "\f2d7";
|
||||
$fa-var-eur: "\f153";
|
||||
$fa-var-euro: "\f153";
|
||||
$fa-var-exchange: "\f0ec";
|
||||
$fa-var-exclamation: "\f12a";
|
||||
$fa-var-exclamation-circle: "\f06a";
|
||||
$fa-var-exclamation-triangle: "\f071";
|
||||
$fa-var-expand: "\f065";
|
||||
$fa-var-expeditedssl: "\f23e";
|
||||
$fa-var-external-link: "\f08e";
|
||||
$fa-var-external-link-square: "\f14c";
|
||||
$fa-var-eye: "\f06e";
|
||||
$fa-var-eye-slash: "\f070";
|
||||
$fa-var-eyedropper: "\f1fb";
|
||||
$fa-var-fa: "\f2b4";
|
||||
$fa-var-facebook: "\f09a";
|
||||
$fa-var-facebook-f: "\f09a";
|
||||
$fa-var-facebook-official: "\f230";
|
||||
$fa-var-facebook-square: "\f082";
|
||||
$fa-var-fast-backward: "\f049";
|
||||
$fa-var-fast-forward: "\f050";
|
||||
$fa-var-fax: "\f1ac";
|
||||
$fa-var-feed: "\f09e";
|
||||
$fa-var-female: "\f182";
|
||||
$fa-var-fighter-jet: "\f0fb";
|
||||
$fa-var-file: "\f15b";
|
||||
$fa-var-file-archive-o: "\f1c6";
|
||||
$fa-var-file-audio-o: "\f1c7";
|
||||
$fa-var-file-code-o: "\f1c9";
|
||||
$fa-var-file-excel-o: "\f1c3";
|
||||
$fa-var-file-image-o: "\f1c5";
|
||||
$fa-var-file-movie-o: "\f1c8";
|
||||
$fa-var-file-o: "\f016";
|
||||
$fa-var-file-pdf-o: "\f1c1";
|
||||
$fa-var-file-photo-o: "\f1c5";
|
||||
$fa-var-file-picture-o: "\f1c5";
|
||||
$fa-var-file-powerpoint-o: "\f1c4";
|
||||
$fa-var-file-sound-o: "\f1c7";
|
||||
$fa-var-file-text: "\f15c";
|
||||
$fa-var-file-text-o: "\f0f6";
|
||||
$fa-var-file-video-o: "\f1c8";
|
||||
$fa-var-file-word-o: "\f1c2";
|
||||
$fa-var-file-zip-o: "\f1c6";
|
||||
$fa-var-files-o: "\f0c5";
|
||||
$fa-var-film: "\f008";
|
||||
$fa-var-filter: "\f0b0";
|
||||
$fa-var-fire: "\f06d";
|
||||
$fa-var-fire-extinguisher: "\f134";
|
||||
$fa-var-firefox: "\f269";
|
||||
$fa-var-first-order: "\f2b0";
|
||||
$fa-var-flag: "\f024";
|
||||
$fa-var-flag-checkered: "\f11e";
|
||||
$fa-var-flag-o: "\f11d";
|
||||
$fa-var-flash: "\f0e7";
|
||||
$fa-var-flask: "\f0c3";
|
||||
$fa-var-flickr: "\f16e";
|
||||
$fa-var-floppy-o: "\f0c7";
|
||||
$fa-var-folder: "\f07b";
|
||||
$fa-var-folder-o: "\f114";
|
||||
$fa-var-folder-open: "\f07c";
|
||||
$fa-var-folder-open-o: "\f115";
|
||||
$fa-var-font: "\f031";
|
||||
$fa-var-font-awesome: "\f2b4";
|
||||
$fa-var-fonticons: "\f280";
|
||||
$fa-var-fort-awesome: "\f286";
|
||||
$fa-var-forumbee: "\f211";
|
||||
$fa-var-forward: "\f04e";
|
||||
$fa-var-foursquare: "\f180";
|
||||
$fa-var-free-code-camp: "\f2c5";
|
||||
$fa-var-frown-o: "\f119";
|
||||
$fa-var-futbol-o: "\f1e3";
|
||||
$fa-var-gamepad: "\f11b";
|
||||
$fa-var-gavel: "\f0e3";
|
||||
$fa-var-gbp: "\f154";
|
||||
$fa-var-ge: "\f1d1";
|
||||
$fa-var-gear: "\f013";
|
||||
$fa-var-gears: "\f085";
|
||||
$fa-var-genderless: "\f22d";
|
||||
$fa-var-get-pocket: "\f265";
|
||||
$fa-var-gg: "\f260";
|
||||
$fa-var-gg-circle: "\f261";
|
||||
$fa-var-gift: "\f06b";
|
||||
$fa-var-git: "\f1d3";
|
||||
$fa-var-git-square: "\f1d2";
|
||||
$fa-var-github: "\f09b";
|
||||
$fa-var-github-alt: "\f113";
|
||||
$fa-var-github-square: "\f092";
|
||||
$fa-var-gitlab: "\f296";
|
||||
$fa-var-gittip: "\f184";
|
||||
$fa-var-glass: "\f000";
|
||||
$fa-var-glide: "\f2a5";
|
||||
$fa-var-glide-g: "\f2a6";
|
||||
$fa-var-globe: "\f0ac";
|
||||
$fa-var-google: "\f1a0";
|
||||
$fa-var-google-plus: "\f0d5";
|
||||
$fa-var-google-plus-circle: "\f2b3";
|
||||
$fa-var-google-plus-official: "\f2b3";
|
||||
$fa-var-google-plus-square: "\f0d4";
|
||||
$fa-var-google-wallet: "\f1ee";
|
||||
$fa-var-graduation-cap: "\f19d";
|
||||
$fa-var-gratipay: "\f184";
|
||||
$fa-var-grav: "\f2d6";
|
||||
$fa-var-group: "\f0c0";
|
||||
$fa-var-h-square: "\f0fd";
|
||||
$fa-var-hacker-news: "\f1d4";
|
||||
$fa-var-hand-grab-o: "\f255";
|
||||
$fa-var-hand-lizard-o: "\f258";
|
||||
$fa-var-hand-o-down: "\f0a7";
|
||||
$fa-var-hand-o-left: "\f0a5";
|
||||
$fa-var-hand-o-right: "\f0a4";
|
||||
$fa-var-hand-o-up: "\f0a6";
|
||||
$fa-var-hand-paper-o: "\f256";
|
||||
$fa-var-hand-peace-o: "\f25b";
|
||||
$fa-var-hand-pointer-o: "\f25a";
|
||||
$fa-var-hand-rock-o: "\f255";
|
||||
$fa-var-hand-scissors-o: "\f257";
|
||||
$fa-var-hand-spock-o: "\f259";
|
||||
$fa-var-hand-stop-o: "\f256";
|
||||
$fa-var-handshake-o: "\f2b5";
|
||||
$fa-var-hard-of-hearing: "\f2a4";
|
||||
$fa-var-hashtag: "\f292";
|
||||
$fa-var-hdd-o: "\f0a0";
|
||||
$fa-var-header: "\f1dc";
|
||||
$fa-var-headphones: "\f025";
|
||||
$fa-var-heart: "\f004";
|
||||
$fa-var-heart-o: "\f08a";
|
||||
$fa-var-heartbeat: "\f21e";
|
||||
$fa-var-history: "\f1da";
|
||||
$fa-var-home: "\f015";
|
||||
$fa-var-hospital-o: "\f0f8";
|
||||
$fa-var-hotel: "\f236";
|
||||
$fa-var-hourglass: "\f254";
|
||||
$fa-var-hourglass-1: "\f251";
|
||||
$fa-var-hourglass-2: "\f252";
|
||||
$fa-var-hourglass-3: "\f253";
|
||||
$fa-var-hourglass-end: "\f253";
|
||||
$fa-var-hourglass-half: "\f252";
|
||||
$fa-var-hourglass-o: "\f250";
|
||||
$fa-var-hourglass-start: "\f251";
|
||||
$fa-var-houzz: "\f27c";
|
||||
$fa-var-html5: "\f13b";
|
||||
$fa-var-i-cursor: "\f246";
|
||||
$fa-var-id-badge: "\f2c1";
|
||||
$fa-var-id-card: "\f2c2";
|
||||
$fa-var-id-card-o: "\f2c3";
|
||||
$fa-var-ils: "\f20b";
|
||||
$fa-var-image: "\f03e";
|
||||
$fa-var-imdb: "\f2d8";
|
||||
$fa-var-inbox: "\f01c";
|
||||
$fa-var-indent: "\f03c";
|
||||
$fa-var-industry: "\f275";
|
||||
$fa-var-info: "\f129";
|
||||
$fa-var-info-circle: "\f05a";
|
||||
$fa-var-inr: "\f156";
|
||||
$fa-var-instagram: "\f16d";
|
||||
$fa-var-institution: "\f19c";
|
||||
$fa-var-internet-explorer: "\f26b";
|
||||
$fa-var-intersex: "\f224";
|
||||
$fa-var-ioxhost: "\f208";
|
||||
$fa-var-italic: "\f033";
|
||||
$fa-var-joomla: "\f1aa";
|
||||
$fa-var-jpy: "\f157";
|
||||
$fa-var-jsfiddle: "\f1cc";
|
||||
$fa-var-key: "\f084";
|
||||
$fa-var-keyboard-o: "\f11c";
|
||||
$fa-var-krw: "\f159";
|
||||
$fa-var-language: "\f1ab";
|
||||
$fa-var-laptop: "\f109";
|
||||
$fa-var-lastfm: "\f202";
|
||||
$fa-var-lastfm-square: "\f203";
|
||||
$fa-var-leaf: "\f06c";
|
||||
$fa-var-leanpub: "\f212";
|
||||
$fa-var-legal: "\f0e3";
|
||||
$fa-var-lemon-o: "\f094";
|
||||
$fa-var-level-down: "\f149";
|
||||
$fa-var-level-up: "\f148";
|
||||
$fa-var-life-bouy: "\f1cd";
|
||||
$fa-var-life-buoy: "\f1cd";
|
||||
$fa-var-life-ring: "\f1cd";
|
||||
$fa-var-life-saver: "\f1cd";
|
||||
$fa-var-lightbulb-o: "\f0eb";
|
||||
$fa-var-line-chart: "\f201";
|
||||
$fa-var-link: "\f0c1";
|
||||
$fa-var-linkedin: "\f0e1";
|
||||
$fa-var-linkedin-square: "\f08c";
|
||||
$fa-var-linode: "\f2b8";
|
||||
$fa-var-linux: "\f17c";
|
||||
$fa-var-list: "\f03a";
|
||||
$fa-var-list-alt: "\f022";
|
||||
$fa-var-list-ol: "\f0cb";
|
||||
$fa-var-list-ul: "\f0ca";
|
||||
$fa-var-location-arrow: "\f124";
|
||||
$fa-var-lock: "\f023";
|
||||
$fa-var-long-arrow-down: "\f175";
|
||||
$fa-var-long-arrow-left: "\f177";
|
||||
$fa-var-long-arrow-right: "\f178";
|
||||
$fa-var-long-arrow-up: "\f176";
|
||||
$fa-var-low-vision: "\f2a8";
|
||||
$fa-var-magic: "\f0d0";
|
||||
$fa-var-magnet: "\f076";
|
||||
$fa-var-mail-forward: "\f064";
|
||||
$fa-var-mail-reply: "\f112";
|
||||
$fa-var-mail-reply-all: "\f122";
|
||||
$fa-var-male: "\f183";
|
||||
$fa-var-map: "\f279";
|
||||
$fa-var-map-marker: "\f041";
|
||||
$fa-var-map-o: "\f278";
|
||||
$fa-var-map-pin: "\f276";
|
||||
$fa-var-map-signs: "\f277";
|
||||
$fa-var-mars: "\f222";
|
||||
$fa-var-mars-double: "\f227";
|
||||
$fa-var-mars-stroke: "\f229";
|
||||
$fa-var-mars-stroke-h: "\f22b";
|
||||
$fa-var-mars-stroke-v: "\f22a";
|
||||
$fa-var-maxcdn: "\f136";
|
||||
$fa-var-meanpath: "\f20c";
|
||||
$fa-var-medium: "\f23a";
|
||||
$fa-var-medkit: "\f0fa";
|
||||
$fa-var-meetup: "\f2e0";
|
||||
$fa-var-meh-o: "\f11a";
|
||||
$fa-var-mercury: "\f223";
|
||||
$fa-var-microchip: "\f2db";
|
||||
$fa-var-microphone: "\f130";
|
||||
$fa-var-microphone-slash: "\f131";
|
||||
$fa-var-minus: "\f068";
|
||||
$fa-var-minus-circle: "\f056";
|
||||
$fa-var-minus-square: "\f146";
|
||||
$fa-var-minus-square-o: "\f147";
|
||||
$fa-var-mixcloud: "\f289";
|
||||
$fa-var-mobile: "\f10b";
|
||||
$fa-var-mobile-phone: "\f10b";
|
||||
$fa-var-modx: "\f285";
|
||||
$fa-var-money: "\f0d6";
|
||||
$fa-var-moon-o: "\f186";
|
||||
$fa-var-mortar-board: "\f19d";
|
||||
$fa-var-motorcycle: "\f21c";
|
||||
$fa-var-mouse-pointer: "\f245";
|
||||
$fa-var-music: "\f001";
|
||||
$fa-var-navicon: "\f0c9";
|
||||
$fa-var-neuter: "\f22c";
|
||||
$fa-var-newspaper-o: "\f1ea";
|
||||
$fa-var-object-group: "\f247";
|
||||
$fa-var-object-ungroup: "\f248";
|
||||
$fa-var-odnoklassniki: "\f263";
|
||||
$fa-var-odnoklassniki-square: "\f264";
|
||||
$fa-var-opencart: "\f23d";
|
||||
$fa-var-openid: "\f19b";
|
||||
$fa-var-opera: "\f26a";
|
||||
$fa-var-optin-monster: "\f23c";
|
||||
$fa-var-outdent: "\f03b";
|
||||
$fa-var-pagelines: "\f18c";
|
||||
$fa-var-paint-brush: "\f1fc";
|
||||
$fa-var-paper-plane: "\f1d8";
|
||||
$fa-var-paper-plane-o: "\f1d9";
|
||||
$fa-var-paperclip: "\f0c6";
|
||||
$fa-var-paragraph: "\f1dd";
|
||||
$fa-var-paste: "\f0ea";
|
||||
$fa-var-pause: "\f04c";
|
||||
$fa-var-pause-circle: "\f28b";
|
||||
$fa-var-pause-circle-o: "\f28c";
|
||||
$fa-var-paw: "\f1b0";
|
||||
$fa-var-paypal: "\f1ed";
|
||||
$fa-var-pencil: "\f040";
|
||||
$fa-var-pencil-square: "\f14b";
|
||||
$fa-var-pencil-square-o: "\f044";
|
||||
$fa-var-percent: "\f295";
|
||||
$fa-var-phone: "\f095";
|
||||
$fa-var-phone-square: "\f098";
|
||||
$fa-var-photo: "\f03e";
|
||||
$fa-var-picture-o: "\f03e";
|
||||
$fa-var-pie-chart: "\f200";
|
||||
$fa-var-pied-piper: "\f2ae";
|
||||
$fa-var-pied-piper-alt: "\f1a8";
|
||||
$fa-var-pied-piper-pp: "\f1a7";
|
||||
$fa-var-pinterest: "\f0d2";
|
||||
$fa-var-pinterest-p: "\f231";
|
||||
$fa-var-pinterest-square: "\f0d3";
|
||||
$fa-var-plane: "\f072";
|
||||
$fa-var-play: "\f04b";
|
||||
$fa-var-play-circle: "\f144";
|
||||
$fa-var-play-circle-o: "\f01d";
|
||||
$fa-var-plug: "\f1e6";
|
||||
$fa-var-plus: "\f067";
|
||||
$fa-var-plus-circle: "\f055";
|
||||
$fa-var-plus-square: "\f0fe";
|
||||
$fa-var-plus-square-o: "\f196";
|
||||
$fa-var-podcast: "\f2ce";
|
||||
$fa-var-power-off: "\f011";
|
||||
$fa-var-print: "\f02f";
|
||||
$fa-var-product-hunt: "\f288";
|
||||
$fa-var-puzzle-piece: "\f12e";
|
||||
$fa-var-qq: "\f1d6";
|
||||
$fa-var-qrcode: "\f029";
|
||||
$fa-var-question: "\f128";
|
||||
$fa-var-question-circle: "\f059";
|
||||
$fa-var-question-circle-o: "\f29c";
|
||||
$fa-var-quora: "\f2c4";
|
||||
$fa-var-quote-left: "\f10d";
|
||||
$fa-var-quote-right: "\f10e";
|
||||
$fa-var-ra: "\f1d0";
|
||||
$fa-var-random: "\f074";
|
||||
$fa-var-ravelry: "\f2d9";
|
||||
$fa-var-rebel: "\f1d0";
|
||||
$fa-var-recycle: "\f1b8";
|
||||
$fa-var-reddit: "\f1a1";
|
||||
$fa-var-reddit-alien: "\f281";
|
||||
$fa-var-reddit-square: "\f1a2";
|
||||
$fa-var-refresh: "\f021";
|
||||
$fa-var-registered: "\f25d";
|
||||
$fa-var-remove: "\f00d";
|
||||
$fa-var-renren: "\f18b";
|
||||
$fa-var-reorder: "\f0c9";
|
||||
$fa-var-repeat: "\f01e";
|
||||
$fa-var-reply: "\f112";
|
||||
$fa-var-reply-all: "\f122";
|
||||
$fa-var-resistance: "\f1d0";
|
||||
$fa-var-retweet: "\f079";
|
||||
$fa-var-rmb: "\f157";
|
||||
$fa-var-road: "\f018";
|
||||
$fa-var-rocket: "\f135";
|
||||
$fa-var-rotate-left: "\f0e2";
|
||||
$fa-var-rotate-right: "\f01e";
|
||||
$fa-var-rouble: "\f158";
|
||||
$fa-var-rss: "\f09e";
|
||||
$fa-var-rss-square: "\f143";
|
||||
$fa-var-rub: "\f158";
|
||||
$fa-var-ruble: "\f158";
|
||||
$fa-var-rupee: "\f156";
|
||||
$fa-var-s15: "\f2cd";
|
||||
$fa-var-safari: "\f267";
|
||||
$fa-var-save: "\f0c7";
|
||||
$fa-var-scissors: "\f0c4";
|
||||
$fa-var-scribd: "\f28a";
|
||||
$fa-var-search: "\f002";
|
||||
$fa-var-search-minus: "\f010";
|
||||
$fa-var-search-plus: "\f00e";
|
||||
$fa-var-sellsy: "\f213";
|
||||
$fa-var-send: "\f1d8";
|
||||
$fa-var-send-o: "\f1d9";
|
||||
$fa-var-server: "\f233";
|
||||
$fa-var-share: "\f064";
|
||||
$fa-var-share-alt: "\f1e0";
|
||||
$fa-var-share-alt-square: "\f1e1";
|
||||
$fa-var-share-square: "\f14d";
|
||||
$fa-var-share-square-o: "\f045";
|
||||
$fa-var-shekel: "\f20b";
|
||||
$fa-var-sheqel: "\f20b";
|
||||
$fa-var-shield: "\f132";
|
||||
$fa-var-ship: "\f21a";
|
||||
$fa-var-shirtsinbulk: "\f214";
|
||||
$fa-var-shopping-bag: "\f290";
|
||||
$fa-var-shopping-basket: "\f291";
|
||||
$fa-var-shopping-cart: "\f07a";
|
||||
$fa-var-shower: "\f2cc";
|
||||
$fa-var-sign-in: "\f090";
|
||||
$fa-var-sign-language: "\f2a7";
|
||||
$fa-var-sign-out: "\f08b";
|
||||
$fa-var-signal: "\f012";
|
||||
$fa-var-signing: "\f2a7";
|
||||
$fa-var-simplybuilt: "\f215";
|
||||
$fa-var-sitemap: "\f0e8";
|
||||
$fa-var-skyatlas: "\f216";
|
||||
$fa-var-skype: "\f17e";
|
||||
$fa-var-slack: "\f198";
|
||||
$fa-var-sliders: "\f1de";
|
||||
$fa-var-slideshare: "\f1e7";
|
||||
$fa-var-smile-o: "\f118";
|
||||
$fa-var-snapchat: "\f2ab";
|
||||
$fa-var-snapchat-ghost: "\f2ac";
|
||||
$fa-var-snapchat-square: "\f2ad";
|
||||
$fa-var-snowflake-o: "\f2dc";
|
||||
$fa-var-soccer-ball-o: "\f1e3";
|
||||
$fa-var-sort: "\f0dc";
|
||||
$fa-var-sort-alpha-asc: "\f15d";
|
||||
$fa-var-sort-alpha-desc: "\f15e";
|
||||
$fa-var-sort-amount-asc: "\f160";
|
||||
$fa-var-sort-amount-desc: "\f161";
|
||||
$fa-var-sort-asc: "\f0de";
|
||||
$fa-var-sort-desc: "\f0dd";
|
||||
$fa-var-sort-down: "\f0dd";
|
||||
$fa-var-sort-numeric-asc: "\f162";
|
||||
$fa-var-sort-numeric-desc: "\f163";
|
||||
$fa-var-sort-up: "\f0de";
|
||||
$fa-var-soundcloud: "\f1be";
|
||||
$fa-var-space-shuttle: "\f197";
|
||||
$fa-var-spinner: "\f110";
|
||||
$fa-var-spoon: "\f1b1";
|
||||
$fa-var-spotify: "\f1bc";
|
||||
$fa-var-square: "\f0c8";
|
||||
$fa-var-square-o: "\f096";
|
||||
$fa-var-stack-exchange: "\f18d";
|
||||
$fa-var-stack-overflow: "\f16c";
|
||||
$fa-var-star: "\f005";
|
||||
$fa-var-star-half: "\f089";
|
||||
$fa-var-star-half-empty: "\f123";
|
||||
$fa-var-star-half-full: "\f123";
|
||||
$fa-var-star-half-o: "\f123";
|
||||
$fa-var-star-o: "\f006";
|
||||
$fa-var-steam: "\f1b6";
|
||||
$fa-var-steam-square: "\f1b7";
|
||||
$fa-var-step-backward: "\f048";
|
||||
$fa-var-step-forward: "\f051";
|
||||
$fa-var-stethoscope: "\f0f1";
|
||||
$fa-var-sticky-note: "\f249";
|
||||
$fa-var-sticky-note-o: "\f24a";
|
||||
$fa-var-stop: "\f04d";
|
||||
$fa-var-stop-circle: "\f28d";
|
||||
$fa-var-stop-circle-o: "\f28e";
|
||||
$fa-var-street-view: "\f21d";
|
||||
$fa-var-strikethrough: "\f0cc";
|
||||
$fa-var-stumbleupon: "\f1a4";
|
||||
$fa-var-stumbleupon-circle: "\f1a3";
|
||||
$fa-var-subscript: "\f12c";
|
||||
$fa-var-subway: "\f239";
|
||||
$fa-var-suitcase: "\f0f2";
|
||||
$fa-var-sun-o: "\f185";
|
||||
$fa-var-superpowers: "\f2dd";
|
||||
$fa-var-superscript: "\f12b";
|
||||
$fa-var-support: "\f1cd";
|
||||
$fa-var-table: "\f0ce";
|
||||
$fa-var-tablet: "\f10a";
|
||||
$fa-var-tachometer: "\f0e4";
|
||||
$fa-var-tag: "\f02b";
|
||||
$fa-var-tags: "\f02c";
|
||||
$fa-var-tasks: "\f0ae";
|
||||
$fa-var-taxi: "\f1ba";
|
||||
$fa-var-telegram: "\f2c6";
|
||||
$fa-var-television: "\f26c";
|
||||
$fa-var-tencent-weibo: "\f1d5";
|
||||
$fa-var-terminal: "\f120";
|
||||
$fa-var-text-height: "\f034";
|
||||
$fa-var-text-width: "\f035";
|
||||
$fa-var-th: "\f00a";
|
||||
$fa-var-th-large: "\f009";
|
||||
$fa-var-th-list: "\f00b";
|
||||
$fa-var-themeisle: "\f2b2";
|
||||
$fa-var-thermometer: "\f2c7";
|
||||
$fa-var-thermometer-0: "\f2cb";
|
||||
$fa-var-thermometer-1: "\f2ca";
|
||||
$fa-var-thermometer-2: "\f2c9";
|
||||
$fa-var-thermometer-3: "\f2c8";
|
||||
$fa-var-thermometer-4: "\f2c7";
|
||||
$fa-var-thermometer-empty: "\f2cb";
|
||||
$fa-var-thermometer-full: "\f2c7";
|
||||
$fa-var-thermometer-half: "\f2c9";
|
||||
$fa-var-thermometer-quarter: "\f2ca";
|
||||
$fa-var-thermometer-three-quarters: "\f2c8";
|
||||
$fa-var-thumb-tack: "\f08d";
|
||||
$fa-var-thumbs-down: "\f165";
|
||||
$fa-var-thumbs-o-down: "\f088";
|
||||
$fa-var-thumbs-o-up: "\f087";
|
||||
$fa-var-thumbs-up: "\f164";
|
||||
$fa-var-ticket: "\f145";
|
||||
$fa-var-times: "\f00d";
|
||||
$fa-var-times-circle: "\f057";
|
||||
$fa-var-times-circle-o: "\f05c";
|
||||
$fa-var-times-rectangle: "\f2d3";
|
||||
$fa-var-times-rectangle-o: "\f2d4";
|
||||
$fa-var-tint: "\f043";
|
||||
$fa-var-toggle-down: "\f150";
|
||||
$fa-var-toggle-left: "\f191";
|
||||
$fa-var-toggle-off: "\f204";
|
||||
$fa-var-toggle-on: "\f205";
|
||||
$fa-var-toggle-right: "\f152";
|
||||
$fa-var-toggle-up: "\f151";
|
||||
$fa-var-trademark: "\f25c";
|
||||
$fa-var-train: "\f238";
|
||||
$fa-var-transgender: "\f224";
|
||||
$fa-var-transgender-alt: "\f225";
|
||||
$fa-var-trash: "\f1f8";
|
||||
$fa-var-trash-o: "\f014";
|
||||
$fa-var-tree: "\f1bb";
|
||||
$fa-var-trello: "\f181";
|
||||
$fa-var-tripadvisor: "\f262";
|
||||
$fa-var-trophy: "\f091";
|
||||
$fa-var-truck: "\f0d1";
|
||||
$fa-var-try: "\f195";
|
||||
$fa-var-tty: "\f1e4";
|
||||
$fa-var-tumblr: "\f173";
|
||||
$fa-var-tumblr-square: "\f174";
|
||||
$fa-var-turkish-lira: "\f195";
|
||||
$fa-var-tv: "\f26c";
|
||||
$fa-var-twitch: "\f1e8";
|
||||
$fa-var-twitter: "\f099";
|
||||
$fa-var-twitter-square: "\f081";
|
||||
$fa-var-umbrella: "\f0e9";
|
||||
$fa-var-underline: "\f0cd";
|
||||
$fa-var-undo: "\f0e2";
|
||||
$fa-var-universal-access: "\f29a";
|
||||
$fa-var-university: "\f19c";
|
||||
$fa-var-unlink: "\f127";
|
||||
$fa-var-unlock: "\f09c";
|
||||
$fa-var-unlock-alt: "\f13e";
|
||||
$fa-var-unsorted: "\f0dc";
|
||||
$fa-var-upload: "\f093";
|
||||
$fa-var-usb: "\f287";
|
||||
$fa-var-usd: "\f155";
|
||||
$fa-var-user: "\f007";
|
||||
$fa-var-user-circle: "\f2bd";
|
||||
$fa-var-user-circle-o: "\f2be";
|
||||
$fa-var-user-md: "\f0f0";
|
||||
$fa-var-user-o: "\f2c0";
|
||||
$fa-var-user-plus: "\f234";
|
||||
$fa-var-user-secret: "\f21b";
|
||||
$fa-var-user-times: "\f235";
|
||||
$fa-var-users: "\f0c0";
|
||||
$fa-var-vcard: "\f2bb";
|
||||
$fa-var-vcard-o: "\f2bc";
|
||||
$fa-var-venus: "\f221";
|
||||
$fa-var-venus-double: "\f226";
|
||||
$fa-var-venus-mars: "\f228";
|
||||
$fa-var-viacoin: "\f237";
|
||||
$fa-var-viadeo: "\f2a9";
|
||||
$fa-var-viadeo-square: "\f2aa";
|
||||
$fa-var-video-camera: "\f03d";
|
||||
$fa-var-vimeo: "\f27d";
|
||||
$fa-var-vimeo-square: "\f194";
|
||||
$fa-var-vine: "\f1ca";
|
||||
$fa-var-vk: "\f189";
|
||||
$fa-var-volume-control-phone: "\f2a0";
|
||||
$fa-var-volume-down: "\f027";
|
||||
$fa-var-volume-off: "\f026";
|
||||
$fa-var-volume-up: "\f028";
|
||||
$fa-var-warning: "\f071";
|
||||
$fa-var-wechat: "\f1d7";
|
||||
$fa-var-weibo: "\f18a";
|
||||
$fa-var-weixin: "\f1d7";
|
||||
$fa-var-whatsapp: "\f232";
|
||||
$fa-var-wheelchair: "\f193";
|
||||
$fa-var-wheelchair-alt: "\f29b";
|
||||
$fa-var-wifi: "\f1eb";
|
||||
$fa-var-wikipedia-w: "\f266";
|
||||
$fa-var-window-close: "\f2d3";
|
||||
$fa-var-window-close-o: "\f2d4";
|
||||
$fa-var-window-maximize: "\f2d0";
|
||||
$fa-var-window-minimize: "\f2d1";
|
||||
$fa-var-window-restore: "\f2d2";
|
||||
$fa-var-windows: "\f17a";
|
||||
$fa-var-won: "\f159";
|
||||
$fa-var-wordpress: "\f19a";
|
||||
$fa-var-wpbeginner: "\f297";
|
||||
$fa-var-wpexplorer: "\f2de";
|
||||
$fa-var-wpforms: "\f298";
|
||||
$fa-var-wrench: "\f0ad";
|
||||
$fa-var-xing: "\f168";
|
||||
$fa-var-xing-square: "\f169";
|
||||
$fa-var-y-combinator: "\f23b";
|
||||
$fa-var-y-combinator-square: "\f1d4";
|
||||
$fa-var-yahoo: "\f19e";
|
||||
$fa-var-yc: "\f23b";
|
||||
$fa-var-yc-square: "\f1d4";
|
||||
$fa-var-yelp: "\f1e9";
|
||||
$fa-var-yen: "\f157";
|
||||
$fa-var-yoast: "\f2b1";
|
||||
$fa-var-youtube: "\f167";
|
||||
$fa-var-youtube-play: "\f16a";
|
||||
$fa-var-youtube-square: "\f166";
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
/*!
|
||||
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
|
||||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||||
*/
|
||||
|
||||
@import "variables";
|
||||
@import "mixins";
|
||||
@import "path";
|
||||
@import "core";
|
||||
@import "larger";
|
||||
@import "fixed-width";
|
||||
@import "list";
|
||||
@import "bordered-pulled";
|
||||
@import "animated";
|
||||
@import "rotated-flipped";
|
||||
@import "stacked";
|
||||
@import "icons";
|
||||
@import "screen-reader";
|
||||
195
template/cvbp/cvbp-base/src/main/resources/static/backend/lib/jq-module/jquery.particleground.min.js
vendored
Normal file
@@ -0,0 +1,195 @@
|
||||
/**
|
||||
* Particleground
|
||||
*
|
||||
* @author Jonathan Nicol - @mrjnicol
|
||||
* @version 1.0.1
|
||||
* @description Creates a canvas based particle system background
|
||||
*
|
||||
* Inspired by:
|
||||
* http://requestlab.fr/
|
||||
* http://disruptivebydesign.com/
|
||||
*
|
||||
* @license The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2014 Jonathan Nicol - @mrjnicol
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
*/
|
||||
!function (a) {
|
||||
function b(b, d) {
|
||||
function e() {
|
||||
if (w) {
|
||||
$canvas = a('<canvas class="pg-canvas"></canvas>'), v.prepend($canvas), p = $canvas[0], q = p.getContext("2d"), f();
|
||||
for (var b = Math.round(p.width * p.height / d.density), c = 0; b > c; c++) {
|
||||
var e = new l;
|
||||
e.setStackPos(c), x.push(e)
|
||||
}
|
||||
a(window).on("resize", function () {
|
||||
h()
|
||||
}), a(document).on("mousemove", function (a) {
|
||||
y = a.pageX, z = a.pageY
|
||||
}), B && !A && window.addEventListener("deviceorientation", function () {
|
||||
D = Math.min(Math.max(-event.beta, -30), 30), C = Math.min(Math.max(-event.gamma, -30), 30)
|
||||
}, !0), g(), o("onInit")
|
||||
}
|
||||
}
|
||||
|
||||
function f() {
|
||||
p.width = v.width(), p.height = v.height(), q.fillStyle = d.dotColor, q.strokeStyle = d.lineColor, q.lineWidth = d.lineWidth
|
||||
}
|
||||
|
||||
function g() {
|
||||
if (w) {
|
||||
s = a(window).width(), t = a(window).height(), q.clearRect(0, 0, p.width, p.height);
|
||||
for (var b = 0; b < x.length; b++) x[b].updatePosition();
|
||||
for (var b = 0; b < x.length; b++) x[b].draw();
|
||||
E || (r = requestAnimationFrame(g))
|
||||
}
|
||||
}
|
||||
|
||||
function h() {
|
||||
for (f(), i = x.length - 1; i >= 0; i--) (x[i].position.x > v.width() || x[i].position.y > v.height()) && x.splice(i, 1);
|
||||
var a = Math.round(p.width * p.height / d.density);
|
||||
if (a > x.length) for (; a > x.length;) {
|
||||
var b = new l;
|
||||
x.push(b)
|
||||
} else a < x.length && x.splice(a);
|
||||
for (i = x.length - 1; i >= 0; i--) x[i].setStackPos(i)
|
||||
}
|
||||
|
||||
function j() {
|
||||
E = !0
|
||||
}
|
||||
|
||||
function k() {
|
||||
E = !1, g()
|
||||
}
|
||||
|
||||
function l() {
|
||||
switch (this.stackPos, this.active = !0, this.layer = Math.ceil(3 * Math.random()), this.parallaxOffsetX = 0, this.parallaxOffsetY = 0, this.position = {x: Math.ceil(Math.random() * p.width), y: Math.ceil(Math.random() * p.height)}, this.speed = {}, d.directionX) {
|
||||
case"left":
|
||||
this.speed.x = +(-d.maxSpeedX + Math.random() * d.maxSpeedX - d.minSpeedX).toFixed(2);
|
||||
break;
|
||||
case"right":
|
||||
this.speed.x = +(Math.random() * d.maxSpeedX + d.minSpeedX).toFixed(2);
|
||||
break;
|
||||
default:
|
||||
this.speed.x = +(-d.maxSpeedX / 2 + Math.random() * d.maxSpeedX).toFixed(2), this.speed.x += this.speed.x > 0 ? d.minSpeedX : -d.minSpeedX
|
||||
}
|
||||
switch (d.directionY) {
|
||||
case"up":
|
||||
this.speed.y = +(-d.maxSpeedY + Math.random() * d.maxSpeedY - d.minSpeedY).toFixed(2);
|
||||
break;
|
||||
case"down":
|
||||
this.speed.y = +(Math.random() * d.maxSpeedY + d.minSpeedY).toFixed(2);
|
||||
break;
|
||||
default:
|
||||
this.speed.y = +(-d.maxSpeedY / 2 + Math.random() * d.maxSpeedY).toFixed(2), this.speed.x += this.speed.y > 0 ? d.minSpeedY : -d.minSpeedY
|
||||
}
|
||||
}
|
||||
|
||||
function m(a, b) {
|
||||
return b ? void(d[a] = b) : d[a]
|
||||
}
|
||||
|
||||
function n() {
|
||||
v.find(".pg-canvas").remove(), o("onDestroy"), v.removeData("plugin_" + c)
|
||||
}
|
||||
|
||||
function o(a) {
|
||||
void 0 !== d[a] && d[a].call(u)
|
||||
}
|
||||
|
||||
var p, q, r, s, t, u = b, v = a(b), w = !!document.createElement("canvas").getContext, x = [], y = 0, z = 0, A = !navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry|BB10|mobi|tablet|opera mini|nexus 7)/i), B = !!window.DeviceOrientationEvent, C = 0, D = 0, E = !1;
|
||||
return d = a.extend({}, a.fn[c].defaults, d), l.prototype.draw = function () {
|
||||
q.beginPath(), q.arc(this.position.x + this.parallaxOffsetX, this.position.y + this.parallaxOffsetY, d.particleRadius / 2, 0, 2 * Math.PI, !0), q.closePath(), q.fill(), q.beginPath();
|
||||
for (var a = x.length - 1; a > this.stackPos; a--) {
|
||||
var b = x[a], c = this.position.x - b.position.x, e = this.position.y - b.position.y, f = Math.sqrt(c * c + e * e).toFixed(2);
|
||||
f < d.proximity && (q.moveTo(this.position.x + this.parallaxOffsetX, this.position.y + this.parallaxOffsetY), d.curvedLines ? q.quadraticCurveTo(Math.max(b.position.x, b.position.x), Math.min(b.position.y, b.position.y), b.position.x + b.parallaxOffsetX, b.position.y + b.parallaxOffsetY) : q.lineTo(b.position.x + b.parallaxOffsetX, b.position.y + b.parallaxOffsetY))
|
||||
}
|
||||
q.stroke(), q.closePath()
|
||||
}, l.prototype.updatePosition = function () {
|
||||
if (d.parallax) {
|
||||
if (B && !A) {
|
||||
var a = (s - 0) / 60;
|
||||
pointerX = (C - -30) * a + 0;
|
||||
var b = (t - 0) / 60;
|
||||
pointerY = (D - -30) * b + 0
|
||||
} else pointerX = y, pointerY = z;
|
||||
this.parallaxTargX = (pointerX - s / 2) / (d.parallaxMultiplier * this.layer), this.parallaxOffsetX += (this.parallaxTargX - this.parallaxOffsetX) / 10, this.parallaxTargY = (pointerY - t / 2) / (d.parallaxMultiplier * this.layer), this.parallaxOffsetY += (this.parallaxTargY - this.parallaxOffsetY) / 10
|
||||
}
|
||||
switch (d.directionX) {
|
||||
case"left":
|
||||
this.position.x + this.speed.x + this.parallaxOffsetX < 0 && (this.position.x = v.width() - this.parallaxOffsetX);
|
||||
break;
|
||||
case"right":
|
||||
this.position.x + this.speed.x + this.parallaxOffsetX > v.width() && (this.position.x = 0 - this.parallaxOffsetX);
|
||||
break;
|
||||
default:
|
||||
(this.position.x + this.speed.x + this.parallaxOffsetX > v.width() || this.position.x + this.speed.x + this.parallaxOffsetX < 0) && (this.speed.x = -this.speed.x)
|
||||
}
|
||||
switch (d.directionY) {
|
||||
case"up":
|
||||
this.position.y + this.speed.y + this.parallaxOffsetY < 0 && (this.position.y = v.height() - this.parallaxOffsetY);
|
||||
break;
|
||||
case"down":
|
||||
this.position.y + this.speed.y + this.parallaxOffsetY > v.height() && (this.position.y = 0 - this.parallaxOffsetY);
|
||||
break;
|
||||
default:
|
||||
(this.position.y + this.speed.y + this.parallaxOffsetY > v.height() || this.position.y + this.speed.y + this.parallaxOffsetY < 0) && (this.speed.y = -this.speed.y)
|
||||
}
|
||||
this.position.x += this.speed.x, this.position.y += this.speed.y
|
||||
}, l.prototype.setStackPos = function (a) {
|
||||
this.stackPos = a
|
||||
}, e(), {option: m, destroy: n, start: k, pause: j}
|
||||
}
|
||||
|
||||
var c = "particleground";
|
||||
a.fn[c] = function (d) {
|
||||
if ("string" == typeof arguments[0]) {
|
||||
var e, f = arguments[0], g = Array.prototype.slice.call(arguments, 1);
|
||||
return this.each(function () {
|
||||
a.data(this, "plugin_" + c) && "function" == typeof a.data(this, "plugin_" + c)[f] && (e = a.data(this, "plugin_" + c)[f].apply(this, g))
|
||||
}), void 0 !== e ? e : this
|
||||
}
|
||||
return "object" != typeof d && d ? void 0 : this.each(function () {
|
||||
a.data(this, "plugin_" + c) || a.data(this, "plugin_" + c, new b(this, d))
|
||||
})
|
||||
}, a.fn[c].defaults = {
|
||||
minSpeedX: .1, maxSpeedX: .7, minSpeedY: .1, maxSpeedY: .7, directionX: "center", directionY: "center", density: 1e4, dotColor: "#666666", lineColor: "#666666", particleRadius: 7, lineWidth: 1, curvedLines: !1, proximity: 100, parallax: !0, parallaxMultiplier: 5, onInit: function () {
|
||||
}, onDestroy: function () {
|
||||
}
|
||||
}
|
||||
}(jQuery), /**
|
||||
* requestAnimationFrame polyfill by Erik M枚ller. fixes from Paul Irish and Tino Zijdel
|
||||
* @see: http://paulirish.com/2011/requestanimationframe-for-smart-animating/
|
||||
* @see: http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating
|
||||
* @license: MIT license
|
||||
*/
|
||||
function () {
|
||||
for (var a = 0, b = ["ms", "moz", "webkit", "o"], c = 0; c < b.length && !window.requestAnimationFrame; ++c) window.requestAnimationFrame = window[b[c] + "RequestAnimationFrame"], window.cancelAnimationFrame = window[b[c] + "CancelAnimationFrame"] || window[b[c] + "CancelRequestAnimationFrame"];
|
||||
window.requestAnimationFrame || (window.requestAnimationFrame = function (b) {
|
||||
var c = (new Date).getTime(), d = Math.max(0, 16 - (c - a)), e = window.setTimeout(function () {
|
||||
b(c + d)
|
||||
}, d);
|
||||
return a = c + d, e
|
||||
}), window.cancelAnimationFrame || (window.cancelAnimationFrame = function (a) {
|
||||
clearTimeout(a)
|
||||
})
|
||||
}();
|
||||
1
template/cvbp/cvbp-base/src/main/resources/static/backend/lib/jq-module/paigusu.min.js
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
@CHARSET "UTF-8";form{font-size:84%;margin:0;line-height:1.5;color:#333;font-family:Arial,sans-serif}a{color:#34538b;text-decoration:none}a:hover{text-decoration:underline}input,select,textarea{font-size:100%}#header{height:60px;padding:0 0 0 40px}#header .logo{margin-top:12px;overflow:hidden;float:left}#main{width:100%;background:#beceeb;overflow:hidden}#main h1{line-height:40px;margin:0;text-align:center;font-size:1.3em;background:#c1d5eb;font-family:'楷体','微软雅黑';text-shadow:0 1px 0 #f2f2f2}#body{padding:0;overflow:hidden}#body .part{width:50%;min-height:500px;_height:500px;background:white}#code{float:left;margin-left:-1px;margin-bottom:-999em;padding-bottom:999em}#effect{float:right;margin-right:-1px;margin-bottom:-999em;padding-bottom:999em}#body h3{line-height:30px;margin:0;font-size:1.1em;background:#f0f3f9;padding-left:10px;border-bottom:1px solid #ededed;color:#4e4e4e;text-shadow:0 1px 0 white}#footer{line-height:1.3;padding:15px 0;border-top:1px solid #486aaa;font-family:'Lucida Grande',Verdana,Sans-Serif;text-align:center;text-shadow:1px 1px #cad5eb}#footer:before{display:block;height:1px;content:'.';background-color:#909baf;color:#aaa;overflow:hidden;position:relative;top:-15px}#footer img{margin-bottom:-3px}pre{font-family:'simsun'}#ad{width:468px;height:60px;margin:0 auto}.light{background:#f0f3f9}#content{min-height:500px;_height:500px;background:white;border:solid #cad5eb;border-width:0 2px;font-family:'Lucida Grande',Verdana}.article{font-family:Arial;padding:10px 0;font-size:.86em;clear:both}.article_new{width:960px;margin:-33px auto 0;font-family:Arial;padding:10px 0;font-size:.86em;clear:both;text-align:right}#back{margin-top:-25px;position:absolute;right:10px}.upload_box{margin:1em auto}.upload_main{border-width:1px 1px 2px;border-style:solid;border-color:#ccc #ccc #ddd;background-color:#fbfbfb}.upload_choose{padding:1em}.upload_drag_area{display:inline-block;width:63%;padding:4em 0;margin-left:.5em;border:1px dashed #ddd;background:#fff no-repeat 20px center;color:#999;text-align:center;vertical-align:middle}.upload_drag_hover{border-color:#069;box-shadow:inset 2px 2px 4px rgba(0,0,0,.5);color:#333}.upload_preview{border-top:1px solid #d2d2d2;border-bottom:1px solid #bbb;background-color:#fff;overflow:hidden;_zoom:1}.upload_append_list{height:100%;margin:1em;float:left;position:relative}.upload_append_list:hover{cursor:pointer}.upload_delete{margin-left:2em}.upload_image{padding:0}.upload_submit{padding-top:1em;padding-left:1em}.upload_submit_btn{height:32px;font-size:14px;display:none}.upload_progress{padding:5px;border-radius:10px;color:#fff;background-color:rgba(0,0,0,.6);position:absolute;left:25px;top:45px}.andArea{background:url("images/add_img.png") no-repeat scroll center 5px rgba(0,0,0,0);border:1px dashed #e0e0e0;color:#ccc;font-size:18px;padding-top:77px;position:relative;text-align:center;top:0}.filePicker{background:none repeat scroll 0 0 #00b7ee;border-radius:3px;box-shadow:0 1px 1px rgba(0,0,0,0.1);color:#fff;cursor:pointer;display:inline-block;font-size:18px;height:44px;line-height:44px;width:90%;min-width:120px;margin:0 auto 0;overflow:hidden;transition:background .2s;-moz-transition:background .2s;-webkit-transition:background .2s;-o-transition:background .2s}.filePicker:hover{background:none repeat scroll 0 0 #00a2d4}.zyupload{margin:auto}.convent_choice{float:left;height:130px;width:35%}#fileImage{display:none}.status_bar{border-top:1px solid #dadada;height:45px;line-height:45px;padding:0 10px;position:relative;vertical-align:middle;background-color:#fff}.info{float:left;color:#666;display:inline-block}.btns{position:absolute;right:16px;line-height:30px;top:6px}.webuploader_pick{-moz-user-select:none;background:none repeat scroll 0 0 #fff;border:1px solid #cfcfcf;border-radius:3px;color:#565656;cursor:pointer;display:inline-block;float:left;font-size:14px;margin-left:10px;padding:0 18px;position:relative;text-align:center;line-height:32px;transition:border .2s;-moz-transition:border .2s;-webkit-transition:border .2s;-o-transition:border .2s}.webuploader_pick:hover{border:1px solid #BBB}.upload_btn{background:none repeat scroll 0 0 #00b7ee;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;float:left;font-size:14px;margin-left:10px;padding:0 18px;position:relative;text-align:center;line-height:34px;transition:background .2s;-moz-transition:background .2s;-webkit-transition:background .2s;-o-transition:background .2s}.upload_btn:hover{background:none repeat scroll 0 0 #00a2d4}.file_bar{margin:0;left:0;right:0;position:absolute;top:0;height:0;padding:0;margin:0;opacity:.8;color:#fff;background:none repeat scroll 0 0 #000;transition:all .5s;-moz-transition:all .5s;-webkit-transition:all .5s;-o-transition:all .5s;overflow:hidden}.file_bar a{color:#fff;position:absolute;right:10px}
|
||||
.file_hover{height:30px;cursor:pointer}.uploadImg{margin:0}.file_progress{display:none;margin:0;position:absolute;bottom:0;height:8px;left:0;right:0;background:none repeat scroll 0 0 #00b7ee;text-align:center;width:0}.file_failure{display:none;margin:0;position:absolute;bottom:0;height:24px;left:0;right:0;background:none repeat scroll 0 0 red;color:#fff;text-align:center}.file_tailor{display:none;margin:0;position:absolute;bottom:0;height:24px;left:0;right:0;background:none repeat scroll 0 0 #00b7ee;color:#fff;text-align:center}.file_success{display:none;margin:0;position:absolute;bottom:0;height:40px;left:0;right:0;background:url("images/success.png") no-repeat scroll right bottom transparent}.file_name{margin:0;white-space:nowrap;width:66%;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;float:left}.file_edit{background:url("images/edit_white.png") no-repeat scroll 0 0 transparent;width:18px;height:18px;display:inline;-moz-user-select:none;position:absolute;right:22px;margin-top:4px}.file_edit:hover{background:url("images/edit_blue.png") no-repeat scroll 0 0 transparent}.file_del{background:url("images/delete_white.png") no-repeat scroll 0 0 transparent;width:18px;height:18px;display:inline;-moz-user-select:none;position:absolute;right:3px;margin-top:4px}.file_del:hover{background:url("images/delete_blue.png") no-repeat scroll 0 0 transparent}.upload_append_list a{display:table-cell;text-align:center;vertical-align:middle;border:1px solid #dfdfdf;background:url("images/bg.png") no-repeat scroll center 0 transparent}.upload_append_list img{border:solid 1px #66f;vertical-align:middle}.uploadImg{margin:auto;overflow:hidden}.uploadImg .upload_image{border:0;display:block;width:100%;height:auto!important;margin-top:0;margin-left:0;margin-right:0;margin-bottom:0;max-height:none!important;max-width:none!important;min-height:0!important;min-width:0!important;transform:none;image-orientation:0deg!important}.uploadImg .upload_file{border:0;max-width:100%!important;height:auto!important}.add_upload{height:100%;margin:1em;float:left;position:relative}.add_upload:hover{cursor:pointer}.add_imgBox{border:1px solid #dfdfdf;display:table-cell;text-align:center;vertical-align:middle;transition:border .2s;-moz-transition:border .2s;-webkit-transition:border .2s;-o-transition:border .2s}.add_imgBox:hover{border:1px solid #BBB}.single_main{border-top:0}.jcrop-holder{text-align:left}.jcrop-vline,.jcrop-hline{font-size:0;position:absolute;background:white url('images/Jcrop.gif') top left repeat}.jcrop-vline{height:100%;width:1px!important}.jcrop-hline{width:100%;height:1px!important}.jcrop-handle{font-size:1px;width:7px!important;height:7px!important;border:1px #eee solid;background-color:#333;*width:9px;*height:9px}.jcrop-tracker{width:100%;height:100%}.custom .jcrop-vline,.custom .jcrop-hline{background:yellow}.custom .jcrop-handle{border-color:black;background-color:#c7bb00;-moz-border-radius:3px;-webkit-border-radius:3px}#zoom{z-index:99990;position:fixed;top:0;left:0;display:none;width:100%;height:100%;background:rgba(0,0,0,0.8);filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)"}#zoom .content{z-index:99991;position:absolute;top:50%;left:50%;width:200px;height:200px;background:#fff no-repeat 50% 50%;padding:0;margin:-100px 0 0 -100px;box-shadow:-20px 20px 20px rgba(0,0,0,0.3);border-radius:4px}#zoom .content.loading{background-image:url('images/loading.gif')}#zoom img{display:block;max-width:none;background:#ececec;box-shadow:0 1px 3px rgba(0,0,0,0.25);border-radius:4px}#zoom .close{z-index:99993;position:absolute;top:0;right:0;width:49px;height:49px;cursor:pointer;background:transparent url('images/close.png') no-repeat 50% 50%;opacity:1;filter:alpha(opacity=100);border-radius:0 0 0 4px}#zoom .close:hover{background-color:#da4f49}#zoom .finish{z-index:99993;position:absolute;top:0;right:49px;width:49px;height:49px;cursor:pointer;background:transparent url('images/finish.png') no-repeat 50% 50%;opacity:1;filter:alpha(opacity=100);border-radius:0 0 0 4px}#zoom .finish:hover{background-color:#da4f49}
|
||||
@@ -0,0 +1,17 @@
|
||||
(function($){$.Jcrop=function(obj,opt){var obj=obj,opt=opt;if(typeof(obj)!=="object"){obj=$(obj)[0]}if(typeof(opt)!=="object"){opt={}}if(!("trackDocument" in opt)){opt.trackDocument=$.browser.msie?false:true;if($.browser.msie&&$.browser.version.split(".")[0]=="8"){opt.trackDocument=true}}if(!("keySupport" in opt)){opt.keySupport=$.browser.msie?false:true}var defaults={trackDocument:false,baseClass:"jcrop",addClass:null,bgColor:"black",bgOpacity:0.6,borderOpacity:0.4,handleOpacity:0.5,handlePad:5,handleSize:9,handleOffset:5,edgeMargin:14,aspectRatio:0,keySupport:true,cornerHandles:true,sideHandles:true,drawBorders:true,dragEdges:true,boxWidth:0,boxHeight:0,boundary:8,animationDelay:20,swingSpeed:3,allowSelect:true,allowMove:true,allowResize:true,minSelect:[0,0],maxSize:[0,0],minSize:[0,0],onChange:function(){},onSelect:function(){}};var options=defaults;setOptions(opt);var $origimg=$(obj);var $img=$origimg.clone().removeAttr("id").css({position:"absolute"});$img.width($origimg.width());$img.height($origimg.height());$origimg.after($img).hide();presize($img,options.boxWidth,options.boxHeight);var boundx=$img.width(),boundy=$img.height(),$div=$("<div />").width(boundx).height(boundy).addClass(cssClass("holder")).css({position:"relative",backgroundColor:options.bgColor}).insertAfter($origimg).append($img);if(options.addClass){$div.addClass(options.addClass)}var $img2=$("<img />").attr("src",$img.attr("src")).css("position","absolute").width(boundx).height(boundy);var $img_holder=$("<div />").width(pct(100)).height(pct(100)).css({zIndex:310,position:"absolute",overflow:"hidden"}).append($img2);var $hdl_holder=$("<div />").width(pct(100)).height(pct(100)).css("zIndex",320);var $sel=$("<div />").css({position:"absolute",zIndex:300}).insertBefore($img).append($img_holder,$hdl_holder);var bound=options.boundary;var $trk=newTracker().width(boundx+(bound*2)).height(boundy+(bound*2)).css({position:"absolute",top:px(-bound),left:px(-bound),zIndex:290}).mousedown(newSelection);var xlimit,ylimit,xmin,ymin;
|
||||
var xscale,yscale,enabled=true;var docOffset=getPos($img),btndown,lastcurs,dimmed,animating,shift_down;var Coords=function(){var x1=0,y1=0,x2=0,y2=0,ox,oy;function setPressed(pos){var pos=rebound(pos);x2=x1=pos[0];y2=y1=pos[1]}function setCurrent(pos){var pos=rebound(pos);ox=pos[0]-x2;oy=pos[1]-y2;x2=pos[0];y2=pos[1]}function getOffset(){return[ox,oy]}function moveOffset(offset){var ox=offset[0],oy=offset[1];if(0>x1+ox){ox-=ox+x1}if(0>y1+oy){oy-=oy+y1}if(boundy<y2+oy){oy+=boundy-(y2+oy)}if(boundx<x2+ox){ox+=boundx-(x2+ox)}x1+=ox;x2+=ox;y1+=oy;y2+=oy}function getCorner(ord){var c=getFixed();switch(ord){case"ne":return[c.x2,c.y];case"nw":return[c.x,c.y];case"se":return[c.x2,c.y2];case"sw":return[c.x,c.y2]}}function getFixed(){if(!options.aspectRatio){return getRect()}var aspect=options.aspectRatio,min_x=options.minSize[0]/xscale,min_y=options.minSize[1]/yscale,max_x=options.maxSize[0]/xscale,max_y=options.maxSize[1]/yscale,rw=x2-x1,rh=y2-y1,rwa=Math.abs(rw),rha=Math.abs(rh),real_ratio=rwa/rha,xx,yy;if(max_x==0){max_x=boundx*10}if(max_y==0){max_y=boundy*10}if(real_ratio<aspect){yy=y2;w=rha*aspect;xx=rw<0?x1-w:w+x1;if(xx<0){xx=0;h=Math.abs((xx-x1)/aspect);yy=rh<0?y1-h:h+y1}else{if(xx>boundx){xx=boundx;h=Math.abs((xx-x1)/aspect);yy=rh<0?y1-h:h+y1}}}else{xx=x2;h=rwa/aspect;yy=rh<0?y1-h:y1+h;if(yy<0){yy=0;w=Math.abs((yy-y1)*aspect);xx=rw<0?x1-w:w+x1}else{if(yy>boundy){yy=boundy;w=Math.abs(yy-y1)*aspect;xx=rw<0?x1-w:w+x1}}}if(xx>x1){if(xx-x1<min_x){xx=x1+min_x}else{if(xx-x1>max_x){xx=x1+max_x}}if(yy>y1){yy=y1+(xx-x1)/aspect}else{yy=y1-(xx-x1)/aspect}}else{if(xx<x1){if(x1-xx<min_x){xx=x1-min_x}else{if(x1-xx>max_x){xx=x1-max_x}}if(yy>y1){yy=y1+(x1-xx)/aspect}else{yy=y1-(x1-xx)/aspect}}}if(xx<0){x1-=xx;xx=0}else{if(xx>boundx){x1-=xx-boundx;xx=boundx}}if(yy<0){y1-=yy;yy=0}else{if(yy>boundy){y1-=yy-boundy;yy=boundy}}return last=makeObj(flipCoords(x1,y1,xx,yy))}function rebound(p){if(p[0]<0){p[0]=0}if(p[1]<0){p[1]=0}if(p[0]>boundx){p[0]=boundx}if(p[1]>boundy){p[1]=boundy}return[p[0],p[1]]
|
||||
}function flipCoords(x1,y1,x2,y2){var xa=x1,xb=x2,ya=y1,yb=y2;if(x2<x1){xa=x2;xb=x1}if(y2<y1){ya=y2;yb=y1}return[Math.round(xa),Math.round(ya),Math.round(xb),Math.round(yb)]}function getRect(){var xsize=x2-x1;var ysize=y2-y1;if(xlimit&&(Math.abs(xsize)>xlimit)){x2=(xsize>0)?(x1+xlimit):(x1-xlimit)}if(ylimit&&(Math.abs(ysize)>ylimit)){y2=(ysize>0)?(y1+ylimit):(y1-ylimit)}if(ymin&&(Math.abs(ysize)<ymin)){y2=(ysize>0)?(y1+ymin):(y1-ymin)}if(xmin&&(Math.abs(xsize)<xmin)){x2=(xsize>0)?(x1+xmin):(x1-xmin)}if(x1<0){x2-=x1;x1-=x1}if(y1<0){y2-=y1;y1-=y1}if(x2<0){x1-=x2;x2-=x2}if(y2<0){y1-=y2;y2-=y2}if(x2>boundx){var delta=x2-boundx;x1-=delta;x2-=delta}if(y2>boundy){var delta=y2-boundy;y1-=delta;y2-=delta}if(x1>boundx){var delta=x1-boundy;y2-=delta;y1-=delta}if(y1>boundy){var delta=y1-boundy;y2-=delta;y1-=delta}return makeObj(flipCoords(x1,y1,x2,y2))}function makeObj(a){return{x:a[0],y:a[1],x2:a[2],y2:a[3],w:a[2]-a[0],h:a[3]-a[1]}}return{flipCoords:flipCoords,setPressed:setPressed,setCurrent:setCurrent,getOffset:getOffset,moveOffset:moveOffset,getCorner:getCorner,getFixed:getFixed}}();var Selection=function(){var start,end,dragmode,awake,hdep=370;var borders={};var handle={};var seehandles=false;var hhs=options.handleOffset;if(options.drawBorders){borders={top:insertBorder("hline").css("top",$.browser.msie?px(-1):px(0)),bottom:insertBorder("hline"),left:insertBorder("vline"),right:insertBorder("vline")}}if(options.dragEdges){handle.t=insertDragbar("n");handle.b=insertDragbar("s");handle.r=insertDragbar("e");handle.l=insertDragbar("w")}options.sideHandles&&createHandles(["n","s","e","w"]);options.cornerHandles&&createHandles(["sw","nw","ne","se"]);function insertBorder(type){var jq=$("<div />").css({position:"absolute",opacity:options.borderOpacity}).addClass(cssClass(type));$img_holder.append(jq);return jq}function dragDiv(ord,zi){var jq=$("<div />").mousedown(createDragger(ord)).css({cursor:ord+"-resize",position:"absolute",zIndex:zi});$hdl_holder.append(jq);return jq}function insertHandle(ord){return dragDiv(ord,hdep++).css({top:px(-hhs+1),left:px(-hhs+1),opacity:options.handleOpacity}).addClass(cssClass("handle"))
|
||||
}function insertDragbar(ord){var s=options.handleSize,o=hhs,h=s,w=s,t=o,l=o;switch(ord){case"n":case"s":w=pct(100);break;case"e":case"w":h=pct(100);break}return dragDiv(ord,hdep++).width(w).height(h).css({top:px(-t+1),left:px(-l+1)})}function createHandles(li){for(i in li){handle[li[i]]=insertHandle(li[i])}}function moveHandles(c){var midvert=Math.round((c.h/2)-hhs),midhoriz=Math.round((c.w/2)-hhs),north=west=-hhs+1,east=c.w-hhs,south=c.h-hhs,x,y;"e" in handle&&handle.e.css({top:px(midvert),left:px(east)})&&handle.w.css({top:px(midvert)})&&handle.s.css({top:px(south),left:px(midhoriz)})&&handle.n.css({left:px(midhoriz)});"ne" in handle&&handle.ne.css({left:px(east)})&&handle.se.css({top:px(south),left:px(east)})&&handle.sw.css({top:px(south)});"b" in handle&&handle.b.css({top:px(south)})&&handle.r.css({left:px(east)})}function moveto(x,y){$img2.css({top:px(-y),left:px(-x)});$sel.css({top:px(y),left:px(x)})}function resize(w,h){$sel.width(w).height(h)}function refresh(){var c=Coords.getFixed();Coords.setPressed([c.x,c.y]);Coords.setCurrent([c.x2,c.y2]);updateVisible()}function updateVisible(){if(awake){return update()}}function update(){var c=Coords.getFixed();resize(c.w,c.h);moveto(c.x,c.y);options.drawBorders&&borders["right"].css({left:px(c.w-1)})&&borders["bottom"].css({top:px(c.h-1)});seehandles&&moveHandles(c);awake||show();options.onChange(unscale(c))}function show(){$sel.show();$img.css("opacity",options.bgOpacity);awake=true}function release(){disableHandles();$sel.hide();$img.css("opacity",1);awake=false}function showHandles(){if(seehandles){moveHandles(Coords.getFixed());$hdl_holder.show()}}function enableHandles(){seehandles=true;if(options.allowResize){moveHandles(Coords.getFixed());$hdl_holder.show();return true}}function disableHandles(){seehandles=false;$hdl_holder.hide()}function animMode(v){(animating=v)?disableHandles():enableHandles()}function done(){animMode(false);refresh()}var $track=newTracker().mousedown(createDragger("move")).css({cursor:"move",position:"absolute",zIndex:360});
|
||||
$img_holder.append($track);disableHandles();return{updateVisible:updateVisible,update:update,release:release,refresh:refresh,setCursor:function(cursor){$track.css("cursor",cursor)},enableHandles:enableHandles,enableOnly:function(){seehandles=true},showHandles:showHandles,disableHandles:disableHandles,animMode:animMode,done:done}}();var Tracker=function(){var onMove=function(){},onDone=function(){},trackDoc=options.trackDocument;if(!trackDoc){$trk.mousemove(trackMove).mouseup(trackUp).mouseout(trackUp)}function toFront(){$trk.css({zIndex:450});if(trackDoc){$(document).mousemove(trackMove).mouseup(trackUp)}}function toBack(){$trk.css({zIndex:290});if(trackDoc){$(document).unbind("mousemove",trackMove).unbind("mouseup",trackUp)}}function trackMove(e){onMove(mouseAbs(e))}function trackUp(e){e.preventDefault();e.stopPropagation();if(btndown){btndown=false;onDone(mouseAbs(e));options.onSelect(unscale(Coords.getFixed()));toBack();onMove=function(){};onDone=function(){}}return false}function activateHandlers(move,done){btndown=true;onMove=move;onDone=done;toFront();return false}function setCursor(t){$trk.css("cursor",t)}$img.before($trk);return{activateHandlers:activateHandlers,setCursor:setCursor}}();var KeyManager=function(){var $keymgr=$('<input type="radio" />').css({position:"absolute",left:"-30px"}).keypress(parseKey).blur(onBlur),$keywrap=$("<div />").css({position:"absolute",overflow:"hidden"}).append($keymgr);function watchKeys(){if(options.keySupport){$keymgr.show();$keymgr.focus()}}function onBlur(e){$keymgr.hide()}function doNudge(e,x,y){if(options.allowMove){Coords.moveOffset([x,y]);Selection.updateVisible()}e.preventDefault();e.stopPropagation()}function parseKey(e){if(e.ctrlKey){return true}shift_down=e.shiftKey?true:false;var nudge=shift_down?10:1;switch(e.keyCode){case 37:doNudge(e,-nudge,0);break;case 39:doNudge(e,nudge,0);break;case 38:doNudge(e,0,-nudge);break;case 40:doNudge(e,0,nudge);break;case 27:Selection.release();break;case 9:return true}return nothing(e)
|
||||
}if(options.keySupport){$keywrap.insertBefore($img)}return{watchKeys:watchKeys}}();function px(n){return""+parseInt(n)+"px"}function pct(n){return""+parseInt(n)+"%"}function cssClass(cl){return options.baseClass+"-"+cl}function getPos(obj){var pos=$(obj).offset();return[pos.left,pos.top]}function mouseAbs(e){return[(e.pageX-docOffset[0]),(e.pageY-docOffset[1])]}function myCursor(type){if(type!=lastcurs){Tracker.setCursor(type);lastcurs=type}}function startDragMode(mode,pos){docOffset=getPos($img);Tracker.setCursor(mode=="move"?mode:mode+"-resize");if(mode=="move"){return Tracker.activateHandlers(createMover(pos),doneSelect)}var fc=Coords.getFixed();var opp=oppLockCorner(mode);var opc=Coords.getCorner(oppLockCorner(opp));Coords.setPressed(Coords.getCorner(opp));Coords.setCurrent(opc);Tracker.activateHandlers(dragmodeHandler(mode,fc),doneSelect)}function dragmodeHandler(mode,f){return function(pos){if(!options.aspectRatio){switch(mode){case"e":pos[1]=f.y2;break;case"w":pos[1]=f.y2;break;case"n":pos[0]=f.x2;break;case"s":pos[0]=f.x2;break}}else{switch(mode){case"e":pos[1]=f.y+1;break;case"w":pos[1]=f.y+1;break;case"n":pos[0]=f.x+1;break;case"s":pos[0]=f.x+1;break}}Coords.setCurrent(pos);Selection.update()}}function createMover(pos){var lloc=pos;KeyManager.watchKeys();return function(pos){Coords.moveOffset([pos[0]-lloc[0],pos[1]-lloc[1]]);lloc=pos;Selection.update()}}function oppLockCorner(ord){switch(ord){case"n":return"sw";case"s":return"nw";case"e":return"nw";case"w":return"ne";case"ne":return"sw";case"nw":return"se";case"se":return"nw";case"sw":return"ne"}}function createDragger(ord){return function(e){if(options.disabled){return false}if((ord=="move")&&!options.allowMove){return false}btndown=true;startDragMode(ord,mouseAbs(e));e.stopPropagation();e.preventDefault();return false}}function presize($obj,w,h){var nw=$obj.width(),nh=$obj.height();if((nw>w)&&w>0){nw=w;nh=(w/$obj.width())*$obj.height()}if((nh>h)&&h>0){nh=h;nw=(h/$obj.height())*$obj.width()}xscale=$obj.width()/nw;
|
||||
yscale=$obj.height()/nh;$obj.width(nw).height(nh)}function unscale(c){return{x:parseInt(c.x*xscale),y:parseInt(c.y*yscale),x2:parseInt(c.x2*xscale),y2:parseInt(c.y2*yscale),w:parseInt(c.w*xscale),h:parseInt(c.h*yscale)}}function doneSelect(pos){var c=Coords.getFixed();if(c.w>options.minSelect[0]&&c.h>options.minSelect[1]){Selection.enableHandles();Selection.done()}else{Selection.release()}Tracker.setCursor(options.allowSelect?"crosshair":"default")}function newSelection(e){if(options.disabled){return false}if(!options.allowSelect){return false}btndown=true;docOffset=getPos($img);Selection.disableHandles();myCursor("crosshair");var pos=mouseAbs(e);Coords.setPressed(pos);Tracker.activateHandlers(selectDrag,doneSelect);KeyManager.watchKeys();Selection.update();e.stopPropagation();e.preventDefault();return false}function selectDrag(pos){Coords.setCurrent(pos);Selection.update()}function newTracker(){var trk=$("<div></div>").addClass(cssClass("tracker"));$.browser.msie&&trk.css({opacity:0,backgroundColor:"white"});return trk}function animateTo(a){var x1=a[0]/xscale,y1=a[1]/yscale,x2=a[2]/xscale,y2=a[3]/yscale;if(animating){return}var animto=Coords.flipCoords(x1,y1,x2,y2);var c=Coords.getFixed();var animat=initcr=[c.x,c.y,c.x2,c.y2];var interv=options.animationDelay;var x=animat[0];var y=animat[1];var x2=animat[2];var y2=animat[3];var ix1=animto[0]-initcr[0];var iy1=animto[1]-initcr[1];var ix2=animto[2]-initcr[2];var iy2=animto[3]-initcr[3];var pcent=0;var velocity=options.swingSpeed;Selection.animMode(true);var animator=function(){return function(){pcent+=(100-pcent)/velocity;animat[0]=x+((pcent/100)*ix1);animat[1]=y+((pcent/100)*iy1);animat[2]=x2+((pcent/100)*ix2);animat[3]=y2+((pcent/100)*iy2);if(pcent<100){animateStart()}else{Selection.done()}if(pcent>=99.8){pcent=100}setSelectRaw(animat)}}();function animateStart(){window.setTimeout(animator,interv)}animateStart()}function setSelect(rect){setSelectRaw([rect[0]/xscale,rect[1]/yscale,rect[2]/xscale,rect[3]/yscale])}function setSelectRaw(l){Coords.setPressed([l[0],l[1]]);
|
||||
Coords.setCurrent([l[2],l[3]]);Selection.update()}function setOptions(opt){if(typeof(opt)!="object"){opt={}}options=$.extend(options,opt);if(typeof(options.onChange)!=="function"){options.onChange=function(){}}if(typeof(options.onSelect)!=="function"){options.onSelect=function(){}}}function tellSelect(){return unscale(Coords.getFixed())}function tellScaled(){return Coords.getFixed()}function setOptionsNew(opt){setOptions(opt);interfaceUpdate()}function disableCrop(){options.disabled=true;Selection.disableHandles();Selection.setCursor("default");Tracker.setCursor("default")}function enableCrop(){options.disabled=false;interfaceUpdate()}function cancelCrop(){Selection.done();Tracker.activateHandlers(null,null)}function destroy(){$div.remove();$origimg.show()}function interfaceUpdate(alt){options.allowResize?alt?Selection.enableOnly():Selection.enableHandles():Selection.disableHandles();Tracker.setCursor(options.allowSelect?"crosshair":"default");Selection.setCursor(options.allowMove?"move":"default");$div.css("backgroundColor",options.bgColor);if("setSelect" in options){setSelect(opt.setSelect);Selection.done();delete (options.setSelect)}if("trueSize" in options){xscale=options.trueSize[0]/boundx;yscale=options.trueSize[1]/boundy}xlimit=options.maxSize[0]||0;ylimit=options.maxSize[1]||0;xmin=options.minSize[0]||0;ymin=options.minSize[1]||0;if("outerImage" in options){$img.attr("src",options.outerImage);delete (options.outerImage)}Selection.refresh()}$hdl_holder.hide();interfaceUpdate(true);var api={animateTo:animateTo,setSelect:setSelect,setOptions:setOptionsNew,tellSelect:tellSelect,tellScaled:tellScaled,disable:disableCrop,enable:enableCrop,cancel:cancelCrop,focus:KeyManager.watchKeys,getBounds:function(){return[boundx*xscale,boundy*yscale]},getWidgetSize:function(){return[boundx,boundy]},release:Selection.release,destroy:destroy};$origimg.data("Jcrop",api);return api};$.fn.Jcrop=function(options){function attachWhenDone(from){var loadsrc=options.useImg||from.src;var img=new Image();
|
||||
img.onload=function(){$.Jcrop(from,options)};img.src=loadsrc}if(typeof(options)!=="object"){options={}}this.each(function(){if($(this).data("Jcrop")){if(options=="api"){return $(this).data("Jcrop")}else{$(this).data("Jcrop").setOptions(options)}}else{attachWhenDone(this)}});return this}})(jQuery);(function($,undefined){$.fn.zyPopup=function(options,param){var otherArgs=Array.prototype.slice.call(arguments,1);if(typeof options=="string"){var fn=this[0][options];if($.isFunction(fn)){return fn.apply(this,otherArgs)}else{throw ("zyPopup - No such method: "+options)}}return this.each(function(){var para={};var self=this;var zoom="",zoomContent="",zoomedIn=false,openedImage=null,windowWidth="",windowHeight="";var tailorVal={};var defaults={src:"",index:0,name:"",onTailor:function(val){}};para=$.extend(defaults,options);this.init=function(){this.createHtml();this.openPopup();this.bindPopupEvent()};this.createHtml=function(){$("#zoom").remove();$("body").append('<div id="zoom"><a class="finish"></a><a class="close"></a><div class="content loading"></div></div>');zoom=$("#zoom").hide(),zoomContent=$("#zoom .content"),zoomedIn=false,openedImage=null,windowWidth=$(window).width(),windowHeight=$(window).height()};this.openPopup=function(){var self=this;var image=$(new Image()).attr("id","tailorImg").hide();$("#zoom .previous, #zoom .next").show();if(!zoomedIn){zoomedIn=true;zoom.show();$("body").addClass("zoomed")}zoomContent.html(image).delay(500).addClass("loading");image.load(render).attr("src",para.src);function render(){var image=$(this),borderWidth=parseInt(zoomContent.css("borderLeftWidth")),maxImageWidth=windowWidth-(borderWidth*2),maxImageHeight=windowHeight-(borderWidth*2),imageWidth=image.width(),imageHeight=image.height();if(imageWidth==zoomContent.width()&&imageWidth<=maxImageWidth&&imageHeight==zoomContent.height()&&imageHeight<=maxImageHeight){show(image);return}zoomContent.animate({width:image.width(),height:image.height(),marginTop:-(image.height()/2)-borderWidth,marginLeft:-(image.width()/2)-borderWidth},200,function(){show(image)
|
||||
});function show(image){image.show();zoomContent.removeClass("loading");self.createTailorPlug()}}};this.createTailorPlug=function(){var width=$("#tailorImg").width();var height=$("#tailorImg").height();var x1=(width/2)-(width/5);var y1=(height/2)-(height/5);var x2=(width/2)+(width/5);var y2=(height/2)+(height/5);var api=$.Jcrop("#tailorImg",{setSelect:[x1,y1,x2,y2],onChange:setCoords,onSelect:setCoords});function setCoords(obj){tailorVal={"leftX":obj.x,"leftY":obj.y,"rightX":obj.x2,"rightY":obj.y2,"width":obj.w,"height":obj.h}}};this.bindPopupEvent=function(){var self=this;zoom.bind("click",function(event){event.preventDefault();if($(event.target).attr("id")=="zoom"){self.closePopup(event)}});$("#zoom .finish").bind("click",function(event){var quondamImgInfo=new Object();quondamImgInfo["width"]=$(".jcrop-holder>div>div>img").width();quondamImgInfo["height"]=$(".jcrop-holder>div>div>img").height();para.onTailor(tailorVal,quondamImgInfo);self.closePopup(event)});$("#zoom .close").bind("click",function(event){self.closePopup(event)})};this.closePopup=function(event){if(event){event.preventDefault()}zoomedIn=false;openedImage=null;zoom.hide();$("body").removeClass("zoomed");zoomContent.empty()};this.init()})}})(jQuery);var ZYFILE={fileInput:null,uploadInput:null,dragDrop:null,url:"",uploadFile:[],lastUploadFile:[],perUploadFile:[],fileNum:0,filterFile:function(files){return files},onSelect:function(selectFile,files){},onDelete:function(file,files){},onProgress:function(file,loaded,total){},onSuccess:function(file,responseInfo){},onFailure:function(file,responseInfo){},onComplete:function(responseInfo){},funDragHover:function(e){e.stopPropagation();e.preventDefault();this[e.type==="dragover"?"onDragOver":"onDragLeave"].call(e.target);return this},funGetFiles:function(e){var self=this;this.funDragHover(e);var files=e.target.files||e.dataTransfer.files;self.lastUploadFile=this.uploadFile;this.uploadFile=this.uploadFile.concat(this.filterFile(files));var tmpFiles=[];var lArr=[];
|
||||
var uArr=[];$.each(self.lastUploadFile,function(k,v){lArr.push(v.name)});$.each(self.uploadFile,function(k,v){uArr.push(v.name)});$.each(uArr,function(k,v){if($.inArray(v,lArr)<0){tmpFiles.push(self.uploadFile[k])}});this.uploadFile=tmpFiles;this.funDealtFiles();return true},funDealtFiles:function(){var self=this;$.each(this.uploadFile,function(k,v){v.index=self.fileNum;self.fileNum++});var selectFile=this.uploadFile;this.perUploadFile=this.perUploadFile.concat(this.uploadFile);this.uploadFile=this.lastUploadFile.concat(this.uploadFile);this.onSelect(selectFile,this.uploadFile);console.info("继续选择");console.info(this.uploadFile);return this},funDeleteFile:function(delFileIndex,isCb){var self=this;var tmpFile=[];var delFile=this.perUploadFile[delFileIndex];$.each(this.uploadFile,function(k,v){if(delFile!=v){tmpFile.push(v)}});this.uploadFile=tmpFile;if(isCb){self.onDelete(delFile,this.uploadFile)}console.info("还剩这些文件没有上传:");console.info(this.uploadFile);return true},funUploadFiles:function(){var self=this;$.each(this.uploadFile,function(k,v){self.funUploadFile(v)})},funUploadFile:function(file){var self=this;var formdata=new FormData();formdata.append("file",file);if($("#uploadTailor_"+file.index).length>0){formdata.append("tailor",$("#uploadTailor_"+file.index).attr("tailor"))}var xhr=new XMLHttpRequest();xhr.upload.addEventListener("progress",function(e){self.onProgress(file,e.loaded,e.total)},false);xhr.addEventListener("load",function(e){self.funDeleteFile(file.index,false);self.onSuccess(file,xhr.responseText);if(self.uploadFile.length==0){self.onComplete("全部完成")}},false);xhr.addEventListener("error",function(e){self.onFailure(file,xhr.responseText)},false);xhr.open("POST",self.url,true);xhr.send(formdata)},funReturnNeedFiles:function(){return this.uploadFile},init:function(){var self=this;if(this.dragDrop){this.dragDrop.addEventListener("dragover",function(e){self.funDragHover(e)},false);this.dragDrop.addEventListener("dragleave",function(e){self.funDragHover(e)},false);
|
||||
this.dragDrop.addEventListener("drop",function(e){self.funGetFiles(e)},false)}if(self.fileInput){this.fileInput.addEventListener("change",function(e){self.funGetFiles(e)},false)}if(self.uploadInput){this.uploadInput.addEventListener("click",function(e){self.funUploadFiles(e)},false)}}};(function($,undefined){$.fn.zyUpload=function(options,param){var otherArgs=Array.prototype.slice.call(arguments,1);if(typeof options=="string"){var fn=this[0][options];if($.isFunction(fn)){return fn.apply(this,otherArgs)}else{throw ("zyUpload - No such method: "+options)}}return this.each(function(){var para={};var self=this;var defaults={width:"700px",height:"400px",itemWidth:"140px",itemHeight:"120px",url:"/upload/UploadAction",fileType:[],fileSize:51200000,multiple:true,dragDrop:true,tailor:false,del:true,finishDel:false,onSelect:function(selectFiles,allFiles){},onDelete:function(file,files){},onSuccess:function(file,response){},onFailure:function(file,response){},onComplete:function(response){}};para=$.extend(defaults,options);this.init=function(){this.createHtml();this.createCorePlug()};this.createHtml=function(){var multiple="";para.multiple?multiple="multiple":multiple="";var html="";if(para.dragDrop){html+='<form id="uploadForm" action="'+para.url+'" method="post" enctype="multipart/form-data">';html+=' <div class="upload_box">';html+=' <div class="upload_main">';html+=' <div class="upload_choose">';html+=' <div class="convent_choice">';html+=' <div class="andArea">';html+=' <div class="filePicker">点击选择文件</div>';html+=' <input id="fileImage" type="file" size="30" name="fileselect[]" '+multiple+">";html+=" </div>";html+=" </div>";html+=' <span id="fileDragArea" class="upload_drag_area">或者将文件拖到此处</span>';html+=" </div>";html+=' <div class="status_bar">';html+=' <div id="status_info" class="info">选中0张文件,共0B。</div>';html+=' <div class="btns">';html+=' <div class="webuploader_pick">继续选择</div>';html+=' <div class="upload_btn">开始上传</div>';
|
||||
html+=" </div>";html+=" </div>";html+=' <div id="preview" class="upload_preview"></div>';html+=" </div>";html+=' <div class="upload_submit">';html+=' <button type="button" id="fileSubmit" class="upload_submit_btn">确认上传文件</button>';html+=" </div>";html+=' <div id="uploadInf" class="upload_inf"></div>';html+=" </div>";html+="</form>"}else{var imgWidth=parseInt(para.itemWidth.replace("px",""))-15;html+='<form id="uploadForm" action="'+para.url+'" method="post" enctype="multipart/form-data">';html+=' <div class="upload_box">';html+=' <div class="upload_main single_main">';html+=' <div class="status_bar">';html+=' <div id="status_info" class="info">选中0张文件,共0B。</div>';html+=' <div class="btns">';html+=' <input id="fileImage" type="file" size="30" name="fileselect[]" '+multiple+">";html+=' <div class="webuploader_pick">选择文件</div>';html+=' <div class="upload_btn">开始上传</div>';html+=" </div>";html+=" </div>";html+=' <div id="preview" class="upload_preview">';html+=' <div class="add_upload">';html+=' <a style="height:'+para.itemHeight+";width:"+para.itemWidth+';" title="点击添加文件" id="rapidAddImg" class="add_imgBox" href="javascript:void(0)">';html+=' <div class="uploadImg" style="width:'+imgWidth+'px">';html+=' <img class="upload_image" src="zyupload/skins/images/add_img.png" style="width:expression(this.width > '+imgWidth+" ? "+imgWidth+'px : this.width)" />';html+=" </div>";html+=" </a>";html+=" </div>";html+=" </div>";html+=" </div>";html+=' <div class="upload_submit">';html+=' <button type="button" id="fileSubmit" class="upload_submit_btn">确认上传文件</button>';html+=" </div>";html+=' <div id="uploadInf" class="upload_inf"></div>';html+=" </div>";html+="</form>"}$(self).append(html).css({"width":para.width,"height":para.height});this.addEvent()};this.funSetStatusInfo=function(files){var size=0;var num=files.length;$.each(files,function(k,v){size+=v.size});if(size>1024*1024){size=(Math.round(size*100/(1024*1024))/100).toString()+"MB"
|
||||
}else{size=(Math.round(size*100/1024)/100).toString()+"KB"}$("#status_info").html("选中"+num+"张文件,共"+size+"。")};this.funFilterEligibleFile=function(files){var arrFiles=[];for(var i=0,file;file=files[i];i++){var newStr=file.name.split("").reverse().join("");if(newStr.split(".")[0]!=null){var type=newStr.split(".")[0].split("").reverse().join("");if(jQuery.inArray(type,para.fileType)>-1){if(file.size>=para.fileSize){alert('您这个"'+file.name+'"文件大小过大')}else{arrFiles.push(file)}}else{alert('您这个"'+file.name+'"上传类型不符合')}}else{alert('您这个"'+file.name+'"没有类型, 无法识别')}}return arrFiles};this.funDisposePreviewHtml=function(file,e){var html="";var imgWidth=parseInt(para.itemWidth.replace("px",""))-15;var imgHeight=parseInt(para.itemHeight.replace("px",""))-10;var editHtml="";var delHtml="";if(para.tailor){editHtml='<span class="file_edit" data-index="'+file.index+'" title="编辑"></span>'}if(para.del){delHtml='<span class="file_del" data-index="'+file.index+'" title="删除"></span>'}var newStr=file.name.split("").reverse().join("");var type=newStr.split(".")[0].split("").reverse().join("");var fileImgSrc="zyupload/skins/images/fileType/";if(type=="rar"){fileImgSrc=fileImgSrc+"rar.png"}else{if(type=="zip"){fileImgSrc=fileImgSrc+"zip.png"}else{if(type=="txt"){fileImgSrc=fileImgSrc+"txt.png"}else{if(type=="ppt"){fileImgSrc=fileImgSrc+"ppt.png"}else{if(type=="xls"){fileImgSrc=fileImgSrc+"xls.png"}else{if(type=="pdf"){fileImgSrc=fileImgSrc+"pdf.png"}else{if(type=="psd"){fileImgSrc=fileImgSrc+"psd.png"}else{if(type=="ttf"){fileImgSrc=fileImgSrc+"ttf.png"}else{if(type=="swf"){fileImgSrc=fileImgSrc+"swf.png"}else{fileImgSrc=fileImgSrc+"file.png"}}}}}}}}}if(file.type.indexOf("image")==0){html+='<div id="uploadList_'+file.index+'" class="upload_append_list">';html+=' <div class="file_bar">';html+=' <div style="padding:5px;">';html+=' <p class="file_name" title="'+file.name+'">'+file.name+"</p>";html+=editHtml;html+=delHtml;html+=" </div>";html+=" </div>";html+=' <a style="height:'+para.itemHeight+";width:"+para.itemWidth+';" href="#" class="imgBox">';
|
||||
html+=' <div class="uploadImg" style="width:'+imgWidth+"px;max-width:"+imgWidth+"px;max-height:"+imgHeight+'px;">';html+=' <img id="uploadImage_'+file.index+'" class="upload_image" src="'+e.target.result+'" style="width:expression(this.width > '+imgWidth+" ? "+imgWidth+'px : this.width);" />';html+=" </div>";html+=" </a>";html+=' <p id="uploadProgress_'+file.index+'" class="file_progress"></p>';html+=' <p id="uploadFailure_'+file.index+'" class="file_failure">上传失败,请重试</p>';html+=' <p id="uploadTailor_'+file.index+'" class="file_tailor" tailor="false">裁剪完成</p>';html+=' <p id="uploadSuccess_'+file.index+'" class="file_success"></p>';html+="</div>"}else{html+='<div id="uploadList_'+file.index+'" class="upload_append_list">';html+=' <div class="file_bar">';html+=' <div style="padding:5px;">';html+=' <p class="file_name">'+file.name+"</p>";html+=delHtml;html+=" </div>";html+=" </div>";html+=' <a style="height:'+para.itemHeight+";width:"+para.itemWidth+';" href="#" class="imgBox">';html+=' <div class="uploadImg" style="width:'+imgWidth+'px">';html+=' <img id="uploadImage_'+file.index+'" class="upload_file" src="'+fileImgSrc+'" style="width:expression(this.width > '+imgWidth+" ? "+imgWidth+'px : this.width)" />';html+=" </div>";html+=" </a>";html+=' <p id="uploadProgress_'+file.index+'" class="file_progress"></p>';html+=' <p id="uploadFailure_'+file.index+'" class="file_failure">上传失败,请重试</p>';html+=' <p id="uploadSuccess_'+file.index+'" class="file_success"></p>';html+="</div>"}return html};this.createPopupPlug=function(imgSrc,index,name){$("body").zyPopup({src:imgSrc,index:index,name:name,onTailor:function(val,quondamImgInfo){var nWidth=parseInt(para.itemWidth.replace("px",""));var nHeight=parseInt(para.itemHeight.replace("px",""));var qWidth=val.width;var qHeight=val.height;var ratio=nWidth/qWidth;var width=ratio*quondamImgInfo.width;var height=ratio*quondamImgInfo.height;var left=val.leftX*ratio;var top=val.rightY*ratio-qHeight*ratio;$("#uploadImage_"+index).css({"width":width,"height":height,"margin-left":-left,"margin-top":-top});
|
||||
$("#uploadTailor_"+index).show();console.info(val);var tailor="{'leftX':"+val.leftX+",'leftY':"+val.leftY+",'rightX':"+val.rightX+",'rightY':"+val.rightY+",'width':"+val.width+",'height':"+val.height+"}";$("#uploadTailor_"+index).attr("tailor",tailor)}})};this.createCorePlug=function(){var params={fileInput:$("#fileImage").get(0),uploadInput:$("#fileSubmit").get(0),dragDrop:$("#fileDragArea").get(0),url:$("#uploadForm").attr("action"),filterFile:function(files){return self.funFilterEligibleFile(files)},onSelect:function(selectFiles,allFiles){para.onSelect(selectFiles,allFiles);self.funSetStatusInfo(ZYFILE.funReturnNeedFiles());var html="",i=0;var funDealtPreviewHtml=function(){file=selectFiles[i];if(file){var reader=new FileReader();reader.onload=function(e){html+=self.funDisposePreviewHtml(file,e);i++;funDealtPreviewHtml()};reader.readAsDataURL(file)}else{funAppendPreviewHtml(html)}};var funAppendPreviewHtml=function(html){if(para.dragDrop){$("#preview").append(html)}else{$(".add_upload").before(html)}funBindDelEvent();funBindHoverEvent()};var funBindDelEvent=function(){if($(".file_del").length>0){$(".file_del").click(function(){ZYFILE.funDeleteFile(parseInt($(this).attr("data-index")),true);return false})}if($(".file_edit").length>0){$(".file_edit").click(function(){var imgIndex=$(this).attr("data-index");var imgName=$(this).prev(".file_name").attr("title");var imgSrc=$("#uploadImage_"+imgIndex).attr("src");self.createPopupPlug(imgSrc,imgIndex,imgName);return false})}};var funBindHoverEvent=function(){$(".upload_append_list").hover(function(e){$(this).find(".file_bar").addClass("file_hover")},function(e){$(this).find(".file_bar").removeClass("file_hover")})};funDealtPreviewHtml()},onDelete:function(file,files){para.onDelete(file,files);$("#uploadList_"+file.index).fadeOut();self.funSetStatusInfo(files);console.info("剩下的文件");console.info(files)},onProgress:function(file,loaded,total){var eleProgress=$("#uploadProgress_"+file.index),percent=(loaded/total*100).toFixed(2)+"%";
|
||||
if(eleProgress.is(":hidden")){eleProgress.show()}eleProgress.css("width",percent)},onSuccess:function(file,response){para.onSuccess(file,response);$("#uploadProgress_"+file.index).hide();$("#uploadSuccess_"+file.index).show();if(para.finishDel){$("#uploadList_"+file.index).fadeOut();self.funSetStatusInfo(ZYFILE.funReturnNeedFiles())}if($("#uploadTailor_"+file.index).length>0){$("#uploadTailor_"+file.index).hide()}},onFailure:function(file,response){para.onFailure(file,response);$("#uploadProgress_"+file.index).hide();$("#uploadSuccess_"+file.index).show();if($("#uploadTailor_"+file.index).length>0){$("#uploadTailor_"+file.index).hide()}$("#uploadInf").append("<p>文件"+file.name+"上传失败!</p>")},onComplete:function(response){para.onComplete(response);console.info(response)},onDragOver:function(){$(this).addClass("upload_drag_hover")},onDragLeave:function(){$(this).removeClass("upload_drag_hover")}};ZYFILE=$.extend(ZYFILE,params);ZYFILE.init()};this.addEvent=function(){if($(".filePicker").length>0){$(".filePicker").bind("click",function(e){$("#fileImage").click()})}$(".webuploader_pick").bind("click",function(e){$("#fileImage").click()});$(".upload_btn").bind("click",function(e){if(ZYFILE.funReturnNeedFiles().length>0){$("#fileSubmit").click()}else{alert("请先选中文件再点击上传")}});if($("#rapidAddImg").length>0){$("#rapidAddImg").bind("click",function(e){$("#fileImage").click()})}};this.init()})}})(jQuery);
|
||||
@@ -0,0 +1 @@
|
||||
html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #eee;border-left-width:6px;background-color:#FAFAFA;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:40px;line-height:40px;border-bottom:1px solid #eee}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 10px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view .layui-code-ol li:first-child{padding-top:10px}.layui-code-view .layui-code-ol li:last-child{padding-bottom:10px}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none}.layui-code-demo .layui-code{visibility:visible!important;margin:-15px;border-top:none;border-right:none;border-bottom:none}.layui-code-demo .layui-tab-content{padding:15px;border-top:none}
|
||||
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 5.7 KiB |
|
After Width: | Height: | Size: 701 B |