diff --git a/app/article/common.php b/app/article/common.php index 0a1351e..7e81e5e 100644 --- a/app/article/common.php +++ b/app/article/common.php @@ -10,6 +10,19 @@ ====================== */ use think\facade\Db; + +//读取知识分类子分类ids +function admin_article_cate_son($id = 0, $is_self = 1) +{ + $article = Db::name('ArticleCate')->order('id desc')->select()->toArray(); + $article_list = get_data_node($article, $id); + $article_array = array_column($article_list, 'id'); + if ($is_self == 1) { + //包括自己在内 + $article_array[] = $id; + } + return $article_array; +} //读取知识分类列表 function article_cate() { diff --git a/app/article/controller/Cate.php b/app/article/controller/Cate.php index 4923c66..5b4f5a5 100644 --- a/app/article/controller/Cate.php +++ b/app/article/controller/Cate.php @@ -89,7 +89,7 @@ class Cate extends BaseController if ($cate_count > 0) { return to_assign(1, "该分类下还有子分类,无法删除"); } - $content_count = Db::name('Article')->where(["article_cate_id" => $id])->count(); + $content_count = Db::name('Article')->where(["cate_id" => $id])->count(); if ($content_count > 0) { return to_assign(1, "该分类下还有文章,无法删除"); } diff --git a/app/base/view/common/base.html b/app/base/view/common/base.html index 0107a1e..2716b13 100644 --- a/app/base/view/common/base.html +++ b/app/base/view/common/base.html @@ -1,10 +1,10 @@ - + - + {block name="meta"} {/block} diff --git a/app/common.php b/app/common.php index 7c89485..8fb16b8 100644 --- a/app/common.php +++ b/app/common.php @@ -231,6 +231,20 @@ function get_position() return $position; } +//读取行业 +function get_industry() +{ + $industry = Db::name('Industry')->where(['status' => 1])->select()->toArray(); + return $industry; +} + +//读取服务 +function get_services() +{ + $services = Db::name('Services')->where(['status' => 1])->select()->toArray(); + return $services; +} + //根据流程模块读取某部门某模块的审核流程 function get_flows($type=1,$department=0) { diff --git a/app/contract/config/install.sql b/app/contract/config/install.sql index c43bd6e..604f9ea 100644 --- a/app/contract/config/install.sql +++ b/app/contract/config/install.sql @@ -120,4 +120,5 @@ CREATE TABLE `oa_data_auth` ( PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '数据权限表'; -INSERT INTO `oa_data_auth` VALUES ((SELECT MAX(id) +1 FROM `oa_data_auth` a), '合同管理员','contract_admin','拥有该权限的员工可以查看、编辑、审核、作废、中止所有合同。', 'contract', '', 1656143065, 0); \ No newline at end of file + +INSERT INTO `oa_data_auth` VALUES ((SELECT MAX(id) +1 FROM `oa_data_auth` a), '合同管理员','contract_admin','拥有该权限的员工可以查看、编辑、审核、作废、中止所有合同。', 'contract', '',0,0,0, 1656143065, 0); \ No newline at end of file diff --git a/app/contract/controller/Index.php b/app/contract/controller/Index.php index 666f523..ec84b5f 100644 --- a/app/contract/controller/Index.php +++ b/app/contract/controller/Index.php @@ -132,7 +132,7 @@ class Index extends BaseController } } - //文章添加&&编辑 + //添加&&编辑 public function add() { $param = get_params(); diff --git a/app/customer/common.php b/app/customer/common.php new file mode 100644 index 0000000..27c92cb --- /dev/null +++ b/app/customer/common.php @@ -0,0 +1,109 @@ +where(['id' => $customer_id])->find(); + //是否是客户管理员 + $auth = isAuth($uid,'customer_admin'); + if($auth==1){ + return $customer; + } + $auth_array=[]; + if($customer['belong_uid']==0){ + return $customer; + } + if(!empty($customer['share_ids']) && $level==0){ + $auth_array = explode(",",$customer['share_ids']); + } + array_push($auth_array,$customer['belong_uid']); + if(!in_array($uid,$auth_array)){ + if($ajax == 1){ + to_assign(1,'无权限操作'); + } + else{ + throw new \think\exception\HttpException(405, '无权限访问'); + } + } + else{ + return $customer; + } +} + +//读取分类列表 +function customer_grade() +{ + $cate = Db::name('CustomerGrade')->where(['status' => 1])->select()->toArray(); + return $cate; +} + +//读取签约主体 +function customer_source() +{ + $source = Db::name('CustomerSource')->where(['status' => 1])->select()->toArray(); + return $source; +} + +//读取联系人 +function customer_contact($cid) +{ + $contact = Db::name('CustomerContact')->where(['delete_time' => 0,'cid'=>$cid])->select()->toArray(); + return $contact; +} + +//读取销售机会 +function customer_chance($cid) +{ + $chance = Db::name('CustomerChance')->where(['delete_time' => 0,'cid'=>$cid])->select()->toArray(); + return $chance; +} + +//跟进方式 +function trace_type() +{ + $type = ['其他','电话','微信','QQ','上门']; + return $type; +} + +//跟进阶段 +function trace_stage() +{ + $stage = ['未设置','立项评估','初期沟通','需求分析','方案制定','商务谈判','合同签订','失单']; + return $stage; +} + + +//写入日志 +function to_log($uid,$type=0,$new,$old) +{ + $log_data = []; + $key_array = ['id', 'create_time', 'update_time', 'admin_id','belong_did','belong_time','distribute_time']; + $type_array = ['customer_id', 'trace_id', 'contact_id', 'chance_id']; + foreach ($new as $key => $value) { + if (!in_array($key, $key_array)) { + if(isset($old[$key]) && ($old[$key]!=$value)){ + $log_data[] = array( + 'field' => $key, + 'type' => $type, + $type_array[$type] => $new['id'], + 'admin_id' => $uid, + 'old_content' => $old[$key], + 'new_content' => $value, + 'create_time' => time(), + ); + } + } + } + Db::name('CustomerLog')->strict(false)->field(true)->insertAll($log_data); +} \ No newline at end of file diff --git a/app/customer/config/install.gouguoa b/app/customer/config/install.gouguoa new file mode 100644 index 0000000..6b2a389 --- /dev/null +++ b/app/customer/config/install.gouguoa @@ -0,0 +1 @@ +勾股OA模块安装鉴定文件,请勿删除!!!!!此次模块标识为:customer \ No newline at end of file diff --git a/app/customer/config/install.sql b/app/customer/config/install.sql new file mode 100644 index 0000000..50fa756 --- /dev/null +++ b/app/customer/config/install.sql @@ -0,0 +1,219 @@ +-- ---------------------------- +-- Table structure for oa_industry +-- ---------------------------- +DROP TABLE IF EXISTS `oa_industry`; +CREATE TABLE `oa_industry` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `title` varchar(100) NOT NULL DEFAULT '' COMMENT '行业名称', + `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '状态:-1删除 0禁用 1启用', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '行业'; + +-- ---------------------------- +-- Records of oa_industry +-- ---------------------------- +INSERT INTO `oa_industry` VALUES (1, '工业品企业', 1, 1637987189, 0); +INSERT INTO `oa_industry` VALUES (2, '互联网企业', 1, 1637987199, 0); +INSERT INTO `oa_industry` VALUES (3, '服务行业', 1, 1637987199, 0); +INSERT INTO `oa_industry` VALUES (4, '消费品企业', 1, 1637987199, 0); +INSERT INTO `oa_industry` VALUES (5, '原材料企业', 1, 1637987199, 0); +INSERT INTO `oa_industry` VALUES (6, '农业企业', 1, 1637987199, 0); +INSERT INTO `oa_industry` VALUES (7, '科技企业', 1, 1637987199, 0); +INSERT INTO `oa_industry` VALUES (8, '其他行业', 1, 1637987199, 0); + +-- ---------------------------- +-- Table structure for oa_customer_grade +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_grade`; +CREATE TABLE `oa_customer_grade` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `title` varchar(100) NOT NULL DEFAULT '' COMMENT '客户等级名称', + `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '状态:-1删除 0禁用 1启用', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户等级'; + +-- ---------------------------- +-- Records of oa_customer_grade +-- ---------------------------- +INSERT INTO `oa_customer_grade` VALUES (1, '普通客户', 1, 1637987189, 0); +INSERT INTO `oa_customer_grade` VALUES (2, 'VIP客户', 1, 1637987199, 0); +INSERT INTO `oa_customer_grade` VALUES (3, '白银客户', 1, 1637987199, 0); +INSERT INTO `oa_customer_grade` VALUES (4, '黄金客户', 1, 1637987199, 0); +INSERT INTO `oa_customer_grade` VALUES (5, '钻石客户', 1, 1637987199, 0); + +-- ---------------------------- +-- Table structure for oa_customer_source +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_source`; +CREATE TABLE `oa_customer_source` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `title` varchar(100) NOT NULL DEFAULT '' COMMENT '客户渠道名称', + `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '状态:-1删除 0禁用 1启用', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户来源'; + +-- ---------------------------- +-- Records of oa_customer_source +-- ---------------------------- +INSERT INTO `oa_customer_source` VALUES (1, '独立开发', 1, 1637987189, 0); +INSERT INTO `oa_customer_source` VALUES (2, '微信公众号', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (3, '今日头条', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (4, '百度搜索', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (5, '销售活动', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (6, '电话来访', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (7, '客户介绍', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (8, '其他来源', 1, 1637987199, 0); + +-- ---------------------------- +-- Table structure for oa_customer +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer`; +CREATE TABLE `oa_customer` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL DEFAULT '' COMMENT '客户名称', + `source_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '客户来源id', + `grade_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '客户等级id', + `industry_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '所属行业id', + `services_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '客户意向id', + `provinceid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '省份id', + `cityid` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '城市id', + `distid` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '区县id', + `townid` bigint(20) NOT NULL DEFAULT 0 COMMENT '城镇id', + `address` varchar(255) NOT NULL DEFAULT '' COMMENT '客户联系地址', + `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '客户状态:0未设置,1新进客户,2跟进客户,3正式客户,4流失客户', + `intent_status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '意向状态:0未设置,1意向不明,2意向模糊,3意向一般,4意向强烈', + `contact_first` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '第一联系人id', + `admin_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '录入人', + `belong_uid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '所属人', + `belong_did` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '所属部门', + `belong_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '获取时间', + `distribute_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '分配时间', + `share_ids` varchar(500) NOT NULL DEFAULT '' COMMENT '共享人员,如:1,2,3', + `content` text NULL COMMENT '客户描述', + `market` text NULL COMMENT '主要经营业务', + `remark` text NULL COMMENT '备注信息', + `bank` varchar(60) NOT NULL DEFAULT '' COMMENT '开户银行', + `bank_sn` varchar(60) NOT NULL DEFAULT '' COMMENT '银行帐号', + `tax_num` varchar(100) NOT NULL DEFAULT '' COMMENT '纳税人识别号', + `cperson_mobile` varchar(20) NOT NULL DEFAULT '' COMMENT '开票电话', + `cperson_address` varchar(200) NOT NULL DEFAULT '' COMMENT '开票地址', + `discard_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '废弃时间', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '添加时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '修改时间', + `delete_time` int(11) NOT NULL DEFAULT 0 COMMENT '删除时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1000 CHARACTER SET = utf8mb4 COMMENT = '客户表'; + +-- ---------------------------- +-- Table structure for oa_customer_trace +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_trace`; +CREATE TABLE `oa_customer_trace` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `cid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '客户ID', + `contact_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '联系人id', + `chance_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '销售机会id', + `type` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '跟进方式:0其他,1电话,2微信,3QQ,4上门', + `stage` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '当前阶段:0未设置,1立项评估,2初期沟通,3需求分析,4方案制定,5商务谈判,6合同签订,7失单', + `content` text NULL COMMENT '跟进内容', + `follow_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '跟进时间', + `next_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '下次跟进时间', + `admin_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建人', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + `delete_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '删除时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户跟进记录表'; + +-- ---------------------------- +-- Table structure for oa_customer_contact +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_contact`; +CREATE TABLE `oa_customer_contact` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `cid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '客户ID', + `is_default` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否是第一联系人', + `name` varchar(100) NOT NULL DEFAULT '' COMMENT '姓名', + `sex` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '用户性别:0未知,1男,2女', + `mobile` varchar(20) NOT NULL DEFAULT '' COMMENT '手机号码', + `qq` varchar(20) NOT NULL DEFAULT '' COMMENT 'QQ号', + `wechat` varchar(100) NOT NULL DEFAULT '' COMMENT '微信号', + `email` varchar(100) NOT NULL DEFAULT '' COMMENT '邮件地址', + `nickname` varchar(50) NOT NULL DEFAULT '' COMMENT '称谓', + `department` varchar(50) NOT NULL DEFAULT '' COMMENT '部门', + `position` varchar(50) NOT NULL DEFAULT '' COMMENT '职务', + `admin_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建人', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + `delete_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '删除时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户联系人表'; + +-- ---------------------------- +-- Table structure for oa_customer_chance +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_chance`; +CREATE TABLE `oa_customer_chance` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `title` varchar(255) NOT NULL DEFAULT '' COMMENT '销售机会主题', + `cid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '客户ID', + `contact_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '联系人id', + `services_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '需求服务id', + `stage` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '当前阶段:0未设置,1立项评估,2初期沟通,3需求分析,4方案制定,5商务谈判,6合同签订,7失单', + `content` text NULL COMMENT '需求描述', + `discovery_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '发现时间', + `expected_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '预计签单时间', + `expected_amount` decimal(15, 2) NULL DEFAULT 0.00 COMMENT '预计签单金额', + `admin_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建人', + `belong_uid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '所属人', + `assist_ids` varchar(500) NOT NULL DEFAULT '' COMMENT '协助人员,如:1,2,3', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + `delete_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '删除时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户销售机会表'; + +-- ---------------------------- +-- Table structure for oa_customer_file +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_file`; +CREATE TABLE `oa_customer_file` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `customer_id` int(11) UNSIGNED NOT NULL COMMENT '关联客户id', + `file_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '相关联附件id', + `admin_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建人', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '修改时间', + `delete_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '删除时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户附件关联表'; + +-- ---------------------------- +-- Table structure for oa_customer_log +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_log`; +CREATE TABLE `oa_customer_log` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `type` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '操作类型:0客户,1跟进记录,2客户联系人,3销售机会', + `action` varchar(100) NOT NULL DEFAULT 'edit' COMMENT '动作:add,edit,del,check,upload', + `field` varchar(100) NOT NULL DEFAULT '' COMMENT '字段', + `customer_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '关联客户id', + `trace_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '跟进记录id', + `contact_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '客户联系人id', + `chance_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '销售机会id', + `admin_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '操作人', + `old_content` text NULL COMMENT '修改前的内容', + `new_content` text NULL COMMENT '修改后的内容', + `remark` text NULL COMMENT '补充备注', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户操作记录表'; + + +INSERT INTO `oa_data_auth` VALUES ((SELECT MAX(id) +1 FROM `oa_data_auth` a), '客户管理员','customer_admin','拥有该权限的员工可以查看、转移所有客户。', 'customer', '',0,0,0, 1656143065, 0); \ No newline at end of file diff --git a/app/customer/controller/Api.php b/app/customer/controller/Api.php new file mode 100644 index 0000000..9788dc6 --- /dev/null +++ b/app/customer/controller/Api.php @@ -0,0 +1,356 @@ +order('create_time desc') + ->paginate($rows, false, ['query' => $param]) + ->each(function ($item, $key) { + $item->admin_name = Db::name('Admin')->where(['id' => $item->admin_id])->value('name'); + $item->create_time = date('Y-m-d H:i:s', (int) $item->create_time); + $item->follow_time = date('Y-m-d H:i', (int) $item->follow_time); + $item->next_time = date('Y-m-d H:i', (int) $item->next_time); + $item->stage_name = CustomerTrace::$Stage[(int) $item->stage]; + $item->type_name = CustomerTrace::$Type[(int) $item->type]; + }); + return table_assign(0, '', $content); + } + + //添加跟进记录 + public function add_trace() + { + $param = get_params(); + if (request()->isAjax()) { + if(isset($param['follow_time'])){ + $param['follow_time'] = strtotime($param['follow_time']); + } + if(isset($param['next_time'])){ + $param['next_time'] = strtotime($param['next_time']); + } + if (!empty($param['id']) && $param['id'] > 0) { + $param['update_time'] = time(); + $old = CustomerTrace::where(['id' => $param['id']])->find(); + if($this->uid!=$old['admin_id']){ + return to_assign(1, "只有所属员工才有权限操作"); + } + $res = CustomerTrace::strict(false)->field(true)->update($param); + if ($res) { + add_log('edit', $param['id'], $param); + to_log($this->uid,1,$param,$old); + return to_assign(); + } else { + return to_assign(1, '操作失败'); + } + } else { + $param['create_time'] = time(); + $param['admin_id'] = $this->uid; + $tid = CustomerTrace::strict(false)->field(true)->insertGetId($param); + if ($tid) { + add_log('add', $tid, $param); + $log_data = array( + 'field' => 'new', + 'action' => 'add', + 'type' => 1, + 'customer_id' => $param['cid'], + 'admin_id' => $param['admin_id'], + 'create_time' => time(), + ); + Db::name('CustomerLog')->strict(false)->field(true)->insert($log_data); + return to_assign(); + } else { + return to_assign(1, '操作失败'); + } + } + } else { + $customer_id = isset($param['cid']) ? $param['cid'] : 0; + $id = isset($param['id']) ? $param['id'] : 0; + if ($id > 0) { + View::assign('detail', (new CustomerTrace())->detail($id)); + return view('edit_trace'); + } + $customer_name = Db::name('Customer')->where('id',$customer_id)->value('name'); + View::assign('customer_id', $customer_id); + View::assign('customer_name', $customer_name); + return view(); + } + } + + + //添加跟进记录 + public function view_trace() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $detail = (new CustomerTrace())->detail($id); + if(empty($detail)){ + echo '
找不到该跟进记录
';exit; + } + View::assign('detail',$detail); + return view(); + } + + //删除跟进记录 + public function delete_trace() + { + if (request()->isDelete()) { + $param = get_params(); + $admin_id = Db::name('CustomerTrace')->where(['id' => $param['id']])->value('admin_id'); + if($admin_id != $this->uid){ + return to_assign(1, '你不是该跟进记录的创建人,无权限删除'); + } + $param['delete_time'] = time(); + $res = CustomerTrace::strict(false)->field(true)->update($param); + if ($res) { + add_log('edit', $param['id'], $param); + to_log($this->uid,1,$param,['delete_time'=>0]); + return to_assign(); + } else { + return to_assign(1, '操作失败'); + } + } else { + return to_assign(1, '参数错误'); + } + } + + + //销售机会列表 + public function get_chance() + { + $param = get_params(); + $where = array(); + $where[] = ['delete_time', '=', 0]; + $where[] = ['cid', '=', $param['customer_id']]; + $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; + $content = CustomerChance::where($where) + ->order('create_time desc') + ->paginate($rows, false, ['query' => $param]) + ->each(function ($item, $key) { + $item->belong_name = Db::name('Admin')->where(['id' => $item->belong_uid])->value('name'); + $item->create_time = date('Y-m-d H:i:s', (int) $item->create_time); + $item->discovery_time = date('Y-m-d', (int) $item->discovery_time); + $item->expected_time = date('Y-m-d', (int) $item->expected_time); + $item->stage_name = CustomerTrace::$Stage[(int) $item->stage]; + $item->services_name = Db::name('Services')->where(['id' => $item->services_id])->value('title'); + }); + return table_assign(0, '', $content); + } + + //添加销售机会 + public function add_chance() + { + $param = get_params(); + if (request()->isAjax()) { + if(isset($param['discovery_time'])){ + $param['discovery_time'] = strtotime($param['discovery_time']); + } + if(isset($param['expected_time'])){ + $param['expected_time'] = strtotime($param['expected_time']); + } + if (!empty($param['id']) && $param['id'] > 0) { + $param['update_time'] = time(); + $old = CustomerChance::where(['id' => $param['id']])->find(); + if($this->uid!=$old['admin_id']){ + return to_assign(1, "只有所属员工才有权限操作"); + } + $res = CustomerChance::strict(false)->field(true)->update($param); + if ($res) { + add_log('edit', $param['id'], $param); + to_log($this->uid,3,$param,$old); + return to_assign(); + } else { + return to_assign(1, '操作失败'); + } + } else { + $param['create_time'] = time(); + $param['admin_id'] = $this->uid; + $tid = CustomerChance::strict(false)->field(true)->insertGetId($param); + if ($tid) { + add_log('add', $tid, $param); + $log_data = array( + 'field' => 'new', + 'action' => 'add', + 'type' => 3, + 'customer_id' => $param['cid'], + 'admin_id' => $param['admin_id'], + 'create_time' => time(), + ); + Db::name('CustomerLog')->strict(false)->field(true)->insert($log_data); + return to_assign(); + } else { + return to_assign(1, '操作失败'); + } + } + } else { + $customer_id = isset($param['cid']) ? $param['cid'] : 0; + $id = isset($param['id']) ? $param['id'] : 0; + if ($id > 0) { + View::assign('detail', (new CustomerChance())->detail($id)); + return view('edit_chance'); + } + $customer_name = Db::name('Customer')->where('id',$customer_id)->value('name'); + View::assign('customer_id', $customer_id); + View::assign('customer_name', $customer_name); + return view(); + } + } + + + //添加销售机会 + public function view_chance() + { + $param = get_params(); + $id = isset($param['id']) ? $param['id'] : 0; + $detail = (new CustomerChance())->detail($id); + if(empty($detail)){ + echo '
找不到该销售机会
';exit; + } + View::assign('detail',$detail); + return view(); + } + + //删除销售机会 + public function delete_chance() + { + if (request()->isDelete()) { + $param = get_params(); + $admin_id = Db::name('CustomerChance')->where(['id' => $param['id']])->value('admin_id'); + if($admin_id != $this->uid){ + return to_assign(1, '你不是该跟销售机会的创建人,无权限删除'); + } + $param['delete_time'] = time(); + $res = CustomerChance::strict(false)->field(true)->update($param); + if ($res) { + add_log('edit', $param['id'], $param); + to_log($this->uid,3,$param,['delete_time'=>0]); + return to_assign(); + } else { + return to_assign(1, '操作失败'); + } + } else { + return to_assign(1, '参数错误'); + } + } + + + //获取联系人数据 + public function get_contact() + { + $param = get_params(); + $where = array(); + $where[] = ['delete_time', '=', 0]; + $where[] = ['cid', '=', $param['customer_id']]; + $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; + $content = CustomerContact::where($where) + ->order('create_time desc') + ->paginate($rows, false, ['query' => $param]) + ->each(function ($item, $key) { + $item->admin_name = Db::name('Admin')->where(['id' => $item->admin_id])->value('name'); + $item->create_time = date('Y-m-d H:i:s', (int) $item->create_time); + }); + return table_assign(0, '', $content); + } + + //设置联系人 + public function set_contact() + { + if (request()->isAjax()) { + $param = get_params(); + $detail= Db::name('CustomerContact')->where(['id' => $param['id']])->find(); + CustomerContact::where(['cid' => $detail['cid']])->strict(false)->field(true)->update(['is_default'=>0]); + $res = CustomerContact::where(['id' => $param['id']])->update(['is_default'=>1]); + if ($res) { + add_log('edit', $param['id'], $param); + to_log($this->uid,2,$param,$detail); + return to_assign(); + } else { + return to_assign(1, '操作失败'); + } + } else { + return to_assign(1, '参数错误'); + } + } + + + //添加附件 + public function add_file() + { + $param = get_params(); + $param['create_time'] = time(); + $param['admin_id'] = $this->uid; + $fid = Db::name('CustomerFile')->strict(false)->field(true)->insertGetId($param); + if ($fid) { + $log_data = array( + 'field' => 'file', + 'action' => 'upload', + 'customer_id' => $param['customer_id'], + 'admin_id' => $param['admin_id'], + 'old_content' => '', + 'new_content' => $param['file_name'], + 'create_time' => time(), + ); + Db::name('CustomerLog')->strict(false)->field(true)->insert($log_data); + return to_assign(0, '上传成功', $fid); + } + } + + //删除附件 + public function delete_file() + { + if (request()->isDelete()) { + $id = get_params("id"); + $data['id'] = $id; + $data['delete_time'] = time(); + if (Db::name('CustomerFile')->update($data) !== false) { + $detail = Db::name('CustomerFile')->where('id', $id)->find(); + $file_name = Db::name('File')->where('id', $detail['file_id'])->value('name'); + $log_data = array( + 'field' => 'file', + 'action' => 'delete', + 'customer_id' => $detail['customer_id'], + 'admin_id' => $this->uid, + 'new_content' => $file_name, + 'create_time' => time(), + ); + Db::name('CustomerLog')->strict(false)->field(true)->insert($log_data); + return to_assign(0, "删除成功"); + } else { + return to_assign(1, "删除失败"); + } + } else { + return to_assign(1, "错误的请求"); + } + } + + //操作日志列表 + public function customer_log() + { + $param = get_params(); + $list = new CustomerLog(); + $content = $list->customer_log($param); + return to_assign(0, '', $content); + } + +} diff --git a/app/customer/controller/Contact.php b/app/customer/controller/Contact.php new file mode 100644 index 0000000..b2b3b06 --- /dev/null +++ b/app/customer/controller/Contact.php @@ -0,0 +1,143 @@ +isAjax()) { + $param = get_params(); + $where = array(); + $whereOr = array(); + if (!empty($param['keywords'])) { + $where[] = ['a.id|a.name', 'like', '%' . $param['keywords'] . '%']; + } + $where[] = ['a.delete_time', '=', 0]; + + $uid = $this->uid; + $auth = isAuth($uid,'customer_admin'); + if($auth==0){ + $dids = get_department_son($this->did,0); + if(!empty($dids)){ + $whereOr[] =['c.belong_did', 'in', $dids]; + } + $whereOr[] =['c.belong_uid', '=', $uid]; + $whereOr[] = ['', 'exp', Db::raw("FIND_IN_SET('{$uid}',c.share_ids)")]; + } + + $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; + $content = CustomerContact::where($where) + ->where(function ($query) use($whereOr) { + $query->whereOr($whereOr); + }) + ->field('a.*,c.name as customer') + ->alias('a') + ->join('customer c', 'a.cid = c.id') + ->order('a.create_time desc') + ->paginate($rows, false, ['query' => $param]) + ->each(function ($item, $key) { + $item->create_time = date('Y-m-d H:i:s', (int) $item->create_time); + }); + return table_assign(0, '', $content); + } else { + return view(); + } + } + //添加 + public function contact_add() + { + $param = get_params(); + if (request()->isAjax()) { + if (!empty($param['id']) && $param['id'] > 0) { + try { + validate(CustomerContactCheck::class)->scene('edit')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $detail= Db::name('CustomerContact')->where(['id' => $param['id']])->find(); + $data['update_time'] = time(); + $res = Db::name('CustomerContact')->strict(false)->field(true)->update($param); + if ($res) { + add_log('edit', $param['id'], $param); + to_log($this->uid,2,$param,$detail); + } + return to_assign(); + } else { + try { + validate(CustomerContactCheck::class)->scene('add')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $param['admin_id'] = $this->uid; + $param['create_time'] = time(); + $insertId = Db::name('CustomerContact')->strict(false)->field(true)->insertGetId($param); + if ($insertId) { + $log_data = array( + 'field' => 'new', + 'action' => 'add', + 'type' => 2, + 'customer_id' => $insertId, + 'admin_id' => $param['admin_id'], + 'create_time' => time(), + ); + Db::name('CustomerLog')->strict(false)->field(true)->insert($log_data); + add_log('add', $insertId, $param); + } + return to_assign(); + } + } else { + $customer_id = isset($param['cid']) ? $param['cid'] : 0; + $id = isset($param['id']) ? $param['id'] : 0; + if ($id > 0) { + View::assign('detail', (new CustomerContact())->detail($id)); + return view('contact_edit'); + } + $customer_name = Db::name('Customer')->where('id',$customer_id)->value('name'); + View::assign('customer_id', $customer_id); + View::assign('customer_name', $customer_name); + return view(); + } + } + + //设置 + public function contact_del() + { + if (request()->isDelete()) { + $param = get_params(); + $admin_id = Db::name('CustomerContact')->where(['id' => $param['id']])->value('admin_id'); + if($admin_id != $this->uid){ + return to_assign(1, '你不是该联系人的创建人,无权限删除'); + } + $param['delete_time'] = time(); + $res = CustomerContact::strict(false)->field(true)->update($param); + if ($res) { + add_log('edit', $param['id'], $param); + to_log($this->uid,2,$param,['delete_time'=>0]); + return to_assign(); + } else { + return to_assign(1, '操作失败'); + } + } else { + return to_assign(1, '参数错误'); + } + } + + +} diff --git a/app/customer/controller/Grade.php b/app/customer/controller/Grade.php new file mode 100644 index 0000000..7935236 --- /dev/null +++ b/app/customer/controller/Grade.php @@ -0,0 +1,102 @@ +isPost()) { + $param['update_time'] = time(); + $res = Db::name('DataAuth')->strict(false)->field(true)->update($param); + return to_assign(); + } else { + $detail = Db::name('DataAuth')->where('name','customer_admin')->find(); + $uids = Db::name('Admin')->where('id', 'in', $detail['uids'])->column('name'); + $detail['unames'] = implode(',', $uids); + View::assign('detail', $detail); + return view(); + } + } + + //类别 + public function index() + { + if (request()->isAjax()) { + $cate = Db::name('CustomerGrade')->order('create_time asc')->select(); + return to_assign(0, '', $cate); + } else { + return view(); + } + } + //添加 + public function grade_add() + { + if (request()->isAjax()) { + $param = get_params(); + if (!empty($param['id']) && $param['id'] > 0) { + try { + validate(CustomerGradeCheck::class)->scene('edit')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $data['update_time'] = time(); + $res = Db::name('CustomerGrade')->strict(false)->field(true)->update($param); + if ($res) { + add_log('edit', $param['id'], $param); + } + return to_assign(); + } else { + try { + validate(CustomerGradeCheck::class)->scene('add')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $param['create_time'] = time(); + $insertId = Db::name('CustomerGrade')->strict(false)->field(true)->insertGetId($param); + if ($insertId) { + add_log('add', $insertId, $param); + } + return to_assign(); + } + } + } + + //类别设置 + public function grade_check() + { + $param = get_params(); + $res = Db::name('CustomerGrade')->strict(false)->field('id,status')->update($param); + if ($res) { + if($param['status'] == 0){ + add_log('disable', $param['id'], $param); + } + else if($param['status'] == 1){ + add_log('recovery', $param['id'], $param); + } + return to_assign(); + } + else{ + return to_assign(0, '操作失败'); + } + } + + +} diff --git a/app/customer/controller/Index.php b/app/customer/controller/Index.php new file mode 100644 index 0000000..14083d0 --- /dev/null +++ b/app/customer/controller/Index.php @@ -0,0 +1,513 @@ +isAjax()) { + $param = get_params(); + $tab = isset($param['tab']) ? $param['tab'] : 0; + $where = array(); + $whereOr = array(); + if (!empty($param['keywords'])) { + $where[] = ['a.id|a.name|c.title', 'like', '%' . $param['keywords'] . '%']; + } + if (!empty($param['status'])) { + $where[] = ['a.status', '=', $param['status']]; + } + $where[] = ['a.delete_time', '=', 0]; + + $uid = $this->uid; + $auth = isAuth($uid,'customer_admin'); + if($auth==0){ + $dids = get_department_son($this->did,0); + if($tab==1){ + $whereOr[] =['a.belong_uid', '=', $uid]; + } + else if($tab==2){ + if(!empty($dids)){ + $whereOr[] =['a.belong_did', 'in', $dids]; + } + } + else if($tab==3){ + $whereOr[] = ['', 'exp', Db::raw("FIND_IN_SET('{$uid}',a.share_ids)")]; + } + else{ + $whereOr[] =['a.belong_uid', '=', $uid]; + if(!empty($dids)){ + $whereOr[] =['a.belong_did', 'in', $dids]; + } + $whereOr[] = ['', 'exp', Db::raw("FIND_IN_SET('{$uid}',a.share_ids)")]; + } + } + else if($auth==1){ + $dids = get_department_son($this->did,0); + if($tab==1){ + $whereOr[] =['a.belong_uid', '=', $uid]; + } + else if($tab==2){ + if(!empty($dids)){ + $whereOr[] =['a.belong_did', 'in', $dids]; + } + } + else if($tab==3){ + $whereOr[] = ['', 'exp', Db::raw("FIND_IN_SET('{$uid}',a.share_ids)")]; + } + } + + $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; + $content = CustomerList::where($where) + ->where(function ($query) use($whereOr) { + $query->whereOr($whereOr); + }) + ->field('a.*,d.title as belong_department,g.title as grade,s.title as source,i.title as industry') + ->alias('a') + ->join('customer_source s', 'a.source_id = s.id') + ->join('customer_grade g', 'a.grade_id = g.id') + ->join('industry i', 'a.industry_id = i.id') + ->join('department d', 'a.belong_did = d.id','LEFT') + ->order('a.create_time desc') + ->paginate($rows, false, ['query' => $param]) + ->each(function ($item, $key) { + $item->belong_name = Db::name('Admin')->where(['id' => $item->belong_uid])->value('name'); + $item->create_time = date('Y-m-d H:i:s', (int) $item->create_time); + $item->intent_status_name = CustomerList::$IntentStatus[(int) $item->intent_status]; + $item->status_name = CustomerList::$Status[(int) $item->status]; + $contact = Db::name('CustomerContact')->where(['is_default'=>1,'cid' => $item->id])->find(); + if(!empty($contact)){ + $item->user = $contact['name']; + $item->mobile = $contact['mobile']; + $item->qq = $contact['qq']; + $item->wechat = $contact['wechat']; + } + + if($item->services_id == 0){ + $item->services_name = '-'; + } + else{ + $item->services_name = Db::name('Services')->where(['id' => $item->services_id])->value('title'); + } + }); + return table_assign(0, '', $content); + } else { + return view(); + } + } + + //公海客户 + public function sea() + { + if (request()->isAjax()) { + $param = get_params(); + $where = array(); + if (!empty($param['keywords'])) { + $where[] = ['a.id|a.name|c.title', 'like', '%' . $param['keywords'] . '%']; + } + if (!empty($param['status'])) { + $where[] = ['a.status', '=', $param['status']]; + } + $where[] = ['a.delete_time', '=', 0]; + $where[] = ['a.belong_uid', '=', 0]; + + $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; + $content = CustomerList::where($where) + ->field('a.*,d.title as belong_department,g.title as grade,s.title as source,i.title as industry') + ->alias('a') + ->join('customer_source s', 'a.source_id = s.id') + ->join('customer_grade g', 'a.grade_id = g.id') + ->join('industry i', 'a.industry_id = i.id') + ->join('department d', 'a.belong_did = d.id','LEFT') + ->order('a.create_time desc') + ->paginate($rows, false, ['query' => $param]) + ->each(function ($item, $key) { + $item->belong_name = Db::name('Admin')->where(['id' => $item->belong_uid])->value('name'); + $item->create_time = date('Y-m-d H:i:s', (int) $item->create_time); + $item->intent_status_name = CustomerList::$IntentStatus[(int) $item->intent_status]; + $item->status_name = CustomerList::$Status[(int) $item->status]; + $contact = Db::name('CustomerContact')->where(['is_default'=>1,'cid' => $item->id])->find(); + if(!empty($contact)){ + $item->user = $contact['name']; + $item->mobile = $contact['mobile']; + $item->qq = $contact['qq']; + $item->wechat = $contact['wechat']; + } + + if($item->services_id == 0){ + $item->services_name = '-'; + } + else{ + $item->services_name = Db::name('Services')->where(['id' => $item->services_id])->value('title'); + } + }); + return table_assign(0, '', $content); + } else { + return view(); + } + } + + //移入公海 + public function to_sea() + { + if (request()->isAjax()) { + $id = get_params("id"); + $uid = $this->uid; + //是否有权限 + $customer = customer_auth($uid,$id,1,1); + $data['id'] = $id; + $data['belong_uid'] = 0; + $data['belong_did'] = 0; + $data['belong_time'] = 0; + if (Db::name('Customer')->update($data) !== false) { + add_log('tosea', $id); + $log_data = array( + 'field' => 'belong', + 'action' => 'tosea', + 'type' => 0, + 'customer_id' => $data['id'], + 'admin_id' => $this->uid, + 'create_time' => time(), + ); + Db::name('CustomerLog')->strict(false)->field(true)->insert($log_data); + return to_assign(0, "操作成功"); + } else { + return to_assign(1, "操作失败"); + } + } else { + return to_assign(1, "错误的请求"); + } + } + + //废池客户 + public function trash() + { + if (request()->isAjax()) { + $param = get_params(); + $where = array(); + if (!empty($param['keywords'])) { + $where[] = ['a.id|a.name|c.title', 'like', '%' . $param['keywords'] . '%']; + } + if (!empty($param['status'])) { + $where[] = ['a.status', '=', $param['status']]; + } + $where[] = ['a.delete_time', '>', 0]; + $where[] = ['a.belong_uid', '=', 0]; + + $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; + $content = CustomerList::where($where) + ->field('a.*,d.title as belong_department,g.title as grade,s.title as source,i.title as industry') + ->alias('a') + ->join('customer_source s', 'a.source_id = s.id') + ->join('customer_grade g', 'a.grade_id = g.id') + ->join('industry i', 'a.industry_id = i.id') + ->join('department d', 'a.belong_did = d.id','LEFT') + ->order('a.create_time desc') + ->paginate($rows, false, ['query' => $param]) + ->each(function ($item, $key) { + $item->belong_name = Db::name('Admin')->where(['id' => $item->belong_uid])->value('name'); + $item->create_time = date('Y-m-d H:i:s', (int) $item->create_time); + $item->intent_status_name = CustomerList::$IntentStatus[(int) $item->intent_status]; + $item->status_name = CustomerList::$Status[(int) $item->status]; + $contact = Db::name('CustomerContact')->where(['is_default'=>1,'cid' => $item->id])->find(); + if(!empty($contact)){ + $item->user = $contact['name']; + $item->mobile = $contact['mobile']; + $item->qq = $contact['qq']; + $item->wechat = $contact['wechat']; + } + + if($item->services_id == 0){ + $item->services_name = '-'; + } + else{ + $item->services_name = Db::name('Services')->where(['id' => $item->services_id])->value('title'); + } + }); + return table_assign(0, '', $content); + } else { + return view(); + } + } + + //抢客宝 + public function rush() + { + if (request()->isAjax()) { + $param = get_params(); + $where = array(); + $where[] = ['a.delete_time', '=', 0]; + $where[] = ['a.belong_uid', '=', 0]; + $content = CustomerList::where($where) + ->field('a.*,d.title as belong_department,g.title as grade,s.title as source,i.title as industry') + ->alias('a') + ->join('customer_source s', 'a.source_id = s.id') + ->join('customer_grade g', 'a.grade_id = g.id') + ->join('industry i', 'a.industry_id = i.id') + ->join('department d', 'a.belong_did = d.id','LEFT') + ->orderRaw('rand()') + ->limit(10) + ->paginate() + ->each(function ($item, $key) { + $item->create_time = date('Y-m-d H:i:s', (int) $item->create_time); + $contact = Db::name('CustomerContact')->where(['is_default'=>1,'cid' => $item->id])->find(); + if(!empty($contact)){ + $item->user = $contact['name']; + $item->mobile = $contact['mobile']; + $item->qq = $contact['qq']; + $item->wechat = $contact['wechat']; + } + if($item->services_id == 0){ + $item->services_name = '-'; + } + else{ + $item->services_name = Db::name('Services')->where(['id' => $item->services_id])->value('title'); + } + }); + return table_assign(0, '', $content); + } else { + $time = strtotime(date('Y-m-d')." 00:00:00"); + $max_num = Db::name('DataAuth')->where('name','customer_admin')->value('expected_1'); + $count = Db::name('Customer')->where([['belong_time','>',$time],['belong_uid','=',$this->uid]])->count(); + View::assign('max_num', $max_num); + View::assign('count', $count); + return view(); + } + } + + //添加&&编辑 + public function add() + { + $param = get_params(); + if (request()->isAjax()) { + if (!empty($param['id']) && $param['id'] > 0) { + try { + validate(CustomerCheck::class)->scene($param['scene'])->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $customer = customer_auth($this->uid,$param['id'],1); + $param['update_time'] = time(); + $res = customerList::strict(false)->field(true)->update($param); + if ($res) { + add_log('edit', $param['id'], $param); + to_log($this->uid,0,$param,$customer); + return to_assign(); + } else { + return to_assign(1, '操作失败'); + } + } else { + try { + validate(CustomerCheck::class)->scene('add')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $param['create_time'] = time(); + $param['admin_id'] = $this->uid; + $cid = CustomerList::strict(false)->field(true)->insertGetId($param); + + $contact = [ + 'name' => $param['c_name'], + 'mobile' => $param['c_mobile'], + 'qq' => $param['c_qq'], + 'wechat' => $param['c_wechat'], + 'email' => $param['c_email'], + 'cid' => $cid, + 'is_default' => 1, + 'create_time' => time(), + 'admin_id' => $this->uid + ]; + Db::name('CustomerContact')->strict(false)->field(true)->insert($contact); + if ($cid) { + add_log('add', $cid, $param); + $log_data = array( + 'field' => 'new', + 'action' => 'add', + 'type' => 0, + 'customer_id' => $cid, + 'admin_id' => $param['admin_id'], + 'create_time' => time(), + ); + Db::name('CustomerLog')->strict(false)->field(true)->insert($log_data); + return to_assign(); + } else { + return to_assign(1, '操作失败'); + } + } + } else { + if (!empty($param['id']) && $param['id'] > 0) { + $id = get_params("id"); + //查看权限判断 + $customer = customer_auth($this->uid,$id); + $detail = (new CustomerList())->detail($id); + View::assign('detail', $detail); + return view('edit'); + } + else{ + $sea = isset($param['sea']) ? $param['sea'] : 0; + View::assign('sea', $sea); + View::assign('userinfo', get_login_admin()); + return view(); + } + } + } + + //查看 + public function view() + { + $id = get_params("id"); + //查看权限判断 + $customer = customer_auth($this->uid,$id); + $detail = (new CustomerList())->detail($id); + $contact = Db::name('CustomerContact')->where(['is_default'=>1,'cid'=>$id])->find(); + View::assign('contact', $contact); + View::assign('detail', $detail); + return view(); + } + + //获取客户 + public function get() + { + if (request()->isAjax()) { + $id = get_params("id"); + $time = strtotime(date('Y-m-d')." 00:00:00"); + $max_num = Db::name('DataAuth')->where('name','customer_admin')->value('expected_1'); + $count = Db::name('Customer')->where([['belong_time','>',$time],['belong_uid','=',$this->uid]])->count(); + if($count>=$max_num){ + return to_assign(1, "今日领取客户数已到达上限,请明天再来领取"); + } + $data['id'] = $id; + $data['belong_uid'] = $this->uid; + $data['belong_did'] = $this->did; + $data['belong_time'] = time(); + if (Db::name('Customer')->update($data) !== false) { + add_log('tosea', $id); + $log_data = array( + 'field' => 'belong', + 'action' => 'get', + 'type' => 0, + 'customer_id' => $data['id'], + 'admin_id' => $this->uid, + 'create_time' => time(), + ); + Db::name('CustomerLog')->strict(false)->field(true)->insert($log_data); + return to_assign(0, "操作成功"); + } else { + return to_assign(1, "操作失败"); + } + } else { + return to_assign(1, "错误的请求"); + } + } + + //分配客户 + public function distribute() + { + if (request()->isAjax()) { + $params = get_params(); + //是否是客户管理员 + $auth = isAuth($this->uid,'customer_admin'); + if($auth==0){ + return to_assign(1, "只有客户管理员才有权限操作"); + } + $data['id'] = $params['id']; + $data['belong_uid'] = $params['uid']; + $data['belong_did'] = $params['did']; + $data['distribute_time'] = time(); + if (Db::name('Customer')->update($data) !== false) { + add_log('allot', $data['id']); + to_log($this->uid,0,$data,['belong_uid'=>0]); + return to_assign(0, "操作成功"); + } else { + return to_assign(1, "操作失败"); + } + } else { + return to_assign(1, "错误的请求"); + } + } + + //删除 + public function delete() + { + if (request()->isDelete()) { + $params = get_params(); + //是否是客户管理员 + $auth = isAuth($this->uid,'customer_admin'); + if($auth==0){ + return to_assign(1, "只有客户管理员才有权限操作"); + } + $data['id'] = $params['id']; + $log_data = array( + 'field' => 'del', + 'action' => 'delete', + 'type' => 0, + 'customer_id' => $params['id'], + 'admin_id' => $this->uid, + 'create_time' => time(), + ); + if($params['type'] ==1){ + $data['delete_time'] = time(); + $log_data['action'] = 'totrash'; + } + else{ + $data['delete_time'] = -1; + } + if (Db::name('Customer')->update($data) !== false) { + add_log('delete', $params['id']); + Db::name('CustomerLog')->strict(false)->field(true)->insert($log_data); + return to_assign(0, "删除成功"); + } else { + return to_assign(1, "删除失败"); + } + } else { + return to_assign(1, "错误的请求"); + } + } + //还原 + public function revert() + { + if (request()->isAjax()) { + $params = get_params(); + //是否是客户管理员 + $auth = isAuth($this->uid,'customer_admin'); + if($auth==0){ + return to_assign(1, "只有客户管理员才有权限操作"); + } + $data['id'] = $params['id']; + $data['delete_time'] = 0; + if (Db::name('Customer')->update($data) !== false) { + add_log('recovery', $params['id']); + $log_data = array( + 'field' => 'del', + 'action' => 'recovery', + 'type' => 0, + 'customer_id' => $params['id'], + 'admin_id' => $this->uid, + 'create_time' => time(), + ); + Db::name('CustomerLog')->strict(false)->field(true)->insert($log_data); + return to_assign(0, "删除成功"); + } else { + return to_assign(1, "删除失败"); + } + } else { + return to_assign(1, "错误的请求"); + } + } +} diff --git a/app/customer/controller/Source.php b/app/customer/controller/Source.php new file mode 100644 index 0000000..c5b6b07 --- /dev/null +++ b/app/customer/controller/Source.php @@ -0,0 +1,85 @@ +isAjax()) { + $cate = Db::name('CustomerSource')->order('create_time asc')->select(); + return to_assign(0, '', $cate); + } else { + return view(); + } + } + //添加 + public function source_add() + { + if (request()->isAjax()) { + $param = get_params(); + if (!empty($param['id']) && $param['id'] > 0) { + try { + validate(CustomerSourceCheck::class)->scene('edit')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $data['update_time'] = time(); + $res = Db::name('CustomerSource')->strict(false)->field(true)->update($param); + if ($res) { + add_log('edit', $param['id'], $param); + } + return to_assign(); + } else { + try { + validate(CustomerSourceCheck::class)->scene('add')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $param['create_time'] = time(); + $insertId = Db::name('CustomerSource')->strict(false)->field(true)->insertGetId($param); + if ($insertId) { + add_log('add', $insertId, $param); + } + return to_assign(); + } + } + } + + //设置 + public function source_check() + { + $param = get_params(); + $res = Db::name('CustomerSource')->strict(false)->field('id,status')->update($param); + if ($res) { + if($param['status'] == 0){ + add_log('disable', $param['id'], $param); + } + else if($param['status'] == 1){ + add_log('recovery', $param['id'], $param); + } + return to_assign(); + } + else{ + return to_assign(0, '操作失败'); + } + } + + +} diff --git a/app/customer/event.php b/app/customer/event.php new file mode 100644 index 0000000..4eff890 --- /dev/null +++ b/app/customer/event.php @@ -0,0 +1,5 @@ + '未设置', + self::ONE => '新进客户', + self::TWO => '跟进客户', + self::THREE => '正式客户', + self::FORE => '流失客户' + ]; + public static $IntentStatus = [ + self::ZERO => '未设置', + self::ONE => '意向不明', + self::TWO => '意向模糊', + self::THREE => '意向一般', + self::FORE => '意向强烈', + ]; + + public static $Type = [ + self::ZERO => '其他', + self::ONE => '电话', + self::TWO => '微信', + self::THREE => 'QQ', + self::FORE => '上门' + + ]; + public static $Stage = [ + self::ZERO => '未设置', + self::ONE => '立项评估', + self::TWO => '初期沟通', + self::THREE => '需求分析', + self::FORE => '方案制定', + self::FIVE => '商务谈判', + self::SIX => '合同签订', + self::SEVEN => '失单' + ]; + + // 获取详情 + public function detail($id) + { + $detail = Db::name('Customer')->where(['id' => $id])->find(); + if (!empty($detail)) { + $file_array = Db::name('CustomerFile') + ->field('cf.id,f.filepath,f.name,f.filesize,f.fileext') + ->alias('cf') + ->join('File f', 'f.id = cf.file_id', 'LEFT') + ->order('cf.create_time asc') + ->where(array('cf.customer_id' => $id, 'cf.delete_time' => 0)) + ->select()->toArray(); + + $trace_array = Db::name('CustomerTrace')->where(array('cid' => $id, 'delete_time' => 0))->order('follow_time desc')->limit(1)->select()->toArray(); + + $detail['status_name'] = self::$Status[(int) $detail['status']]; + $detail['create_time'] = date('Y-m-d', $detail['create_time']); + $detail['belong_department'] = Db::name('Department')->where(['id' => $detail['belong_did']])->value('title'); + $detail['belong_name'] = Db::name('Admin')->where(['id' => $detail['belong_uid']])->value('name'); + + $share_names = Db::name('Admin')->where([['id','in',$detail['share_ids']]])->column('name'); + $detail['share_names'] = implode(',',$share_names); + + $detail['file_array'] = $file_array; + $detail['trace'] = []; + if(!empty($trace_array)){ + $trace = $trace_array[0]; + $trace['follow_time'] = date('Y-m-d H:i', $trace['follow_time']); + $trace['next_time'] = date('Y-m-d H:i', $trace['next_time']); + $trace['contact_name'] = Db::name('CustomerContact')->where('id',$trace['contact_id'])->value('name'); + $trace['stage_name'] = self::$Stage[(int) $trace['stage']]; + $trace['type_name'] = self::$Type[(int) $trace['type']]; + $detail['trace'] = $trace; + } + } + return $detail; + } +} diff --git a/app/customer/model/CustomerChance.php b/app/customer/model/CustomerChance.php new file mode 100644 index 0000000..92bbda9 --- /dev/null +++ b/app/customer/model/CustomerChance.php @@ -0,0 +1,51 @@ + '未设置', + self::ONE => '立项评估', + self::TWO => '初期沟通', + self::THREE => '需求分析', + self::FORE => '商务谈判', + self::FIVE => '方案制定', + self::SIX => '合同签订', + self::SEVEN => '失单', + ]; + + // 获取详情 + public function detail($id) + { + $detail = Db::name('CustomerChance')->where(['id' => $id])->find(); + if (!empty($detail)) { + $detail['customer'] = Db::name('Customer')->where(['id' => $detail['cid']])->value('name'); + $detail['create_time'] = date('Y-m-d', $detail['create_time']); + $detail['expected_time'] = date('Y-m-d', $detail['expected_time']); + $detail['discovery_time'] = date('Y-m-d', $detail['discovery_time']); + $detail['belong_name'] = Db::name('Admin')->where(['id' => $detail['belong_uid']])->value('name'); + $assist_names = Db::name('Admin')->where([['id','in',$detail['assist_ids']]])->column('name'); + $detail['assist_names'] = implode(',',$assist_names); + $detail['stage_name'] = self::$Stage[(int) $detail['stage']]; + } + return $detail; + } +} diff --git a/app/customer/model/CustomerContact.php b/app/customer/model/CustomerContact.php new file mode 100644 index 0000000..d28e988 --- /dev/null +++ b/app/customer/model/CustomerContact.php @@ -0,0 +1,25 @@ +where(['id' => $id])->find(); + if (!empty($detail)) { + $detail['create_time'] = date('Y-m-d H:i:s', $detail['create_time']); + $detail['customer'] = Db::name('Customer')->where(['id' => $detail['cid']])->value('name'); + } + return $detail; + } +} diff --git a/app/customer/model/CustomerLog.php b/app/customer/model/CustomerLog.php new file mode 100644 index 0000000..a35d173 --- /dev/null +++ b/app/customer/model/CustomerLog.php @@ -0,0 +1,209 @@ + ['未设置', '新进客户', '跟进客户', '正式客户', '流失客户'], + 'intent_status' => ['未设置', '意向不明', '意向模糊', '意向一般', '意向强烈'], + 'type' => ['其他','电话','微信','QQ','上门'], + 'stage' => ['未设置','立项评估','初期沟通','需求分析','方案制定','商务谈判','合同签订','失单'], + 'action' => [ + 'add' => '创建', + 'edit' => '修改', + 'delete' => '删除', + 'upload' => '上传', + 'get' => '领取', + 'tosea' => '向公海放入', + 'totrash' => '向废池放入', + 'recovery' => '从废池移出', + ], + 'role'=>['客户','客户跟进记录','客户联系人','客户销售机会'], + 'field_array' =>[ + 0 =>[ + 'name' => '名称', + 'source_id' => '客户来源', + 'grade_id' => '客户等级', + 'industry_id' => '所属行业', + 'services_id' => '客户意向', + 'provinceid' => '省份', + 'cityid' => '城市', + 'distid'=> '区县', + 'address' => '联系地址', + 'status' => '状态', + 'intent_status' => '意向状态', + 'belong_uid' => '所属人', + 'belong_did' => '所属部门', + 'share_ids' => '共享人员', + 'content' => '客户描述', + 'market' => '主要经营业务', + 'remark' => '备注信息', + 'bank`' => '开户银行', + 'bank_sn' => '银行帐号', + 'tax_num' => '纳税人识别号', + 'cperson_mobile' => '开票电话', + 'cperson_address' => '开票地址', + 'discard_time' => '废弃时间', + 'delete_time' => '删除', + 'file' => '附件', + 'new' => '新增', + 'del' => '删除', + 'belong' => '所属人', + ], + 1 =>[ + 'contact_id' => '联系人', + 'chance_id' => '销售机会', + 'type' => '跟进方式', + 'stage' => '当前阶段', + 'content' => '跟进内容', + 'follow_time' => '跟进时间', + 'next_time' => '下次跟进时间', + 'delete_time' => '删除', + 'new' => '新增', + 'del' => '删除', + ], + 2 =>[ + 'name' => '姓名', + 'is_default' => '第一联系人', + 'sex' => '性别', + 'mobile' => '手机号码', + 'qq' => 'QQ号', + 'wechat' => '微信号', + 'email' => '邮件地址', + 'nickname' => '称谓', + 'department' => '部门', + 'position' => '职务', + 'delete_time' => '删除', + 'new' => '新增', + 'del' => '删除', + ], + 3 =>[ + 'title' => '主题', + 'contact_id' => '联系人', + 'services_id' => '需求服务', + 'stage' => '当前阶段', + 'content' => '需求描述', + 'discovery_time' => '发现时间', + 'expected_time' => '预计签单时间', + 'expected_amount' => '预计签单金额', + 'belong_uid' => '所属人', + 'assist_ids' => '协助人员', + 'delete_time' => '删除', + 'new' => '新增', + 'del' => '删除', + ] + ] + ]; + + public function customer_log($param = []) + { + $trace_ids = Db::name('CustomerTrace')->where(['cid' => $param['customer_id'], 'delete_time' => 0])->column('id'); + $contact_ids = Db::name('CustomerContact')->where(['cid' => $param['customer_id'], 'delete_time' => 0])->column('id'); + $chance_ids = Db::name('CustomerChance')->where(['cid' => $param['customer_id'], 'delete_time' => 0])->column('id'); + + $where1 = []; + $where2 = []; + $where3 = []; + $where4 = []; + + $where1[] = ['a.customer_id', '=', $param['customer_id']]; + + $where2[] = ['a.type', '=', 1]; + $where2[] = ['a.trace_id', 'in', $trace_ids]; + + $where3[] = ['a.type', '=', 2]; + $where3[] = ['a.contact_id', 'in', $contact_ids]; + + $where4[] = ['a.type', '=', 3]; + $where4[] = ['a.chance_id', 'in', $chance_ids]; + + $page = intval($param['page']); + $rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit']; + $content = Db::name('CustomerLog') + ->field('a.*,u.name,u.thumb') + ->alias('a') + ->join('Admin u', 'u.id = a.admin_id') + ->order('a.create_time desc') + ->whereOr([$where1, $where2, $where3, $where4]) + ->page($page, $rows) + ->select()->toArray(); + $data = []; + $sourse = self::$Sourse; + $role = $sourse['role']; + $action = $sourse['action']; + foreach ($content as $k => $v) { + $field_array = $sourse['field_array'][$v['type']]; + if (isset($sourse[$v['field']])) { + $v['old_content'] = $sourse[$v['field']][$v['old_content']]; + $v['new_content'] = $sourse[$v['field']][$v['new_content']]; + } + if (strpos($v['field'], '_time') !== false) { + if ($v['old_content'] == '') { + $v['old_content'] = '未设置'; + } + $v['new_content'] = date('Y-m-d', (int) $v['new_content']); + } + if (strpos($v['field'], '_uid') !== false) { + $v['old_content'] = Db::name('Admin')->where(['id' => $v['old_content']])->value('name'); + $v['new_content'] = Db::name('Admin')->where(['id' => $v['new_content']])->value('name'); + } + if ($v['field'] == 'contact_id') { + $v['old_content'] = Db::name('CustomerContact')->where(['id' => $v['old_content']])->value('name'); + $v['new_content'] = Db::name('CustomerContact')->where(['id' => $v['new_content']])->value('name'); + } + if ($v['field'] == 'source_id') { + $v['old_content'] = Db::name('CustomerSource')->where(['id' => $v['old_content']])->value('title'); + $v['new_content'] = Db::name('CustomerSource')->where(['id' => $v['new_content']])->value('title'); + } + if ($v['field'] == 'grade_id') { + $v['old_content'] = Db::name('CustomerGrade')->where(['id' => $v['old_content']])->value('title'); + $v['new_content'] = Db::name('CustomerGrade')->where(['id' => $v['new_content']])->value('title'); + } + if ($v['field'] == 'industry_id') { + $v['old_content'] = Db::name('Industry')->where(['id' => $v['old_content']])->value('title'); + $v['new_content'] = Db::name('Industry')->where(['id' => $v['new_content']])->value('title'); + } + if ($v['field'] == 'services_id') { + $v['old_content'] = Db::name('Services')->where(['id' => $v['old_content']])->value('title'); + $v['new_content'] = Db::name('Services')->where(['id' => $v['new_content']])->value('title'); + } + if ($v['field'] == 'is_default') { + $v['old_content'] = $v['old_content'] == 1?'第一联系人':'普通联系人'; + $v['new_content'] = $v['new_content'] == 1?'第一联系人':'普通联系人'; + } + if ($v['field'] == 'sex') { + $v['old_content'] = $v['old_content'] == 1?'男':'女'; + $v['new_content'] = $v['new_content'] == 1?'男':'女'; + } + if (strpos($v['field'], '_ids') !== false) { + $old_ids = Db::name('Admin')->where('id', 'in', $v['old_content'])->column('name'); + $v['old_content'] = implode(',', $old_ids); + $new_ids = Db::name('Admin')->where('id', 'in', $v['new_content'])->column('name'); + $v['new_content'] = implode(',', $new_ids); + } + if ($v['old_content'] == '' || $v['old_content'] == null) { + $v['old_content'] = '未设置'; + } + if ($v['new_content'] == '' || $v['new_content'] == null) { + $v['new_content'] = '未设置'; + } + $v['role'] = $role[$v['type']]; + $v['action'] = $action[$v['action']]; + $v['title'] = $field_array[$v['field']]; + $v['times'] = time_trans($v['create_time']); + $v['create_time'] = date('Y-m-d', $v['create_time']); + $data[] = $v; + } + return $data; + } +} diff --git a/app/customer/model/CustomerTrace.php b/app/customer/model/CustomerTrace.php new file mode 100644 index 0000000..c343463 --- /dev/null +++ b/app/customer/model/CustomerTrace.php @@ -0,0 +1,56 @@ + '未设置', + self::ONE => '电话', + self::TWO => '微信', + self::THREE => 'QQ', + self::FORE => '上门' + ]; + public static $Stage = [ + self::ZERO => '未设置', + self::ONE => '立项评估', + self::TWO => '初期沟通', + self::THREE => '需求分析', + self::FORE => '商务谈判', + self::FIVE => '方案制定', + self::SIX => '合同签订', + self::SEVEN => '失单', + ]; + + // 获取详情 + public function detail($id) + { + $detail = Db::name('CustomerTrace')->where(['id' => $id])->find(); + if (!empty($detail)) { + $detail['stage_name'] = self::$Stage[(int) $detail['stage']]; + $detail['type_name'] = self::$Type[(int) $detail['type']]; + $detail['create_time'] = date('Y-m-d H:i:s', $detail['create_time']); + $detail['follow_time'] = date('Y-m-d H:i:s', $detail['follow_time']); + $detail['next_time'] = date('Y-m-d H:i:s', $detail['next_time']); + $detail['customer'] = Db::name('Customer')->where(['id' => $detail['cid']])->value('name'); + } + return $detail; + } +} diff --git a/app/customer/validate/CustomerCheck.php b/app/customer/validate/CustomerCheck.php new file mode 100644 index 0000000..490c3d7 --- /dev/null +++ b/app/customer/validate/CustomerCheck.php @@ -0,0 +1,30 @@ + 'require|unique:customer', + 'id' => 'require', + ]; + + protected $message = [ + 'name.require' => '合同名称不能为空', + 'name.unique' => '同样的合同名称已经存在', + 'id.require' => '缺少更新条件', + ]; + + protected $scene = [ + 'add' => ['name',], + 'edit' => ['name','id'], + 'change' => ['id'], + ]; +} diff --git a/app/customer/validate/CustomerContactCheck.php b/app/customer/validate/CustomerContactCheck.php new file mode 100644 index 0000000..163c249 --- /dev/null +++ b/app/customer/validate/CustomerContactCheck.php @@ -0,0 +1,30 @@ + 'require', + 'mobile' => 'require|unique:customer_contact', + 'id' => 'require', + ]; + + protected $message = [ + 'name.require' => '联系人姓名不能为空', + 'mobile.unique' => '同样的手机号码已经存在', + 'id.require' => '缺少更新条件', + ]; + + protected $scene = [ + 'add' => ['name','mobile'], + 'edit' => ['id', 'name','mobile'], + ]; +} diff --git a/app/customer/validate/CustomerGradeCheck.php b/app/customer/validate/CustomerGradeCheck.php new file mode 100644 index 0000000..90c26f4 --- /dev/null +++ b/app/customer/validate/CustomerGradeCheck.php @@ -0,0 +1,29 @@ + 'require|unique:customer_grade', + 'id' => 'require', + ]; + + protected $message = [ + 'title.require' => '名称不能为空', + 'title.unique' => '同样的名称已经存在', + 'id.require' => '缺少更新条件', + ]; + + protected $scene = [ + 'add' => ['title'], + 'edit' => ['id', 'title'], + ]; +} diff --git a/app/customer/validate/CustomerSourceCheck.php b/app/customer/validate/CustomerSourceCheck.php new file mode 100644 index 0000000..0546189 --- /dev/null +++ b/app/customer/validate/CustomerSourceCheck.php @@ -0,0 +1,29 @@ + 'require|unique:customer_source', + 'id' => 'require', + ]; + + protected $message = [ + 'title.require' => '名称不能为空', + 'title.unique' => '同样的名称已经存在', + 'id.require' => '缺少更新条件', + ]; + + protected $scene = [ + 'add' => ['title'], + 'edit' => ['id', 'title'], + ]; +} diff --git a/app/customer/view/api/add_chance.html b/app/customer/view/api/add_chance.html new file mode 100644 index 0000000..5afa685 --- /dev/null +++ b/app/customer/view/api/add_chance.html @@ -0,0 +1,143 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+

新增销售机会

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
客户名称{$customer_name}客户联系人* + +
机会标题* + + 发现时间* + +
销售阶段* + + 预计金额* + + 预计签单时间* + +
需求描述* + +
归属人员* + + + 协助人员 + + +
+
+ + + +
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/customer/view/api/add_trace.html b/app/customer/view/api/add_trace.html new file mode 100644 index 0000000..e2e4f8b --- /dev/null +++ b/app/customer/view/api/add_trace.html @@ -0,0 +1,106 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+

新增跟进记录

+ + + + + + + + + + + + + + + + + + + + + + + + + +
客户名称{$customer_name}
联 系 人* + + 跟进方式* + + 跟进时间* + +
沟通内容* + +
当前阶段* + + 销售机会 + + 下次沟通时间* + +
+
+ + + +
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/customer/view/api/edit_chance.html b/app/customer/view/api/edit_chance.html new file mode 100644 index 0000000..02db668 --- /dev/null +++ b/app/customer/view/api/edit_chance.html @@ -0,0 +1,143 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+

编辑销售机会

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
客户名称{$detail.customer}客户联系人* + +
机会标题* + + 发现时间* + +
销售阶段* + + 预计金额* + + 预计签单时间* + +
需求描述* + +
归属人员* + + + 协助人员 + + +
+
+ + + +
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/customer/view/api/edit_trace.html b/app/customer/view/api/edit_trace.html new file mode 100644 index 0000000..a3fffe1 --- /dev/null +++ b/app/customer/view/api/edit_trace.html @@ -0,0 +1,106 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+

新增跟进记录

+ + + + + + + + + + + + + + + + + + + + + + + + + +
客户名称{$detail.customer}
联 系 人* + + 跟进方式* + + 跟进时间* + +
沟通内容* + +
当前阶段* + + 销售机会 + + 下次沟通时间* + +
+
+ + + +
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/customer/view/api/view_chance.html b/app/customer/view/api/view_chance.html new file mode 100644 index 0000000..f6d0c2e --- /dev/null +++ b/app/customer/view/api/view_chance.html @@ -0,0 +1,52 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+

销售机会

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
客户名称{$detail.customer}客户联系人 + {volist name=":customer_contact($detail.cid)" id="v"} + {eq name="$v.id" value="$detail.contact_id"}{$v.name}{/eq} + {/volist} +
机会标题{$detail.title}发现时间{$detail.discovery_time}
销售阶段{$detail.stage_name}预计金额{$detail.expected_amount}预计签单时间{$detail.expected_time}
需求描述{$detail.content}
归属人员{$detail.belong_name}协助人员{$detail.assist_names}
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/customer/view/api/view_trace.html b/app/customer/view/api/view_trace.html new file mode 100644 index 0000000..ba399bb --- /dev/null +++ b/app/customer/view/api/view_trace.html @@ -0,0 +1,50 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+

跟进记录

+ + + + + + + + + + + + + + + + + + + + + + + + + +
客户名称{$detail.customer}
联 系 人 + {volist name=":customer_contact($detail.cid)" id="v"} + {eq name="$v.id" value="$detail.contact_id"}{$v.name}{/eq} + {/volist} + 跟进方式{$detail.type_name}跟进时间{$detail.follow_time}
沟通内容{$detail.content}
当前阶段{$detail.stage_name}销售机会 + {volist name=":customer_chance($detail.cid)" id="v"} + {eq name="$v.id" value="$detail.chance_id"}{$v.title}{/eq} + {/volist} + 下次沟通时间{$detail.next_time}
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/customer/view/contact/contact_add.html b/app/customer/view/contact/contact_add.html new file mode 100644 index 0000000..a3c29be --- /dev/null +++ b/app/customer/view/contact/contact_add.html @@ -0,0 +1,99 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+

新增联系人

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
客户名称{$customer_name}
姓名* + + 联系电话* + + 性别* + + +
微 信 号 + + QQ号码 + + 电子邮箱 + +
称谓 + + 部门 + + 职务 + +
+
+ + + +
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/customer/view/contact/contact_edit.html b/app/customer/view/contact/contact_edit.html new file mode 100644 index 0000000..922f38b --- /dev/null +++ b/app/customer/view/contact/contact_edit.html @@ -0,0 +1,99 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+

编辑联系人

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
客户名称{$detail.customer}
姓名* + + 联系电话* + + 性别* + + +
微 信 号 + + QQ号码 + + 电子邮箱 + +
称谓 + + 部门 + + 职务 + +
+
+ + + +
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/customer/view/contact/index.html b/app/customer/view/contact/index.html new file mode 100644 index 0000000..b4eda97 --- /dev/null +++ b/app/customer/view/contact/index.html @@ -0,0 +1,90 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/customer/view/grade/conf.html b/app/customer/view/grade/conf.html new file mode 100644 index 0000000..2651a65 --- /dev/null +++ b/app/customer/view/grade/conf.html @@ -0,0 +1,89 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+

权限配置

+ + + + + + + + + + + + + + + + + + + +
+

客户模块使用说明:

+

1、设置客户管理员,可设置多个

+

a、拥有客户管理员权限的员工可以查看、转移、编辑所有客户。

+

b、非客户管理员的员工,可查看(客户所属人、客户共享人员)相关联的客户。

+

c、客户的编辑权限只有客户录入人和客户管理员拥有。

+

2、系统会记录每一次客户的操作记录

+

a、记录每一次客户的操作记录,防止客户被误操作和后期问题追踪。

+
权限名称 + + {$detail.title} + 权限标识{$detail.name}每天可获取公客数*
权限人员* + + + +
+ {$detail.desc} +
+
+ + +
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/customer/view/grade/index.html b/app/customer/view/grade/index.html new file mode 100644 index 0000000..73ec512 --- /dev/null +++ b/app/customer/view/grade/index.html @@ -0,0 +1,121 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+
+
+ +{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/customer/view/index/add.html b/app/customer/view/index/add.html new file mode 100644 index 0000000..bafffc6 --- /dev/null +++ b/app/customer/view/index/add.html @@ -0,0 +1,180 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+

新增客户

+ + + + + + + + + + + + + + + + {eq name="$sea" value="0"} + + + + + + + + + {/eq} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
客户名称*客户来源* + +
联系地址* + + 所属行业* + + 客户等级* + +
归属员工* + + + + 归属部门 + + 共享员工 + + +
客户介绍* + +
经营业务 + +
首要联系人信息
联 系 人* + + 联系电话* + + 微 信 号 + +
QQ号码 + + 电子邮箱 + +
备注信息
+ +
+
+ + + +
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/customer/view/index/edit.html b/app/customer/view/index/edit.html new file mode 100644 index 0000000..203a53f --- /dev/null +++ b/app/customer/view/index/edit.html @@ -0,0 +1,150 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+

编辑客户

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
客户名称*客户来源* + +
联系地址* + + 所属行业* + + 客户等级* + +
归属员工* + + + + 归属部门 + + 共享员工 + + +
客户介绍* + +
经营业务 + +
备注信息 + +
+
+ + + + +
+
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/customer/view/index/index.html b/app/customer/view/index/index.html new file mode 100644 index 0000000..768ab2a --- /dev/null +++ b/app/customer/view/index/index.html @@ -0,0 +1,224 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+
+
+
    +
  • 全部客户
  • +
  • 我的客户
  • +
  • 下属客户
  • +
  • 共享客户
  • +
+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+ + +
+ +
+
+
+ + +{/block} + + + +{block name="script"} + +{/block} + diff --git a/app/customer/view/index/rush.html b/app/customer/view/index/rush.html new file mode 100644 index 0000000..d4c4080 --- /dev/null +++ b/app/customer/view/index/rush.html @@ -0,0 +1,134 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+
+
+ +
+
+ +
+
+
+
+ +{/block} + + + +{block name="script"} + +{/block} + diff --git a/app/customer/view/index/sea.html b/app/customer/view/index/sea.html new file mode 100644 index 0000000..c264666 --- /dev/null +++ b/app/customer/view/index/sea.html @@ -0,0 +1,197 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+
+
+ +
+
+ +
+
+ +
+ +
+
+
+ + +{/block} + + + +{block name="script"} + +{/block} + diff --git a/app/customer/view/index/trash.html b/app/customer/view/index/trash.html new file mode 100644 index 0000000..e1dc56e --- /dev/null +++ b/app/customer/view/index/trash.html @@ -0,0 +1,159 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+
+
+ +
+
+ +
+
+ +
+ +
+
+
+{/block} + + + +{block name="script"} + +{/block} + diff --git a/app/customer/view/index/view.html b/app/customer/view/index/view.html new file mode 100644 index 0000000..0b6d848 --- /dev/null +++ b/app/customer/view/index/view.html @@ -0,0 +1,247 @@ +{extend name="../../base/view/common/base" /} +{block name="style"} + +{/block} + +{block name="body"} +
+

客户详情

+ + + + + + + + + + + + + + + + {gt name="$detail['belong_uid']" value="0"} + + + + + + + + + {/gt} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {notempty name="$detail.trace"} + + + + + + + + + + + + + + + + + + + + {/notempty} +
客户名称{$detail.name}客户来源 + {volist name=":customer_source()" id="v"} + {eq name="$v.id" value="$detail.source_id" }{$v.title}{/eq} + {/volist} +
联系地址 + {$detail.address} + 所属行业 + {volist name=":get_industry()" id="v"} + {eq name="$v.id" value="$detail.industry_id"}{$v.title}{/eq} + {/volist} + 客户等级 + {volist name=":customer_grade()" id="v"} + {eq name="$v.id" value="$detail.grade_id"}{$v.title}{/eq} + {/volist} +
归属员工{$detail.belong_name}归属部门{$detail.belong_department}共享员工{$detail.share_names}
客户介绍{$detail.content}
经营范围{$detail.market}
备注信息{$detail.remark}
+
相关附件
+ {eq name="$detail.status" value="1" }
{/eq} +
+ {volist name="$detail.file_array" id="vo"} +
+
+ +
{$vo.name}
+
+ + +
+
+
+ {/volist} +
首要联系人信息
联系人姓名{$contact.name} 手机号码{$contact.mobile}QQ号码{$contact.qq}微信号码{$contact.wechat}
最近沟通记录
沟通时间{$detail.trace.follow_time}沟通人{$detail.trace.contact_name}跟进方式{$detail.trace.type_name}当前阶段{$detail.trace.stage_name}
下次联系时间{$detail.trace.next_time}沟通内容{$detail.trace.content}
+
+ +
+
+ {include file="/index/view_trace" /} +
+
+ {include file="/index/view_contact" /} +
+
+ {include file="/index/view_chance" /} +
+
+ {include file="/index/view_log" /} +
+
+
+ + +
+{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/customer/view/index/view_chance.html b/app/customer/view/index/view_chance.html new file mode 100644 index 0000000..817e00f --- /dev/null +++ b/app/customer/view/index/view_chance.html @@ -0,0 +1,70 @@ +
+ +
+
+
+
+ \ No newline at end of file diff --git a/app/customer/view/index/view_contact.html b/app/customer/view/index/view_contact.html new file mode 100644 index 0000000..239e32d --- /dev/null +++ b/app/customer/view/index/view_contact.html @@ -0,0 +1,98 @@ +
+ +
+
+
+
+ \ No newline at end of file diff --git a/app/customer/view/index/view_log.html b/app/customer/view/index/view_log.html new file mode 100644 index 0000000..ef3bbbd --- /dev/null +++ b/app/customer/view/index/view_log.html @@ -0,0 +1,68 @@ +
+
+
+ \ No newline at end of file diff --git a/app/customer/view/index/view_trace.html b/app/customer/view/index/view_trace.html new file mode 100644 index 0000000..e7aa560 --- /dev/null +++ b/app/customer/view/index/view_trace.html @@ -0,0 +1,73 @@ +
+ +
+
+
+
+ \ No newline at end of file diff --git a/app/customer/view/source/index.html b/app/customer/view/source/index.html new file mode 100644 index 0000000..62c9520 --- /dev/null +++ b/app/customer/view/source/index.html @@ -0,0 +1,121 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+
+
+ +{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/home/common.php b/app/home/common.php index c2cdd31..d907ad8 100644 --- a/app/home/common.php +++ b/app/home/common.php @@ -47,29 +47,3 @@ function admin_module() $group = Db::name('AdminModule')->order('id asc')->select()->toArray(); return $group; } - -//读取公告分类子分类ids -function admin_note_cate_son($id = 0, $is_self = 1) -{ - $note = Db::name('NoteCate')->order('create_time asc')->select(); - $note_list = get_data_node($note, $id); - $note_array = array_column($note_list, 'id'); - if ($is_self == 1) { - //包括自己在内 - $note_array[] = $id; - } - return $note_array; -} - -//读取知识分类子分类ids -function admin_article_cate_son($id = 0, $is_self = 1) -{ - $article = Db::name('ArticleCate')->order('id desc')->select()->toArray(); - $article_list = get_data_node($article, $id); - $article_array = array_column($article_list, 'id'); - if ($is_self == 1) { - //包括自己在内 - $article_array[] = $id; - } - return $article_array; -} diff --git a/app/home/controller/Cate.php b/app/home/controller/Cate.php index 362d801..cc2e832 100644 --- a/app/home/controller/Cate.php +++ b/app/home/controller/Cate.php @@ -15,7 +15,8 @@ use app\home\validate\ExpenseCateCheck; use app\home\validate\CostCateCheck; use app\home\validate\SealCateCheck; use app\home\validate\CarCateCheck; -use app\home\validate\NoteCateCheck; +use app\home\validate\IndustryCheck; +use app\home\validate\ServicesCheck; use app\home\validate\WorkCateCheck; use app\home\validate\KeyworksCheck; use app\home\validate\InvoiceSubjectCheck; @@ -420,90 +421,134 @@ class Cate extends BaseController } } - //公告类别 - public function note_cate() + //行业类型 + public function industry_cate() { if (request()->isAjax()) { - $cate = Db::name('NoteCate')->order('create_time asc')->select(); + $cate = Db::name('Industry')->order('create_time asc')->select(); return to_assign(0, '', $cate); } else { return view(); } } - - //公告类别添加 - public function note_cate_add() + //行业类型添加 + public function industry_cate_add() { - $param = get_params(); if (request()->isAjax()) { + $param = get_params(); if (!empty($param['id']) && $param['id'] > 0) { try { - validate(NoteCateCheck::class)->scene('edit')->check($param); + validate(IndustryCheck::class)->scene('edit')->check($param); } catch (ValidateException $e) { // 验证失败 输出错误信息 return to_assign(1, $e->getError()); } - $note_array = admin_note_cate_son($param['id']); - if (in_array($param['pid'], $note_array)) { - return to_assign(1, '父级分类不能是该分类本身或其子分类'); - } else { - $param['update_time'] = time(); - $res = Db::name('NoteCate')->strict(false)->field(true)->update($param); - if ($res) { - add_log('edit', $param['id'], $param); - } - return to_assign(); + $data['update_time'] = time(); + $res = Db::name('Industry')->strict(false)->field(true)->update($param); + if ($res) { + add_log('edit', $param['id'], $param); } + return to_assign(); } else { try { - validate(NoteCateCheck::class)->scene('add')->check($param); + validate(IndustryCheck::class)->scene('add')->check($param); } catch (ValidateException $e) { // 验证失败 输出错误信息 return to_assign(1, $e->getError()); } $param['create_time'] = time(); - $insertId = Db::name('NoteCate')->strict(false)->field(true)->insertGetId($param); + $insertId = Db::name('Industry')->strict(false)->field(true)->insertGetId($param); if ($insertId) { add_log('add', $insertId, $param); } return to_assign(); } + } + } + + //行业类型设置 + public function industry_cate_check() + { + $param = get_params(); + $res = Db::name('Industry')->strict(false)->field('id,status')->update($param); + if ($res) { + if($param['status'] == 0){ + add_log('disable', $param['id'], $param); + } + else if($param['status'] == 1){ + add_log('recovery', $param['id'], $param); + } + return to_assign(); + } + else{ + return to_assign(0, '操作失败'); + } + } + + //服务类型 + public function services_cate() + { + if (request()->isAjax()) { + $cate = Db::name('Services')->order('create_time asc')->select(); + return to_assign(0, '', $cate); } else { - $id = isset($param['id']) ? $param['id'] : 0; - $pid = isset($param['pid']) ? $param['pid'] : 0; - $cate = $cate = Db::name('NoteCate')->order('id desc')->select()->toArray(); - $cates = set_recursion($cate); - if ($id > 0) { - $detail = Db::name('NoteCate')->where(['id' => $id])->find(); - View::assign('detail', $detail); - } - View::assign('id', $id); - View::assign('pid', $pid); - View::assign('cates', $cates); return view(); } } - - //公告类别删除 - public function note_cate_delete() + //服务类型添加 + public function services_cate_add() { - $id = get_params("id"); - $cate_count = Db::name('NoteCate')->where(["pid" => $id])->count(); - if ($cate_count > 0) { - return to_assign(1, "该分类下还有子分类,无法删除"); - } - $content_count = Db::name('Article')->where(["article_cate_id" => $id])->count(); - if ($content_count > 0) { - return to_assign(1, "该分类下还有文章,无法删除"); - } - if (Db::name('NoteCate')->delete($id) !== false) { - add_log('delete', $id); - return to_assign(0, "删除分类成功"); - } else { - return to_assign(1, "删除失败"); + if (request()->isAjax()) { + $param = get_params(); + if (!empty($param['id']) && $param['id'] > 0) { + try { + validate(ServicesCheck::class)->scene('edit')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $data['update_time'] = time(); + $res = Db::name('Services')->strict(false)->field(true)->update($param); + if ($res) { + add_log('edit', $param['id'], $param); + } + return to_assign(); + } else { + try { + validate(ServicesCheck::class)->scene('add')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $param['create_time'] = time(); + $insertId = Db::name('Services')->strict(false)->field(true)->insertGetId($param); + if ($insertId) { + add_log('add', $insertId, $param); + } + return to_assign(); + } } } + //服务类型设置 + public function services_cate_check() + { + $param = get_params(); + $res = Db::name('Services')->strict(false)->field('id,status')->update($param); + if ($res) { + if($param['status'] == 0){ + add_log('disable', $param['id'], $param); + } + else if($param['status'] == 1){ + add_log('recovery', $param['id'], $param); + } + return to_assign(); + } + else{ + return to_assign(0, '操作失败'); + } + } + //工作类别 public function work_cate() diff --git a/app/home/validate/IndustryCheck.php b/app/home/validate/IndustryCheck.php new file mode 100644 index 0000000..26ed43c --- /dev/null +++ b/app/home/validate/IndustryCheck.php @@ -0,0 +1,29 @@ + 'require|unique:industry', + 'id' => 'require', + ]; + + protected $message = [ + 'title.require' => '名称不能为空', + 'title.unique' => '同样的名称已经存在', + 'id.require' => '缺少更新条件', + ]; + + protected $scene = [ + 'add' => ['title'], + 'edit' => ['id', 'title'], + ]; +} diff --git a/app/home/validate/ServicesCheck.php b/app/home/validate/ServicesCheck.php new file mode 100644 index 0000000..d4cb4c2 --- /dev/null +++ b/app/home/validate/ServicesCheck.php @@ -0,0 +1,29 @@ + 'require|unique:services', + 'id' => 'require', + ]; + + protected $message = [ + 'title.require' => '名称不能为空', + 'title.unique' => '同样的名称已经存在', + 'id.require' => '缺少更新条件', + ]; + + protected $scene = [ + 'add' => ['title'], + 'edit' => ['id', 'title'], + ]; +} diff --git a/app/home/view/cate/industry_cate.html b/app/home/view/cate/industry_cate.html new file mode 100644 index 0000000..0990a0b --- /dev/null +++ b/app/home/view/cate/industry_cate.html @@ -0,0 +1,121 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+
+
+ +{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/home/view/cate/services_cate.html b/app/home/view/cate/services_cate.html new file mode 100644 index 0000000..d6345d4 --- /dev/null +++ b/app/home/view/cate/services_cate.html @@ -0,0 +1,121 @@ +{extend name="../../base/view/common/base" /} + +{block name="body"} +
+
+
+ +{/block} + + + +{block name="script"} + +{/block} + \ No newline at end of file diff --git a/app/home/view/index/index.html b/app/home/view/index/index.html index c7ce1c4..fe62d6e 100644 --- a/app/home/view/index/index.html +++ b/app/home/view/index/index.html @@ -127,7 +127,7 @@
- +
diff --git a/app/install/data/gouguoa.sql b/app/install/data/gouguoa.sql index dec04d2..39c82db 100644 --- a/app/install/data/gouguoa.sql +++ b/app/install/data/gouguoa.sql @@ -96,10 +96,11 @@ INSERT INTO `oa_admin_module` VALUES (2, '用户模块', 'user', 1, 1, 163956291 INSERT INTO `oa_admin_module` VALUES (3, '消息模块', 'message', 1, 1, 1639562910, 0); INSERT INTO `oa_admin_module` VALUES (4, '公告模块', 'note', 1, 1, 1639562910, 0); INSERT INTO `oa_admin_module` VALUES (5, 'OA模块', 'oa', 1, 1, 1639562910, 0); -INSERT INTO `oa_admin_module` VALUES (6, '财务模块', 'finance', 1, 1, 1639562910, 0); +INSERT INTO `oa_admin_module` VALUES (6, '客户模块', 'customer', 2, 1, 1639562910, 0); INSERT INTO `oa_admin_module` VALUES (7, '合同模块', 'contract', 2, 1, 1656142368, 0); INSERT INTO `oa_admin_module` VALUES (8, '项目模块', 'project', 2, 1, 1656142368, 0); -INSERT INTO `oa_admin_module` VALUES (9, '知识模块', 'article', 2, 1, 1656143065, 0); +INSERT INTO `oa_admin_module` VALUES (9, '财务模块', 'finance', 2, 1, 1639562910, 0); +INSERT INTO `oa_admin_module` VALUES (10, '知识模块', 'article', 2, 1, 1656143065, 0); -- ---------------------------- -- Table structure for oa_admin_rule @@ -192,152 +193,185 @@ INSERT INTO `oa_admin_rule` VALUES (51, 2, 'home/cate/subject', '企业主体', INSERT INTO `oa_admin_rule` VALUES (52, 51, 'home/cate/subject_add', '新建/编辑', '企业主体', 'home', '', 2, 1, 1, 0, 0); INSERT INTO `oa_admin_rule` VALUES (53, 51, 'home/cate/subject_check', '设置', '企业主体', 'home', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (54, 2, 'home/cate/note_cate', '公告类型', '公告类型', 'home', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (55, 54, 'home/cate/note_cate_add', '新建/编辑', '公告类型', 'home', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (56, 54, 'home/cate/note_cate_delete', '删除', '公告类型', 'home', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (54, 2, 'home/cate/industry_cate', '行业类型', '行业类型', 'home', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (55, 54, 'home/cate/industry_cate_add', '新建/编辑', '行业类型', 'home', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (56, 54, 'home/cate/work_cate_check', '删除', '行业类型', 'home', '', 2, 1, 1, 0, 0); INSERT INTO `oa_admin_rule` VALUES (57, 2, 'home/cate/work_cate', '工作类别', '工作类别', 'home', '', 1, 1, 1, 0, 0); INSERT INTO `oa_admin_rule` VALUES (58, 57, 'home/cate/work_cate_add', '新建/编辑', '工作类别', 'home', '', 2, 1, 1, 0, 0); INSERT INTO `oa_admin_rule` VALUES (59, 57, 'home/cate/work_cate_check', '设置', '工作类别', 'home', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (60, 2, 'home/keywords/index', '关 键 字','关键字', 'home', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (61, 60, 'home/keywords/add', '新建/编辑','关键字', 'home', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (62, 60, 'home/keywords/delete', '删除','关键字', 'home', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (60, 2, 'home/cate/services_cate', '服务类型', '服务类型', 'home', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (61, 60, 'home/cate/services_cate_add', '新建/编辑', '服务类型', 'home', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (62, 60, 'home/cate/services_cate_check', '设置', '服务类型', 'home', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (63, 3, 'user/department/index', '部门架构', '部门', 'user', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (64, 63, 'user/department/add', '新建/编辑', '部门', 'user', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (65, 63, 'user/department/delete', '删除', '部门', 'user', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (63, 2, 'home/keywords/index', '关 键 字','关键字', 'home', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (64, 63, 'home/keywords/add', '新建/编辑','关键字', 'home', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (65, 63, 'home/keywords/delete', '删除','关键字', 'home', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (66, 3, 'user/position/index', '岗位职称', '岗位职称', 'user', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (67, 66, 'user/position/add', '新建/编辑', '岗位职称', 'user', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (68, 66, 'user/position/delete', '删除', '岗位职称', 'user', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (69, 66, 'user/position/view', '查看', '岗位职称', 'user', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (66, 3, 'user/department/index', '部门架构', '部门', 'user', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (67, 66, 'user/department/add', '新建/编辑', '部门', 'user', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (68, 66, 'user/department/delete', '删除', '部门', 'user', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (70, 3, 'user/user/index', '企业员工', '员工', 'user', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (71, 70, 'user/user/add', '新建/编辑', '员工', 'user', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (72, 70, 'user/user/view', '查看', '员工信息', 'user', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (73, 70, 'user/user/set', '设置', '员工状态', 'user', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (74, 70, 'user/user/reset_psw', '重设密码', '员工密码', 'user', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (69, 3, 'user/position/index', '岗位职称', '岗位职称', 'user', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (70, 69, 'user/position/add', '新建/编辑', '岗位职称', 'user', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (71, 69, 'user/position/delete', '删除', '岗位职称', 'user', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (72, 69, 'user/position/view', '查看', '岗位职称', 'user', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (75, 3, 'user/personal/change', '人事调动', '人事调动', 'user', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (76, 75, 'user/personal/change_add', '新建/编辑', '人事调动', 'user', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (73, 3, 'user/user/index', '企业员工', '员工', 'user', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (74, 73, 'user/user/add', '新建/编辑', '员工', 'user', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (75, 73, 'user/user/view', '查看', '员工信息', 'user', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (76, 73, 'user/user/set', '设置', '员工状态', 'user', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (77, 73, 'user/user/reset_psw', '重设密码', '员工密码', 'user', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (77, 3, 'user/personal/leave', '离职档案', '离职档案', 'user', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (78, 77, 'user/personal/leave_add', '新建/编辑', '离职档案', 'user', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (79, 77, 'user/personal/leave_delete', '删除', '离职档案', 'user', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (78, 3, 'user/personal/change', '人事调动', '人事调动', 'user', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (79, 78, 'user/personal/change_add', '新建/编辑', '人事调动', 'user', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (80, 4, 'message/index/inbox', '收件箱', '收件箱', 'message', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (81, 80, 'message/index/add', '新建/编辑', '消息', 'message', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (82, 80, 'message/index/send', '发送', '消息', 'message', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (83, 80, 'message/index/save', '保存', '消息到草稿', 'message', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (84, 80, 'message/index/reply', '回复', '消息', 'message', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (85, 80, 'message/index/read', '查看', '消息', 'message', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (86, 80, 'message/index/check', '设置', '消息状态', 'message', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (80, 3, 'user/personal/leave', '离职档案', '离职档案', 'user', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (81, 80, 'user/personal/leave_add', '新建/编辑', '离职档案', 'user', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (82, 80, 'user/personal/leave_delete', '删除', '离职档案', 'user', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (87, 4, 'message/index/sendbox', '发件箱', '发件箱', 'message', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (88, 4, 'message/index/draft', '草稿箱', '草稿箱', 'message', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (89, 4, 'message/index/rubbish', '垃圾箱', '垃圾箱', 'message', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (83, 4, 'message/index/inbox', '收件箱', '收件箱', 'message', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (84, 83, 'message/index/add', '新建/编辑', '消息', 'message', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (85, 83, 'message/index/send', '发送', '消息', 'message', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (86, 83, 'message/index/save', '保存', '消息到草稿', 'message', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (87, 83, 'message/index/reply', '回复', '消息', 'message', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (88, 83, 'message/index/read', '查看', '消息', 'message', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (89, 83, 'message/index/check', '设置', '消息状态', 'message', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (90, 5, 'note/index/index', '公告列表', '公告', 'note', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (91, 90, 'note/index/add', '新建/编辑', '公告', 'note', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (92, 90, 'note/index/delete', '删除', '公告', 'note', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (93, 90, 'note/index/view', '查看', '公告', 'note', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (90, 4, 'message/index/sendbox', '发件箱', '发件箱', 'message', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (91, 4, 'message/index/draft', '草稿箱', '草稿箱', 'message', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (92, 4, 'message/index/rubbish', '垃圾箱', '垃圾箱', 'message', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (94, 6, 'oa/approve/index', '我发起的', '办公审批', 'oa', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (95, 94, 'oa/approve/add', '新建/编辑', '办公审批', 'oa', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (96, 94, 'oa/approve/view', '查看', '办公审批', 'oa', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (97, 94, 'oa/approve/check', '审核', '办公审批', 'oa', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (93, 5, 'note/index/note_cate', '公告类型', '公告类型', 'home', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (94, 93, 'note/index/note_cate_add', '新建/编辑', '公告类型', 'home', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (95, 93, 'note/index/note_cate_delete', '删除', '公告类型', 'home', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (98, 6, 'oa/approve/list', '我处理的', '办公审批', 'oa', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (99, 6, 'oa/approve/copy', '抄送给我的', '办公审批', 'oa', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (96, 5, 'note/index/index', '公告列表', '公告', 'note', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (97, 96, 'note/index/add', '新建/编辑', '公告', 'note', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (98, 96, 'note/index/delete', '删除', '公告', 'note', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (99, 96, 'note/index/view', '查看', '公告', 'note', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (100, 7, 'oa/plan/index', '日程安排', '日程安排', 'oa', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (101, 100, 'oa/plan/add', '新建/编辑', '日程安排', 'oa', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (102, 100, 'oa/plan/delete', '删除', '日程安排', 'oa', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (103, 100, 'oa/plan/detail', '查看', '日程安排', 'oa', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (100, 6, 'oa/approve/index', '我发起的', '办公审批', 'oa', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (101, 100, 'oa/approve/add', '新建/编辑', '办公审批', 'oa', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (102, 100, 'oa/approve/view', '查看', '办公审批', 'oa', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (103, 100, 'oa/approve/check', '审核', '办公审批', 'oa', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (104, 7, 'oa/plan/calendar', '日程日历', '日程安排', 'oa', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (104, 6, 'oa/approve/list', '我处理的', '办公审批', 'oa', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (105, 6, 'oa/approve/copy', '抄送给我的', '办公审批', 'oa', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (105, 7, 'oa/schedule/index', '工作记录', '工作记录', 'oa', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (106, 105, 'oa/schedule/add', '新建/编辑', '工作记录', 'oa', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (107, 105, 'oa/schedule/delete', '删除', '工作记录', 'oa', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (108, 105, 'oa/schedule/detail', '查看', '工作记录', 'oa', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (109, 105, 'oa/schedule/update_labor_time', '更改工时', '工时', 'oa', '', 0, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (106, 7, 'oa/plan/index', '日程安排', '日程安排', 'oa', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (107, 106, 'oa/plan/add', '新建/编辑', '日程安排', 'oa', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (108, 106, 'oa/plan/delete', '删除', '日程安排', 'oa', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (109, 106, 'oa/plan/detail', '查看', '日程安排', 'oa', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (110, 7, 'oa/schedule/calendar', '工作日历', '工作日历', 'oa', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (110, 7, 'oa/plan/calendar', '日程日历', '日程安排', 'oa', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (111, 7, 'oa/work/index', '工作汇报', '工作汇报', 'oa', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (112, 111, 'oa/work/add', '新建/编辑', '工作汇报', 'oa', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (113, 111, 'oa/work/send', '发送', '工作汇报', 'oa', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (114, 111, 'oa/work/read', '查看', '工作汇报', 'oa', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (115, 111, 'oa/work/delete', '删除', '工作汇报', 'oa', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (111, 7, 'oa/schedule/index', '工作记录', '工作记录', 'oa', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (112, 111, 'oa/schedule/add', '新建/编辑', '工作记录', 'oa', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (113, 111, 'oa/schedule/delete', '删除', '工作记录', 'oa', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (114, 111, 'oa/schedule/detail', '查看', '工作记录', 'oa', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (115, 111, 'oa/schedule/update_labor_time', '更改工时', '工时', 'oa', '', 0, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (116, 8, '', '报销管理', '报销', 'finance', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (117, 116, 'finance/expense/index', '我申请的', '报销', 'finance', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (118, 116, 'finance/expense/list', '我处理的', '报销', 'finance', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (119, 116, 'finance/expense/copy', '抄送给我的', '报销', 'finance', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (120, 116, 'finance/expense/checkedlist', '报销打款', '报销', 'finance', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (116, 7, 'oa/schedule/calendar', '工作日历', '工作日历', 'oa', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (121, 116, 'finance/expense/add', '新建/编辑', '报销', 'finance', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (122, 116, 'finance/expense/delete', '删除', '报销', 'finance', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (123, 116, 'finance/expense/view', '查看', '报销', 'finance', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (124, 116, 'finance/expense/check', '审核', '报销', 'finance', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (125, 116, 'finance/expense/topay', '打款', '报销', 'finance', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (117, 7, 'oa/work/index', '工作汇报', '工作汇报', 'oa', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (118, 117, 'oa/work/add', '新建/编辑', '工作汇报', 'oa', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (119, 117, 'oa/work/send', '发送', '工作汇报', 'oa', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (120, 117, 'oa/work/read', '查看', '工作汇报', 'oa', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (121, 117, 'oa/work/delete', '删除', '工作汇报', 'oa', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (126, 8, '', '发票管理', '发票', 'finance', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (127, 126, 'finance/invoice/index', '我申请的', '发票', 'finance', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (128, 126, 'finance/invoice/list', '我处理的', '发票', 'finance', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (129, 126, 'finance/invoice/copy', '抄送给我的', '发票', 'finance', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (130, 126, 'finance/invoice/checkedlist', '发票开具', '发票', 'finance', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (122, 8, '', '报销管理', '报销', 'finance', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (123, 122, 'finance/expense/index', '我申请的', '报销', 'finance', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (124, 122, 'finance/expense/list', '我处理的', '报销', 'finance', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (125, 122, 'finance/expense/copy', '抄送给我的', '报销', 'finance', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (126, 122, 'finance/expense/checkedlist', '报销打款', '报销', 'finance', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (131, 126, 'finance/invoice/add', '新建/编辑', '发票', 'finance', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (132, 126, 'finance/invoice/delete', '删除', '发票', 'finance', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (133, 126, 'finance/invoice/view', '查看', '发票', 'finance', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (134, 126, 'finance/invoice/check', '审核', '发票', 'finance', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (135, 126, 'finance/invoice/open', '开具', '发票', 'finance', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (136, 126, 'finance/invoice/tovoid', '作废', '发票', 'finance', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (127, 122, 'finance/expense/add', '新建/编辑', '报销', 'finance', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (128, 122, 'finance/expense/delete', '删除', '报销', 'finance', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (129, 122, 'finance/expense/view', '查看', '报销', 'finance', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (130, 122, 'finance/expense/check', '审核', '报销', 'finance', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (131, 122, 'finance/expense/topay', '打款', '报销', 'finance', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (137, 8, 'finance/income/index', '到账管理', '到账记录', 'finance', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (138, 137, 'finance/income/add', '新建/编辑', '到账记录', 'finance', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (139, 137, 'finance/income/view', '查看', '到账记录', 'finance', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (140, 137, 'finance/income/delete', '删除', '到账记录', 'finance', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (132, 8, '', '发票管理', '发票', 'finance', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (133, 132, 'finance/invoice/index', '我申请的', '发票', 'finance', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (134, 132, 'finance/invoice/list', '我处理的', '发票', 'finance', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (135, 132, 'finance/invoice/copy', '抄送给我的', '发票', 'finance', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (136, 132, 'finance/invoice/checkedlist', '发票开具', '发票', 'finance', '', 1, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (141, 0, '', '合同协议', '合同协议', 'contract', 'icon-hetongyidong', 1, 9, 1, 1656143065, 0); -INSERT INTO `oa_admin_rule` VALUES (142, 141, 'contract/cate/conf', '权限配置', '合同权限配置', 'contract', '', 1, 0, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (143, 141, 'contract/cate/cate', '合同类别', '合同类别', 'contract', '', 1, 0, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (144, 143, 'contract/cate/cate_add', '新建/编辑', '合同类别', 'contract', '', 2, 0, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (145, 143, 'contract/cate/cate_check', '设置', '合同类别', 'contract', '', 2,0, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (137, 132, 'finance/invoice/add', '新建/编辑', '发票', 'finance', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (138, 132, 'finance/invoice/delete', '删除', '发票', 'finance', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (139, 132, 'finance/invoice/view', '查看', '发票', 'finance', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (140, 132, 'finance/invoice/check', '审核', '发票', 'finance', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (141, 132, 'finance/invoice/open', '开具', '发票', 'finance', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (142, 132, 'finance/invoice/tovoid', '作废', '发票', 'finance', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (146, 141, 'contract/index/index', '合同列表', '合同列表', 'contract', '', 1, 0, 1, 1656143065, 0); -INSERT INTO `oa_admin_rule` VALUES (147, 146, 'contract/index/add', '新建/编辑', '合同', 'contract', '', 2, 0, 1, 1656143065, 0); -INSERT INTO `oa_admin_rule` VALUES (148, 146, 'contract/index/view', '查看', '合同', 'contract', '', 2, 0, 1, 1656143065, 0); -INSERT INTO `oa_admin_rule` VALUES (149, 146, 'contract/index/delete', '删除', '合同', 'contract', '', 2, 0, 1, 1656143065, 0); -INSERT INTO `oa_admin_rule` VALUES (150, 141, 'contract/index/archive', '合同归档', '合同归档', 'contract', '', 1, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (143, 8, 'finance/income/index', '到账管理', '到账记录', 'finance', '', 1, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (144, 143, 'finance/income/add', '新建/编辑', '到账记录', 'finance', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (145, 143, 'finance/income/view', '查看', '到账记录', 'finance', '', 2, 1, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (146, 143, 'finance/income/delete', '删除', '到账记录', 'finance', '', 2, 1, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (151, 0, '', '项目任务', '项目任务', 'project', 'icon-xiangmuguanli', 1, 10, 1, 1656142368, 0); -INSERT INTO `oa_admin_rule` VALUES (152, 151, 'project/index/index', '项目列表', '项目', 'project', '', 1, 0, 1, 1656142368, 0); -INSERT INTO `oa_admin_rule` VALUES (153, 152, 'project/index/add', '新建', '项目', 'project', '', 2, 0, 1, 1656142368, 0); -INSERT INTO `oa_admin_rule` VALUES (154, 152, 'project/index/edit', '编辑', '项目', 'project', '', 2, 0, 1, 1656142368, 0); -INSERT INTO `oa_admin_rule` VALUES (155, 152, 'project/index/view', '查看', '项目', 'project', '', 2, 0, 1, 1656142368, 0); -INSERT INTO `oa_admin_rule` VALUES (156, 152, 'project/index/delete', '删除', '项目', 'project', '', 2, 0, 1, 1656142368, 0); +INSERT INTO `oa_admin_rule` VALUES (147, 0, '', '客户管理', '客户管理', 'customer', 'icon-huamingce', 1, 9, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (148, 147, 'customer/grade/conf', '权限配置', '客户权限配置', 'customer', '', 1, 0, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (149, 147, 'customer/grade/index', '客户等级', '客户等级', 'customer', '', 1, 0, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (150, 149, 'customer/grade/grade_add', '新建/编辑', '客户等级', 'customer', '', 2, 0, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (151, 149, 'customer/grade/grade_check', '设置', '客户等级', 'customer', '', 2,0, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (152, 147, 'customer/source/index', '客户渠道', '客户渠道', 'customer', '', 1, 0, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (153, 152, 'customer/source/source_add', '新建/编辑', '客户渠道', 'customer', '', 2, 0, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (154, 152, 'customer/source/source_check', '设置', '客户渠道', 'customer', '', 2,0, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (157, 151, 'project/task/index', '任务列表', '任务', 'project', '', 1, 0, 1, 1656142368, 0); -INSERT INTO `oa_admin_rule` VALUES (158, 157, 'project/task/add', '新建', '任务', 'project', '', 2, 0, 1, 1656142368, 0); -INSERT INTO `oa_admin_rule` VALUES (159, 157, 'project/task/edit', '编辑', '任务', 'project', '', 2, 0, 1, 1656142368, 0); -INSERT INTO `oa_admin_rule` VALUES (160, 157, 'project/task/view', '查看', '任务', 'project', '', 2, 0, 1, 1656142368, 0); -INSERT INTO `oa_admin_rule` VALUES (161, 157, 'project/task/delete', '删除', '任务', 'project', '', 2, 0, 1, 1656142368, 0); +INSERT INTO `oa_admin_rule` VALUES (155, 147, 'customer/index/rush', '抢 客 宝', '抢客宝', 'customer', '', 1, 0, 1, 0, 0); -INSERT INTO `oa_admin_rule` VALUES (162, 0, '', '知识文章', '知识文章', 'article', 'icon-kecheng', 1, 11, 1, 1656143065, 0); -INSERT INTO `oa_admin_rule` VALUES (163, 162, 'article/cate/cate', '知识类型', '知识类型', 'article', '', 1, 0, 1, 1656143065, 0); -INSERT INTO `oa_admin_rule` VALUES (164, 163, 'article/cate/cate_add', '新建/编辑', '知识类型', 'article', '', 2, 0, 1, 1656143065, 0); -INSERT INTO `oa_admin_rule` VALUES (165, 163, 'article/cate/cate_delete', '删除', '知识类型', 'article', '', 2, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (156, 147, 'customer/index/index', '客户列表', '客户列表', 'customer', '', 1, 0, 1, 1556143065, 0); +INSERT INTO `oa_admin_rule` VALUES (157, 156, 'customer/index/add', '新建/编辑', '客户', 'customer', '', 2, 0, 1, 1556143065, 0); +INSERT INTO `oa_admin_rule` VALUES (158, 156, 'customer/index/view', '查看', '客户', 'customer', '', 2, 0, 1, 1556143065, 0); +INSERT INTO `oa_admin_rule` VALUES (159, 156, 'customer/index/get', '获取', '客户', 'customer', '', 2, 0, 1, 1556143065, 0); +INSERT INTO `oa_admin_rule` VALUES (160, 156, 'customer/index/to_sea', '转入公海', '客户', 'customer', '', 2, 0, 1, 1556143065, 0); +INSERT INTO `oa_admin_rule` VALUES (161, 147, 'customer/index/sea', '公海客户', '客户', 'customer', '', 1, 0, 1, 1556143065, 0); +INSERT INTO `oa_admin_rule` VALUES (162, 161, 'customer/index/distribute', '分配客户', '客户', 'customer', '', 2, 0, 1, 1556143065, 0); +INSERT INTO `oa_admin_rule` VALUES (163, 161, 'customer/index/to_trash', '转入废弃池', '客户', 'customer', '', 2, 0, 1, 1556143065, 0); +INSERT INTO `oa_admin_rule` VALUES (164, 147, 'customer/index/trash', '废弃客户', '客户', 'customer', '', 1, 0, 1, 1556143065, 0); +INSERT INTO `oa_admin_rule` VALUES (165, 164, 'customer/index/delete', '删除', '客户', 'customer', '', 2, 0, 1, 1556143065, 0); +INSERT INTO `oa_admin_rule` VALUES (166, 164, 'customer/index/revert', '还原', '客户', 'customer', '', 2, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (167, 147, 'customer/contact/index', '客户联系人', '联系人', 'customer', '', 1, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (168, 167, 'customer/contact/contact_add', '新建/编辑', '联系人', 'customer', '', 2, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (169, 167, 'customer/contact/contact_del', '删除', '联系人', 'customer', '', 2, 0, 1, 1656143065, 0); -INSERT INTO `oa_admin_rule` VALUES (166, 162, 'article/index/index', '共享知识', '知识文章', 'article', '', 1, 0, 1, 1656143065, 0); -INSERT INTO `oa_admin_rule` VALUES (167, 162, 'article/index/list', '个人知识', '知识文章', 'article', '', 1, 0, 1, 1656143065, 0); -INSERT INTO `oa_admin_rule` VALUES (168, 167, 'article/index/add', '新建/编辑', '知识文章', 'article', '', 2, 0, 1, 1656143065, 0); -INSERT INTO `oa_admin_rule` VALUES (169, 167, 'article/index/view', '查看', '知识文章', 'article', '', 2, 0, 1, 1656143065, 0); -INSERT INTO `oa_admin_rule` VALUES (170, 167, 'article/index/delete', '删除', '知识文章', 'article', '', 2, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (170, 0, '', '合同协议', '合同协议', 'contract', 'icon-hetongyidong', 1, 10, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (171, 170, 'contract/cate/conf', '权限配置', '合同权限配置', 'contract', '', 1, 0, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (172, 170, 'contract/cate/cate', '合同类别', '合同类别', 'contract', '', 1, 0, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (173, 172, 'contract/cate/cate_add', '新建/编辑', '合同类别', 'contract', '', 2, 0, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (174, 172, 'contract/cate/cate_check', '设置', '合同类别', 'contract', '', 2,0, 1, 0, 0); +INSERT INTO `oa_admin_rule` VALUES (175, 170, 'contract/index/index', '合同列表', '合同列表', 'contract', '', 1, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (176, 175, 'contract/index/add', '新建/编辑', '合同', 'contract', '', 2, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (177, 175, 'contract/index/view', '查看', '合同', 'contract', '', 2, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (178, 175, 'contract/index/delete', '删除', '合同', 'contract', '', 2, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (179, 170, 'contract/index/archive', '合同归档', '合同归档', 'contract', '', 1, 0, 1, 1656143065, 0); + +INSERT INTO `oa_admin_rule` VALUES (180, 0, '', '项目管理', '项目管理', 'project', 'icon-xiangmuguanli', 1, 11, 1, 1656142368, 0); +INSERT INTO `oa_admin_rule` VALUES (181, 180, 'project/index/index', '项目列表', '项目', 'project', '', 1, 0, 1, 1656142368, 0); +INSERT INTO `oa_admin_rule` VALUES (182, 181, 'project/index/add', '新建', '项目', 'project', '', 2, 0, 1, 1656142368, 0); +INSERT INTO `oa_admin_rule` VALUES (183, 181, 'project/index/edit', '编辑', '项目', 'project', '', 2, 0, 1, 1656142368, 0); +INSERT INTO `oa_admin_rule` VALUES (184, 181, 'project/index/view', '查看', '项目', 'project', '', 2, 0, 1, 1656142368, 0); +INSERT INTO `oa_admin_rule` VALUES (185, 181, 'project/index/delete', '删除', '项目', 'project', '', 2, 0, 1, 1656142368, 0); + +INSERT INTO `oa_admin_rule` VALUES (186, 180, 'project/task/index', '任务列表', '任务', 'project', '', 1, 0, 1, 1656142368, 0); +INSERT INTO `oa_admin_rule` VALUES (187, 186, 'project/task/add', '新建', '任务', 'project', '', 2, 0, 1, 1656142368, 0); +INSERT INTO `oa_admin_rule` VALUES (188, 186, 'project/task/edit', '编辑', '任务', 'project', '', 2, 0, 1, 1656142368, 0); +INSERT INTO `oa_admin_rule` VALUES (189, 186, 'project/task/view', '查看', '任务', 'project', '', 2, 0, 1, 1656142368, 0); +INSERT INTO `oa_admin_rule` VALUES (190, 186, 'project/task/delete', '删除', '任务', 'project', '', 2, 0, 1, 1656142368, 0); + +INSERT INTO `oa_admin_rule` VALUES (191, 0, '', '知识文章', '知识文章', 'article', 'icon-kecheng', 1, 12, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (192, 191, 'article/cate/cate', '知识类型', '知识类型', 'article', '', 1, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (193, 192, 'article/cate/cate_add', '新建/编辑', '知识类型', 'article', '', 2, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (194, 192, 'article/cate/cate_delete', '删除', '知识类型', 'article', '', 2, 0, 1, 1656143065, 0); + +INSERT INTO `oa_admin_rule` VALUES (195, 191, 'article/index/index', '共享知识', '知识文章', 'article', '', 1, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (196, 191, 'article/index/list', '个人知识', '知识文章', 'article', '', 1, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (197, 196, 'article/index/add', '新建/编辑', '知识文章', 'article', '', 2, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (198, 196, 'article/index/view', '查看', '知识文章', 'article', '', 2, 0, 1, 1656143065, 0); +INSERT INTO `oa_admin_rule` VALUES (199, 196, 'article/index/delete', '删除', '知识文章', 'article', '', 2, 0, 1, 1656143065, 0); -- ---------------------------- -- Table structure for oa_admin_group @@ -358,9 +392,9 @@ CREATE TABLE `oa_admin_group` ( -- ---------------------------- -- Records of cms_admin_group -- ---------------------------- -INSERT INTO `oa_admin_group` VALUES (1, '超级员工权限', 1, '1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170', '超级员工权限,拥有系统的最高权限,不可修改。', 0, 0); -INSERT INTO `oa_admin_group` VALUES (2, '总经理权限', 1, '2,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,3,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,4,80,81,82,83,84,85,86,87,88,89,5,90,91,92,93,6,94,95,96,97,98,99,7,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,8,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,162,163,164,165,166,167,168,169,170', '总经理的管理权限,可根据公司的具体需求调整。', 0, 0); -INSERT INTO `oa_admin_group` VALUES (3, '普通员工权限', 1, '4,80,81,82,83,84,85,86,87,88,89,5,90,93,6,94,95,96,97,98,99,7,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,8,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,166,167,168,169,170', '普通员工管理权限,可根据公司的具体需求调整。', 0, 0); +INSERT INTO `oa_admin_group` VALUES (1, '超级员工权限', 1, '1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,,190,191,192,193,194,195,196,197,198,199', '超级员工权限,拥有系统的最高权限,不可修改。', 0, 0); +INSERT INTO `oa_admin_group` VALUES (2, '总经理权限', 1, '2,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,3,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,4,83,84,85,86,87,88,89,90,91,92,5,93,94,95,96,97,98,99,6,100,101,102,103,104,105,7,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,8,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199', '总经理的管理权限,可根据公司的具体需求调整。', 0, 0); +INSERT INTO `oa_admin_group` VALUES (3, '普通员工权限', 1, '4,83,84,85,86,87,88,89,90,91,92,5,96,99,6,100,101,102,103,104,105,7,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,8,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,155,156,157,158,159,160,161,164,167,168,169,170,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,195,196,197,198,199', '普通员工管理权限,可根据公司的具体需求调整。', 0, 0); -- ---------------------------- -- Table structure for oa_data_auth @@ -373,6 +407,9 @@ CREATE TABLE `oa_data_auth` ( `desc` text NULL COMMENT '备注描述', `module` varchar(255) NOT NULL DEFAULT '' COMMENT '所属模块,唯一,字母', `uids` text NULL COMMENT '权限用户,1,2,3', + `expected_1` int(11) NOT NULL DEFAULT 0 COMMENT '预备字段1,可作为预备权限的控制', + `expected_2` int(11) NOT NULL DEFAULT 0 COMMENT '预备字段2,可作为预备权限的控制', + `expected_3` int(11) NOT NULL DEFAULT 0 COMMENT '预备字段3,可作为预备权限的控制', `create_time` int(11) NOT NULL DEFAULT 0 COMMENT '创建时间', `update_time` int(11) NOT NULL DEFAULT 0 COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE @@ -381,7 +418,8 @@ CREATE TABLE `oa_data_auth` ( -- ---------------------------- -- Records of oa_data_auth -- ---------------------------- -INSERT INTO `oa_data_auth` VALUES (1, '合同管理员','contract_admin','拥有该权限的员工可以查看、编辑、审核、作废、中止所有合同。', 'contract', '', 1656143065, 0); +INSERT INTO `oa_data_auth` VALUES (1, '客户管理员','customer_admin','拥有该权限的员工可以查看、转移所有客户。', 'customer', '',10,0,0, 1656143065, 0); +INSERT INTO `oa_data_auth` VALUES (2, '合同管理员','contract_admin','拥有该权限的员工可以查看、编辑、审核、作废、中止所有合同。', 'contract', '',0,0,0, 1656143065, 0); -- ---------------------------- -- Table structure for oa_config @@ -640,6 +678,54 @@ INSERT INTO `oa_car_cate` VALUES (1, '宝马X5', '粤A55555', 1, 1639900555, 0); INSERT INTO `oa_car_cate` VALUES (2, '哈弗H6', '粤A66666', 1, 1639900666, 0); INSERT INTO `oa_car_cate` VALUES (3, '奥迪Q8', '粤A88888', 1, 1639900888, 0); +-- ---------------------------- +-- Table structure for oa_industry +-- ---------------------------- +DROP TABLE IF EXISTS `oa_industry`; +CREATE TABLE `oa_industry` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `title` varchar(100) NOT NULL DEFAULT '' COMMENT '行业名称', + `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '状态:-1删除 0禁用 1启用', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '行业'; + +-- ---------------------------- +-- Records of oa_industry +-- ---------------------------- +INSERT INTO `oa_industry` VALUES (1, '工业品企业', 1, 1637987189, 0); +INSERT INTO `oa_industry` VALUES (2, '互联网企业', 1, 1637987199, 0); +INSERT INTO `oa_industry` VALUES (3, '服务行业', 1, 1637987199, 0); +INSERT INTO `oa_industry` VALUES (4, '消费品企业', 1, 1637987199, 0); +INSERT INTO `oa_industry` VALUES (5, '原材料企业', 1, 1637987199, 0); +INSERT INTO `oa_industry` VALUES (6, '农业企业', 1, 1637987199, 0); +INSERT INTO `oa_industry` VALUES (7, '科技企业', 1, 1637987199, 0); +INSERT INTO `oa_industry` VALUES (8, '其他行业', 1, 1637987199, 0); + +-- ---------------------------- +-- Table structure for oa_services +-- ---------------------------- +DROP TABLE IF EXISTS `oa_services`; +CREATE TABLE `oa_services` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `title` varchar(100) NOT NULL DEFAULT '' COMMENT '服务名称', + `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '状态:-1删除 0禁用 1启用', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '企业服务'; + +-- ---------------------------- +-- Records of oa_services +-- ---------------------------- +INSERT INTO `oa_services` VALUES (1, '定制服务', 1, 1637987189, 0); +INSERT INTO `oa_services` VALUES (2, '开店咨询', 1, 1637987199, 0); +INSERT INTO `oa_services` VALUES (3, '推广运营', 1, 1637987199, 0); +INSERT INTO `oa_services` VALUES (4, '财税咨询', 1, 1637987199, 0); +INSERT INTO `oa_services` VALUES (5, '代理记账', 1, 1637987199, 0); +INSERT INTO `oa_services` VALUES (6, '开卡服务', 1, 1637987199, 0); + -- ---------------------------- -- Table structure for oa_expense -- ---------------------------- @@ -903,29 +989,6 @@ CREATE TABLE `oa_message_file_interfix` ( PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '消息关联的附件表'; --- ---------------------------- --- Table structure for oa_note --- ---------------------------- -DROP TABLE IF EXISTS `oa_note`; -CREATE TABLE `oa_note` ( - `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, - `cate_id` int(11) NOT NULL DEFAULT 0 COMMENT '关联分类ID', - `title` varchar(225) NULL DEFAULT NULL COMMENT '标题', - `content` text NOT NULL COMMENT '公告内容', - `src` varchar(100) NULL DEFAULT NULL COMMENT '关联链接', - `status` int(1) NOT NULL DEFAULT 1 COMMENT '1可用-1禁用', - `sort` int(11) NOT NULL DEFAULT 0, - `start_time` int(11) NOT NULL DEFAULT 0 COMMENT '展示开始时间', - `end_time` int(11) NOT NULL DEFAULT 0 COMMENT '展示结束时间', - `create_time` int(11) NOT NULL DEFAULT 0, - `update_time` int(11) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) USING BTREE -) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '公告'; - --- ---------------------------- --- Records of oa_note --- ---------------------------- -INSERT INTO `oa_note` VALUES (1, 1, '欢迎使用勾股OA办公系统', '

欢迎使用勾股OA办公系统,勾股办公是一款基于ThinkPHP6 + Layui + MySql打造的,简单实用的开源免费的企业办公系统框架。系统集成了系统设置、人事管理模块、消息管理模块、日常办公、财务管理等基础模块。系统简约,易于功能扩展,方便二次开发,让开发者更专注于业务深度需求的开发,帮助开发者简单高效降低二次开发成本,通过二次开发之后可以用来做CRM,ERP,业务管理等系统。

', 'https://oa.gougucms.com', 1, 2, 1635696000, 1924876800, 1637984962, 1637984975); -- ---------------------------- -- Table structure for oa_note_cate @@ -947,6 +1010,31 @@ CREATE TABLE `oa_note_cate` ( INSERT INTO `oa_note_cate` VALUES (1, 0, 1, '普通公告', 1637984265, 1637984299); INSERT INTO `oa_note_cate` VALUES (2, 0, 2, '紧急公告', 1637984283, 1637984310); +-- ---------------------------- +-- Table structure for oa_note +-- ---------------------------- +DROP TABLE IF EXISTS `oa_note`; +CREATE TABLE `oa_note` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `cate_id` int(11) NOT NULL DEFAULT 0 COMMENT '关联分类ID', + `title` varchar(225) NULL DEFAULT NULL COMMENT '标题', + `content` text NOT NULL COMMENT '公告内容', + `src` varchar(100) NULL DEFAULT NULL COMMENT '关联链接', + `status` int(1) NOT NULL DEFAULT 1 COMMENT '1可用-1禁用', + `sort` int(11) NOT NULL DEFAULT 0, + `start_time` int(11) NOT NULL DEFAULT 0 COMMENT '展示开始时间', + `end_time` int(11) NOT NULL DEFAULT 0 COMMENT '展示结束时间', + `admin_id` int(11) NOT NULL DEFAULT 0 COMMENT '发布人id', + `create_time` int(11) NOT NULL DEFAULT 0, + `update_time` int(11) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '公告'; + +-- ---------------------------- +-- Records of oa_note +-- ---------------------------- +INSERT INTO `oa_note` VALUES (1, 1, '欢迎使用勾股OA办公系统', '

欢迎使用勾股OA办公系统,勾股办公是一款基于ThinkPHP6 + Layui + MySql打造的,简单实用的开源免费的企业办公系统框架。系统集成了系统设置、人事管理模块、消息管理模块、日常办公、财务管理、客户管理、项目管理、合同管理、知识管理等基础模块。系统简约,易于功能扩展,方便二次开发,让开发者更专注于业务深度需求的开发,帮助开发者简单高效降低二次开发成本,通过二次开发之后可以用来做CRM,ERP,业务管理等系统。

', 'https://oa.gougucms.com', 1, 2, 1635696000, 1924876800,1, 1637984962, 1637984975); + -- ---------------------------- -- Table structure for oa_position -- ---------------------------- @@ -1193,6 +1281,246 @@ CREATE TABLE `oa_work_record` ( PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '汇报工作发送记录表'; + +-- ---------------------------- +-- Table structure for oa_customer_grade +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_grade`; +CREATE TABLE `oa_customer_grade` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `title` varchar(100) NOT NULL DEFAULT '' COMMENT '客户等级名称', + `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '状态:-1删除 0禁用 1启用', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户等级'; + +-- ---------------------------- +-- Records of oa_customer_grade +-- ---------------------------- +INSERT INTO `oa_customer_grade` VALUES (1, '普通客户', 1, 1637987189, 0); +INSERT INTO `oa_customer_grade` VALUES (2, 'VIP客户', 1, 1637987199, 0); +INSERT INTO `oa_customer_grade` VALUES (3, '白银客户', 1, 1637987199, 0); +INSERT INTO `oa_customer_grade` VALUES (4, '黄金客户', 1, 1637987199, 0); +INSERT INTO `oa_customer_grade` VALUES (5, '钻石客户', 1, 1637987199, 0); + +-- ---------------------------- +-- Table structure for oa_customer_source +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_source`; +CREATE TABLE `oa_customer_source` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `title` varchar(100) NOT NULL DEFAULT '' COMMENT '客户渠道名称', + `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '状态:-1删除 0禁用 1启用', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户来源'; + +-- ---------------------------- +-- Records of oa_customer_source +-- ---------------------------- +INSERT INTO `oa_customer_source` VALUES (1, '独立开发', 1, 1637987189, 0); +INSERT INTO `oa_customer_source` VALUES (2, '微信公众号', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (3, '今日头条', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (4, '百度搜索', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (5, '销售活动', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (6, '电话来访', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (7, '客户介绍', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (8, '其他来源', 1, 1637987199, 0); + +-- ---------------------------- +-- Table structure for oa_customer_grade +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_grade`; +CREATE TABLE `oa_customer_grade` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `title` varchar(100) NOT NULL DEFAULT '' COMMENT '客户等级名称', + `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '状态:-1删除 0禁用 1启用', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户等级'; + +-- ---------------------------- +-- Records of oa_customer_grade +-- ---------------------------- +INSERT INTO `oa_customer_grade` VALUES (1, '普通客户', 1, 1637987189, 0); +INSERT INTO `oa_customer_grade` VALUES (2, 'VIP客户', 1, 1637987199, 0); +INSERT INTO `oa_customer_grade` VALUES (3, '白银客户', 1, 1637987199, 0); +INSERT INTO `oa_customer_grade` VALUES (4, '黄金客户', 1, 1637987199, 0); +INSERT INTO `oa_customer_grade` VALUES (5, '钻石客户', 1, 1637987199, 0); + +-- ---------------------------- +-- Table structure for oa_customer_source +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_source`; +CREATE TABLE `oa_customer_source` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `title` varchar(100) NOT NULL DEFAULT '' COMMENT '客户渠道名称', + `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '状态:-1删除 0禁用 1启用', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户来源'; + +-- ---------------------------- +-- Records of oa_customer_source +-- ---------------------------- +INSERT INTO `oa_customer_source` VALUES (1, '独立开发', 1, 1637987189, 0); +INSERT INTO `oa_customer_source` VALUES (2, '微信公众号', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (3, '今日头条', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (4, '百度搜索', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (5, '销售活动', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (6, '电话来访', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (7, '客户介绍', 1, 1637987199, 0); +INSERT INTO `oa_customer_source` VALUES (8, '其他来源', 1, 1637987199, 0); + +-- ---------------------------- +-- Table structure for oa_customer +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer`; +CREATE TABLE `oa_customer` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `name` varchar(255) NOT NULL DEFAULT '' COMMENT '客户名称', + `source_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '客户来源id', + `grade_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '客户等级id', + `industry_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '所属行业id', + `services_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '客户意向id', + `provinceid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '省份id', + `cityid` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '城市id', + `distid` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '区县id', + `townid` bigint(20) NOT NULL DEFAULT 0 COMMENT '城镇id', + `address` varchar(255) NOT NULL DEFAULT '' COMMENT '客户联系地址', + `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '客户状态:0未设置,1新进客户,2跟进客户,3正式客户,4流失客户', + `intent_status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '意向状态:0未设置,1意向不明,2意向模糊,3意向一般,4意向强烈', + `contact_first` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '第一联系人id', + `admin_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '录入人', + `belong_uid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '所属人', + `belong_did` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '所属部门', + `belong_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '获取时间', + `distribute_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '分配时间', + `share_ids` varchar(500) NOT NULL DEFAULT '' COMMENT '共享人员,如:1,2,3', + `content` text NULL COMMENT '客户描述', + `market` text NULL COMMENT '主要经营业务', + `remark` text NULL COMMENT '备注信息', + `bank` varchar(60) NOT NULL DEFAULT '' COMMENT '开户银行', + `bank_sn` varchar(60) NOT NULL DEFAULT '' COMMENT '银行帐号', + `tax_num` varchar(100) NOT NULL DEFAULT '' COMMENT '纳税人识别号', + `cperson_mobile` varchar(20) NOT NULL DEFAULT '' COMMENT '开票电话', + `cperson_address` varchar(200) NOT NULL DEFAULT '' COMMENT '开票地址', + `discard_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '废弃时间', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '添加时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '修改时间', + `delete_time` int(11) NOT NULL DEFAULT 0 COMMENT '删除时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1000 CHARACTER SET = utf8mb4 COMMENT = '客户表'; + +-- ---------------------------- +-- Table structure for oa_customer_trace +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_trace`; +CREATE TABLE `oa_customer_trace` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `cid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '客户ID', + `contact_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '联系人id', + `chance_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '销售机会id', + `type` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '跟进方式:0其他,1电话,2微信,3QQ,4上门', + `stage` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '当前阶段:0未设置,1立项评估,2初期沟通,3需求分析,4方案制定,5商务谈判,6合同签订,7失单', + `content` text NULL COMMENT '跟进内容', + `follow_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '跟进时间', + `next_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '下次跟进时间', + `admin_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建人', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + `delete_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '删除时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户跟进记录表'; + +-- ---------------------------- +-- Table structure for oa_customer_contact +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_contact`; +CREATE TABLE `oa_customer_contact` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `cid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '客户ID', + `is_default` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否是第一联系人', + `name` varchar(100) NOT NULL DEFAULT '' COMMENT '姓名', + `sex` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '用户性别:0未知,1男,2女', + `mobile` varchar(20) NOT NULL DEFAULT '' COMMENT '手机号码', + `qq` varchar(20) NOT NULL DEFAULT '' COMMENT 'QQ号', + `wechat` varchar(100) NOT NULL DEFAULT '' COMMENT '微信号', + `email` varchar(100) NOT NULL DEFAULT '' COMMENT '邮件地址', + `nickname` varchar(50) NOT NULL DEFAULT '' COMMENT '称谓', + `department` varchar(50) NOT NULL DEFAULT '' COMMENT '部门', + `position` varchar(50) NOT NULL DEFAULT '' COMMENT '职务', + `admin_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建人', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + `delete_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '删除时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户联系人表'; + +-- ---------------------------- +-- Table structure for oa_customer_chance +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_chance`; +CREATE TABLE `oa_customer_chance` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `title` varchar(255) NOT NULL DEFAULT '' COMMENT '销售机会主题', + `cid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '客户ID', + `contact_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '联系人id', + `services_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '需求服务id', + `stage` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '当前阶段:0未设置,1立项评估,2初期沟通,3需求分析,4方案制定,5商务谈判,6合同签订,7失单', + `content` text NULL COMMENT '需求描述', + `discovery_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '发现时间', + `expected_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '预计签单时间', + `expected_amount` decimal(15, 2) NULL DEFAULT 0.00 COMMENT '预计签单金额', + `admin_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建人', + `belong_uid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '所属人', + `assist_ids` varchar(500) NOT NULL DEFAULT '' COMMENT '协助人员,如:1,2,3', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '更新时间', + `delete_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '删除时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户销售机会表'; + +-- ---------------------------- +-- Table structure for oa_customer_file +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_file`; +CREATE TABLE `oa_customer_file` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `customer_id` int(11) UNSIGNED NOT NULL COMMENT '关联客户id', + `file_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '相关联附件id', + `admin_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建人', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + `update_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '修改时间', + `delete_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '删除时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户附件关联表'; + +-- ---------------------------- +-- Table structure for oa_customer_log +-- ---------------------------- +DROP TABLE IF EXISTS `oa_customer_log`; +CREATE TABLE `oa_customer_log` ( + `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, + `type` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '操作类型:0客户,1跟进记录,2客户联系人,3销售机会', + `action` varchar(100) NOT NULL DEFAULT 'edit' COMMENT '动作:add,edit,del,check,upload', + `field` varchar(100) NOT NULL DEFAULT '' COMMENT '字段', + `customer_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '关联客户id', + `trace_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '跟进记录id', + `contact_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '客户联系人id', + `chance_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '销售机会id', + `admin_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '操作人', + `old_content` text NULL COMMENT '修改前的内容', + `new_content` text NULL COMMENT '修改后的内容', + `remark` text NULL COMMENT '补充备注', + `create_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COMMENT = '客户操作记录表'; + -- ---------------------------- -- Table structure for oa_contract_cate -- ---------------------------- @@ -1245,7 +1573,7 @@ CREATE TABLE `oa_contract` ( `cost` decimal(15, 2) NOT NULL DEFAULT 0.00 COMMENT '合同金额', `is_tax` tinyint(1) NOT NULL DEFAULT 0 COMMENT '是否含税:0未含税,1含税', `tax` decimal(15, 2) NOT NULL DEFAULT 0.00 COMMENT '税点', - `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '合同状态:0未设置,1已录入,2待审核,3已审核,4意外中止,5已作废', + `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '合同状态:0未设置,1已录入,2待审核,3已审核,4已中止,5已作废', `check_uid` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '审核人', `check_time` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '审核时间', `check_remark` text NULL COMMENT '审核备注信息', diff --git a/app/install/data/oa_user.sql b/app/install/data/oa_user.sql new file mode 100644 index 0000000..467d117 --- /dev/null +++ b/app/install/data/oa_user.sql @@ -0,0 +1,103 @@ +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (2, 'suhaizhen', '1ff888712e6d85e8b8dd85f4643da8fc', 'z5dm9r7kl3gjpf6ay1h8', '', '素还真', 13800000001, 1, '素还真', '/storage/202202/24d88ad4299744c8e83a7b17cfe9077f.jpg', 1, 1, 1, '合伙人A', 1637510400, 0, 1654605659, 1654848390, 1347, '58.63.1.34', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (3, 'yiyeshu', '0ebb9fa973b0f37ad1c66c43c452131e', '4wnrosga8cq39y1zthmb', '', '一页书', 13800000002, 1, '一页书', '/storage/avatars/avatar_256_ozhxs3abn61638065889.png', 1, 1, 1, '合伙人B', 1637596800, 0, 1654605710, 1654840504, 2, '27.36.90.63', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (4, 'fengcailing', 'cac2539c7517bb52a3c626a0cfc5bd7b', 'yonpz73fhcam6igw8ksl', '', '风采铃', 13800000003, 1, '风采铃', '/storage/avatars/avatar_256_f8i54nd7uk1638066170.png', 3, 2, 1, '深情义、明是非、才貌出众。为天蝶盟所用,欲以才华美貌、用情诱取素还真之性命,但却被素还真满腹经纶之才情与悲天悯人的胸怀所吸引而谱下一段血泪情缘。情路境遇坎坷、与爱子素续缘间亲情缘薄,但仍坚强不移,令人敬服。', 1637596800, 0, 1654605736, 1654743896, 95, '221.4.214.146', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (5, 'yucixin', '9b7b59e48c27a2657b6b6a73af7d6c8c', 'd3rcny2joz516gwhvuqi', '', '玉辞心', 13800000004, 1, '玉辞心', '/storage/avatars/avatar_256_upo9jznv561638066393.png', 3, 3, 1, '自称戢武王特遣之令使,为查明剑之初身世而入苦境,脸上妆容有一特殊的蝴蝶纹彩,举止言谈不时流露出一股不凡贵气,实力惊人,在鄙女风气兴盛的杀戮碎岛实属罕见,也为玉辞心身份增添了一丝神秘色彩。', 1637596800, 0, 1638148058, 1654650489, 40, '123.149.238.91', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (6, 'qinjiaxian', '9ecd4a6ebe6059baf952e69561e722e6', 'r0kqm5dv8j2sno4t61ga', '', '秦假仙', 13800000005, 1, '秦假仙', '/storage/avatars/avatar_256_w3efzn65bm1638066470.png', 4, 4, 1, '名人榜上天下第一辩,急公好义、脑筋灵活、辩才无碍,鬼点子永远用不完,一手包办武林中大小琐事,是正道最重要的情报贩子。个性自私小气、欺善怕恶,出门总带着一群跟班小弟,但却有着超乎常人的好运,加上过人的机智以及不择手段的行事风格,每每于关键时刻小兵立大功,对武林和平的贡献,有着不可磨灭、取代的地位,乃人不可貌相的最佳典范。', 1637596800, 0, 1654605799, 1654674396, 19, '113.89.98.158', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (7, 'yexiaochai', '61e3f1c16c02b795ccf58417edd2193f', 'tmhdspw4e2rxnu0k57fg', '', '叶小钗', 13800000006, 1, '叶小钗', '/storage/avatars/avatar_256_6r2nx5a7em1638066524.png', 6, 5, 1, '耿直专一、守信重诺的侠客,虽为侍童出身,但不屈不挠的个性,丰富的人生阅历,让其成为中原武林不可或缺的一员,享有“刀狂剑痴”之盛名,披肩的白发和脸上的英雄疤,搭配沉默无言的特色,营造出该角色独特的风范。', 1637596800, 0, 1654605510, 1654846854, 157, '27.36.90.63', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (8, 'tanwuyu', '77c56c1f8317b0a3b3a8efc7f0483ee1', '0zpwk1m6e92ticbjxhug', '', '谈无欲', 13800000007, 1, '谈无欲', '/storage/avatars/avatar_256_qz13s8emh01638067352.png', 5, 6, 1, '日月星三才子之月才子,呈现出与素还真全然不同的作风与个性,这点由他的诗号可窥知一二,完全的自信促使他一出道便和素还真在台面下互相较劲,两人维持着亦敌亦友的关系。由于过度的骄矜自满与好胜,让谈无欲坠入深渊,至此一蹶不振;然净从秽生、明从暗出,沉潜再出的谈无欲,蜕化为六丑暗助正道,并重拾昔日统辖文武半边天的风采,共同戮力于武林和平..', 1637769600, 0, 1654605510, 1644553903, 3, '27.36.88.53', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (9, 'hongchenxue', '6a62a68f7ba42faaaff5fee1bc8d5c23', 'qv0ltwjso43752ranye6', 'fhtj0a', '红尘雪', 13800000008, 2, '红尘雪', '/storage/avatars/avatar_256_1l2qbjwdci1638067440.png', 7, 6, 1, '倚晴江山楼之主,亦是隐流左单锋之主。文秀儒雅、貌美如花,善于琴棋书画,学识渊博又天赋异禀,能将知识传授给灵兽。看似武林少见才女,实有剑中洛神之美誉,其武学脱胎于父亲天剑老人的极单锋,练就自成一格的“翩单锋”,宛若游龙,点化为惊鸿七式。', 1637769600, 0, 1654605510, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (10, 'qiufen', '0a8c42b30732a1739af85864a1cbc6bb', '8qsyh1xk0c9rvm4od6a5', 'slmvwk', '秋分', 13800000009, 2, '秋分', '/storage/avatars/avatar_256_nxe19wd4s51638067663.png', 1, 8, 1, '风采铃贴身侍女。', 1637856000, 0, 1654605510, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (11, 'daoshou', '2d5ff743c1898459581ea0757d9b5d6f', 'les926iwxbjoud4t73z8', '', '刀兽', 13800000010, 1, '刀兽', '/storage/202201/92d518433f6f5cbe1b9b5df5f00eb28b.jpg', 4, 17, 1, '风采铃贴身侍卫。', 1637856000, 0, 1654605510, 1641606771, 2, '220.194.147.103', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (12, 'jianqin', 'ddc479ee1ad0a8e3005ea995015f8269', 'zkn70l42bmgxfsv6e1rd', 'slmvwk', '剑禽', 13800000011, 1, '剑禽', '/storage/avatars/avatar_256_djk5wvazqm1638067753.png', 4, 17, 1, '风采铃贴身侍卫。', 1637856000, 0, 1654605510, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (13, 'fuyingnv', '16e35c24ec220875611b316d5a47f9c8', 'swobpi7acm1jlz03n654', '', '符应女', 13800000012, 2, '符应女', '/storage/avatars/avatar_256_uj2vhc95oe1638067831.png', 13, 10, 1, '摄论太宫之妹,为棘岛专有的医生,医术专攻针灸之术,佐以药理,自封符应女,彰显其对自身医术的信心。个性豁达,暗中受玄觉之请托,至弃云峰医治戢武王的箭伤。', 1637856000, 0, 1654605510, 1638177142, 2, '58.252.118.218', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (14, 'jitianshuangji', '5f8463d0ed80a17897739045e880ca08', 'xbzsij2943106lqgypof', '', '祭天双姬', 13800000013, 2, '祭天双姬', '/storage/avatars/avatar_256_avw1hfkd931638067867.png', 3, 9, 1, '戢武王秘密势力,暗藏于祭天台的两名护持神姬,浑身裹满红纱,手持新月刃,一旦外人踏入禁地,两名神姬便会自石壁上现身,击退来犯者。', 1637856000, 0, 1642989980, 1642989994, 2, '27.45.158.192', 2); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (15, 'rangmingnv', 'fd52a4ae46d5a9b700bb3ec6abcbe895', 'lgv1aetwy2pjqickho57', '', '禳命女', 13800000014, 2, '禳命女', '/storage/avatars/avatar_256_rdhmjsu31y1638067920.png', 3, 10, 1, '气质轻灵,性格外柔内刚,与寒烟翠情同姐妹,因仰慕楔子的文采,对楔子情有独钟。为了追求爱情而不惜牺牲一切来到苦境,由于穿越境界的咒法有限,无意中解救走火入魔的南风不竞,不仅因此石化,更卷入了一段恩怨纠缠的爱恨情仇当中,在苦境找到楔子之化身枫岫后,直承内心思慕,毫不遮掩,是一名直接坦白,且勇于追求所爱的聪慧女子,然则面对南风不竞的强力追求,虽深为苦恼却无法摆脱,在寒烟翠告白之后,四角关系越趋复杂。', 1637856000, 0, 1654605510, 1638178704, 2, '58.252.118.218', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (16, 'yetuling', '920586af647f4447aee091485cb14f19', 'n2cr4yt9svzkeaj3uoil', 'xj5lw4', '业途灵', 13800000015, 1, '业途灵', '/storage/avatars/avatar_256_zk0xsabyd51638068106.png', 4, 11, 1, '原为灭境三途判之一,与十三邪灵大闹苦境,造成生灵途炭,但之后被造世七侠炼化,又被表象意魔所擒,侥幸没死反功力大增,但仍不敌慈海渡者被废去武功,被秦假仙收为跟班,个性变为搞笑、逗趣。继而宇宙神知在梦中渡化其本性并收为徒弟。跟随秦假仙屡助正道完成不少事迹。', 1638028800, 0, 1654605510, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (17, 'yinshiren', 'd843de8bd36b71cc33fc9bc034417605', 'hwvbqm24od1nz3sk0a5j', 'xj5lw4', '荫尸人', 13800000016, 1, '荫尸人', '/storage/avatars/avatar_256_slp9riu57z1638068129.png', 4, 11, 1, '千邪洞之主,擅长使用术法易容,整天梦想当上武林皇帝;本为欧阳世家一份子,被秦假仙收服后跟随身旁,乃霹雳系列的代表甘草人物之一。最终死于太学主。', 1638028800, 0, 1654605510, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (18, 'jineren', '69601a2a5c5f17111a031056198d01ce', 'cgs2wepk46y5dqvimz30', 'xj5lw4', '金蛾人', 13800000017, 1, '金蛾人', '/storage/avatars/avatar_256_qsj3z1g0961638068175.png', 4, 11, 1, '为向乱世狂刀复仇而绑架业途灵,期望乱世狂刀前来救人,却被成为天下第三人的秦假仙抓走,收为小弟。', 1638028800, 0, 1654605510, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (19, 'mofuluo', 'c8f94a65c182ca57a844b420de27d810', '24fjvoyinakzl0ce8d9u', 'xj5lw4', '摩弗罗', 13800000018, 1, '摩弗罗', '/storage/avatars/avatar_256_170qj8ze2p1638068207.png', 4, 11, 1, '见金蛾人绑架业途灵而前去救人,结果与金蛾人一道被成为天下第三人的秦假仙抓走,收为小弟。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (20, 'yinchaoji', '8b86365a7f4a31575684a74d759b35d4', 's0f7womrlqzn82hkti54', 'xj5lw4', '印超机', 13800000019, 1, '印超机', '/storage/avatars/avatar_256_njiz9c7ukx1638068232.png', 4, 11, 1, '业途灵为秦假仙新收的小弟。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (21, 'yinqiaoji', 'b5e4620d7d3d1822859ece0850845cf5', 'nkmwc09tbyrep8fgqiz7', 'xj5lw4', '印巧机', 13800000020, 1, '印巧机', '/storage/avatars/avatar_256_jwfryi78nz1638068252.png', 4, 11, 1, '印超机的兄弟,印超机死后代替兄弟成为秦假仙的小弟。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (22, 'bingwuyi', 'ff744c2ba32b05a12f85d36310b20adc', 'pzykx1jb820lwtn7e46u', 'xj5lw4', '冰无漪', 13800000021, 1, '冰无漪', '/storage/avatars/avatar_256_x6m3g74vli1638068304.png', 4, 11, 1, '因为被算计而欠下巨额赌债,因此要当500集的杂役工还债。后被秦假仙所买下,教训剡冥后还其自由。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (23, 'fujianfenshuo', '7e2b523db4c0f827e988f8028dbb0388', 'bgf89nxarhmiz4e1ptsk', 'xj5lw4', '佛剑分说', 13800000022, 1, '佛剑分说', '/storage/avatars/avatar_256_qcybo0hmtz1638068398.png', 8, 18, 1, '佛剑分说-体悟佛理,愿斩尽世间一切恶业,坠入无间亦不悔的慈悲佛者。得天佛尊赠与佛牒,开启其艰辛的修行之路,个性刚直不阿、正气凛然,在见识过灭绝希望的未来世界之后,更加深佛剑坚定的救世之路,纵然逆天之路艰辛难行,亦是不由分说的一人承担。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (24, 'jianzixianji', '546ba83a79231817253c0cb9ebf485af', 'ps2wujxnbdhevg61tz34', 'xj5lw4', '剑子仙迹', 13800000023, 1, '剑子仙迹', '/storage/avatars/avatar_256_592z781fpr1638068428.png', 9, 18, 1, '道门不世出的先天高人,心性无为,率真豁达,是严肃中又带着轻松幽默,与些微讽刺的世俗矫情的言谈、笑看江湖,外表看似不理江湖喧闹,实则为最关心中原安危的先天剑者。 ', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (25, 'shuloulongsu', '4fb6d02919179aca970df26b8cd5293c', 'hzqx5vpw9orgseufm6b0', 'xj5lw4', '疏楼龙宿', 13800000024, 1, '疏楼龙宿', '/storage/avatars/avatar_256_9nr5sbceoq1638068456.png', 10, 18, 1, '华丽无双,足智多谋,机敏好辩,潇洒自信,过着逍遥自在的隐居生活。但其作为却颠覆儒家传统的形象,谈笑风生间隐隐透出坚决果断的冷酷,屡屡因挚友剑子仙迹与佛剑分说而涉足江湖', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (26, 'fengsengbaiyunjian', '33f69e3821ef2c597076556477070196', 'zthd6pnyb24kxjrc7fg0', 'xj5lw4', '风僧白云剑', 13800000025, 1, '风僧白云剑', '/storage/avatars/avatar_256_t5x3w209hp1638068544.png', 8, 19, 1, '少年白发、帅气潇洒,正气凛然,个性雅痞风趣,潇洒快意江湖。虽是佛门俗家弟子,但是剑法通神,为西佛国百年难得一见的天才剑客,也被寄予厚望继承佛牒,乃是佛剑分说的竞争对手。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (27, 'wenputi', 'ab8fcc8679e3e4b3fe9f4e2e081ca971', '97pdfwy46ocgbqeutisj', 'xj5lw4', '问菩提', 13800000026, 1, '问菩提', '/storage/avatars/avatar_256_famxig6qs71638068577.png', 8, 19, 1, '自梵宇圣菩提所生,被视为生带天命的因果之子,曾在隳梵之战中解救梵宇,被封为圣虔者。其后却因故离开梵宇,隐居世外,虽不问世事,仍是才名广传,成为江湖上颇负盛名的名士,有「精熟三教经史、通达六艺文武,窃掠半点天机、冠绝九江才子」之美誉。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (28, 'jianmoyan', '375d2f66804aef5367813d6ee9eb05b9', '6nuz9rj7vykpfxb43giq', 'xj5lw4', '剑默言', 13800000027, 1, '剑默言', '/storage/avatars/avatar_256_pj5vxa09uo1638068607.png', 8, 19, 1, '身穿银白僧衣、身背梵字剑盒的神秘少年,性格正直而刚毅,在佛门遭遇灭佛之祸时,挺身而出,一心伸张正义、斩业护生。自称圣道初行,令人不禁与圣行者‧佛剑分说有所联想', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (29, 'shaoyangjun', 'fd4edca1baa04371ea73b714ce39007f', '7cukve0m1x6idsob84tg', 'xj5lw4', '少阳君', 13800000028, 1, '少阳君', '/storage/avatars/avatar_256_b150yjpsl71638068644.png', 8, 19, 1, '身负殊异的三教修为,一心要寻找在墨殇天爆后就消失武林的三教顶峰,并从泥菩萨口中得知,全天下只有他才能找到“未孚”之所在。', 1638028800, 0, 0, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (30, 'yanqingcheng', '9eed7dd563b525bd61d943b81fac6460', 'nadmjsbcxp17tqy6i0ue', 'xj5lw4', '言倾城', 13800000029, 2, '言倾城', '/storage/avatars/avatar_256_bixgw0c27v1638068693.png', 8, 19, 1, '春霖境界言家堡大小姐,知书达礼的名门闺秀,拥有观向未来之眼、以及预知部分未来的殊能,辟吉嘴每说必中,因而成了人人闻之色变的魔女。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (31, 'yujiaoniang', '3997ea9ebedb1b55c7d11aa34a6cf939', '54u6t102cmjzidqab98l', 'xj5lw4', '欲娇娘', 13800000030, 2, '欲娇娘', '/storage/avatars/avatar_256_4y1962c3og1638068766.png', 9, 19, 1, '主张废物利用,将任务失败的三大战栗,加上八面鬼戎与鬼蚩邪尊的鬼能,融合创造出「三眼蚩厉」。化身天紫漪跟随佛剑分说,却逐渐对佛剑分说暗生情愫。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (32, 'aoxiaohongchen', '79ed6063ada94d6db7cb9657c3135084', 'rw987lhsbp153nf4vyac', 'xj5lw4', '傲笑红尘', 13800000031, 1, '傲笑红尘', '/storage/avatars/avatar_256_rbzqtwkdl61638068825.png', 9, 19, 1, '为人刚正不阿,对于所认定的事物,有著超乎常人的坚持。坚信公理正义的存在,不容许任何奸诈之徒为恶。剑法高深,身在诡谲武林,仍坚信自身的理念。虽有隐世之心,穷极一生寻找武林中之净土,却卸不下对武林的责任。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (33, 'mushaoai', '21d54a621268b5fcf27d9ffb2be59279', '4q0vpj7ne6tblxkcw38o', 'xj5lw4', '慕少艾', 13800000032, 1, '慕少艾', '/storage/avatars/avatar_256_ko21bp6wxf1638068857.png', 2, 19, 1, '幽默风趣、风雅隽逸的药师神医,拥有相当高超的医术与修为,早前曾与素还真较劲失利,而潜沉于琉璃仙境之下;后赢得麒麟穴而步入红尘,担起对抗异度魔界之重责,即使遇上艰难逆境也会以轻松态度面对、自我调侃,是正道不可多得的好帮手。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (34, 'xiaofengjun', '049da788e05ee57ddeb6fdd47659ae3d', 'pygc7kjwrdv0qhlox5in', '', '笑封君', 13800000033, 1, '笑封君', '/storage/avatars/avatar_256_1hdxlc4aj51638068908.png', 9, 19, 1, '性格刚毅,稳重老成,但思想偏激,执着于自我,不易受他人影响。根基高绝,其刀形似狂草中的道。多年前曾亡于剑子仙迹之手,随着妖世浮屠的出现,在佛业双身协助下复生,并对剑子展开复仇。', 1638028800, 0, 1654605517, 1652776829, 2, '121.34.50.168', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (35, 'liufengcui', '74eb5162ee2cc6f18f40e14c40894d73', '65l8cotiwzj3m70e29g1', 'xj5lw4', '柳峰翠', 13800000035, 1, '柳峰翠', '/storage/avatars/avatar_256_bivpwc3lag1638068954.png', 9, 19, 1, '因天心堂遭百岫嶙峋所灭,遂与妙胤传心展开与百岫嶙峋的对垒。而后更协助正道,共同对抗魔佛恶体阎达,为苍生献己心力。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (36, 'muxiaohan', '4b06267a7d917dd6dcb52c66a2e4719c', 'nfvilqotbc560k429par', 'xj5lw4', '慕潇韩', 13800000036, 1, '慕潇韩', '/storage/avatars/avatar_256_70gtf6xyqu1638068984.png', 9, 19, 1, '道门阴阳流派之首,与苍、剑子仙迹略有交情,平日幽居篁翠东风,凭竹为乐,因收到天佛原乡邀请,与剑子仙迹一同出席云相夺天局,始踏足红尘。慕潇韩以韩湘为笛,潇湘为剑,搭配独门剑式“湘神篇”,名响道门剑界。', 1638028800, 0, 0, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (37, 'jianfeidao', '70ba2b303e97d568c58ea920ca7dfeb8', 'jb5hg2m34kraezqx16n7', 'xj5lw4', '剑非道', 13800000037, 1, '剑非道', '/storage/avatars/avatar_256_5yrzl7egs11638069017.png', 9, 19, 1, '手持玄笛,身背道剑相忘,风姿清卓、一派伟岸,珞珞出群的表现,因而被委以重任看守道镇伏魔崖。 在看似沉稳的性格中,却有着对邪恶不容肆虐的正义之心,因而在幽都、魔流剑、叹希奇等势力巅乱武林时挺身对抗。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (38, 'shouwanjie', '06a37fc0e2b0996fad7d682638dff5a7', 'pdsf3ac5mwiz2u9gelbx', 'xj5lw4', '收万劫', 13800000038, 1, '收万劫', '/storage/avatars/avatar_256_qatrz1bf8l1638069041.png', 9, 19, 1, '身负正宗道门玄功、以及厄祸邪力,性格冷酷阴柔,酷爱血红之色,浑身上下充满艳红的邪杀之气。与青阳子双双现身道武王谷,一举夺走擘古镜封印的八歧龙首,并崩毁界天塔地脉,震惊在场众人。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (39, 'huoqingyun', 'fa5526b0629420cbeae1b5af144ec535', 'sh4djg1qai835rbwtecu', 'xj5lw4', '豁青云', 13800000039, 1, '豁青云', '/storage/avatars/avatar_256_ckmj2t9pul1638069069.png', 4, 19, 1, '才俊不凡的剑客,个性洒脱不羁,处事诙谐,拥有深厚的剑术修为,称号名字更是寓含弦外之音。预先疏离西武林派门至合修会据点避难,并数次阻止九变妖媸,救援武林正道。几经历练后,成为圣龙口副道主。', 1638028800, 0, 0, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (40, 'qingyangzi', '5ca225fe00a0926d0a3c2dd74d6a59b1', 'k6mczbv0ol9j2dgaxeys', 'xj5lw4', '青阳子', 13800000040, 1, '青阳子', '/storage/avatars/avatar_256_0ojtmzu5ws1638069096.png', 9, 19, 1, '龙脑、合修会创始人,雄才大略、智谋无双,作风明确果断、为人重情重义,毕生致力发扬道门雄风,曾集三教精华义理创立合修会,在因缘际会下与素还真结义,渐受其影响,从昔日枭雄转为正道栋梁。潜沉天地门再出的龙脑,幕后运筹帷幄、率领正道群英力抗冥界,乃气魄雄浑、豪情比天的旷世奇才', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (41, 'muxianfeng', 'f3b5cbd961807b4734bf727810077126', 'gh1di2cyo7j8aqxl9bv4', 'xj5lw4', '穆仙凤', 13800000041, 2, '穆仙凤', '/storage/avatars/avatar_256_pa3q4vhkbl1638069202.png', 10, 19, 1, '聪慧机敏、善解人意、体贴窝心、忠贞不二,自幼在龙宿身边长大,甚得龙宿疼爱,与默言歆一起负责看顾疏楼西风。后受暴雨心奴所害,受感染之际龙宿不得已将其变为嗜血者,后在霹雳魔封第6章结尾龙宿与剑子谈话中得知已被解除嗜血者体质变回人类。', 1638028800, 0, 1654605517, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (42, 'moyanxin', 'f700614b59307e8b5a5d621866774014', 'fi793jucxlskr0b8oqt1', 'xj5lw4', '默言歆', 13800000042, 1, '默言歆', '/storage/avatars/avatar_256_mo02c9ul1z1638069233.png', 10, 19, 1, '人如其名,个性木讷寡言,与穆仙凤同为龙宿一手调教之爱将,平日负责打扫、顾守疏楼西风,外表看似平凡的守门仆人,然拳脚功夫精湛,对主上忠心耿耿。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (43, 'yingwuyou', '5b9ebd6d058f35647788e128883f45aa', 'x3psnmg5hbwycfud6o84', 'xj5lw4', '应无忧', 13800000043, 2, '应无忧', '/storage/avatars/avatar_256_t1x0iyub891638069268.png', 10, 19, 1, '龙宿华丽再出的新侍从,顶替默言歆之位,与穆仙凤随侍左右,个性沉默寡言,专为龙宿奉刀护持,看顾疏楼西风。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (44, 'jinlinghanya', '7de46691c7aac4c1998c392ddd4220e3', 'nd6imbwl4k9ga3y2fqxt', 'xj5lw4', '金陵寒鸦', 13800000044, 1, '金陵寒鸦', '/storage/avatars/avatar_256_qxl6p1zyvg1638069289.png', 3, 19, 1, '疏楼龙宿的持剑侍从,寡默无语,性格坚毅,对龙宿十分的忠诚,与穆仙凤随侍左右。恪尽职守,相当捍卫龙宿的颜面。金陵寒鸦本是受翳日一脉禁锢之役童,为龙宿所带出教养,并赐其遮日冠,让其不畏天阳。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (45, 'yulijing', 'd45bac680f8dc46421c30da14a947899', 'vri92wfuce8tk1s6aql4', 'xj5lw4', '玉离经', 13800000045, 1, '玉离经', '/storage/avatars/avatar_256_kotnby603w1638069316.png', 10, 19, 1, '文雅从容,有一门之主的气度华贵,但不过分自傲或自谦。待人较为和顺轻松,但心思缜密,深谋远虑,看待正事则严肃审慎。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (46, 'yingshuangqing', '739f4f663d18ec851e3148b4459c7c9c', 'bmnirw4g93aj8hyqc7sl', 'xj5lw4', '映霜清', 13800000046, 2, '映霜清', '/storage/avatars/avatar_256_2nd74sp3if1638069336.png', 10, 19, 1, '脸上半罩面纱,神秘优美,尊号“凤儒无情”。个性温和淡雅,婉约仁慈,在玉离经前来求援时出手相助。本性较爱好自由,但因对儒门的责任感而留守,擅于术法,身法灵巧,通天地灵性。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (47, 'xiaruwuzong', '54aa3808e8125f5bfe8c74c75d800972', 't40v7f9zpyl5a86jdqkb', 'xj5lw4', '侠儒无踪', 13800000047, 1, '侠儒无踪', '/storage/avatars/avatar_256_3upy26ovk51638069382.png', 10, 19, 1, '身负绝顶轻功千里无踪,搭配绝世剑法千里剑式。虽出身儒门文质之身,却具豪侠傲骨。凭借一身武艺与韧性,获得皇儒无上青睐,立身昊正第四道“问侠道”。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (48, 'huabanyue', 'b6f153e17117f798aa715903f5b2fa1c', 'fla1bzm7e320hsrigunw', 'xj5lw4', '花伴月', 13800000048, 1, '花伴月', '/storage/avatars/avatar_256_1dkpiyan5g1638069433.png', 10, 19, 1, '儒门天下仪礼监司,儒雅秀逸,毕生尊崇孔孟之学、奉行先圣之言,虽恪守儒家中庸之道,但面对外侮入侵的纷乱局势,亦有匡正平乱之心。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (49, 'yanchuanyun', '61ce2ff01d4753c4fe9b17c115cc01da', 'x7dwkh6ib0vo8jmpnsuf', 'xj5lw4', '雁穿云', 13800000049, 1, '雁穿云', '/storage/avatars/avatar_256_gi21moayj51638069464.png', 10, 19, 1, '儒门天下书监司,掌乐理教化民情、移风易俗,修乐以道志也,属典型的儒家士大夫,恪守中庸之道,略通兵法,能配合礼监司摆设儒门花雁阵。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (50, 'yuyoushui', '3e9cdb42839a1e42517b53815182e99d', 'jmi1as6f4p0byzto7lwu', 'xj5lw4', '鱼游水', 13800000050, 1, '鱼游水', '/storage/avatars/avatar_256_hvtlyu7xd31638069493.png', 10, 19, 1, '儒门天下乐监司,有着读书人的傲气,但略显迂腐,只求独善其身,对外界漠不关心。鱼游水虽自视甚高,却无相对的实力,以致除恶不成,反惨死于变裔天邪手中。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (51, 'zhaoshimingdeng', '74046a81f26b9cced948f86f2da15dfa', 'l7jq1huz3f0d6kniyst9', '', '照世明灯', 13800000051, 1, '照世明灯', '/storage/avatars/avatar_256_roeqlfsxhy1638069685.png', 11, 14, 1, '人如其名,一直给人如温泉水般柔和、仁慈的感觉。无论身处何地、遭遇何事,慈郎总是以一贯沉稳内敛的态度去面对,以及对苍生苦难的叹息与悲悯。本已隐蔽红尘多时,后为卸下原无乡双臂的银骠玄解而再出江湖。', 1638028800, 0, 1654842658, 1654842667, 2, '27.36.90.63', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (52, 'qushitu', '4141c77eb5213e144a47a9df62588a41', 'ia96x1tzn5yef2m8wp0j', 'xj5lw4', '屈世途', 13800000052, 1, '屈世途', '/storage/avatars/avatar_256_05ubvetyis1638069768.png', 12, 15, 1, '化身屈世途为天策真龙座下无名小兵,真龙现世,袭卷武林之时,与天策军众谋士合作,展露其不凡才能,让天策真龙赏识,进而提拔为座前军师。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (53, 'luanshikuangdao', '8ed9f44d385c56b1b452c0813a254794', 'molgnkje0572cirvs9f4', 'xj5lw4', '乱世狂刀', 13800000053, 1, '乱世狂刀', '/storage/avatars/avatar_256_r8awqs63zv1638069791.png', 13, 15, 1, '性情刚烈霸气、豪迈奔放,为爱执著不悔的血性男儿。因天残武祖的奸计而冤屈被囚禁多年!刀法精纯、气势惊天,以一口狮头宝刀、一套狂龙八斩法扬名天下;用情至深,为爱妻慕容婵可堪任何牺牲、甚至一日三千斩亦在所不惜。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (54, 'lucixin', 'deaa759079f5afa5db84cb3c310e587a', 'zgl7wcisuh4b8p21km3j', 'xj5lw4', '陆慈心', 13800000054, 2, '陆慈心', '/storage/avatars/avatar_256_grye1nzx951638069904.png', 11, 20, 1, '蕙质兰心,让万烛公一见倾心,并与万俟焉修练天火九变,进入天地门探查其中的秘密。后为救师命而进入代刑堡星河殿,被改造为集元师太,沦为三世道君的打手。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (55, 'feifangongzi', '3cd2a540cf55410b0c141760317c6c9a', '25txr7h1ag0y9iopuj8c', 'xj5lw4', '非凡公子', 13800000055, 1, '非凡公子', '/storage/avatars/avatar_256_1ijl4t63251638069990.png', 11, 20, 1, '身具三教主与魔族的正邪血统,造就非凡公子亦正亦邪的特殊性格。聪明、自负,以初生之犊不畏虎的气势及傲人的智慧武功,居于猜心园中运筹帷幄。之后因刚愎自用,行事尖锐而树敌众多落难流离。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (56, 'qiluren', 'bbef2b54815574ab62d458d2ee51fee5', '675qpdb4t3islucz0vwy', 'xj5lw4', '崎路人', 13800000056, 1, '崎路人', '/storage/avatars/avatar_256_wkgtz18ysr1638070024.png', 11, 20, 1, '原为集境人士,为追杀仇人灯蝶而偷渡至苦境,是一位具有智慧的领袖型人物,个性风趣巧慧,慎谋能断。身为天虎八将之一,与紫锦囊并肩作战、助导金少爷步入正途;於素还真危难时给予最大支持,为人处世有另一种不凡的手腕,主张该牺牲时就必须有所牺牲。', 1638028800, 0, 0, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (57, 'dengtouren', '7b82ef231028a33fb49a45588ef87d27', 'br02pe4gwlfx8vhc36nt', 'xj5lw4', '灯头人', 13800000057, 1, '灯头人', '/storage/avatars/avatar_256_jvxbm6kz301638070086.png', 11, 20, 1, '照世明灯部属', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (58, 'ouyanglin', '1c8321ad6dd302026a31b4df654adfad', 'r8xk2l1sgoupbdafzhe3', 'xj5lw4', '欧阳麟', 13800000058, 1, '欧阳麟', '/storage/avatars/avatar_256_sab94j7pi51638070162.png', 3, 15, 1, '屈世途外甥', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (59, 'ouyanglin1', 'b053cfba32fe10a074efa02349e7ddfc', 'oi7dswbe4x8nqafjk2v6', 'xj5lw4', '欧阳琳', 13800000059, 2, '欧阳琳', '/storage/avatars/avatar_256_cdltzm76xy1638070664.png', 12, 15, 1, '屈世途外甥女', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (60, 'ouyangling', '33660837c5c54b83b33ebb729316d5c9', 'b6a1537e9r0mtdiqspnh', 'xj5lw4', '欧阳翎', 13800000060, 2, '欧阳翎', '/storage/avatars/avatar_256_3nvka9cp621638070700.png', 12, 15, 1, '为欧阳上智之亲女之一,自幼就到苗疆学艺,面容姣好,却为天下第一智-欧阳世家的杀手。其后因自责流星君之死而自尽。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (61, 'murongchan', 'af5c03582b46ebbbbdfdab2ef7cde24d', 'eqyohbax72j489fc6lzs', 'xj5lw4', '慕容婵', 13800000061, 2, '慕容婵', '/storage/avatars/avatar_256_pdczfltavn1638070845.png', 13, 13, 1, '个性温和柔顺,温婉秀丽,愿意为所爱之人牺牲一切的女子。曾为了成全其姊而自愿放弃意中人——乱世狂刀,也曾为了父亲的大业而以天行奇侠的模样行走江湖,在几经波折后终于如愿与乱世狂刀退隐。不料当时的武林至尊金小开一声令下而惨亡于乱军中。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (62, 'fengzhihen', '5f508aecc334cfd601dc28979aa4d093', 'cg4le09ndmf57i6azryj', 'xj5lw4', '风之痕', 13800000062, 1, '风之痕', '/storage/avatars/avatar_256_ijl4xak2s01638070871.png', 13, 13, 1, '魔界传说中的绝代剑者,无人能出其右,平生追求剑术极致,崇尚自由不受拘束,对权力等武林斗争毫无兴趣,创造出“风之痕”与“魔流剑”二种完全截然不同的剑法,一为冷静快意,一为狠野疯狂。', 1638028800, 0, 1654605522, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (63, 'fouleqing', '33f07f3e1dac67bffc32d6601ff5836e', 'g02qz1nxshawecpj48kv', 'xj5lw4', '不了情', 13800000063, 1, '不了情', '/storage/avatars/avatar_256_imgn85hfc71638070906.png', 13, 13, 1, '身坐北阙毡,氅披东皇衣,肩负剑南卷,手捻西冷弦的琴界之人。拥有一幅如画如琴的画弦琴,为好友少年游之遗物,为纪念故友,所以琴又名少年游。人如其名,琴艺高超,看似逍遥方外、个性恬淡,实际上心里却背负着好友少年游死仇。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (64, 'qiaotiangong', '4b830ba82ed600927fa77f8dc3243e25', 'ryk769xuh2poflnmqet8', 'xj5lw4', '巧天工', 13800000064, 2, '巧天工', '/storage/avatars/avatar_256_mo10dyqwh91638070935.png', 13, 13, 1, ',性情刁蛮古怪、伶牙俐齿,最喜阅耽美书籍。为四大名手之一,铸剑功力堪称一流,更对剑的特性瞭若指掌,头上的发钗拔下后可化为单锋剑。乱世狂刀与沽命师都曾请求其铸造单锋剑,巧天工表面看似刁难狂刀,实则有深意寄托其中,是一介以补天裂铸术闻名的女高手。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (65, 'luozishang', '288f71f056f89c4a8cb94652ad907400', '6i31t8g0hjsln7qoyk95', 'xj5lw4', '洛子商', 13800000065, 1, '洛子商', '/storage/avatars/avatar_256_7jwk8c2m3a1638070965.png', 13, 13, 1, '忆秋年之高徒,与情人苗飞飞居于玉篱园中,种植花卉与书法修身养性。虽为年少却有不凡的剑术造诣,豁达且不拘小节,与师傅同样乐天开朗,以从容的心态看待天下事物。在剑法舞动中自然流露出一股不受拘束的随性,一如处事玩世不恭、乐观看待世事的潇洒性情。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (66, 'shengminglianxisheng', '3e733cd1f5e9f2f00adf547abd21395c', 'meg8vcokpulht012di9z', 'xj5lw4', '生命练习生', 13800000066, 1, '生命练习生', '/storage/avatars/avatar_256_tu3wmg4i911638070988.png', 13, 13, 1, '当代用枪之高手,人称枪神,乃为人正直、豪放不羁、直率敢言的热血男儿。看似骄傲,却从不自视甚高,自有一套探索生命的人生哲理。曾在万堺论衡结束后,与剑非道以武比试,两人相互竞争中同也肯定彼此,并结交为友。坚持以生命练习枪法,盼以万千次的练习来达到武道之最,并成为真正的枪者巅峰。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (67, 'zangjiansheng', '33d2e176d9713cfd9d8ede1d2d803b02', 'v8mzxewypojcqutkb1r9', 'xj5lw4', '藏剑生', 13800000067, 1, '藏剑生', '/storage/avatars/avatar_256_ci4kdn1p2f1638071021.png', 13, 13, 1, '个性内敛温和,对爱情心灰意冷下隐遁于冰寒透骨,眉宇言行之间,总有股抹不去的愁绪,直到收养义女盼梦圆,才让他重拾生命中的温馨亲情。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (68, 'jianjunshierhen', '722bc505d61f62bc57ff8ce20ea3881a', 'hq9ug325n0dxkc41wv6j', 'xj5lw4', '剑君十二恨', 13800000068, 1, '剑君十二恨', '/storage/avatars/avatar_256_fkt1yxds301638071046.png', 13, 13, 1, '以剑为名、仗剑天涯,一生追求剑的真意,为人重情重义、极富正义感,自然率真、毫不虚伪,乃剑界中傲骨桀然之独行侠客。初入江湖追求天下第一快剑闻名,因得灵啸月引荐成为儒教传人,使原本冷傲性格渐趋圆融、睿智,在相继拜得名师的指点下、和对剑的领悟与执着,让他不断突破自我、为剑攀越顶峰,达到自己心中的完美、体悟最终的剑意。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (69, 'heibailangjun', '5aeac4083a6e75d0eddc318b7c91e8bb', 'vgoc948jwz1ps72dqefx', 'xj5lw4', '黑白郎君', 13800000069, 1, '黑白郎君', '/storage/avatars/avatar_256_uwkylzf9571638071082.png', 13, 13, 1, '狂傲不羁、极为自负的铮铮铁汉,四处挑战武林中盛名的角色,以别人的失败为快乐,快意恩仇、置生死于度外,有过人的胆识、气魄,乃布袋戏当中最富盛名的角色之一。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (70, 'gujicanglang', '2156a207b2058cd0f09d087020b43c4b', 'u1scxyimekp89qtrg7zd', 'xj5lw4', '孤迹苍狼', 13800000070, 1, '孤迹苍狼', '/storage/avatars/avatar_256_aefinbrh2v1638071200.png', 13, 13, 1, '西疆皇朝王子,沉默寡言,为神剑守护者。为歼灭魔剑道而积极寻找神剑,不其然遇上昔日应为二娘的月灵公主,牵扯出一段西疆皇朝的故怨。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (71, 'cuiluohan', '81f81488d891aa7c11892189aaf61b62', 'lz9ansku058c6qxvjgtb', 'xj5lw4', '翠萝寒', 13800000071, 2, '翠萝寒', '/storage/avatars/avatar_256_xyvu7m0asg1638071274.png', 14, 16, 1, '一女剑侠,柔美的外貌下有着刚强直接的性格,好胜有主见,并对自己有兴趣的事物必要探究到底。与同修姊妹居于幽篁秋水,平日喜爱抚琴助兴,被论剑海主席步渊渟赞誉琴律中富含绝美剑意,以及白云邈远之怀。翠萝寒绝学九针剑法乃御剑乘风中,剑气可化九种针刺型态,不仅能成杀人之剑,更可成医人之剑,故被素还真请出,医治倦收天俱断的筋脉。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (72, 'yefeitian', 'fa8464ebee510b9facc0aa6e39202ee2', 'jhn70bv6xayd1c84tgr9', 'xj5lw4', '夜飞天', 13800000072, 2, '夜飞天', '/storage/avatars/avatar_256_o8twf4xnda1638071313.png', 15, 16, 1, '弓界盛会,天弓狼神台获选之高手,英姿飒爽,不让须眉的冷酷女弓者,能凝泪为冰、冻气成箭,受玄真君的请托,暂时代为守护离愁谷。殊不知,广寒神女夜飞天与涤瑕快剑为旧识,随著涤瑕快剑再现南域,一场身份疑云,引爆多方猜疑。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (73, 'jianlangya', '116d762be7477a6dfd830a5c4de6d202', '04bpnvs7jdacwoh9rkuq', 'xj5lw4', '剑琅琊', 13800000073, 2, '剑琅琊', '/storage/avatars/avatar_256_7jr1ygith41638071360.png', 14, 16, 1, '锋魔剑上缺之女,是锋魔的唯一传人,剑法高超冷杀,乃幽界之中,非常特殊的流派。集性感、神秘、危险于一身,封于释魔录第三页,为圣母九婴所释放,在天证龙战第一决中,代表幽界出战紫烨疾邪。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (74, 'dumengjun', '8c4b100a808867ca35587ae0e9658435', 'qr2efgcv39u6dps75mnh', 'xj5lw4', '独梦君', 13800000074, 2, '独梦君', '/storage/avatars/avatar_256_7k2d9q10m81638071384.png', 14, 16, 1, '浪迹江湖的女刀客,英气勃勃,刀法绝伦,为人重情重义,多年来一直在寻找着自己下落不明的妹妹。后因心中的正义感而加入邀月仙阁,欲与红尘雪等众侠女一同铲奸除恶,成为中原正道不可多得的新助力。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (75, 'fengjiyue', 'fa7fdae413de18520b6e08f534089a32', 'w1bm7hx4i0l352y6n9ea', 'xj5lw4', '风霁月', 13800000075, 2, '风霁月', '/storage/avatars/avatar_256_9137szunx41638071414.png', 14, 16, 1, '身披孔雀衣,手持拨羽炉,足踏凌云靴,风姿清逸,稳重贴心。乃宇宙之牢的主事者之一,同时也是绝代天骄的义妹,曾暗助其离开战云界。因祌天爻帝身体被蜕变类所夺一案,宇宙之牢声誉遭受莫大损害,故而找上意琦行协助。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (76, 'shuangyefei', 'ad4fee6b7b1c1a43b8034f82cdec83bd', '4eru2w0bdyz5jon9mk8p', 'xj5lw4', '霜叶飞', 13800000076, 2, '霜叶飞', '/storage/avatars/avatar_256_irw36xkup71638071446.png', 14, 16, 1, '玉手九针的同修姊妹,与翠萝寒、闻琴语居于幽篁秋水,排行老二,心思较为细腻、体贴,常替翠萝寒先接待外来客人。霜叶飞真实身分为赫墨族人穆倾雪,因违反族规与东方印生下一子,尔后离开赫墨族,以霜叶飞身分自居。然而在盲虬找到母亲欲相认的当下,也让霜叶飞的内心产生巨大冲击与纠结。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (77, 'wenqinyu', '8e39fea5b7ba788487776a3ba2f2a1f3', 'kqxotyij46m5rn80lf9z', 'xj5lw4', '闻琴语', 13800000077, 2, '闻琴语', '/storage/avatars/avatar_256_7vf0tgu2cr1638071467.png', 14, 16, 1, '玉手九针的同修姊妹,与翠萝寒、霜叶飞居于幽篁秋水,是三人中最年长的,故排行老大,并习有剑艺。闻琴语性格在三姊妹中属较冲动,容易与外来者起冲突,并会为两姊妹出头,十分外放且有身为大姐应具备的责任心。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (78, 'cuihousheng', '73f2129d66e8ffb8e241abb5f4c75a49', '35bf4y1avjzxtcw0oe7s', 'xj5lw4', '翠厚生', 13800000079, 1, '翠厚生', '/storage/avatars/avatar_256_938fgix2sc1638071496.png', 14, 16, 1, '天生一对招风耳,戴着大大的眼镜,自小到大备受呵护,生性善良单纯,对世事充满好奇心,老实的个性也为自己带来鸿运,常常有意外的收获。喜欢发明创造,同时相当崇拜亲姊翠萝寒的武艺和果敢,更向往着外头的世界,希望能用自己的力量为纷乱的江湖带来和平安乐', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (79, 'feiyuyuanji', '00f9bf7cbcb733c352d6effb95c58472', 'hzxwn5icuybt9aosr8p4', 'xj5lw4', '绯羽怨姬', 13800000080, 1, '绯羽怨姬', '/storage/avatars/avatar_256_8qakfnvtr61638071536.png', 14, 16, 1, '深居灵蛊山的女医者,精通医蛊毒,容貌绝艳唯美,个性温柔纤细,对人无心机,内心却是刚毅坚持。情感纯真,对爱始终不渝,长年守在月华树下,只为等待约定之人。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (80, 'xiaoshuixian', 'b431cb24ae1cb9908b2a7a107989322f', 'ehz3jlabfq1vnkpwd8o9', 'xj5lw4', '小水仙', 13800000081, 1, '小水仙', '/storage/avatars/avatar_256_fsk7382wv41638071589.png', 15, 16, 1, '麒麟阁蓬瀛小三仙之一,系琴狐大人精心栽培的女侦探,暗中似有其他身份,在南域为琴狐搜集各路情报。小水仙本性善良,机智聪慧,擅长易容,是琴狐大人最佳左右手,风云儿更对她心仪已久,但小水仙内心,却另有一段憧憬已久的故事。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (81, 'sixuanying', 'a1d85e73d8346626e6c718a0a91b786f', 'irpecz5xh0ofg3ktmuw8', 'xj5lw4', '姒玄英', 13800000082, 1, '姒玄英', '/storage/avatars/avatar_256_y8sm9xvhwl1638071635.png', 15, 16, 1, '凌虚七仙排行第四,彬彬有礼的修真女道,专长是炼丹,曾出掌帮助风云儿恢复,并在前往中土采药时,意外救了琴狐和小水仙。负责守护天窍秘境的入口,对七仙无论长幼,皆十分有礼,是个识大体,和蔼的女道者。', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (82, 'xianzongwuming', 'a61b68e2cddc71cd74616f792ee5eb44', 'ub3tnyog2hz86qlk9x1i', 'xj5lw4', '仙踪无名', 13800000083, 1, '仙踪无名', '/storage/avatars/avatar_256_yfircomeaw1638071664.png', 15, 16, 1, '仙道双修,儒风道骨之超凡者,头戴珠玉冠,身背君子玉剑,手握玦玉麈,御仙兽从天而降,以仙踪无名为号,行走武林。为追查被盗的真龙之血,现临北海灵洲寰宇斗奇之争,当昊天身亡一案成为焦点时,仙踪看穿天魔灵车之秘,一掌逼出背后的阴谋家!', 1638028800, 0, 1654605528, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (83, 'shaziyan', 'c8ddeada82178d9c9d59041831428aa1', 'qf0l1pgknhw9udtmasez', '', '刹紫烟', 13800000084, 2, '刹紫烟', '/storage/avatars/avatar_256_5be3lky96u1638071700.png', 14, 16, 1, '姹紫嫣受后狨改造,成为性格冷酷如冰的女杀手「刹紫烟」,一反从前温柔亲善的性格,已是完全截然相反的两个人,对于过去的回忆再记不得半点,而自认为是「圣堂之子」。在独梦君的奔走与寄飞龙的帮助下终于重拾自我,拜寄飞龙为师,加入侠音剑鸣,共抗猂族。', 1638028800, 0, 1654605533, 1639218445, 2, '59.109.145.140', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (84, 'lingboying', '624a4456358fcaff765c997d38c51484', '1y2k745nxrqbzpoijdth', 'xj5lw4', '凌波影', 13800000085, 2, '凌波影', '/storage/avatars/avatar_256_wnzslqxyea1638071737.png', 15, 16, 1, '性格直爽明快,听从红尘雪之命令,曾与鸳鸯镜一同奉命帮助害怕蜘蛛的生命练习生解围。习有红尘雪翩单锋之奥义,平日与鸳鸯镜保护清幽的倚晴江山楼,只有能破两人所布阵法之能人才得以进入。', 1638028800, 0, 1654605533, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (85, 'yuanyangjing', '7bc8656f70d684264405b1e01a92f489', '1rxloe5f8qh24jpvw6d3', 'xj5lw4', '鸳鸯镜', 13800000086, 2, '鸳鸯镜', '/storage/avatars/avatar_256_s4h7op3dir1638071759.png', 15, 16, 1, '看似温柔婉约、亭亭玉立,却又藏有小聪明的幽默性格,在红尘雪不知情的情况下,常将其所撰写的著作稍作修改,并发行于市面上,与凌波影一样习有红尘雪翩单锋奥义,替红尘雪控管进入倚晴江山楼之人。', 1638028800, 0, 1654605533, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (86, 'jilingyuan', '328cd6897b688f98611b0ea799c7bbeb', '2nexvd06q8hg7p1yblj4', 'xj5lw4', '脊令原', 13800000087, 1, '脊令原', '/storage/avatars/avatar_256_9g7z5x2fiw1638071831.png', 15, 16, 1, '天子枪的代理人,个性忠诚不二,驻守在问天道,肩负守护天子枪的修行之地,不许他人侵犯。因红尘雪指点,解锋镝踏入问天道,一问玉梁皇与枪界始末,却因此暴露问天道所在,遭六道神兵府杀手闯入。', 1638028800, 0, 1654605533, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (87, 'guxinglei', 'ec9826c3ecde12f359805e7fc8172257', '5346maipghbxurknoysz', 'xj5lw4', '孤星泪', 13800000088, 1, '孤星泪', '/storage/avatars/avatar_256_cxdp8y54901638071856.png', 15, 16, 1, '枪界中最神秘的百步银邪枪,有枪中弑神之称。年幼时曾经历过极端惨事,以致心性孤寂、离群索居,总是于满木枯黄的落叶纷飞中现身,沉默不语,散发出萧瑟、悲怆气息。幼年时曾为邪天子所救,两人也因此建立了深厚友情。', 1638028800, 0, 1654605533, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (88, 'fengxiuzhuren', '4647a5c7b8e6f899bb1f5d139e6fe1df', '8kvmrhg1lzn0dapiybcw', '', '枫岫主人', 13800000089, 1, '枫岫主人', '/storage/avatars/avatar_256_svkcxjeuzg1638499532.png', 2, 17, 1, '', 1638460800, 0, 1654605533, 1653749723, 3, '112.97.53.133', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (89, 'yiyeshu1', '19fd0fa02442e56440a8456c21a741c4', 'm94thsriaoflkuvqe6y0', '', '一页书', 13431029299, 1, '一页书', '/storage/avatars/avatar_256_kzhe8m6qv11639531878.png', 9, 19, 1, '', 1639497600, 0, 1654605533, 1653216214, 4, '123.121.15.64', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (90, 'chengyuan', '58dbc0c50dd5bc87d84ee0810fac4336', '9ak2gfxqwn3e1vc8m0dp', '4rhmgz', '成员', 13800017077, 1, '成员', '/storage/avatars/avatar_256_43exjalchv1644418627.png', 11, 17, 1, '', 1644336000, 0, 1653317342, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (91, 'jiwuyou', 'd67112f31a5663408eb9b500bef7672c', 'zd03hjgrsqnpflv98o4y', 'nl5wy7', '纪无忧', 13688885588, 1, '纪无忧', '/storage/avatars/avatar_256_l3rcn5jvds1644564104.png', 5, 19, 1, '', 1644508800, 0, 1654605533, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (92, 'chengyuan1', '889ed153a547b54aa02e42f5443af27c', '7np5fu0qvzlighwt234m', 'o6bvd9', '成员', 13431029268, 1, '成员', '/storage/avatars/avatar_256_p4aw2mvfq51644564462.png', 3, 10, 1, '', 1644508800, 0, 1654605533, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (93, 'chenxiansheng', '39e8c7fdb822d420f483f360e0f73aac', 'lzinm673ca1gvx5jk08f', '8j0x24', '陈先生', 13188889999, 1, '陈先生', '/storage/202202/6ede2edc3733c179c058ff551b75cea2.jpg', 4, 2, 1, '', 1644508800, 0, 1654605533, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (94, 'chengyuanta', '1682d4b6c031413f122f91ec52c6ca15', 'onjchf8ktazwevyqx4g7', '5livjc', '成员塔', 13801017077, 1, '成员塔', '/storage/avatars/avatar_256_rvqyw48xie1644566270.png', 4, 2, 2, '', 1644595200, 0, 1653317342, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (95, 'zhangsan', '250e9978075e1d58b271332c0d7f4508', 'joc58d4zsf6r1pga9ku2', 'n6sijw', '张三', 13100007890, 1, '张三', '/storage/avatars/avatar_256_yvklf2dqeb1644644566.png', 10, 5, 1, '', 1644595200, 0, 1654605533, 1652853764, 1, '123.233.120.51', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (96, 'yexiaoming', '8f0accba37aba0131f62ba4de36f61b6', '7uq4lzmw3fd0s6thacby', '198e5p', '叶晓明', 15878858985, 1, '叶晓明', '/storage/avatars/avatar_256_uf0ok5ya2e1644764303.png', 4, 19, 1, '', 1644508800, 0, 1654648174, 1654648199, 6, '27.18.3.107', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (97, 'liudehua', 'bce50f0d57f4261c27b69fab374d2f7d', 'nph6mv7kyb9r4cfqz1el', 'kvu64n', '刘德华', 13888888888, 1, '刘德华', '/storage/avatars/avatar_256_65cdrgw1xn1646098440.png', 8, 6, 1, '', 1646064000, 0, 1654605533, 1646098499, 2, '222.160.12.90', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (98, 'lingxinyifu', 'b22607cf23abf9d3820cdbdf3b178674', '63lgsu2ekwbymr1jnd8c', '', '灵心异佛', 18712397319, 2, '灵心异佛', '/storage/avatars/avatar_256_r72oklzdnh1651203522.png', 1, 2, 2, '', 1649347200, 0, 1654605533, 1651720472, 2, '59.53.226.39', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (99, 'zhangsan1', '9aad77efa829c28c176a32718a61dc48', 'fi3b7ngd1chkj6pvs0l4', 'b0k8ct', '张三', 15345678911, 1, '张三', '/storage/avatars/avatar_256_0wfq4cs8ae1652701118.png', 3, 5, 2, '', 1652630400, 0, 1654605533, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (100, 'yizhi', 'd2235b59b363b5cb351b6168c62b0fce', 'oyc89jxzvn7med4h5kb0', 'c935dg', '一直', 13457777890, 1, '一直', '/storage/avatars/avatar_256_m4r0n6uf181653103044.png', 10, 18, 1, '', 1651593600, 0, 1654605533, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (101, 'shangsan', '7c7da3090357a318bfce786d7542db06', '47k2t56xgmzfh8v9pouj', 'edn8ma', '上三', 19191919191, 1, '上三', '/storage/202205/20c5e2504b1fd8ed543f942a1a37dc60.jpg', 1, 3, 3, '...', 1653235200, 0, 1654605533, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (102, 'zhangsan2', 'd2d275270e3e5a9d7d33c63c96c4c077', 'dbfxap0ql83tskyrewui', 's7qc6a', '张三', 13602482680, 2, '张三', '/storage/avatars/avatar_256_ie6polgwsm1653468697.png', 3, 4, 1, '', 1653408000, 0, 1654605533, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (103, 'zhangsan3', '102c10c70430b21450b737d0fc97ee26', '1m58dfrag2shql6b0cpw', 'v9q7m8', '张三', 13688888228, 1, '张三', '/storage/avatars/avatar_256_y9jdgpraot1653468730.png', 1, 5, 2, '', 1653408000, 0, 1654605533, 0, 0, '', 1); +INSERT INTO `oa_admin`(`id`, `username`, `pwd`, `salt`, `reg_pwd`, `name`, `mobile`, `sex`, `nickname`, `thumb`, `did`, `position_id`, `type`, `desc`, `entry_time`, `create_time`, `update_time`, `last_login_time`, `login_num`, `last_login_ip`, `status`) VALUES (104, 'ceshiyuangong', '30a58d123f372b6006bae874cdb2e4a3', 'qusxd4b98r6kh0jcvigo', '', '测试员工', 13300000001, 0, '测试员工', '/storage/avatars/avatar_256_3jy6lrbikq1654012653.png', 11, 8, 1, '', 1653926400, 0, 1654605533, 1654842444, 3, '27.36.90.63', 1); diff --git a/app/install/view/index/step1.html b/app/install/view/index/step1.html index 8989a86..904ba97 100644 --- a/app/install/view/index/step1.html +++ b/app/install/view/index/step1.html @@ -32,10 +32,13 @@
-

勾股OA是一套基于ThinkPHP{$TP_VERSION} + Layui{:LAYUI_VERSION} + MySql打造的轻量级、高性能OA办公系统。简单实用,系统集成了九大办公基本的功能模块:系统管理、基础数据、员工管理、消息通知、企业公告、知识文章、办公审批、日常办公、财务管理、商业智能等基础模块。系统易于功能扩展,方便二次开发,让开发者更专注于业务深度需求的开发,帮助开发者简单高效降低二次开发成本,通过二次开发之后可以用来做CRM,ERP,业务管理等系统。

- 免责声明:
- 1、使用勾股OA系统构建的网站的任何信息内容以及导致的任何版权纠纷和法律争议及后果,本(勾股OA)系统不承担任何责任。
- 2、您一旦安装使用勾股OA系统,即被视为完全理解并接受本协议的各项条款,在享有上述条款授予的权力的同时,受到相关的约束和限制。 +

勾股OA是一套基于ThinkPHP{$TP_VERSION} + Layui{:LAYUI_VERSION} + MySql打造的轻量级、高性能OA办公系统。简单实用,系统集成了十二大办公基本的功能模块:系统管理、基础数据、员工管理、消息通知、企业公告、知识文章、办公审批、日常办公、财务管理、客户管理、合同管理、项目管理等基础模块。系统易于功能扩展,方便二次开发,让开发者更专注于业务深度需求的开发,帮助开发者简单高效降低二次开发成本,通过二次开发之后可以用来做CRM,ERP,业务管理等系统。

+ 有限担保和免责声明:
+ 1、本软件及所附带的文件是作为不提供任何明确的或隐含的赔偿或担保的形式提供的。
+ 2、用户出于自愿而使用本软件,您必须了解使用本软件的风险。
+ 3、我们不承诺提供任何形式的技术支持、使用担保,也不承担任何因使用本软件而产生问题的相关责任。
+ 4、使用本软件构建的网站系统的任何信息内容以及导致的任何版权纠纷和法律争议及后果,本系统不承担任何责任。
+ 5、您一旦安装使用本软件,即被视为完全理解并接受本协议的各项条款,在享有上述条款授予的权力的同时,受到相关的约束和限制。

接受协议 diff --git a/app/note/common.php b/app/note/common.php index b4b0465..97b3b75 100644 --- a/app/note/common.php +++ b/app/note/common.php @@ -10,6 +10,18 @@ ====================== */ use think\facade\Db; +//读取公告分类子分类ids +function admin_note_cate_son($id = 0, $is_self = 1) +{ + $note = Db::name('NoteCate')->order('create_time asc')->select(); + $note_list = get_data_node($note, $id); + $note_array = array_column($note_list, 'id'); + if ($is_self == 1) { + //包括自己在内 + $note_array[] = $id; + } + return $note_array; +} //读取公告分类列表 function note_cate() diff --git a/app/note/controller/Index.php b/app/note/controller/Index.php index d3c8444..3a5e602 100644 --- a/app/note/controller/Index.php +++ b/app/note/controller/Index.php @@ -12,6 +12,7 @@ namespace app\note\controller; use app\base\BaseController; use app\note\model\Note as NoteList; use app\note\validate\NoteCheck; +use app\note\validate\NoteCateCheck; use think\exception\ValidateException; use think\facade\Db; use think\facade\View; @@ -72,6 +73,7 @@ class Index extends BaseController // 验证失败 输出错误信息 return to_assign(1, $e->getError()); } + $param['admin_id'] = $this->uid; $param['create_time'] = time(); $sid = NoteList::strict(false)->field(true)->insertGetId($param); if ($sid) { @@ -104,6 +106,7 @@ class Index extends BaseController $id = empty(get_params('id')) ? 0 : get_params('id'); $note = Db::name('Note')->where(['id' => $id])->find(); $note['cate_title'] = Db::name('NoteCate')->where(['id' => $note['cate_id']])->value('title'); + $note['admin_name'] = Db::name('Admin')->where(['id' => $note['admin_id']])->value('name'); View::assign('note', $note); return view(); } @@ -122,4 +125,88 @@ class Index extends BaseController return to_assign(0, "删除失败"); } } + +//公告类别 + public function note_cate() + { + if (request()->isAjax()) { + $cate = Db::name('NoteCate')->order('create_time asc')->select(); + return to_assign(0, '', $cate); + } else { + return view(); + } + } + + //公告类别添加 + public function note_cate_add() + { + $param = get_params(); + if (request()->isAjax()) { + if (!empty($param['id']) && $param['id'] > 0) { + try { + validate(NoteCateCheck::class)->scene('edit')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $note_array = admin_note_cate_son($param['id']); + if (in_array($param['pid'], $note_array)) { + return to_assign(1, '父级分类不能是该分类本身或其子分类'); + } else { + $param['update_time'] = time(); + $res = Db::name('NoteCate')->strict(false)->field(true)->update($param); + if ($res) { + add_log('edit', $param['id'], $param); + } + return to_assign(); + } + } else { + try { + validate(NoteCateCheck::class)->scene('add')->check($param); + } catch (ValidateException $e) { + // 验证失败 输出错误信息 + return to_assign(1, $e->getError()); + } + $param['create_time'] = time(); + $insertId = Db::name('NoteCate')->strict(false)->field(true)->insertGetId($param); + if ($insertId) { + add_log('add', $insertId, $param); + } + return to_assign(); + } + } else { + $id = isset($param['id']) ? $param['id'] : 0; + $pid = isset($param['pid']) ? $param['pid'] : 0; + $cate = $cate = Db::name('NoteCate')->order('id desc')->select()->toArray(); + $cates = set_recursion($cate); + if ($id > 0) { + $detail = Db::name('NoteCate')->where(['id' => $id])->find(); + View::assign('detail', $detail); + } + View::assign('id', $id); + View::assign('pid', $pid); + View::assign('cates', $cates); + return view(); + } + } + + //公告类别删除 + public function note_cate_delete() + { + $id = get_params("id"); + $cate_count = Db::name('NoteCate')->where(["pid" => $id])->count(); + if ($cate_count > 0) { + return to_assign(1, "该分类下还有子分类,无法删除"); + } + $content_count = Db::name('Note')->where(["cate_id" => $id])->count(); + if ($content_count > 0) { + return to_assign(1, "该分类下还有文章,无法删除"); + } + if (Db::name('NoteCate')->delete($id) !== false) { + add_log('delete', $id); + return to_assign(0, "删除分类成功"); + } else { + return to_assign(1, "删除失败"); + } + } } diff --git a/app/home/validate/NoteCateCheck.php b/app/note/validate/NoteCateCheck.php similarity index 95% rename from app/home/validate/NoteCateCheck.php rename to app/note/validate/NoteCateCheck.php index 8cf4586..30143db 100644 --- a/app/home/validate/NoteCateCheck.php +++ b/app/note/validate/NoteCateCheck.php @@ -5,7 +5,7 @@ * @link https://www.gougucms.com */ -namespace app\home\validate; +namespace app\note\validate; use think\Validate; diff --git a/app/note/view/index/index.html b/app/note/view/index/index.html index 22e499e..1223b48 100644 --- a/app/note/view/index/index.html +++ b/app/note/view/index/index.html @@ -29,6 +29,8 @@ elem: '#test', title: '公告列表', toolbar: '#toolbarDemo', + page: true, //开启分页 + limit: 20, url: "/note/index/index", //数据接口 cols: [ [ diff --git a/app/home/view/cate/note_cate.html b/app/note/view/index/note_cate.html similarity index 89% rename from app/home/view/cate/note_cate.html rename to app/note/view/index/note_cate.html index 2911e1e..d03ed58 100644 --- a/app/home/view/cate/note_cate.html +++ b/app/note/view/index/note_cate.html @@ -25,7 +25,7 @@ id:'treeTable' ,elem: '#treeTable' ,idField:'id' - ,url: "/home/cate/note_cate" + ,url: "/note/index/note_cate" ,cellMinWidth: 100 ,treeId:'id'//树形id字段名称 ,treeUpId:'pid'//树形父id字段名称 @@ -49,18 +49,18 @@ //表头工具栏事件 $('.add-menu').on('click', function(){ - tool.side("/home/cate/note_cate_add"); + tool.side("/note/index/note_cate_add"); return; }); //操作按钮 treeGrid.on('tool(treeTable)', function (obj) { if (obj.event === 'add') { - tool.side('/home/cate/note_cate_add?pid='+obj.data.id); + tool.side('/note/index/note_cate_add?pid='+obj.data.id); return; } if (obj.event === 'edit') { - tool.side('/home/cate/note_cate_add?id='+obj.data.id); + tool.side('/note/index/note_cate_add?id='+obj.data.id); return; } if (obj.event === 'del') { @@ -71,7 +71,7 @@ obj.del(); } } - tool.delete("/home/cate/note_cate_delete", { id: obj.data.id }, callback); + tool.delete("/note/index/note_cate_delete", { id: obj.data.id }, callback); layer.close(index); }); } diff --git a/app/home/view/cate/note_cate_add.html b/app/note/view/index/note_cate_add.html similarity index 97% rename from app/home/view/cate/note_cate_add.html rename to app/note/view/index/note_cate_add.html index 15a914f..a2dd67f 100644 --- a/app/home/view/cate/note_cate_add.html +++ b/app/note/view/index/note_cate_add.html @@ -73,7 +73,7 @@ }, 1000); } } - tool.post("/home/cate/note_cate_add", data.field, callback); + tool.post("/note/index/note_cate_add", data.field, callback); return false; }); } diff --git a/app/note/view/index/view.html b/app/note/view/index/view.html index f060a0a..97dd6fb 100644 --- a/app/note/view/index/view.html +++ b/app/note/view/index/view.html @@ -28,7 +28,7 @@

{$note.title}

- 发表于:{$note.create_time | date='Y-m-d H:i:s'}公告分类:{$note.cate_title} + {$note.admin_name}发表于:{$note.create_time | date='Y-m-d H:i:s'}公告分类:{$note.cate_title} 展示期间:{$note.start_time | date='Y-m-d'} - {$note.end_time | date='Y-m-d'}
diff --git a/config/log.php b/config/log.php index bc58d3b..8eef1b3 100644 --- a/config/log.php +++ b/config/log.php @@ -68,6 +68,9 @@ return [ 'enter' => '到账', 'tovoid' => '作废', 'leave' => '离职', + 'get' => '获取', + 'allot' => '分配', + 'tosea' => '公海移入', 'reset' => '重新设置', 'install' => '安装', 'uninstall' => '卸载', diff --git a/public/index.php b/public/index.php index 7a58e04..9fe1371 100644 --- a/public/index.php +++ b/public/index.php @@ -15,10 +15,10 @@ if (empty(file_exists(__DIR__ . '/../vendor/autoload.php'))) { require __DIR__ . '/../vendor/autoload.php'; // 定义当前版本号 -define('CMS_VERSION','3.7.01'); +define('CMS_VERSION','3.7.12'); // 定义Layui版本号 -define('LAYUI_VERSION','2.7.2'); +define('LAYUI_VERSION','2.7.4'); // 定义项目目录 define('CMS_ROOT', __DIR__ . '/../'); diff --git a/public/static/assets/gougu/css/gougu.css b/public/static/assets/gougu/css/gougu.css index e7de038..e2f5312 100644 --- a/public/static/assets/gougu/css/gougu.css +++ b/public/static/assets/gougu/css/gougu.css @@ -33,7 +33,7 @@ .layui-form-2 .layui-input-block{margin-left:130px;} .layui-table-form tbody tr:hover{background-color: #fff;} -.layui-td-gray,.layui-td-gray-2,.layui-td-gray-3,.layui-td-gray-4{color:#909399; width:68px; text-align:right; background-color:#f8f8f8;} +.layui-td-gray,.layui-td-gray-2,.layui-td-gray-3,.layui-td-gray-4{color:#909399; width:68px; text-align:right; background-color:#f7f7f7;} .layui-td-gray-2{width:96px;} .layui-td-gray-3{width:126px;} .layui-td-gray-4{width:152px;} @@ -53,7 +53,7 @@ .layui-data-none{padding:12px 0; color:#969696; text-align:center; font-size:12px;} .gougu-data-none{background:url(../images/data-none.png) no-repeat center center; background-size:auto 80%;} -html {background-color: #F7F7F7; color: #162a48} +html {background-color: #FAFAFA; color: #162a48} html,body{height:100%;} body.right-open{overflow:hidden;} .bg-white{background-color:#fff;} diff --git a/public/static/assets/gougu/css/layout.css b/public/static/assets/gougu/css/layout.css index 404a71c..78cf2cb 100644 --- a/public/static/assets/gougu/css/layout.css +++ b/public/static/assets/gougu/css/layout.css @@ -32,7 +32,7 @@ .layui-side-menu .layui-nav .layui-nav-item .layui-icon{position: absolute; top: 50%;left: 16px; margin-top: -20px} .layui-side-menu .layui-nav .layui-nav-item .bi, .layui-side-menu .layui-nav .layui-nav-item .iconfont{font-size:18px;} -.layui-side-menu .layui-nav .layui-nav-item .layui-nav-more {margin-top: -24px} +.layui-side-menu .layui-nav .layui-nav-item .layui-nav-more {margin-top: -24px; color:#677C91} .layui-side-menu .layui-nav .layui-nav-child .layui-nav-child { background: 0 0 !important} .layui-side-menu .layui-nav .layui-nav-child .layui-nav-child a {padding-left: 55px} diff --git a/public/static/assets/gougu/module/admin.js b/public/static/assets/gougu/module/admin.js index 06dd254..b0ec592 100644 --- a/public/static/assets/gougu/module/admin.js +++ b/public/static/assets/gougu/module/admin.js @@ -12,7 +12,7 @@ layui.define(['element'], function (exports) { title: '' + title, content: '', }); - $('#GouguAppBody').append('
'); + $('#GouguAppBody').append('
'); this.tabChange(id); var thetabs = $('#pageTabs .layui-tab-title').find('li'); if (thetabs.length > 12) { diff --git a/public/static/assets/layui/layui.js b/public/static/assets/layui/layui.js index 29cd3c0..ea9ec10 100644 --- a/public/static/assets/layui/layui.js +++ b/public/static/assets/layui/layui.js @@ -1 +1 @@ -/** 2.7.3 | MIT Licensed */;!function(d){"use strict";var t,h=d.document,m={modules:{},status:{},timeout:10,event:{}},r=function(){this.v="2.7.3"},e=d.LAYUI_GLOBAL||{},v=(t=h.currentScript?h.currentScript.src:function(){for(var t,e=h.scripts,o=e.length-1,r=o;01e3*m.timeout/4?g(u+" is not a valid module","error"):void(m.status[u]?c():setTimeout(r,4))}())}function c(){e.push(layui[u]),11e3*m.timeout/4?g(u+" is not a valid module","error"):void("string"==typeof m.modules[u]&&m.status[u]?c():setTimeout(f,4))}():((p=h.createElement("script"))["async"]=!0,p.charset="utf-8",p.src=y+((i=!0===m.version?m.v||(new Date).getTime():m.version||"")?"?v="+i:""),a.appendChild(p),!p.attachEvent||p.attachEvent.toString&&p.attachEvent.toString().indexOf("[native code")<0||b?p.addEventListener("load",function(t){s(t,y)},!1):p.attachEvent("onreadystatechange",function(t){s(t,y)}),m.modules[u]=y),n},r.prototype.disuse=function(t){var o=this;return t=o.isArray(t)?t:[t],o.each(t,function(t,e){m.status[e],delete o[e],delete N[e],delete o.modules[e],delete m.status[e],delete m.modules[e]}),o},r.prototype.getStyle=function(t,e){t=t.currentStyle||d.getComputedStyle(t,null);return t[t.getPropertyValue?"getPropertyValue":"getAttribute"](e)},r.prototype.link=function(o,r,t){var n=this,e=h.getElementsByTagName("head")[0],i=h.createElement("link"),t=((t="string"==typeof r?r:t)||o).replace(/\.|\//g,""),a=i.id="layuicss-"+t,u="creating",l=0;return i.rel="stylesheet",i.href=o+(m.debug?"?v="+(new Date).getTime():""),i.media="all",h.getElementById(a)||e.appendChild(i),"function"!=typeof r||function s(t){var e=h.getElementById(a);return++l>1e3*m.timeout/100?g(o+" timeout"):void(1989===parseInt(n.getStyle(e,"width"))?(t===u&&e.removeAttribute("lay-status"),e.getAttribute("lay-status")===u?setTimeout(s,100):r()):(e.setAttribute("lay-status",u),setTimeout(function(){s(u)},100)))}(),n},r.prototype.addcss=function(t,e,o){return layui.link(m.dir+"css/"+t,e,o)},m.callback={},r.prototype.factory=function(t){if(layui[t])return"function"==typeof m.callback[t]?m.callback[t]:null},r.prototype.img=function(t,e,o){var r=new Image;if(r.src=t,r.complete)return e(r);r.onload=function(){r.onload=null,"function"==typeof e&&e(r)},r.onerror=function(t){r.onerror=null,"function"==typeof o&&o(t)}},r.prototype.config=function(t){for(var e in t=t||{})m[e]=t[e];return this},r.prototype.modules=function(){var t,e={};for(t in N)e[t]=N[t];return e}(),r.prototype.extend=function(t){for(var e in t=t||{})this[e]||this.modules[e]?g(e+" Module already exists","error"):this.modules[e]=t[e];return this},r.prototype.router=r.prototype.hash=function(t){var o={path:[],search:{},hash:((t=t||location.hash).match(/[^#](#.*$)/)||[])[1]||""};return/^#\//.test(t)&&(t=t.replace(/^#\//,""),o.href="/"+t,t=t.replace(/([^#])(#.*$)/,"$1").split("/")||[],this.each(t,function(t,e){/^\w+=/.test(e)?(e=e.split("="),o.search[e[0]]=e[1]):o.path.push(e)})),o},r.prototype.url=function(t){var n,e,o=this;return{pathname:(t?((t.match(/\.[^.]+?\/.+/)||[])[0]||"").replace(/^[^\/]+/,"").replace(/\?.+/,""):location.pathname).replace(/^\//,"").split("/"),search:(n={},e=(t?((t.match(/\?.+/)||[])[0]||"").replace(/\#.+/,""):location.search).replace(/^\?+/,"").split("&"),o.each(e,function(t,e){var o=e.indexOf("="),r=o<0?e.substr(0,e.length):0!==o&&e.substr(0,o);r&&(n[r]=0(l.innerHeight||f.documentElement.clientHeight)},h.position=function(t,e,n){var o,i,r,c,u,a,s;e&&(n=n||{},t!==f&&t!==h("body")[0]||(n.clickType="right"),u="right"===n.clickType?{left:(u=n.e||l.event||{}).clientX,top:u.clientY,right:u.clientX,bottom:u.clientY}:t.getBoundingClientRect(),a=e.offsetWidth,s=e.offsetHeight,o=function(t){return f.body[t=t?"scrollLeft":"scrollTop"]|f.documentElement[t]},r=u.left,c=u.bottom,"center"===n.align?r-=(a-t.offsetWidth)/2:"right"===n.align&&(r=r-a+t.offsetWidth),(r=r+a+5>(i=function(t){return f.documentElement[t?"clientWidth":"clientHeight"]})("width")?i("width")-a-5:r)<5&&(r=5),c+s+5>i()&&(u.top>s+5?c=u.top-s-10:"right"===n.clickType?(c=i()-s-10)<0&&(c=0):c=5),(a=n.position)&&(e.style.position=a),e.style.left=r+("fixed"===a?0:o(1))+"px",e.style.top=c+("fixed"===a?0:o())+"px",h.hasScrollbar()||(s=e.getBoundingClientRect(),!n.SYSTEM_RELOAD&&s.bottom+5>i()&&(n.SYSTEM_RELOAD=!0,setTimeout(function(){h.position(t,e,n)},50))))},h.options=function(t,e){t=h(t),e=e||"lay-options";try{return new Function("return "+(t.attr(e)||"{}"))()}catch(n){return hint.error("parseerror\uff1a"+n,"error"),{}}},h.isTopElem=function(n){var t=[f,h("body")[0]],o=!1;return h.each(t,function(t,e){if(e===n)return o=!0}),o},i.addStr=function(n,t){return n=n.replace(/\s+/," "),t=t.replace(/\s+/," ").split(" "),h.each(t,function(t,e){new RegExp("\\b"+e+"\\b").test(n)||(n=n+" "+e)}),n.replace(/^\s|\s$/,"")},i.removeStr=function(n,t){return n=n.replace(/\s+/," "),t=t.replace(/\s+/," ").split(" "),h.each(t,function(t,e){e=new RegExp("\\b"+e+"\\b");e.test(n)&&(n=n.replace(e,""))}),n.replace(/\s+/," ").replace(/^\s|\s$/,"")},i.prototype.find=function(o){var i=this,r=0,c=[],u="object"==typeof o;return this.each(function(t,e){for(var n=u?e.contains(o):e.querySelectorAll(o||null);r]|&(?=#[a-zA-Z0-9]+)/g.test(e+="")?e.replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,"""):e},error:function(e,r){var n="Laytpl Error: ";return"object"==typeof console&&console.error(n+e+"\n"+(r||"")),n+e}},l=a.exp,r=function(e){this.tpl=e},n=(r.pt=r.prototype,window.errors=0,r.pt.parse=function(e,r){var n=e,c=l("^"+p.open+"#",""),t=l(p.close+"$","");e='"use strict";var view = "'+(e=e.replace(/\s+|\r|\t|\n/g," ").replace(l(p.open+"#"),p.open+"# ").replace(l(p.close+"}"),"} "+p.close).replace(/\\/g,"\\\\").replace(l(p.open+"!(.+?)!"+p.close),function(e){return e=e.replace(l("^"+p.open+"!"),"").replace(l("!"+p.close),"").replace(l(p.open+"|"+p.close),function(e){return e.replace(/(.)/g,"\\$1")})}).replace(/(?="|')/g,"\\").replace(a.query(),function(e){return'";'+(e=e.replace(c,"").replace(t,"")).replace(/\\(.)/g,"$1")+';view+="'}).replace(a.query(1),function(e){var r='"+laytpl.escape(';return e.replace(/\s/g,"")===p.open+p.close?"":(e=e.replace(l(p.open+"|"+p.close),""),/^=/.test(e)?e=e.replace(/^=/,""):/^-/.test(e)&&(e=e.replace(/^-/,""),r='"+('),r+e.replace(/\\(.)/g,"$1")+')+"')}))+'";return view;';try{return this.cache=e=new Function("d, laytpl",e),e(r,a)}catch(o){return delete this.cache,a.error(o,n)}},r.pt.render=function(e,r){var n=this;return e?(e=n.cache?n.cache(e,a):n.parse(n.tpl,e),r?void r(e):e):a.error("no data")},function(e){return"string"!=typeof e?a.error("Template not found"):new r(e)});n.config=function(e){for(var r in e=e||{})p[r]=e[r]},n.v="1.2.0",e("laytpl",n)});layui.define(function(e){"use strict";var n=document,u="getElementById",c="getElementsByTagName",a="layui-disabled",t=function(e){var a=this;a.config=e||{},a.config.index=++o.index,a.render(!0)},o=(t.prototype.type=function(){var e=this.config;if("object"==typeof e.elem)return e.elem.length===undefined?2:3},t.prototype.view=function(){var t,i,r=this.config,n=r.groups="groups"in r?Number(r.groups)||0:5,u=(r.layout="object"==typeof r.layout?r.layout:["prev","page","next"],r.count=Number(r.count)||0,r.curr=Number(r.curr)||1,r.limits="object"==typeof r.limits?r.limits:[10,20,30,40,50],r.limit=Number(r.limit)||10,r.pages=Math.ceil(r.count/r.limit)||1,r.curr>r.pages?r.curr=r.pages:r.curr<1&&(r.curr=1),n<0?n=1:n>r.pages&&(n=r.pages),r.prev="prev"in r?r.prev:"上一页",r.next="next"in r?r.next:"下一页",r.pages>n?Math.ceil((r.curr+(1'+r.prev+"":"",page:function(){var e=[];if(r.count<1)return"";1'+(r.first||1)+"");var a=Math.floor((n-1)/2),t=1r.pages?r.pages:a:n;for(i-t…');t<=i;t++)t===r.curr?e.push('"+t+""):e.push(''+t+"");return r.pages>n&&r.pages>i&&!1!==r.last&&(i+1…'),0!==n&&e.push(''+(r.last||r.pages)+"")),e.join("")}(),next:r.next?''+r.next+"":"",count:'\u5171 '+r.count+" \u6761",limit:(t=['"),refresh:['','',""].join(""),skip:['到第','','页',""].join("")};return['
',(i=[],layui.each(r.layout,function(e,a){s[a]&&i.push(s[a])}),i.join("")),"
"].join("")},t.prototype.jump=function(e,a){if(e){var t=this,i=t.config,r=e.children,n=e[c]("button")[0],u=e[c]("input")[0],e=e[c]("select")[0],s=function(){var e=Number(u.value.replace(/\s|\D/g,""));e&&(i.curr=e,t.render())};if(a)return s();for(var l=0,p=r.length;li.pages||(i.curr=e,t.render())});e&&o.on(e,"change",function(){var e=this.value;i.curr*e>i.count&&(i.curr=Math.ceil(i.count/e)),i.limit=e,t.render()}),n&&o.on(n,"click",function(){s()})}},t.prototype.skip=function(t){var i,e;t&&(i=this,(e=t[c]("input")[0])&&o.on(e,"keyup",function(e){var a=this.value,e=e.keyCode;/^(37|38|39|40)$/.test(e)||(/\D/.test(a)&&(this.value=a.replace(/\D/,"")),13===e&&i.jump(t,!0))}))},t.prototype.render=function(e){var a=this,t=a.config,i=a.type(),r=a.view(),i=(2===i?t.elem&&(t.elem.innerHTML=r):3===i?t.elem.html(r):n[u](t.elem)&&(n[u](t.elem).innerHTML=r),t.jump&&t.jump(t,e),n[u]("layui-laypage-"+t.index));a.jump(i),t.hash&&!e&&(location.hash="!"+t.hash+"="+t.curr),a.skip(i)},{render:function(e){return new t(e).index},index:layui.laypage?layui.laypage.index+1e4:0,on:function(a,e,t){return a.attachEvent?a.attachEvent("on"+e,function(e){e.target=e.srcElement,t.call(a,e)}):a.addEventListener(e,t,!1),this}});e("laypage",o)});!function(i,r){"use strict";var n=i.layui&&layui.define,l={getPath:i.lay&&lay.getPath?lay.getPath:"",link:function(e,t,a){u.path&&i.lay&&lay.layui&&lay.layui.link(u.path+e,t,a)}},e=i.LAYUI_GLOBAL||{},u={v:"5.3.1",config:{weekStart:0},index:i.laydate&&i.laydate.v?1e5:0,path:e.laydate_dir||l.getPath,set:function(e){var t=this;return t.config=lay.extend({},t.config,e),t},ready:function(e){var t="laydate",a=(n?"modules/laydate/":"theme/")+"default/laydate.css?v="+u.v;return n?layui.addcss(a,e,t):l.link(a,e,t),this}},s=function(){var t=this,e=t.config.id;return{hint:function(e){t.hint.call(t,e)},config:(s.that[e]=t).config}},a="laydate",w="layui-this",x="laydate-disabled",h=[100,2e5],p="layui-laydate-static",M="layui-laydate-list",o="layui-laydate-hint",E=".laydate-btns-confirm",C="laydate-time-text",k="laydate-btns-time",f="layui-laydate-preview",g=function(e){var t=this;t.index=++u.index,t.config=lay.extend({},t.config,u.config,e),(e=t.config).id="id"in e?e.id:t.index,u.ready(function(){t.init()})},y="yyyy|y|MM|M|dd|d|HH|H|mm|m|ss|s";s.formatArr=function(e){return(e||"").match(new RegExp(y+"|.","g"))||[]},g.isLeapYear=function(e){return e%4==0&&e%100!=0||e%400==0},g.prototype.config={type:"date",range:!1,format:"yyyy-MM-dd",value:null,isInitValue:!0,min:"1900-1-1",max:"2099-12-31",trigger:"click",show:!1,showBottom:!0,isPreview:!0,btns:["clear","now","confirm"],lang:"cn",theme:"default",position:null,calendar:!1,mark:{},holidays:null,zIndex:null,done:null,change:null},g.prototype.lang=function(){var e={cn:{weeks:["\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d"],time:["\u65f6","\u5206","\u79d2"],timeTips:"\u9009\u62e9\u65f6\u95f4",startTime:"\u5f00\u59cb\u65f6\u95f4",endTime:"\u7ed3\u675f\u65f6\u95f4",dateTips:"\u8fd4\u56de\u65e5\u671f",month:["\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d","\u4e03","\u516b","\u4e5d","\u5341","\u5341\u4e00","\u5341\u4e8c"],tools:{confirm:"\u786e\u5b9a",clear:"\u6e05\u7a7a",now:"\u73b0\u5728"},timeout:"\u7ed3\u675f\u65f6\u95f4\u4e0d\u80fd\u65e9\u4e8e\u5f00\u59cb\u65f6\u95f4
\u8bf7\u91cd\u65b0\u9009\u62e9",invalidDate:"\u4e0d\u5728\u6709\u6548\u65e5\u671f\u6216\u65f6\u95f4\u8303\u56f4\u5185",formatError:["\u65e5\u671f\u683c\u5f0f\u4e0d\u5408\u6cd5
\u5fc5\u987b\u9075\u5faa\u4e0b\u8ff0\u683c\u5f0f\uff1a
","
\u5df2\u4e3a\u4f60\u91cd\u7f6e"],preview:"\u5f53\u524d\u9009\u4e2d\u7684\u7ed3\u679c"},en:{weeks:["Su","Mo","Tu","We","Th","Fr","Sa"],time:["Hours","Minutes","Seconds"],timeTips:"Select Time",startTime:"Start Time",endTime:"End Time",dateTips:"Select Date",month:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],tools:{confirm:"Confirm",clear:"Clear",now:"Now"},timeout:"End time cannot be less than start Time
Please re-select",invalidDate:"Invalid date",formatError:["The date format error
Must be followed\uff1a
","
It has been reset"],preview:"The selected result"}};return e[this.config.lang]||e.cn},g.prototype.init=function(){var r=this,o=r.config,e="static"===o.position,t={year:"yyyy",month:"yyyy-MM",date:"yyyy-MM-dd",time:"HH:mm:ss",datetime:"yyyy-MM-dd HH:mm:ss"};o.elem=lay(o.elem),o.eventElem=lay(o.eventElem),o.elem[0]&&(r.rangeStr=o.range?"string"==typeof o.range?o.range:"-":"","array"===layui.type(o.range)&&(r.rangeElem=[lay(o.range[0]),lay(o.range[1])]),t[o.type]||(i.console&&console.error&&console.error("laydate type error:'"+o.type+"' is not supported"),o.type="date"),o.format===t.date&&(o.format=t[o.type]||t.date),r.format=s.formatArr(o.format),o.weekStart&&!/^[0-6]$/.test(o.weekStart)&&(t=r.lang(),o.weekStart=t.weeks.indexOf(o.weekStart),-1===o.weekStart&&(o.weekStart=0)),r.EXP_IF="",r.EXP_SPLIT="",lay.each(r.format,function(e,t){e=new RegExp(y).test(t)?"\\d{"+(new RegExp(y).test(r.format[0===e?e+1:e-1]||"")?/^yyyy|y$/.test(t)?4:t.length:/^yyyy$/.test(t)?"1,4":/^y$/.test(t)?"1,308":"1,2")+"}":"\\"+t;r.EXP_IF=r.EXP_IF+e,r.EXP_SPLIT=r.EXP_SPLIT+"("+e+")"}),r.EXP_IF_ONE=new RegExp("^"+r.EXP_IF+"$"),r.EXP_IF=new RegExp("^"+(o.range?r.EXP_IF+"\\s\\"+r.rangeStr+"\\s"+r.EXP_IF:r.EXP_IF)+"$"),r.EXP_SPLIT=new RegExp("^"+r.EXP_SPLIT+"$",""),r.isInput(o.elem[0])||"focus"===o.trigger&&(o.trigger="click"),o.elem.attr("lay-key")||(o.elem.attr("lay-key",r.index),o.eventElem.attr("lay-key",r.index)),o.mark=lay.extend({},o.calendar&&"cn"===o.lang?{"0-1-1":"\u5143\u65e6","0-2-14":"\u60c5\u4eba","0-3-8":"\u5987\u5973","0-3-12":"\u690d\u6811","0-4-1":"\u611a\u4eba","0-5-1":"\u52b3\u52a8","0-5-4":"\u9752\u5e74","0-6-1":"\u513f\u7ae5","0-9-10":"\u6559\u5e08","0-10-1":"\u56fd\u5e86","0-12-25":"\u5723\u8bde"}:{},o.mark),lay.each(["min","max"],function(e,t){var a,n,i=[],l=[];l="number"==typeof o[t]?(n=o[t],a=new Date,a=r.newDate({year:a.getFullYear(),month:a.getMonth(),date:a.getDate(),hours:"23",minutes:"59",seconds:"59"}).getTime(),i=[(n=new Date(n?n<864e5?a+864e5*n:n:a)).getFullYear(),n.getMonth()+1,n.getDate()],[n.getHours(),n.getMinutes(),n.getSeconds()]):(i=(o[t].match(/\d+-\d+-\d+/)||[""])[0].split("-"),(o[t].match(/\d+:\d+:\d+/)||[""])[0].split(":")),o[t]={year:0|i[0]||(new Date).getFullYear(),month:i[1]?(0|i[1])-1:(new Date).getMonth(),date:0|i[2]||(new Date).getDate(),hours:0|l[0],minutes:0|l[1],seconds:0|l[2]}}),r.elemID="layui-laydate"+o.elem.attr("lay-key"),(o.show||e)&&r.render(),e||r.events(),o.value&&o.isInitValue&&("date"===layui.type(o.value)?r.setValue(r.parse(0,r.systemDate(o.value))):r.setValue(o.value)))},g.prototype.render=function(){var n,e,t=this,o=t.config,s=t.lang(),i="static"===o.position,a=t.elem=lay.elem("div",{id:t.elemID,"class":["layui-laydate",o.range?" layui-laydate-range":"",i?" "+p:"",o.theme&&"default"!==o.theme&&!/^#/.test(o.theme)?" laydate-theme-"+o.theme:""].join("")}),y=t.elemMain=[],d=t.elemHeader=[],m=t.elemCont=[],c=t.table=[],l=t.footer=lay.elem("div",{"class":"layui-laydate-footer"});o.zIndex&&(a.style.zIndex=o.zIndex),lay.each(new Array(2),function(e){if(!o.range&&0'+s.timeTips+""),!o.range&&"datetime"===o.type||e.push(''),lay.each(o.btns,function(e,t){var a=s.tools[t]||"btn";o.range&&"now"===t||(i&&"clear"===t&&(a="cn"===o.lang?"\u91cd\u7f6e":"Reset"),n.push(''+a+""))}),e.push('"),e.join(""))),lay.each(y,function(e,t){a.appendChild(t)}),o.showBottom&&a.appendChild(l),/^#/.test(o.theme)&&(e=lay.elem("style"),l=["#{{id}} .layui-laydate-header{background-color:{{theme}};}","#{{id}} .layui-this{background-color:{{theme}} !important;}"].join("").replace(/{{id}}/g,t.elemID).replace(/{{theme}}/g,o.theme),"styleSheet"in e?(e.setAttribute("type","text/css"),e.styleSheet.cssText=l):e.innerHTML=l,lay(a).addClass("laydate-theme-molv"),a.appendChild(e)),t.remove(g.thisElemDate),u.thisId=o.id,i?o.elem.append(a):(r.body.appendChild(a),t.position()),t.checkDate().calendar(null,0,"init"),t.changeEvent(),g.thisElemDate=t.elemID,"function"==typeof o.ready&&o.ready(lay.extend({},o.dateTime,{month:o.dateTime.month+1})),t.preview()},g.prototype.remove=function(e){var t=this,a=(t.config,lay("#"+(e||t.elemID)));return a[0]&&(a.hasClass(p)||t.checkDate(function(){a.remove(),delete u.thisId})),t},g.prototype.position=function(){var e=this.config;return lay.position(this.bindElem||e.elem[0],this.elem,{position:e.position}),this},g.prototype.hint=function(e){var t=this,a=(t.config,lay.elem("div",{"class":o}));t.elem&&(a.innerHTML=e||"",lay(t.elem).find("."+o).remove(),t.elem.appendChild(a),clearTimeout(t.hinTimer),t.hinTimer=setTimeout(function(){lay(t.elem).find("."+o).remove()},3e3))},g.prototype.getAsYM=function(e,t,a){return a?t--:t++,t<0&&(t=11,e--),11h[1]&&(e.year=h[1],o=!0),11t&&(e.date=t,o=!0)},r=function(n,i,l){var r=["startTime","endTime"];i=(i.match(s.EXP_SPLIT)||[]).slice(1),l=l||0,y.range&&(s[r[l]]=s[r[l]]||{}),lay.each(s.format,function(e,t){var a=parseFloat(i[e]);i[e].lengthc(y.max)?n=y.dateTime=lay.extend({},y.max):c(n)c(y.max))&&(s.endDate=lay.extend({},y.max)),e&&e(),s},g.prototype.mark=function(e,a){var n,t=this.config;return lay.each(t.mark,function(e,t){e=e.split("-");e[0]!=a[0]&&0!=e[0]||e[1]!=a[1]&&0!=e[1]||e[2]!=a[2]||(n=t||a[2])}),n&&e.html(''+n+""),this},g.prototype.holidays=function(n,i){var e=this.config,l=["","work"];return"array"!==layui.type(e.holidays)||lay.each(e.holidays,function(a,e){lay.each(e,function(e,t){t===n.attr("lay-ymd")&&n.html('"+i[2]+"")})}),this},g.prototype.limit=function(e,t,a,i){var l=this,n=l.config,r={},a=n[41r.max,e&&e[t?"addClass":"removeClass"](x),t},g.prototype.thisDateTime=function(e){var t=this.config;return e?this.endDate:t.dateTime},g.prototype.calendar=function(e,t,a){var i,l,r,o=this,n=o.config,t=t?1:0,s=e||o.thisDateTime(t),y=new Date,d=o.lang(),m="date"!==n.type&&"datetime"!==n.type,c=lay(o.table[t]).find("td"),t=lay(o.elemHeader[t][2]).find("span");return s.yearh[1]&&(s.year=h[1],o.hint(d.invalidDate)),o.firstDate||(o.firstDate=lay.extend({},s)),y.setFullYear(s.year,s.month,1),i=(y.getDay()+(7-n.weekStart))%7,l=u.getEndDate(s.month||12,s.year),r=u.getEndDate(s.month+1,s.year),lay.each(c,function(e,t){var a=[s.year,s.month],n=0;(t=lay(t)).removeAttr("class"),e"+d.time[t]+"

    "];lay.each(new Array(e),function(e){n.push(""+lay.digit(e,2)+"")}),a.innerHTML=n.join("")+"
",m.appendChild(a)}),l()),p&&h.removeChild(p),h.appendChild(m),"year"===t||"month"===t?(lay(o.elemMain[n]).addClass("laydate-ym-show"),lay(m).find("li").on("click",function(){var e=0|lay(this).attr("lay-ym");lay(this).hasClass(x)||(0===n?(y[t]=e,o.limit(lay(o.footer).find(E),null,0)):o.endDate[t]=e,"year"===s.type||"month"===s.type?(lay(m).find("."+w).removeClass(w),lay(this).addClass(w),"month"===s.type&&"year"===t&&(o.listYM[n][0]=e,a&&((n?o.endDate:y).year=e),o.list("month",n))):(o.checkDate("limit").calendar(null,n),o.closeList()),o.setBtnStatus(),s.range||("month"===s.type&&"month"===t||"year"===s.type&&"year"===t)&&o.setValue(o.parse()).remove().done(),o.done(null,"change"),lay(o.footer).find("."+k).removeClass(x))})):(e=lay.elem("span",{"class":C}),r=function(){lay(m).find("ol").each(function(e){var a=this,t=lay(a).find("li");a.scrollTop=30*(o[D][T[e]]-2),a.scrollTop<=0&&t.each(function(e,t){if(!lay(this).hasClass(x))return a.scrollTop=30*(e-2),!0})})},u=lay(c[2]).find("."+C),r(),e.innerHTML=s.range?[d.startTime,d.endTime][n]:d.timeTips,lay(o.elemMain[n]).addClass("laydate-time-show"),u[0]&&u.remove(),c[2].appendChild(e),lay(m).find("ol").each(function(t){var a=this;lay(a).find("li").on("click",function(){var e=0|this.innerHTML;lay(this).hasClass(x)||(s.range?o[D][T[t]]=e:y[T[t]]=e,lay(a).find("."+w).removeClass(w),lay(this).addClass(w),l(),r(),!o.endDate&&"time"!==s.type||o.done(null,"change"),o.setBtnStatus())})})),o},g.prototype.listYM=[],g.prototype.closeList=function(){var a=this;a.config;lay.each(a.elemCont,function(e,t){lay(this).find("."+M).remove(),lay(a.elemMain[e]).removeClass("laydate-ym-show laydate-time-show")}),lay(a.elem).find("."+C).remove()},g.prototype.setBtnStatus=function(e,t,a){var n=this,i=n.config,l=n.lang(),r=lay(n.footer).find(E);i.range&&"time"!==i.type&&(t=t||i.dateTime,a=a||n.endDate,i=n.newDate(t).getTime()>n.newDate(a).getTime(),n.limit(null,t)||n.limit(null,a)?r.addClass(x):r[i?"addClass":"removeClass"](x),e&&i&&n.hint("string"==typeof e?l.timeout.replace(/\u65e5\u671f/g,e):l.timeout))},g.prototype.parse=function(e,t){var a=this,n=a.config,t=t||("end"==e?lay.extend({},a.endDate,a.endTime):n.range?lay.extend({},n.dateTime,a.startTime):n.dateTime),t=u.parse(t,a.format,1);return n.range&&e===undefined?t+" "+a.rangeStr+" "+a.parse("end"):t},g.prototype.newDate=function(e){return e=e||{},new Date(e.year||1,e.month||0,e.date||1,e.hours||0,e.minutes||0,e.seconds||0)},g.prototype.setValue=function(e){var t=this,a=t.config,n=t.bindElem||a.elem[0];return"static"===a.position||(e=e||"",t.isInput(n)?lay(n).val(e):(a=t.rangeElem)?("array"!==layui.type(e)&&(e=e.split(" "+t.rangeStr+" ")),a[0].val(e[0]||""),a[1].val(e[1]||"")):(0===lay(n).find("*").length&&lay(n).html(e),lay(n).attr("lay-date",e))),t},g.prototype.preview=function(){var e,t=this,a=t.config;a.isPreview&&(e=lay(t.elem).find("."+f),a=!a.range||t.endDate?t.parse():"",e.html(a).css({color:"#5FB878"}),setTimeout(function(){e.css({color:"#666"})},300))},g.prototype.done=function(e,t){var a=this,n=a.config,i=lay.extend({},lay.extend(n.dateTime,a.startTime)),l=lay.extend({},lay.extend(a.endDate,a.endTime));return lay.each([i,l],function(e,t){"month"in t&&lay.extend(t,{month:t.month+1})}),a.preview(),e=e||[a.parse(),i,l],"function"==typeof n[t||"done"]&&n[t||"done"].apply(n,e),a},g.prototype.choose=function(e,t){var a=this,n=a.config,i=a.thisDateTime(t),l=(lay(a.elem).find("td"),{year:0|(l=e.attr("lay-ymd").split("-"))[0],month:(0|l[1])-1,date:0|l[2]});e.hasClass(x)||(lay.extend(i,l),n.range?(lay.each(["startTime","endTime"],function(e,t){a[t]=a[t]||{hours:e?23:0,minutes:e?59:0,seconds:e?59:0}}),a.calendar(null,t).done(null,"change")):"static"===n.position?a.calendar().done().done(null,"change"):"date"===n.type?a.setValue(a.parse()).remove().done():"datetime"===n.type&&a.calendar().done(null,"change"))},g.prototype.tool=function(e,t){var a=this,n=a.config,i=a.lang(),l=n.dateTime,r="static"===n.position,o={datetime:function(){lay(e).hasClass(x)||(a.list("time",0),n.range&&a.list("time",1),lay(e).attr("lay-type","date").html(a.lang().dateTips))},date:function(){a.closeList(),lay(e).attr("lay-type","datetime").html(a.lang().timeTips)},clear:function(){r&&(lay.extend(l,a.firstDate),a.calendar()),n.range&&(delete n.dateTime,delete a.endDate,delete a.startTime,delete a.endTime),a.setValue("").remove(),a.done(["",{},{}])},now:function(){var e=new Date;lay.extend(l,a.systemDate(),{hours:e.getHours(),minutes:e.getMinutes(),seconds:e.getSeconds()}),a.setValue(a.parse()).remove(),r&&a.calendar(),a.done()},confirm:function(){if(n.range){if(lay(e).hasClass(x))return a.hint("time"===n.type?i.timeout.replace(/\u65e5\u671f/g,"\u65f6\u95f4"):i.timeout)}else if(lay(e).hasClass(x))return a.hint(i.invalidDate);a.setValue(a.parse()).remove(),a.done()}};o[t]&&o[t]()},g.prototype.change=function(n){var i=this,l=i.config,r=i.thisDateTime(n),o=l.range&&("year"===l.type||"month"===l.type),s=i.elemCont[n||0],y=i.listYM[n],e=function(e){var t=lay(s).find(".laydate-year-list")[0],a=lay(s).find(".laydate-month-list")[0];return t&&(y[0]=e?y[0]-15:y[0]+15,i.list("year",n)),a&&(e?y[0]--:y[0]++,i.list("month",n)),(t||a)&&(lay.extend(r,{year:y[0]}),o&&(r.year=y[0]),l.range||i.done(null,"change"),l.range||i.limit(lay(i.footer).find(E),{year:y[0]})),i.setBtnStatus(),t||a};return{prevYear:function(){e("sub")||(r.year--,i.checkDate("limit").calendar(null,n),i.done(null,"change"))},prevMonth:function(){var e=i.getAsYM(r.year,r.month,"sub");lay.extend(r,{year:e[0],month:e[1]}),i.checkDate("limit").calendar(null,n),i.done(null,"change")},nextMonth:function(){var e=i.getAsYM(r.year,r.month);lay.extend(r,{year:e[0],month:e[1]}),i.checkDate("limit").calendar(null,n),i.done(null,"change")},nextYear:function(){e()||(r.year++,i.checkDate("limit").calendar(null,n),i.done(null,"change"))}}},g.prototype.changeEvent=function(){var i=this;i.config;lay(i.elem).on("click",function(e){lay.stope(e)}).on("mousedown",function(e){lay.stope(e)}),lay.each(i.elemHeader,function(n,e){lay(e[0]).on("click",function(e){i.change(n).prevYear()}),lay(e[1]).on("click",function(e){i.change(n).prevMonth()}),lay(e[2]).find("span").on("click",function(e){var t=lay(this),a=t.attr("lay-ym"),t=t.attr("lay-type");a&&(a=a.split("-"),i.listYM[n]=[0|a[0],0|a[1]],i.list(t,n),lay(i.footer).find("."+k).addClass(x))}),lay(e[3]).on("click",function(e){i.change(n).nextMonth()}),lay(e[4]).on("click",function(e){i.change(n).nextYear()})}),lay.each(i.table,function(e,t){lay(t).find("td").on("click",function(){i.choose(lay(this),e)})}),lay(i.footer).find("span").on("click",function(){var e=lay(this).attr("lay-type");i.tool(this,e)})},g.prototype.isInput=function(e){return/input|textarea/.test(e.tagName.toLocaleLowerCase())||/INPUT|TEXTAREA/.test(e.tagName)},g.prototype.events=function(){var a=this,n=a.config,e=function(e,t){e.on(n.trigger,function(){u.thisId!==n.id&&(t&&(a.bindElem=this),a.render())})};n.elem[0]&&!n.elem[0].eventHandler&&(e(n.elem,"bind"),e(n.eventElem),n.elem[0].eventHandler=!0)},s.that={},s.getThis=function(e){var t=s.that[e];return!t&&n&&layui.hint().error(e?a+" instance with ID '"+e+"' not found":"ID argument required"),t},l.run=function(n){n(r).on("mousedown",function(e){var t,a;!u.thisId||(t=s.getThis(u.thisId))&&(a=t.config,e.target!==a.elem[0]&&e.target!==a.eventElem[0]&&e.target!==n(a.closeStop)[0]&&t.remove())}).on("keydown",function(e){var t;!u.thisId||(t=s.getThis(u.thisId))&&"static"!==t.config.position&&13===e.keyCode&&n("#"+t.elemID)[0]&&t.elemID===g.thisElemDate&&(e.preventDefault(),n(t.footer).find(E)[0].click())}),n(i).on("resize",function(){if(u.thisId){var e=s.getThis(u.thisId);if(e)return!(!e.elem||!n(".layui-laydate")[0])&&void e.position()}})},u.render=function(e){e=new g(e);return s.call(e)},u.parse=function(a,n,i){return a=a||{},n=((n="string"==typeof n?s.formatArr(n):n)||[]).concat(),lay.each(n,function(e,t){/yyyy|y/.test(t)?n[e]=lay.digit(a.year,t.length):/MM|M/.test(t)?n[e]=lay.digit(a.month+(i||0),t.length):/dd|d/.test(t)?n[e]=lay.digit(a.date,t.length):/HH|H/.test(t)?n[e]=lay.digit(a.hours,t.length):/mm|m/.test(t)?n[e]=lay.digit(a.minutes,t.length):/ss|s/.test(t)&&(n[e]=lay.digit(a.seconds,t.length))}),n.join("")},u.getEndDate=function(e,t){var a=new Date;return a.setFullYear(t||a.getFullYear(),e||a.getMonth()+1,1),new Date(a.getTime()-864e5).getDate()},n?(u.ready(),layui.define("lay",function(e){u.path=layui.cache.dir,l.run(lay),e(a,u)})):"function"==typeof define&&define.amd?define(function(){return l.run(lay),u}):(u.ready(),l.run(i.lay),i.laydate=u)}(window,window.document);!function(e,t){"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e):function(e){if(e.document)return t(e);throw new Error("jQuery requires a window with a document")}:t(e)}("undefined"!=typeof window?window:this,function(T,M){var f=[],g=T.document,c=f.slice,O=f.concat,R=f.push,P=f.indexOf,B={},W=B.toString,m=B.hasOwnProperty,y={},e="1.12.4",C=function(e,t){return new C.fn.init(e,t)},I=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,$=/^-ms-/,z=/-([\da-z])/gi,X=function(e,t){return t.toUpperCase()};function U(e){var t=!!e&&"length"in e&&e.length,n=C.type(e);return"function"!==n&&!C.isWindow(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+a+")"+a+"*"),ee=new RegExp("="+a+"*([^\\]'\"]*?)"+a+"*\\]","g"),te=new RegExp(G),ne=new RegExp("^"+s+"$"),f={ID:new RegExp("^#("+s+")"),CLASS:new RegExp("^\\.("+s+")"),TAG:new RegExp("^("+s+"|[*])"),ATTR:new RegExp("^"+J),PSEUDO:new RegExp("^"+G),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+a+"*(even|odd|(([+-]|)(\\d*)n|)"+a+"*(?:([+-]|)"+a+"*(\\d+)|))"+a+"*\\)|)","i"),bool:new RegExp("^(?:"+Y+")$","i"),needsContext:new RegExp("^"+a+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+a+"*((?:-\\d)?\\d*)"+a+"*\\)|)(?=[^-]|$)","i")},re=/^(?:input|select|textarea|button)$/i,ie=/^h\d$/i,c=/^[^{]+\{\s*\[native \w/,oe=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ae=/[+~]/,se=/'|\\/g,d=new RegExp("\\\\([\\da-f]{1,6}"+a+"?|("+a+")|.)","ig"),p=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(65536+r):String.fromCharCode(r>>10|55296,1023&r|56320)},ue=function(){C()};try{D.apply(n=V.call(v.childNodes),v.childNodes),n[v.childNodes.length].nodeType}catch(F){D={apply:n.length?function(e,t){U.apply(e,V.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function H(e,t,n,r){var i,o,a,s,u,l,c,f,d=t&&t.ownerDocument,p=t?t.nodeType:9;if(n=n||[],"string"!=typeof e||!e||1!==p&&9!==p&&11!==p)return n;if(!r&&((t?t.ownerDocument||t:v)!==E&&C(t),t=t||E,N)){if(11!==p&&(l=oe.exec(e)))if(i=l[1]){if(9===p){if(!(a=t.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(d&&(a=d.getElementById(i))&&y(t,a)&&a.id===i)return n.push(a),n}else{if(l[2])return D.apply(n,t.getElementsByTagName(e)),n;if((i=l[3])&&g.getElementsByClassName&&t.getElementsByClassName)return D.apply(n,t.getElementsByClassName(i)),n}if(g.qsa&&!A[e+" "]&&(!m||!m.test(e))){if(1!==p)d=t,f=e;else if("object"!==t.nodeName.toLowerCase()){for((s=t.getAttribute("id"))?s=s.replace(se,"\\$&"):t.setAttribute("id",s=k),o=(c=w(e)).length,u=ne.test(s)?"#"+s:"[id='"+s+"']";o--;)c[o]=u+" "+_(c[o]);f=c.join(","),d=ae.test(e)&&de(t.parentNode)||t}if(f)try{return D.apply(n,d.querySelectorAll(f)),n}catch(h){}finally{s===k&&t.removeAttribute("id")}}}return P(e.replace(L,"$1"),t,n,r)}function le(){var n=[];function r(e,t){return n.push(e+" ")>b.cacheLength&&delete r[n.shift()],r[e+" "]=t}return r}function q(e){return e[k]=!0,e}function h(e){var t=E.createElement("div");try{return!!e(t)}catch(F){return!1}finally{t.parentNode&&t.parentNode.removeChild(t)}}function ce(e,t){for(var n=e.split("|"),r=n.length;r--;)b.attrHandle[n[r]]=t}function fe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||1<<31)-(~e.sourceIndex||1<<31);if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function x(a){return q(function(o){return o=+o,q(function(e,t){for(var n,r=a([],e.length,o),i=r.length;i--;)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function de(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in g=H.support={},O=H.isXML=function(e){e=e&&(e.ownerDocument||e).documentElement;return!!e&&"HTML"!==e.nodeName},C=H.setDocument=function(e){var e=e?e.ownerDocument||e:v;return e!==E&&9===e.nodeType&&e.documentElement&&(t=(E=e).documentElement,N=!O(E),(e=E.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",ue,!1):e.attachEvent&&e.attachEvent("onunload",ue)),g.attributes=h(function(e){return e.className="i",!e.getAttribute("className")}),g.getElementsByTagName=h(function(e){return e.appendChild(E.createComment("")),!e.getElementsByTagName("*").length}),g.getElementsByClassName=c.test(E.getElementsByClassName),g.getById=h(function(e){return t.appendChild(e).id=k,!E.getElementsByName||!E.getElementsByName(k).length}),g.getById?(b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&N)return(e=t.getElementById(e))?[e]:[]},b.filter.ID=function(e){var t=e.replace(d,p);return function(e){return e.getAttribute("id")===t}}):(delete b.find.ID,b.filter.ID=function(e){var t=e.replace(d,p);return function(e){e="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return e&&e.value===t}}),b.find.TAG=g.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):g.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"!==e)return o;for(;n=o[i++];)1===n.nodeType&&r.push(n);return r},b.find.CLASS=g.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&N)return t.getElementsByClassName(e)},r=[],m=[],(g.qsa=c.test(E.querySelectorAll))&&(h(function(e){t.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&m.push("[*^$]="+a+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||m.push("\\["+a+"*(?:value|"+Y+")"),e.querySelectorAll("[id~="+k+"-]").length||m.push("~="),e.querySelectorAll(":checked").length||m.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||m.push(".#.+[+~]")}),h(function(e){var t=E.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&m.push("name"+a+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||m.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),m.push(",.*:")})),(g.matchesSelector=c.test(i=t.matches||t.webkitMatchesSelector||t.mozMatchesSelector||t.oMatchesSelector||t.msMatchesSelector))&&h(function(e){g.disconnectedMatch=i.call(e,"div"),i.call(e,"[s!='']:x"),r.push("!=",G)}),m=m.length&&new RegExp(m.join("|")),r=r.length&&new RegExp(r.join("|")),e=c.test(t.compareDocumentPosition),y=e||c.test(t.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,t=t&&t.parentNode;return e===t||!(!t||1!==t.nodeType||!(n.contains?n.contains(t):e.compareDocumentPosition&&16&e.compareDocumentPosition(t)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},$=e?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!g.sortDetached&&t.compareDocumentPosition(e)===n?e===E||e.ownerDocument===v&&y(v,e)?-1:t===E||t.ownerDocument===v&&y(v,t)?1:u?j(u,e)-j(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===E?-1:t===E?1:i?-1:o?1:u?j(u,e)-j(u,t):0;if(i===o)return fe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?fe(a[r],s[r]):a[r]===v?-1:s[r]===v?1:0}),E},H.matches=function(e,t){return H(e,null,null,t)},H.matchesSelector=function(e,t){if((e.ownerDocument||e)!==E&&C(e),t=t.replace(ee,"='$1']"),g.matchesSelector&&N&&!A[t+" "]&&(!r||!r.test(t))&&(!m||!m.test(t)))try{var n=i.call(e,t);if(n||g.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(F){}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(d,p),e[3]=(e[3]||e[4]||e[5]||"").replace(d,p),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||H.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&H.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return f.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&te.test(n)&&(t=w(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(d,p).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=W[e+" "];return t||(t=new RegExp("(^|"+a+")"+e+"("+a+"|$)"))&&W(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(t,n,r){return function(e){e=H.attr(e,t);return null==e?"!="===n:!n||(e+="","="===n?e===r:"!="===n?e!==r:"^="===n?r&&0===e.indexOf(r):"*="===n?r&&-1(?:<\/\1>|)$/,G=/^.[^:#\[\.,]*$/;function K(e,n,r){if(C.isFunction(n))return C.grep(e,function(e,t){return!!n.call(e,t,e)!==r});if(n.nodeType)return C.grep(e,function(e){return e===n!==r});if("string"==typeof n){if(G.test(n))return C.filter(n,e,r);n=C.filter(n,e)}return C.grep(e,function(e){return-1)[^>]*|#([\w-]*))$/,ee=((C.fn.init=function(e,t,n){if(!e)return this;if(n=n||Q,"string"!=typeof e)return e.nodeType?(this.context=this[0]=e,this.length=1,this):C.isFunction(e)?"undefined"!=typeof n.ready?n.ready(e):e(C):(e.selector!==undefined&&(this.selector=e.selector,this.context=e.context),C.makeArray(e,this));if(!(r="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&3<=e.length?[null,e,null]:Z.exec(e))||!r[1]&&t)return(!t||t.jquery?t||n:this.constructor(t)).find(e);if(r[1]){if(t=t instanceof C?t[0]:t,C.merge(this,C.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:g,!0)),J.test(r[1])&&C.isPlainObject(t))for(var r in t)C.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}if((n=g.getElementById(r[2]))&&n.parentNode){if(n.id!==r[2])return Q.find(e);this.length=1,this[0]=n}return this.context=g,this.selector=e,this}).prototype=C.fn,Q=C(g),/^(?:parents|prev(?:Until|All))/),te={children:!0,contents:!0,next:!0,prev:!0};function ne(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}C.fn.extend({has:function(e){var t,n=C(e,this),r=n.length;return this.filter(function(){for(t=0;t
a",y.leadingWhitespace=3===S.firstChild.nodeType,y.tbody=!S.getElementsByTagName("tbody").length,y.htmlSerialize=!!S.getElementsByTagName("link").length,y.html5Clone="<:nav>"!==g.createElement("nav").cloneNode(!0).outerHTML,q.type="checkbox",q.checked=!0,k.appendChild(q),y.appendChecked=q.checked,S.innerHTML="",y.noCloneChecked=!!S.cloneNode(!0).lastChild.defaultValue,k.appendChild(S),(q=g.createElement("input")).setAttribute("type","radio"),q.setAttribute("checked","checked"),q.setAttribute("name","t"),S.appendChild(q),y.checkClone=S.cloneNode(!0).cloneNode(!0).lastChild.checked,y.noCloneEvent=!!S.addEventListener,S[C.expando]=1,y.attributes=!S.getAttribute(C.expando);var x={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:y.htmlSerialize?[0,"",""]:[1,"X
","
"]};function b(e,t){var n,r,i=0,o="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):undefined;if(!o)for(o=[],n=e.childNodes||e;null!=(r=n[i]);i++)!t||C.nodeName(r,t)?o.push(r):C.merge(o,b(r,t));return t===undefined||t&&C.nodeName(e,t)?C.merge([e],o):o}function we(e,t){for(var n,r=0;null!=(n=e[r]);r++)C._data(n,"globalEval",!t||C._data(t[r],"globalEval"))}x.optgroup=x.option,x.tbody=x.tfoot=x.colgroup=x.caption=x.thead,x.th=x.td;var Te=/<|&#?\w+;/,Ce=/"!==f[1]||Ce.test(a)?0:u:u.firstChild)&&a.childNodes.length;o--;)C.nodeName(c=a.childNodes[o],"tbody")&&!c.childNodes.length&&a.removeChild(c);for(C.merge(h,u.childNodes),u.textContent="";u.firstChild;)u.removeChild(u.firstChild);u=p.lastChild}else h.push(t.createTextNode(a));for(u&&p.removeChild(u),y.appendChecked||C.grep(b(h,"input"),Ee),g=0;a=h[g++];)if(r&&-1]","i"),Pe=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,Be=/\s*$/g,ze=be(g).appendChild(g.createElement("div"));function Xe(e,t){return C.nodeName(e,"table")&&C.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function Ue(e){return e.type=(null!==C.find.attr(e,"type"))+"/"+e.type,e}function Ve(e){var t=Ie.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function Ye(e,t){if(1===t.nodeType&&C.hasData(e)){var n,r,i,e=C._data(e),o=C._data(t,e),a=e.events;if(a)for(n in delete o.handle,o.events={},a)for(r=0,i=a[n].length;r")},clone:function(e,t,n){var r,i,o,a,s,u=C.contains(e.ownerDocument,e);if(y.html5Clone||C.isXMLDoc(e)||!Re.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(ze.innerHTML=e.outerHTML,ze.removeChild(o=ze.firstChild)),!(y.noCloneEvent&&y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||C.isXMLDoc(e)))for(r=b(o),s=b(e),a=0;null!=(i=s[a]);++a)if(r[a]){f=c=l=p=d=void 0;var l,c,f,d=i,p=r[a];if(1===p.nodeType){if(l=p.nodeName.toLowerCase(),!y.noCloneEvent&&p[C.expando]){for(c in(f=C._data(p)).events)C.removeEvent(p,c,f.handle);p.removeAttribute(C.expando)}"script"===l&&p.text!==d.text?(Ue(p).text=d.text,Ve(p)):"object"===l?(p.parentNode&&(p.outerHTML=d.outerHTML),y.html5Clone&&d.innerHTML&&!C.trim(p.innerHTML)&&(p.innerHTML=d.innerHTML)):"input"===l&&ge.test(d.type)?(p.defaultChecked=p.checked=d.checked,p.value!==d.value&&(p.value=d.value)):"option"===l?p.defaultSelected=p.selected=d.defaultSelected:"input"!==l&&"textarea"!==l||(p.defaultValue=d.defaultValue)}}if(t)if(n)for(s=s||b(e),r=r||b(o),a=0;null!=(i=s[a]);a++)Ye(i,r[a]);else Ye(e,o);return 0<(r=b(o,"script")).length&&we(r,!u&&b(e,"script")),r=s=i=null,o},cleanData:function(e,t){for(var n,r,i,o,a=0,s=C.expando,u=C.cache,l=y.attributes,c=C.event.special;null!=(n=e[a]);a++)if((t||v(n))&&(o=(i=n[s])&&u[i])){if(o.events)for(r in o.events)c[r]?C.event.remove(n,r):C.removeEvent(n,r,o.handle);u[i]&&(delete u[i],l||"undefined"==typeof n.removeAttribute?n[s]=undefined:n.removeAttribute(s),f.push(i))}}}),C.fn.extend({domManip:w,detach:function(e){return Je(this,e,!0)},remove:function(e){return Je(this,e)},text:function(e){return d(this,function(e){return e===undefined?C.text(this):this.empty().append((this[0]&&this[0].ownerDocument||g).createTextNode(e))},null,e,arguments.length)},append:function(){return w(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Xe(this,e).appendChild(e)})},prepend:function(){return w(this,arguments,function(e){var t;1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(t=Xe(this,e)).insertBefore(e,t.firstChild)})},before:function(){return w(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return w(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++){for(1===e.nodeType&&C.cleanData(b(e,!1));e.firstChild;)e.removeChild(e.firstChild);e.options&&C.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return C.clone(this,e,t)})},html:function(e){return d(this,function(e){var t=this[0]||{},n=0,r=this.length;if(e===undefined)return 1===t.nodeType?t.innerHTML.replace(Oe,""):undefined;if("string"==typeof e&&!Be.test(e)&&(y.htmlSerialize||!Re.test(e))&&(y.leadingWhitespace||!ve.test(e))&&!x[(me.exec(e)||["",""])[1].toLowerCase()]){e=C.htmlPrefilter(e);try{for(;n")).appendTo(t.documentElement))[0].contentWindow||Ge[0].contentDocument).document).write(),t.close(),n=Qe(e,t),Ge.detach()),Ke[e]=n),n}var n,et,tt,nt,rt,it,ot,a,at=/^margin/,st=new RegExp("^("+e+")(?!px)[a-z%]+$","i"),ut=function(e,t,n,r){var i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.apply(e,r||[]),t)e.style[i]=o[i];return r},lt=g.documentElement;function t(){var e,t=g.documentElement;t.appendChild(ot),a.style.cssText="-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",n=tt=it=!1,et=rt=!0,T.getComputedStyle&&(e=T.getComputedStyle(a),n="1%"!==(e||{}).top,it="2px"===(e||{}).marginLeft,tt="4px"===(e||{width:"4px"}).width,a.style.marginRight="50%",et="4px"===(e||{marginRight:"4px"}).marginRight,(e=a.appendChild(g.createElement("div"))).style.cssText=a.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",e.style.marginRight=e.style.width="0",a.style.width="1px",rt=!parseFloat((T.getComputedStyle(e)||{}).marginRight),a.removeChild(e)),a.style.display="none",(nt=0===a.getClientRects().length)&&(a.style.display="",a.innerHTML="
t
",a.childNodes[0].style.borderCollapse="separate",(e=a.getElementsByTagName("td"))[0].style.cssText="margin:0;border:0;padding:0;display:none",(nt=0===e[0].offsetHeight)&&(e[0].style.display="",e[1].style.display="none",nt=0===e[0].offsetHeight)),t.removeChild(ot)}ot=g.createElement("div"),(a=g.createElement("div")).style&&(a.style.cssText="float:left;opacity:.5",y.opacity="0.5"===a.style.opacity,y.cssFloat=!!a.style.cssFloat,a.style.backgroundClip="content-box",a.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===a.style.backgroundClip,(ot=g.createElement("div")).style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",a.innerHTML="",ot.appendChild(a),y.boxSizing=""===a.style.boxSizing||""===a.style.MozBoxSizing||""===a.style.WebkitBoxSizing,C.extend(y,{reliableHiddenOffsets:function(){return null==n&&t(),nt},boxSizingReliable:function(){return null==n&&t(),tt},pixelMarginRight:function(){return null==n&&t(),et},pixelPosition:function(){return null==n&&t(),n},reliableMarginRight:function(){return null==n&&t(),rt},reliableMarginLeft:function(){return null==n&&t(),it}}));var l,p,ct=/^(top|right|bottom|left)$/;function ft(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}T.getComputedStyle?(l=function(e){var t=e.ownerDocument.defaultView;return(t=t&&t.opener?t:T).getComputedStyle(e)},p=function(e,t,n){var r,i,o=e.style;return""!==(i=(n=n||l(e))?n.getPropertyValue(t)||n[t]:undefined)&&i!==undefined||C.contains(e.ownerDocument,e)||(i=C.style(e,t)),n&&!y.pixelMarginRight()&&st.test(i)&&at.test(t)&&(e=o.width,t=o.minWidth,r=o.maxWidth,o.minWidth=o.maxWidth=o.width=i,i=n.width,o.width=e,o.minWidth=t,o.maxWidth=r),i===undefined?i:i+""}):lt.currentStyle&&(l=function(e){return e.currentStyle},p=function(e,t,n){var r,i,o,a=e.style;return null==(n=(n=n||l(e))?n[t]:undefined)&&a&&a[t]&&(n=a[t]),st.test(n)&&!ct.test(t)&&(r=a.left,(o=(i=e.runtimeStyle)&&i.left)&&(i.left=e.currentStyle.left),a.left="fontSize"===t?"1em":n,n=a.pixelLeft+"px",a.left=r,o&&(i.left=o)),n===undefined?n:n+""||"auto"});var dt=/alpha\([^)]*\)/i,pt=/opacity\s*=\s*([^)]*)/i,ht=/^(none|table(?!-c[ea]).+)/,gt=new RegExp("^("+e+")(.*)$","i"),mt={position:"absolute",visibility:"hidden",display:"block"},yt={letterSpacing:"0",fontWeight:"400"},vt=["Webkit","O","Moz","ms"],xt=g.createElement("div").style;function bt(e){if(e in xt)return e;for(var t=e.charAt(0).toUpperCase()+e.slice(1),n=vt.length;n--;)if((e=vt[n]+t)in xt)return e}function wt(e,t){for(var n,r,i,o=[],a=0,s=e.length;a
a",F=q.getElementsByTagName("a")[0],k.setAttribute("type","checkbox"),q.appendChild(k),(F=q.getElementsByTagName("a")[0]).style.cssText="top:1px",y.getSetAttribute="t"!==q.className,y.style=/top/.test(F.getAttribute("style")),y.hrefNormalized="/a"===F.getAttribute("href"),y.checkOn=!!k.value,y.optSelected=e.selected,y.enctype=!!g.createElement("form").enctype,S.disabled=!0,y.optDisabled=!e.disabled,(k=g.createElement("input")).setAttribute("value",""),y.input=""===k.getAttribute("value"),k.value="t",k.setAttribute("type","radio"),y.radioValue="t"===k.value;var Lt=/\r/g,Ht=/[\x20\t\r\n\f]+/g;C.fn.extend({val:function(t){var n,e,r,i=this[0];return arguments.length?(r=C.isFunction(t),this.each(function(e){1===this.nodeType&&(null==(e=r?t.call(this,e,C(this).val()):t)?e="":"number"==typeof e?e+="":C.isArray(e)&&(e=C.map(e,function(e){return null==e?"":e+""})),(n=C.valHooks[this.type]||C.valHooks[this.nodeName.toLowerCase()])&&"set"in n&&n.set(this,e,"value")!==undefined||(this.value=e))})):i?(n=C.valHooks[i.type]||C.valHooks[i.nodeName.toLowerCase()])&&"get"in n&&(e=n.get(i,"value"))!==undefined?e:"string"==typeof(e=i.value)?e.replace(Lt,""):null==e?"":e:void 0}}),C.extend({valHooks:{option:{get:function(e){var t=C.find.attr(e,"value");return null!=t?t:C.trim(C.text(e)).replace(Ht," ")}},select:{get:function(e){for(var t,n=e.options,r=e.selectedIndex,i="select-one"===e.type||r<0,o=i?null:[],a=i?r+1:n.length,s=r<0?a:i?r:0;s").append(C.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},C.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){C.fn[t]=function(e){return this.on(t,e)}}),C.expr.filters.animated=function(t){return C.grep(C.timers,function(e){return t===e.elem}).length},C.offset={setOffset:function(e,t,n){var r,i,o,a,s=C.css(e,"position"),u=C(e),l={};"static"===s&&(e.style.position="relative"),o=u.offset(),r=C.css(e,"top"),a=C.css(e,"left"),s=("absolute"===s||"fixed"===s)&&-1'+(o?n.title[0]:n.title)+"
":"";return n.zIndex=a,t([n.shade?'
':"",'
'+(e&&2!=n.type?"":o)+'
'+(0==n.type&&-1!==n.icon?'':"")+((1!=n.type||!e)&&n.content||"")+'
'+(i=s?'':"",n.closeBtn&&(i+=''),i)+""+(n.btn?function(){var e="";"string"==typeof n.btn&&(n.btn=[n.btn]);for(var t=0,i=n.btn.length;t'+n.btn[t]+"";return'
'+e+"
"}():"")+(n.resize?'':"")+"
"],o,h('
')),this},t.pt.creat=function(){var e,n=this,a=n.config,o=n.index,s="object"==typeof(l=a.content),r=h("body");if(!a.id||!h("#"+a.id)[0]){switch("string"==typeof a.area&&(a.area="auto"===a.area?["",""]:[a.area,""]),a.shift&&(a.anim=a.shift),6==m.ie&&(a.fixed=!1),a.type){case 0:a.btn="btn"in a?a.btn:c.btn[0],m.closeAll("dialog");break;case 2:var l=a.content=s?a.content:[a.content||"","auto"];a.content='';break;case 3:delete a.title,delete a.closeBtn,-1===a.icon&&a.icon,m.closeAll("loading");break;case 4:s||(a.content=[a.content,"body"]),a.follow=a.content[1],a.content=a.content[0]+'',delete a.title,a.tips="object"==typeof a.tips?a.tips:[a.tips,!0],a.tipsMore||m.closeAll("tips")}n.vessel(s,function(e,t,i){r.append(e[0]),s?2==a.type||4==a.type?h("body").append(e[1]):l.parents("."+d[0])[0]||(l.data("display",l.css("display")).show().addClass("layui-layer-wrap").wrap(e[1]),h("#"+d[0]+o).find("."+d[5]).before(t)):r.append(e[1]),h("#"+d.MOVE)[0]||r.append(c.moveElem=i),n.layero=h("#"+d[0]+o),n.shadeo=h("#"+d.SHADE+o),a.scrollbar||d.html.css("overflow","hidden").attr("layer-full",o)}).auto(o),n.shadeo.css({"background-color":a.shade[1]||"#000",opacity:a.shade[0]||a.shade}),2==a.type&&6==m.ie&&n.layero.find("iframe").attr("src",l[0]),4==a.type?n.tips():(n.offset(),parseInt(c.getStyle(document.getElementById(d.MOVE),"z-index"))||(n.layero.css("visibility","hidden"),m.ready(function(){n.offset(),n.layero.css("visibility","visible")}))),a.fixed&&f.on("resize",function(){n.offset(),(/^\d+%$/.test(a.area[0])||/^\d+%$/.test(a.area[1]))&&n.auto(o),4==a.type&&n.tips()}),a.time<=0||setTimeout(function(){m.close(n.index)},a.time),n.move().callback(),d.anim[a.anim]&&(e="layer-anim "+d.anim[a.anim],n.layero.addClass(e).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",function(){h(this).removeClass(e)})),a.isOutAnim&&n.layero.data("isOutAnim",!0)}},t.pt.auto=function(e){var t=this.config,i=h("#"+d[0]+e),n=(""===t.area[0]&&0t.maxWidth&&i.width(t.maxWidth)),[i.innerWidth(),i.innerHeight()]),a=i.find(d[1]).outerHeight()||0,o=i.find("."+d[6]).outerHeight()||0,e=function(e){(e=i.find(e)).height(n[1]-a-o-2*(0|parseFloat(e.css("padding-top"))))};return 2===t.type?e("iframe"):""===t.area[1]?0t.maxHeight?(n[1]=t.maxHeight,e("."+d[5])):t.fixed&&n[1]>=f.height()&&(n[1]=f.height(),e("."+d[5])):e("."+d[5]),this},t.pt.offset=function(){var e=this,t=e.config,i=e.layero,n=[i.outerWidth(),i.outerHeight()],a="object"==typeof t.offset;e.offsetTop=(f.height()-n[1])/2,e.offsetLeft=(f.width()-n[0])/2,a?(e.offsetTop=t.offset[0],e.offsetLeft=t.offset[1]||e.offsetLeft):"auto"!==t.offset&&("t"===t.offset?e.offsetTop=0:"r"===t.offset?e.offsetLeft=f.width()-n[0]:"b"===t.offset?e.offsetTop=f.height()-n[1]:"l"===t.offset?e.offsetLeft=0:"lt"===t.offset?(e.offsetTop=0,e.offsetLeft=0):"lb"===t.offset?(e.offsetTop=f.height()-n[1],e.offsetLeft=0):"rt"===t.offset?(e.offsetTop=0,e.offsetLeft=f.width()-n[0]):"rb"===t.offset?(e.offsetTop=f.height()-n[1],e.offsetLeft=f.width()-n[0]):e.offsetTop=t.offset),t.fixed||(e.offsetTop=/%$/.test(e.offsetTop)?f.height()*parseFloat(e.offsetTop)/100:parseFloat(e.offsetTop),e.offsetLeft=/%$/.test(e.offsetLeft)?f.width()*parseFloat(e.offsetLeft)/100:parseFloat(e.offsetLeft),e.offsetTop+=f.scrollTop(),e.offsetLeft+=f.scrollLeft()),i.attr("minLeft")&&(e.offsetTop=f.height()-(i.find(d[1]).outerHeight()||0),e.offsetLeft=i.css("left")),i.css({top:e.offsetTop,left:e.offsetLeft})},t.pt.tips=function(){var e=this.config,t=this.layero,i=[t.outerWidth(),t.outerHeight()],n=h(e.follow),a={width:(n=n[0]?n:h("body")).outerWidth(),height:n.outerHeight(),top:n.offset().top,left:n.offset().left},o=t.find(".layui-layer-TipsG"),n=e.tips[0];e.tips[1]||o.remove(),a.autoLeft=function(){0":'',o=i.success;return delete i.success,m.open(h.extend({type:1,btn:["确定","取消"],content:t,skin:"layui-layer-prompt"+g("prompt"),maxWidth:f.width(),success:function(e){(a=e.find(".layui-layer-input")).val(i.value||"").focus(),"function"==typeof o&&o(e)},resize:!1,yes:function(e){var t=a.val();""===t?a.focus():t.length>(i.maxlength||500)?m.tips("最多输入"+(i.maxlength||500)+"个字数",a,{tips:1}):n&&n(t,e,a)}},i))},m.tab=function(n){var a=(n=n||{}).tab||{},o="layui-this",s=n.success;return delete n.success,m.open(h.extend({type:1,skin:"layui-layer-tab"+g("tab"),resize:!1,title:function(){var e=a.length,t=1,i="";if(0'+a[0].title+"";t"+a[t].title+"";return i}(),content:'
    '+function(){var e=a.length,t=1,i="";if(0'+(a[0].content||"no content")+"";t'+(a[t].content||"no content")+"";return i}()+"
",success:function(e){var t=e.find(".layui-layer-title").children(),i=e.find(".layui-layer-tabmain").children();t.on("mousedown",function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0;var e=h(this),t=e.index();e.addClass(o).siblings().removeClass(o),i.eq(t).show().siblings().hide(),"function"==typeof n.change&&n.change(t)}),"function"==typeof s&&s(e)}},n))},m.photos=function(i,e,n){var a={};if((i=i||{}).photos){var t=!("string"==typeof i.photos||i.photos instanceof h),o=t?i.photos:{},s=o.data||[],r=o.start||0,l=(a.imgIndex=1+(0|r),i.img=i.img||"img",i.success);if(delete i.success,t){if(0===s.length)return m.msg("没有图片")}else{var f=h(i.photos),c=function(){s=[],f.find(i.img).each(function(e){var t=h(this);t.attr("layer-index",e),s.push({alt:t.attr("alt"),pid:t.attr("layer-pid"),src:t.attr("layer-src")||t.attr("src"),thumb:t.attr("src")})})};if(c(),0===s.length)return;if(e||f.on("click",i.img,function(){c();var e=h(this).attr("layer-index");m.photos(h.extend(i,{photos:{start:e,data:s,tab:i.tab},full:i.full}),!0)}),!e)return}a.imgprev=function(e){a.imgIndex--,a.imgIndex<1&&(a.imgIndex=s.length),a.tabimg(e)},a.imgnext=function(e,t){a.imgIndex++,a.imgIndex>s.length&&(a.imgIndex=1,t)||a.tabimg(e)},a.keyup=function(e){var t;a.end||(t=e.keyCode,e.preventDefault(),37===t?a.imgprev(!0):39===t?a.imgnext(!0):27===t&&m.close(a.index))},a.tabimg=function(e){if(!(s.length<=1))return o.start=a.imgIndex-1,m.close(a.index),m.photos(i,!0,e)},a.event=function(){a.bigimg.find(".layui-layer-imgprev").on("click",function(e){e.preventDefault(),a.imgprev(!0)}),a.bigimg.find(".layui-layer-imgnext").on("click",function(e){e.preventDefault(),a.imgnext(!0)}),h(document).on("keyup",a.keyup)},a.loadi=m.load(1,{shade:!("shade"in i)&&.9,scrollbar:!1});var t=s[r].src,d=function(e){var t;m.close(a.loadi),n&&(i.anim=-1),a.index=m.open(h.extend({type:1,id:"layui-layer-photos",area:(e=[e.width,e.height],t=[h(p).width()-100,h(p).height()-100],!i.full&&(e[0]>t[0]||e[1]>t[1])&&((t=[e[0]/t[0],e[1]/t[1]])[1]'+(s[r].alt||'+(1
'+(s[r].alt||"")+""+a.imgIndex+" / "+s.length+"
":"")+"
",success:function(e,t){a.bigimg=e.find(".layui-layer-phimg"),a.imgsee=e.find(".layui-layer-imgbar"),a.event(e),i.tab&&i.tab(s[r],e),"function"==typeof l&&l(e)},end:function(){a.end=!0,h(document).off("keyup",a.keyup)}},i))},u=function(){m.close(a.loadi),m.msg("当前图片地址异常
是否继续查看下一张?",{time:3e4,btn:["下一张","不看了"],yes:function(){1',t.bar1?'
  • '+l[0]+"
  • ":"",t.bar2?'
  • '+l[1]+"
  • ":"",'
  • '+l[2]+"
  • ",""].join("")),c=l.find("."+o),g=function(){a.scrollTop()>=t.showHeight?e||(c.show(),e=1):e&&(c.hide(),e=0)};u("."+n)[0]||("object"==typeof t.css&&l.css(t.css),r.append(l),g(),l.find("li").on("click",function(){var e=u(this).attr("lay-type");"top"===e&&u("html,body").animate({scrollTop:0},200),t.click&&t.click.call(this,e)}),a.on("scroll",function(){clearTimeout(i),i=setTimeout(function(){g()},100)}))},countdown:function(e,t,i){var n=this,o="function"==typeof t,a=new Date(e).getTime(),r=new Date(!t||o?(new Date).getTime():t).getTime(),a=a-r,l=[Math.floor(a/864e5),Math.floor(a/36e5)%24,Math.floor(a/6e4)%60,Math.floor(a/1e3)%60],o=(o&&(i=t),setTimeout(function(){n.countdown(e,r+1e3,i)},1e3));return i&&i(0]|&(?=#[a-zA-Z0-9]+)/g.test(e+="")?e.replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,"""):e},unescape:function(e){return e!==undefined&&null!==e||(e=""),(e+="").replace(/\&/g,"&").replace(/\</g,"<").replace(/\>/g,">").replace(/\'/g,"'").replace(/\"/g,'"')},toVisibleArea:function(e){var t,i,n,o,a,r,l,c;(e=u.extend({margin:160,duration:200,type:"y"},e)).scrollElem[0]&&e.thisElem[0]&&(t=e.scrollElem,l=e.thisElem,n=(a="y"===e.type)?"top":"left",o=t[i=a?"scrollTop":"scrollLeft"](),a=t[a?"height":"width"](),r=t.offset()[n],c={},((l=l.offset()[n]-r)>a-e.margin||l."+y,k=function(e){var i=this;i.index=++c.index,i.config=s.extend({},i.config,c.config,e),i.init()};k.prototype.config={trigger:"click",content:"",className:"",style:"",show:!1,isAllowSpread:!0,isSpreadItem:!0,data:[],delay:300},k.prototype.reload=function(e){var i=this;i.config=s.extend({},i.config,e),i.init(!0)},k.prototype.init=function(e){var i=this,t=i.config,n=t.elem=s(t.elem);return 1",(t="href"in i?''+l+"":l,n?'
    '+t+("parent"===o?'':"group"===o&&u.isAllowSpread?'':"")+"
    ":'
    '+t+"
    "),""].join(""))).data("item",i),n&&(a=s('
    '),t=s("
      "),"parent"===o?(a.append(d(t,i.child)),l.append(a)):l.append(d(t,i.child))),r.append(l))}),r},t=['
      ',"
      "].join("");!(e="contextmenu"!==u.trigger&&!lay.isTopElem(u.elem[0])?e:!0)&&u.elem.data(r+"_opened")||(n.elemView=s(t),n.elemView.append(u.content||(e=s('
        '),0no menu'),e)),u.className&&n.elemView.addClass(u.className),u.style&&n.elemView.attr("style",u.style),c.thisId=u.id,n.remove(),i.append(n.elemView),u.elem.data(r+"_opened",!0),n.position(),(p.prevElem=n.elemView).data("prevElem",u.elem),n.elemView.find(".layui-menu").on(l,function(e){layui.stope(e)}),n.elemView.find(".layui-menu li").on("click",function(e){var i=s(this),t=i.data("item")||{};t.child&&0n.width()&&(t.addClass(C),(i=t[0].getBoundingClientRect()).left<0&&t.removeClass(C)),i.bottom>n.height()&&t.eq(0).css("margin-top",-(i.bottom-n.height())))}).on("mouseleave",t,function(e){var i=s(this).children("."+w);i.removeClass(C),i.css("margin-top",0)}),c.reload=function(e,i){e=p.getThis(e);return e?(e.reload(i),p.call(e)):this},c.render=function(e){e=new k(e);return p.call(e)},e(o,c)});layui.define("jquery",function(e){"use strict";var h=layui.$,t={config:{},index:layui.slider?layui.slider.index+1e4:0,set:function(e){var i=this;return i.config=h.extend({},i.config,e),i},on:function(e,i){return layui.onevent.call(this,a,e,i)}},a="slider",c="layui-disabled",y="layui-slider-bar",g="layui-slider-wrap",b="layui-slider-wrap-btn",x="layui-slider-tips",T="layui-slider-input-txt",w="layui-slider-hover",i=function(e){var i=this;i.index=++t.index,i.config=h.extend({},i.config,t.config,e),i.render()};i.prototype.config={type:"default",min:0,max:100,value:0,step:1,showstep:!1,tips:!0,input:!1,range:!1,height:200,disabled:!1,theme:"#009688"},i.prototype.render=function(){var a,n=this,l=n.config,e=(l.step<1&&(l.step=1),l.maxl.min?i:l.min,l.value[1]=s>l.min?s:l.min,l.value[0]=l.value[0]>l.max?l.max:l.value[0],l.value[1]=l.value[1]>l.max?l.max:l.value[1],i=Math.floor((l.value[0]-l.min)/(l.max-l.min)*100),t=(s=Math.floor((l.value[1]-l.min)/(l.max-l.min)*100))-i+"%",i+="%",s+="%"):("object"==typeof l.value&&(l.value=Math.min.apply(null,l.value)),l.valuel.max&&(l.value=l.max),t=Math.floor((l.value-l.min)/(l.max-l.min)*100)+"%"),l.disabled?"#c2c2c2":l.theme),i='
        '+(l.tips?'
        ':"")+'
        '+(l.range?'
        ':"")+"
        ",t=h(l.elem),s=t.next(".layui-slider");if(s[0]&&s.remove(),n.elemTemp=h(i),l.range?(n.elemTemp.find("."+g).eq(0).data("value",l.value[0]),n.elemTemp.find("."+g).eq(1).data("value",l.value[1])):n.elemTemp.find("."+g).data("value",l.value),t.html(n.elemTemp),"vertical"===l.type&&n.elemTemp.height(l.height+"px"),l.showstep){for(var r=(l.max-l.min)/l.step,o="",u=1;u<1+r;u++){var d=100*u/r;d<100&&(o+='
        ')}n.elemTemp.append(o)}l.input&&!l.range&&(e=h('
        '),t.css("position","relative"),t.append(e),t.find("."+T).children("input").val(l.value),"vertical"===l.type?e.css({left:0,top:-48}):n.elemTemp.css("margin-right",e.outerWidth()+15)),l.disabled?(n.elemTemp.addClass(c),n.elemTemp.find("."+b).addClass(c)):n.slide(),n.elemTemp.find("."+b).on("mouseover",function(){var e="vertical"===l.type?l.height:n.elemTemp[0].offsetWidth,i=n.elemTemp.find("."+g),t=("vertical"===l.type?e-h(this).parent()[0].offsetTop-i.height():h(this).parent()[0].offsetLeft)/e*100,i=h(this).parent().data("value"),e=l.setTips?l.setTips(i):i;n.elemTemp.find("."+x).html(e),clearTimeout(a),a=setTimeout(function(){"vertical"===l.type?n.elemTemp.find("."+x).css({bottom:t+"%","margin-bottom":"20px",display:"inline-block"}):n.elemTemp.find("."+x).css({left:t+"%",display:"inline-block"})},300)}).on("mouseout",function(){clearTimeout(a),n.elemTemp.find("."+x).css("display","none")})},i.prototype.slide=function(e,i,t){var r=this.config,o=this.elemTemp,u=function(){return"vertical"===r.type?r.height:o[0].offsetWidth},d=o.find("."+g),s=o.next(".layui-slider-input"),c=s.children("."+T).children("input").val(),m=100/((r.max-r.min)/Math.ceil(r.step)),v=function(e,i){e=100<(e=100t[1]&&t.reverse(),r.change&&r.change(r.range?t:n)},p=function(e){var i=e/u()*100/m,t=Math.round(i)*m;return t=e==u()?Math.ceil(i)*m:t},f=h(['
        u()?u():i)/u()*100/m;v(i,l),s.addClass(w),o.find("."+x).show(),e.preventDefault()},i=function(){s.removeClass(w),o.find("."+x).hide()},t=function(){i&&i(),f.remove()},h("#LAY-slider-moving")[0]||h("body").append(f),f.on("mousemove",e),f.on("mouseup",t).on("mouseleave",t)})}),o.on("click",function(e){var i,t=h("."+b);!t.is(event.target)&&0===t.has(event.target).length&&t.length&&(i=(t=(t=(t="vertical"===r.type?u()-e.clientY+h(this).offset().top:e.clientX-h(this).offset().left)<0?0:t)>u()?u():t)/u()*100/m,t=r.range?"vertical"===r.type?Math.abs(t-parseInt(h(d[0]).css("bottom")))>Math.abs(t-parseInt(h(d[1]).css("bottom")))?1:0:Math.abs(t-d[0].offsetLeft)>Math.abs(t-d[1].offsetLeft)?1:0:0,v(i,t),e.preventDefault())}),s.children(".layui-slider-input-btn").children("i").each(function(i){h(this).on("click",function(){c=s.children("."+T).children("input").val();var e=((c=1==i?c-r.stepr.max?r.max:Number(c)+r.step)-r.min)/(r.max-r.min)*100/m;v(e,0)})});var a=function(){var e=this.value,e=(e=(e=(e=isNaN(e)?0:e)r.max?r.max:e,((this.value=e)-r.min)/(r.max-r.min)*100/m);v(e,0)};s.children("."+T).children("input").on("keydown",function(e){13===e.keyCode&&(e.preventDefault(),a.call(this))}).on("change",a)},i.prototype.events=function(){this.config},t.render=function(e){e=new i(e);return function(){var t=this,a=t.config;return{setValue:function(e,i){return a.value=e,t.slide("set",e,i||0)},config:a}}.call(e)},e(a,t)});layui.define(["jquery","lay"],function(e){"use strict";var y=layui.jquery,o=layui.lay,r=layui.device().mobile?"click":"mousedown",i={config:{},index:layui.colorpicker?layui.colorpicker.index+1e4:0,set:function(e){var i=this;return i.config=y.extend({},i.config,e),i},on:function(e,i){return layui.onevent.call(this,"colorpicker",e,i)}},n="layui-colorpicker",l=".layui-colorpicker-main",m="layui-icon-down",x="layui-icon-close",P="layui-colorpicker-trigger-span",C="layui-colorpicker-trigger-i",B="layui-colorpicker-side-slider",w="layui-colorpicker-basis",D="layui-colorpicker-alpha-bgcolor",j="layui-colorpicker-alpha-slider",E="layui-colorpicker-basis-cursor",F="layui-colorpicker-main-input",H=function(e){var i={h:0,s:0,b:0},o=Math.min(e.r,e.g,e.b),r=Math.max(e.r,e.g,e.b),n=r-o;return i.b=r,i.s=0!=r?255*n/r:0,0!=i.s?e.r==r?i.h=(e.g-e.b)/n:e.g==r?i.h=2+(e.b-e.r)/n:i.h=4+(e.r-e.g)/n:i.h=-1,r==o&&(i.h=0),i.h*=60,i.h<0&&(i.h+=360),i.s*=100/255,i.b*=100/255,i},M=function(e){var i,o={},r=e.h,n=255*e.s/100,e=255*e.b/100;return 0==n?o.r=o.g=o.b=e:(e=r%60*((i=e)-(n=(255-n)*e/255))/60,(r=360==r?0:r)<60?(o.r=i,o.b=n,o.g=n+e):r<120?(o.g=i,o.b=n,o.r=i-e):r<180?(o.g=i,o.r=n,o.b=n+e):r<240?(o.b=i,o.r=n,o.g=i-e):r<300?(o.b=i,o.g=n,o.r=n+e):r<360?(o.r=i,o.g=n,o.b=i-e):(o.r=0,o.g=0,o.b=0)),{r:Math.round(o.r),g:Math.round(o.g),b:Math.round(o.b)}},f=function(e){var e=M(e),o=[e.r.toString(16),e.g.toString(16),e.b.toString(16)];return y.each(o,function(e,i){1==i.length&&(o[e]="0"+i)}),o.join("")},Y=function(e){e=e.match(/[0-9]{1,3}/g)||[];return{r:e[0],g:e[1],b:e[2]}},I=y(window),t=y(document),c=function(e){this.index=++i.index,this.config=y.extend({},this.config,i.config,e),this.render()};c.prototype.config={color:"",size:null,alpha:!1,format:"hex",predefine:!1,colors:["#009688","#5FB878","#1E9FFF","#FF5722","#FFB800","#01AAED","#999","#c00","#ff8c00","#ffd700","#90ee90","#00ced1","#1e90ff","#c71585","rgb(0, 186, 189)","rgb(255, 120, 0)","rgb(250, 212, 0)","#393D49","rgba(0,0,0,.5)","rgba(255, 69, 0, 0.68)","rgba(144, 240, 144, 0.5)","rgba(31, 147, 255, 0.73)"]},c.prototype.render=function(){var e=this,i=e.config,o=y(['
        ',"",'','',"","","
        "].join("")),r=y(i.elem);i.size&&o.addClass("layui-colorpicker-"+i.size),r.addClass("layui-inline").html(e.elemColorBox=o),e.color=e.elemColorBox.find("."+P)[0].style.background,e.events()},c.prototype.renderPicker=function(){var o,e=this,i=e.config,r=e.elemColorBox[0],i=e.elemPicker=y(['
        ','
        ','
        ','
        ','
        ','
        ',"
        ",'
        ','
        ',"
        ","
        ",'
        ','
        ','
        ',"
        ","
        ",i.predefine?(o=['
        '],layui.each(i.colors,function(e,i){o.push(['
        ','
        ',"
        "].join(""))}),o.push("
        "),o.join("")):"",'
        ','
        ','',"
        ",'
        ','','',"","
        "].join(""));e.elemColorBox.find("."+P)[0];y(l)[0]&&y(l).data("index")==e.index?e.removePicker(c.thisElemInd):(e.removePicker(c.thisElemInd),y("body").append(i)),c.thisElemInd=e.index,c.thisColor=r.style.background,e.position(),e.pickerEvents()},c.prototype.removePicker=function(e){this.config;return y("#layui-colorpicker"+(e||this.index)).remove(),this},c.prototype.position=function(){var e=this,i=e.config;return o.position(e.bindElem||e.elemColorBox[0],e.elemPicker[0],{position:i.position,align:"center"}),e},c.prototype.val=function(){var e,i=this,o=(i.config,i.elemColorBox.find("."+P)),r=i.elemPicker.find("."+F),n=o[0].style.backgroundColor;n?(e=H(Y(n)),o=o.attr("lay-type"),i.select(e.h,e.s,e.b),"torgb"===o&&r.find("input").val(n),"rgba"===o&&(e=Y(n),3==(n.match(/[0-9]{1,3}/g)||[]).length?(r.find("input").val("rgba("+e.r+", "+e.g+", "+e.b+", 1)"),i.elemPicker.find("."+j).css("left",280)):(r.find("input").val(n),o=280*n.slice(n.lastIndexOf(",")+1,n.length-1),i.elemPicker.find("."+j).css("left",o)),i.elemPicker.find("."+D)[0].style.background="linear-gradient(to right, rgba("+e.r+", "+e.g+", "+e.b+", 0), rgb("+e.r+", "+e.g+", "+e.b+"))")):(i.select(0,100,100),r.find("input").val(""),i.elemPicker.find("."+D)[0].style.background="",i.elemPicker.find("."+j).css("left",280))},c.prototype.side=function(){var n=this,l=n.config,t=n.elemColorBox.find("."+P),c=t.attr("lay-type"),a=n.elemPicker.find(".layui-colorpicker-side"),e=n.elemPicker.find("."+B),s=n.elemPicker.find("."+w),r=n.elemPicker.find("."+E),d=n.elemPicker.find("."+D),f=n.elemPicker.find("."+j),u=e[0].offsetTop/180*360,p=100-(r[0].offsetTop+3)/180*100,g=(r[0].offsetLeft+3)/260*100,h=Math.round(f[0].offsetLeft/280*100)/100,v=n.elemColorBox.find("."+C),i=n.elemPicker.find(".layui-colorpicker-pre").children("div"),b=function(e,i,o,r){n.select(e,i,o);e=M({h:e,s:i,b:o});v.addClass(m).removeClass(x),t[0].style.background="rgb("+e.r+", "+e.g+", "+e.b+")","torgb"===c&&n.elemPicker.find("."+F).find("input").val("rgb("+e.r+", "+e.g+", "+e.b+")"),"rgba"===c&&(f.css("left",280*r),n.elemPicker.find("."+F).find("input").val("rgba("+e.r+", "+e.g+", "+e.b+", "+r+")"),t[0].style.background="rgba("+e.r+", "+e.g+", "+e.b+", "+r+")",d[0].style.background="linear-gradient(to right, rgba("+e.r+", "+e.g+", "+e.b+", 0), rgb("+e.r+", "+e.g+", "+e.b+"))"),l.change&&l.change(n.elemPicker.find("."+F).find("input").val())},o=y(['
        '].join("")),k=function(e){y("#LAY-colorpicker-moving")[0]||y("body").append(o),o.on("mousemove",e),o.on("mouseup",function(){o.remove()}).on("mouseleave",function(){o.remove()})};e.on("mousedown",function(e){var r=this.offsetTop,n=e.clientY;k(function(e){var i=r+(e.clientY-n),o=a[0].offsetHeight,o=(i=o<(i=i<0?0:i)?o:i)/180*360;b(u=o,g,p,h),e.preventDefault()}),e.preventDefault()}),a.on("click",function(e){var i=e.clientY-y(this).offset().top,i=(i=(i=i<0?0:i)>this.offsetHeight?this.offsetHeight:i)/180*360;b(u=i,g,p,h),e.preventDefault()}),r.on("mousedown",function(e){var l=this.offsetTop,t=this.offsetLeft,c=e.clientY,a=e.clientX;layui.stope(e),k(function(e){var i=l+(e.clientY-c),o=t+(e.clientX-a),r=s[0].offsetHeight-3,n=s[0].offsetWidth-3,n=((o=n<(o=o<-3?-3:o)?n:o)+3)/260*100,o=100-((i=r<(i=i<-3?-3:i)?r:i)+3)/180*100;b(u,g=n,p=o,h),e.preventDefault()}),e.preventDefault()}),s.on("mousedown",function(e){var i=e.clientY-y(this).offset().top-3+I.scrollTop(),o=e.clientX-y(this).offset().left-3+I.scrollLeft(),o=((i=i<-3?-3:i)>this.offsetHeight-3&&(i=this.offsetHeight-3),((o=(o=o<-3?-3:o)>this.offsetWidth-3?this.offsetWidth-3:o)+3)/260*100),i=100-(i+3)/180*100;b(u,g=o,p=i,h),layui.stope(e),e.preventDefault(),r.trigger(e,"mousedown")}),f.on("mousedown",function(e){var r=this.offsetLeft,n=e.clientX;k(function(e){var i=r+(e.clientX-n),o=d[0].offsetWidth,o=(o<(i=i<0?0:i)&&(i=o),Math.round(i/280*100)/100);b(u,g,p,h=o),e.preventDefault()}),e.preventDefault()}),d.on("click",function(e){var i=e.clientX-y(this).offset().left,i=((i=i<0?0:i)>this.offsetWidth&&(i=this.offsetWidth),Math.round(i/280*100)/100);b(u,g,p,h=i),e.preventDefault()}),i.each(function(){y(this).on("click",function(){y(this).parent(".layui-colorpicker-pre").addClass("selected").siblings().removeClass("selected");var e=this.style.backgroundColor,i=H(Y(e)),o=e.slice(e.lastIndexOf(",")+1,e.length-1);u=i.h,g=i.s,p=i.b,3==(e.match(/[0-9]{1,3}/g)||[]).length&&(o=1),h=o,b(i.h,i.s,i.b,o)})})},c.prototype.select=function(e,i,o,r){var n=this,l=(n.config,f({h:e,s:100,b:100})),t=f({h:e,s:i,b:o}),e=e/360*180,o=180-o/100*180-3,i=i/100*260-3;n.elemPicker.find("."+B).css("top",e),n.elemPicker.find("."+w)[0].style.background="#"+l,n.elemPicker.find("."+E).css({top:o,left:i}),"change"!==r&&n.elemPicker.find("."+F).find("input").val("#"+t)},c.prototype.pickerEvents=function(){var c=this,a=c.config,s=c.elemColorBox.find("."+P),d=c.elemPicker.find("."+F+" input"),o={clear:function(e){s[0].style.background="",c.elemColorBox.find("."+C).removeClass(m).addClass(x),c.color="",a.done&&a.done(""),c.removePicker()},confirm:function(e,i){var o,r,n=d.val(),l=n,t={};if(-1>16,g:(65280&o)>>8,b:255&o},t=H(r),s[0].style.background=l="#"+f(t),c.elemColorBox.find("."+C).removeClass(x).addClass(m)),"change"===i)return c.select(t.h,t.s,t.b,i),void(a.change&&a.change(l));c.color=n,a.done&&a.done(n),c.removePicker()}};c.elemPicker.on("click","*[colorpicker-events]",function(){var e=y(this),i=e.attr("colorpicker-events");o[i]&&o[i].call(this,e)}),d.on("keyup",function(e){var i=y(this);o.confirm.call(this,i,13===e.keyCode?null:"change")})},c.prototype.events=function(){var i=this,e=i.config,o=i.elemColorBox.find("."+P);i.elemColorBox.on("click",function(){i.renderPicker(),y(l)[0]&&(i.val(),i.side())}),e.elem[0]&&!i.elemColorBox[0].eventHandler&&(t.on(r,function(e){y(e.target).hasClass(n)||y(e.target).parents("."+n)[0]||y(e.target).hasClass(l.replace(/\./g,""))||y(e.target).parents(l)[0]||i.elemPicker&&(i.color?(e=H(Y(i.color)),i.select(e.h,e.s,e.b)):i.elemColorBox.find("."+C).removeClass(m).addClass(x),o[0].style.background=i.color||"",i.removePicker())}),I.on("resize",function(){if(!i.elemPicker||!y(l)[0])return!1;i.position()}),i.elemColorBox[0].eventHandler=!0)},i.render=function(e){e=new c(e);return function(){return{config:this.config}}.call(e)},e("colorpicker",i)});layui.define("jquery",function(t){"use strict";var u=layui.$,d=(layui.hint(),layui.device()),c="element",r="layui-this",y="layui-show",i=function(){this.config={}},h=(i.prototype.set=function(t){return u.extend(!0,this.config,t),this},i.prototype.on=function(t,i){return layui.onevent.call(this,c,t,i)},i.prototype.tabAdd=function(t,i){var a,t=u(".layui-tab[lay-filter="+t+"]"),e=t.children(".layui-tab-title"),l=e.children(".layui-tab-bar"),t=t.children(".layui-tab-content"),n=""+(i.title||"unnaming")+"";return l[0]?l.before(n):e.append(n),t.append('
        '+(i.content||"")+"
        "),C.hideTabMore(!0),C.tabAuto(),this},i.prototype.tabDelete=function(t,i){t=u(".layui-tab[lay-filter="+t+"]").children(".layui-tab-title").find('>li[lay-id="'+i+'"]');return C.tabDelete(null,t),this},i.prototype.tabChange=function(t,i){t=u(".layui-tab[lay-filter="+t+"]").children(".layui-tab-title").find('>li[lay-id="'+i+'"]');return C.tabClick.call(t[0],null,null,t),this},i.prototype.tab=function(a){a=a||{},e.on("click",a.headerElem,function(t){var i=u(this).index();C.tabClick.call(this,t,i,null,a)})},i.prototype.progress=function(t,i){var a="layui-progress",t=u("."+a+"[lay-filter="+t+"]").find("."+a+"-bar"),a=t.find("."+a+"-text");return t.css("width",i).attr("lay-percent",i),a.text(i),this},".layui-nav"),f="layui-nav-item",l="layui-nav-bar",p="layui-nav-tree",b="layui-nav-child",v="layui-nav-more",m="layui-anim layui-anim-upbit",C={tabClick:function(t,i,a,e){e=e||{};var a=a||u(this),i=i||a.parent().children("li").index(a),l=e.headerElem?a.parent():a.parents(".layui-tab").eq(0),e=e.bodyElem?u(e.bodyElem):l.children(".layui-tab-content").children(".layui-tab-item"),n=a.find("a"),n="javascript:;"!==n.attr("href")&&"_blank"===n.attr("target"),s="string"==typeof a.attr("lay-unselect"),o=l.attr("lay-filter");n||s||(a.addClass(r).siblings().removeClass(r),e.eq(i).addClass(y).siblings().removeClass(y)),layui.event.call(this,c,"tab("+o+")",{elem:l,index:i})},tabDelete:function(t,i){var i=i||u(this).parent(),a=i.index(),e=i.parents(".layui-tab").eq(0),l=e.children(".layui-tab-content").children(".layui-tab-item"),n=e.attr("lay-filter");i.hasClass(r)&&(i.next()[0]?C.tabClick.call(i.next()[0],null,a+1):i.prev()[0]&&C.tabClick.call(i.prev()[0],null,a-1)),i.remove(),l.eq(a).remove(),setTimeout(function(){C.tabAuto()},50),layui.event.call(this,c,"tabDelete("+n+")",{elem:e,index:a})},tabAuto:function(){var e="layui-tab-bar",l="layui-tab-close",n=this;u(".layui-tab").each(function(){var t=u(this),i=t.children(".layui-tab-title"),a=(t.children(".layui-tab-content").children(".layui-tab-item"),'lay-stope="tabmore"'),a=u('');n===window&&8!=d.ie&&C.hideTabMore(!0),t.attr("lay-allowClose")&&i.find("li").each(function(){var t,i=u(this);i.find("."+l)[0]||((t=u('')).on("click",C.tabDelete),i.append(t))}),"string"!=typeof t.attr("lay-unauto")&&(i.prop("scrollWidth")>i.outerWidth()+1?i.find("."+e)[0]||(i.append(a),t.attr("overflow",""),a.on("click",function(t){i[this.title?"removeClass":"addClass"]("layui-tab-more"),this.title=this.title?"":"\u6536\u7f29"})):(i.find("."+e).remove(),t.removeAttr("overflow")))})},hideTabMore:function(t){var i=u(".layui-tab-title");!0!==t&&"tabmore"===u(t.target).attr("lay-stope")||(i.removeClass("layui-tab-more"),i.find(".layui-tab-bar").attr("title",""))},clickThis:function(){var t=u(this),i=t.parents(h),a=i.attr("lay-filter"),e=t.parent(),l=t.siblings("."+b),n="string"==typeof e.attr("lay-unselect");"javascript:;"!==t.attr("href")&&"_blank"===t.attr("target")||n||l[0]||(i.find("."+r).removeClass(r),e.addClass(r)),i.hasClass(p)&&(l.removeClass(m),l[0]&&(e["none"===l.css("display")?"addClass":"removeClass"](f+"ed"),"all"===i.attr("lay-shrink")&&e.siblings().removeClass(f+"ed"))),layui.event.call(this,c,"nav("+a+")",t)},collapse:function(){var t=u(this),i=t.find(".layui-colla-icon"),a=t.siblings(".layui-colla-content"),e=t.parents(".layui-collapse").eq(0),l=e.attr("lay-filter"),n="none"===a.css("display");"string"==typeof e.attr("lay-accordion")&&((e=e.children(".layui-colla-item").children("."+y)).siblings(".layui-colla-title").children(".layui-colla-icon").html(""),e.removeClass(y)),a[n?"addClass":"removeClass"](y),i.html(n?"":""),layui.event.call(this,c,"collapse("+l+")",{title:t,content:a,show:n})}},a=(i.prototype.render=i.prototype.init=function(t,i){var a=i?'[lay-filter="'+i+'"]':"",i={tab:function(){C.tabAuto.call({})},nav:function(){var s={},o={},c={},r="layui-nav-title";u(h+a).each(function(t){var i=u(this),a=u(''),e=i.find("."+f);i.find("."+l)[0]||(i.append(a),(i.hasClass(p)?e.find("dd,>."+r):e).on("mouseenter",function(){!function(t,i,a){var e,l=u(this),n=l.find("."+b);i.hasClass(p)?n[0]||(e=l.children("."+r),t.css({top:l.offset().top-i.offset().top,height:(e[0]?e:l).outerHeight(),opacity:1})):(n.addClass(m),n.hasClass("layui-nav-child-c")&&n.css({left:-(n.outerWidth()-l.width())/2}),n[0]?t.css({left:t.position().left+t.width()/2,width:0,opacity:0}):t.css({left:l.position().left+parseFloat(l.css("marginLeft")),top:l.position().top+l.height()-t.height()}),s[a]=setTimeout(function(){t.css({width:n[0]?0:l.width(),opacity:n[0]?0:1})},d.ie&&d.ie<10?0:200),clearTimeout(c[a]),"block"===n.css("display")&&clearTimeout(o[a]),o[a]=setTimeout(function(){n.addClass(y),l.find("."+v).addClass(v+"d")},300))}.call(this,a,i,t)}).on("mouseleave",function(){i.hasClass(p)?a.css({height:0,opacity:0}):(clearTimeout(o[t]),o[t]=setTimeout(function(){i.find("."+b).removeClass(y),i.find("."+v).removeClass(v+"d")},300))}),i.on("mouseleave",function(){clearTimeout(s[t]),c[t]=setTimeout(function(){i.hasClass(p)||a.css({width:0,left:a.position().left+a.width()/2,opacity:0})},200)})),e.find("a").each(function(){var t=u(this);t.parent();t.siblings("."+b)[0]&&!t.children("."+v)[0]&&t.append(''),t.off("click",C.clickThis).on("click",C.clickThis)})})},breadcrumb:function(){u(".layui-breadcrumb"+a).each(function(){var t=u(this),i="lay-separator",a=t.attr(i)||"/",e=t.find("a");e.next("span["+i+"]")[0]||(e.each(function(t){t!==e.length-1&&u(this).after(""+a+"")}),t.css("visibility","visible"))})},progress:function(){var e="layui-progress";u("."+e+a).each(function(){var t=u(this),i=t.find(".layui-progress-bar"),a=i.attr("lay-percent");i.css("width",/^.+\/.+$/.test(a)?100*new Function("return "+a)()+"%":a),t.attr("lay-showPercent")&&setTimeout(function(){i.html(''+a+"")},350)})},collapse:function(){u(".layui-collapse"+a).each(function(){u(this).find(".layui-colla-item").each(function(){var t=u(this),i=t.find(".layui-colla-title"),t="none"===t.find(".layui-colla-content").css("display");i.find(".layui-colla-icon").remove(),i.append(''+(t?"":"")+""),i.off("click",C.collapse).on("click",C.collapse)})})}};return i[t]?i[t]():layui.each(i,function(t,i){i()})},new i),e=u(document);u(function(){a.render()});e.on("click",".layui-tab-title li",C.tabClick),e.on("click",C.hideTabMore),u(window).on("resize",C.tabAuto),t(c,a)});layui.define("layer",function(e){"use strict";var v=layui.$,t=layui.layer,r=layui.hint(),y=layui.device(),i={config:{},set:function(e){var t=this;return t.config=v.extend({},t.config,e),t},on:function(e,t){return layui.onevent.call(this,n,e,t)}},n="upload",o="layui-upload-file",a="layui-upload-form",F="layui-upload-iframe",b="layui-upload-choose",x=function(e){var t=this;t.config=v.extend({},t.config,i.config,e),t.render()};x.prototype.config={accept:"images",exts:"",auto:!0,bindAction:"",url:"",force:"",field:"file",acceptMime:"",method:"post",data:{},drag:!0,size:0,number:0,multiple:!1},x.prototype.render=function(e){var t=this;(e=t.config).elem=v(e.elem),e.bindAction=v(e.bindAction),t.file(),t.events()},x.prototype.file=function(){var e=this,t=e.config,i=e.elemFile=v(['"].join("")),n=t.elem.next();(n.hasClass(o)||n.hasClass(a))&&n.remove(),y.ie&&y.ie<10&&t.elem.wrap('
        '),e.isFile()?(e.elemFile=t.elem,t.field=t.elem[0].name):t.elem.after(i),y.ie&&y.ie<10&&e.initIE()},x.prototype.initIE=function(){var i,e=this.config,t=v(''),n=v(['',""].join(""));v("#"+F)[0]||v("body").append(t),e.elem.next().hasClass(a)||(this.elemFile.wrap(n),e.elem.next("."+a).append((i=[],layui.each(e.data,function(e,t){t="function"==typeof t?t():t,i.push('')}),i.join(""))))},x.prototype.msg=function(e){return t.msg(e,{icon:2,shift:6})},x.prototype.isFile=function(){var e=this.config.elem[0];if(e)return"input"===e.tagName.toLocaleLowerCase()&&"file"===e.type},x.prototype.preview=function(n){window.FileReader&&layui.each(this.chooseFiles,function(e,t){var i=new FileReader;i.readAsDataURL(t),i.onload=function(){n&&n(e,t,this.result)}})},x.prototype.upload=function(i,e){var n,o,t,a,l=this,r=l.config,u=l.elemFile[0],c=function(){var t=0,o=0,e=i||l.files||l.chooseFiles||u.files,a=function(){r.multiple&&t+o===l.fileLength&&"function"==typeof r.allDone&&r.allDone({total:l.fileLength,successful:t,failed:o})};layui.each(e,function(i,e){var n=new FormData,e=(n.append(r.field,e),layui.each(r.data,function(e,t){t="function"==typeof t?t():t,n.append(e,t)}),{url:r.url,type:"post",data:n,contentType:!1,processData:!1,dataType:"json",headers:r.headers||{},success:function(e){t++,f(i,e),a()},error:function(e){o++,l.msg("Request URL is abnormal: "+(e.statusText||"error")),p(i),a()}});"function"==typeof r.progress&&(e.xhr=function(){var e=v.ajaxSettings.xhr();return e.upload.addEventListener("progress",function(e){var t;e.lengthComputable&&(t=Math.floor(e.loaded/e.total*100),r.progress(t,(r.item||r.elem)[0],e,i))}),e}),v.ajax(e)})},s=function(){var n=v("#"+F);l.elemFile.parent().submit(),clearInterval(x.timer),x.timer=setInterval(function(){var e,t=n.contents().find("body");try{e=t.text()}catch(i){l.msg("Cross-domain requests are not supported"),clearInterval(x.timer),p()}e&&(clearInterval(x.timer),t.html(""),f(0,e))},30)},f=function(e,t){if(l.elemFile.next("."+b).remove(),u.value="","json"===r.force&&"object"!=typeof t)try{t=JSON.parse(t)}catch(i){return t={},l.msg("Please return JSON data format")}"function"==typeof r.done&&r.done(t,e||0,function(e){l.upload(e)})},p=function(e){r.auto&&(u.value=""),"function"==typeof r.error&&r.error(e||0,function(e){l.upload(e)})},d=r.exts,m=(o=[],layui.each(i||l.chooseFiles,function(e,t){o.push(t.name)}),o),h={preview:function(e){l.preview(e)},upload:function(e,t){var i={};i[e]=t,l.upload(i)},pushFile:function(){return l.files=l.files||{},layui.each(l.chooseFiles,function(e,t){l.files[e]=t}),l.files},resetFile:function(e,t,i){t=new File([t],i);l.files=l.files||{},l.files[e]=t}},g={file:"\u6587\u4ef6",images:"\u56fe\u7247",video:"\u89c6\u9891",audio:"\u97f3\u9891"}[r.accept]||"\u6587\u4ef6",m=0===m.length?u.value.match(/[^\/\\]+\..+/g)||[]||"":m;if(0!==m.length){switch(r.accept){case"file":layui.each(m,function(e,t){if(d&&!RegExp(".\\.("+d+")$","i").test(escape(t)))return n=!0});break;case"video":layui.each(m,function(e,t){if(!RegExp(".\\.("+(d||"avi|mp4|wma|rmvb|rm|flash|3gp|flv")+")$","i").test(escape(t)))return n=!0});break;case"audio":layui.each(m,function(e,t){if(!RegExp(".\\.("+(d||"mp3|wav|mid")+")$","i").test(escape(t)))return n=!0});break;default:layui.each(m,function(e,t){if(!RegExp(".\\.("+(d||"jpg|png|gif|bmp|jpeg")+")$","i").test(escape(t)))return n=!0})}if(n)return l.msg("\u9009\u62e9\u7684"+g+"\u4e2d\u5305\u542b\u4e0d\u652f\u6301\u7684\u683c\u5f0f"),u.value="";if("choose"!==e&&!r.auto||(r.choose&&r.choose(h),"choose"!==e)){if(l.fileLength=(t=0,g=i||l.files||l.chooseFiles||u.files,layui.each(g,function(){t++}),t),r.number&&l.fileLength>r.number)return l.msg("\u540c\u65f6\u6700\u591a\u53ea\u80fd\u4e0a\u4f20: "+r.number+" \u4e2a\u6587\u4ef6
        \u60a8\u5f53\u524d\u5df2\u7ecf\u9009\u62e9\u4e86: "+l.fileLength+" \u4e2a\u6587\u4ef6");if(01024*r.size&&(t=1<=(t=r.size/1024)?t.toFixed(2)+"MB":r.size+"KB",u.value="",a=t)}),a)return l.msg("\u6587\u4ef6\u5927\u5c0f\u4e0d\u80fd\u8d85\u8fc7 "+a);if(!r.before||!1!==r.before(h))y.ie?(9'+e+"")};o.elem.off("upload.start").on("upload.start",function(){var e=v(this),t=e.attr("lay-data");if(t)try{t=new Function("return "+t)(),n.config=v.extend({},o,t)}catch(i){r.error("Upload element property lay-data configuration item has a syntax error: "+t)}n.config.item=e,n.elemFile[0].click()}),y.ie&&y.ie<10||o.elem.off("upload.over").on("upload.over",function(){v(this).attr("lay-over","")}).off("upload.leave").on("upload.leave",function(){v(this).removeAttr("lay-over")}).off("upload.drop").on("upload.drop",function(e,t){var i=v(this),t=t.originalEvent.dataTransfer.files||[];i.removeAttr("lay-over"),a(t),o.auto?n.upload():l(t)}),n.elemFile.off("upload.change").on("upload.change",function(){var e=this.files||[];a(e),o.auto?n.upload():l(e)}),o.bindAction.off("upload.action").on("upload.action",function(){n.upload()}),o.elem.data("haveEvents")||(n.elemFile.on("change",function(){v(this).trigger("upload.change")}),o.elem.on("click",function(){n.isFile()||v(this).trigger("upload.start")}),o.drag&&o.elem.on("dragover",function(e){e.preventDefault(),v(this).trigger("upload.over")}).on("dragleave",function(e){v(this).trigger("upload.leave")}).on("drop",function(e){e.preventDefault(),v(this).trigger("upload.drop",e)}),o.bindAction.on("click",function(){v(this).trigger("upload.action")}),o.elem.data("haveEvents",!0))},i.render=function(e){e=new x(e);return function(){var t=this;return{upload:function(e){t.upload.call(t,e)},reload:function(e){t.reload.call(t,e)},config:t.config}}.call(e)},e(n,i)});layui.define("layer",function(e){"use strict";var C=layui.$,f=layui.layer,l=layui.hint(),w=(layui.device(),"form"),s=".layui-form",T="layui-this",$="layui-hide",E="layui-disabled",t=function(){this.config={verify:{required:[/[\S]+/,"\u5fc5\u586b\u9879\u4e0d\u80fd\u4e3a\u7a7a"],phone:[/^1\d{10}$/,"\u8bf7\u8f93\u5165\u6b63\u786e\u7684\u624b\u673a\u53f7"],email:[/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/,"\u90ae\u7bb1\u683c\u5f0f\u4e0d\u6b63\u786e"],url:[/^(#|(http(s?)):\/\/|\/\/)[^\s]+\.[^\s]+$/,"\u94fe\u63a5\u683c\u5f0f\u4e0d\u6b63\u786e"],number:function(e){if(!e||isNaN(e))return"\u53ea\u80fd\u586b\u5199\u6570\u5b57"},date:[/^(\d{4})[-\/](\d{1}|0\d{1}|1[0-2])([-\/](\d{1}|0\d{1}|[1-2][0-9]|3[0-1]))*$/,"\u65e5\u671f\u683c\u5f0f\u4e0d\u6b63\u786e"],identity:[/(^\d{15}$)|(^\d{17}(x|X|\d)$)/,"\u8bf7\u8f93\u5165\u6b63\u786e\u7684\u8eab\u4efd\u8bc1\u53f7"]},autocomplete:null}},i=(t.prototype.set=function(e){return C.extend(!0,this.config,e),this},t.prototype.verify=function(e){return C.extend(!0,this.config.verify,e),this},t.prototype.getFormElem=function(e){return C(s+(e?'[lay-filter="'+e+'"]':""))},t.prototype.on=function(e,t){return layui.onevent.call(this,w,e,t)},t.prototype.val=function(e,i){return this.getFormElem(e).each(function(e,t){var a=C(this);layui.each(i,function(e,t){var i,e=a.find('[name="'+e+'"]');e[0]&&("checkbox"===(i=e[0].type)?e[0].checked=t:"radio"===i?e.each(function(){this.value==t&&(this.checked=!0)}):e.val(t))})}),r.render(null,e),this.getValue(e)},t.prototype.getValue=function(e,t){t=t||this.getFormElem(e);var a={},n={},e=t.find("input,select,textarea");return layui.each(e,function(e,t){var i;C(this);t.name=(t.name||"").replace(/^\s*|\s*&/,""),t.name&&(/^.*\[\]$/.test(t.name)&&(i=t.name.match(/^(.*)\[\]$/g)[0],a[i]=0|a[i],i=t.name.replace(/^(.*)\[\]$/,"$1["+a[i]+++"]")),/^checkbox|radio$/.test(t.type)&&!t.checked||(n[i||t.name]=t.value))}),n},t.prototype.render=function(e,t){var i=this.config,a=C(s+(t?'[lay-filter="'+t+'"]':"")),n={input:function(e){e=e||a.find("input,textarea");i.autocomplete&&e.attr("autocomplete",i.autocomplete)},select:function(e){var p,c="\u8bf7\u9009\u62e9",m="layui-form-select",g="layui-select-title",k="layui-select-none",x="",e=e||a.find("select"),b=function(e,t){C(e.target).parent().hasClass(g)&&!t||(C("."+m).removeClass(m+"ed "+m+"up"),p&&x&&p.val(x)),p=null},u=function(a,e,t){var o,r,i,n,s,l,c=C(this),u=a.find("."+g),d=u.find("input"),f=a.find("dl"),h=f.children("dd"),y=f.children("dt"),v=this.selectedIndex;e||(r=c.attr("lay-search"),i=function(){var e=a.offset().top+a.outerHeight()+5-q.scrollTop(),t=f.outerHeight();v=c[0].selectedIndex,a.addClass(m+"ed"),h.removeClass($),y.removeClass($),o=null,h.eq(v).addClass(T).siblings().removeClass(T),e+t>q.height()&&t<=e&&a.addClass(m+"up"),s()},n=function(e){a.removeClass(m+"ed "+m+"up"),d.blur(),o=null,e||l(d.val(),function(e){var t=c[0].selectedIndex;e&&(x=C(c[0].options[t]).html(),0===t&&x===d.attr("placeholder")&&(x=""),d.val(x||""))})},s=function(){var e,t,i=f.children("dd."+T);i[0]&&(e=i.position().top,t=f.height(),i=i.height(),t\u65e0\u5339\u914d\u9879

        '):f.find("."+k).remove()},"keyup"),""===t&&f.find("."+k).remove(),s()}).on("blur",function(e){var t=c[0].selectedIndex;p=d,x=C(c[0].options[t]).html(),0===t&&x===d.attr("placeholder")&&(x=""),setTimeout(function(){l(d.val(),function(e){x||d.val("")},"blur")},200)}),h.on("click",function(){var e=C(this),t=e.attr("lay-value"),i=c.attr("lay-filter");return e.hasClass(E)||(e.hasClass("layui-select-tips")?d.val(""):(d.val(e.text()),e.addClass(T)),e.siblings().removeClass(T),c.val(t).removeClass("layui-form-danger"),layui.event.call(this,w,"select("+i+")",{elem:c[0],value:t,othis:a}),n(!0)),!1}),a.find("dl>dt").on("click",function(e){return!1}),C(document).off("click",b).on("click",b))};e.each(function(e,t){var i=C(this),a=i.next("."+m),n=this.disabled,l=t.value,r=C(t.options[t.selectedIndex]),t=t.options[0];if("string"==typeof i.attr("lay-ignore"))return i.show();var o,s="string"==typeof i.attr("lay-search"),t=t&&!t.value&&t.innerHTML||c,r=C(['
        ','
        ','','
        ','
        ',(t=i.find("*"),o=[],layui.each(t,function(e,t){0!==e||t.value?"optgroup"===t.tagName.toLowerCase()?o.push("
        "+t.label+"
        "):o.push('
        '+C.trim(t.innerHTML)+"
        "):o.push('
        '+C.trim(t.innerHTML||c)+"
        ")}),0===o.length&&o.push('
        \u6ca1\u6709\u9009\u9879
        '),o.join("")+"
        "),"
        "].join(""));a[0]&&a.remove(),i.after(r),u.call(this,r,n,s)})},checkbox:function(e){var s={checkbox:["layui-form-checkbox","layui-form-checked","checkbox"],_switch:["layui-form-switch","layui-form-onswitch","switch"]},e=e||a.find("input[type=checkbox]");e.each(function(e,t){var i=C(this),a=i.attr("lay-skin"),n=(i.attr("lay-text")||"").split("|"),l=this.disabled,r=s[a="switch"===a?"_"+a:a]||s.checkbox;if("string"==typeof i.attr("lay-ignore"))return i.show();var o=i.next("."+r[0]),t=C(['
        ",(l={checkbox:[t.title.replace(/\s/g,"")?""+t.title+"":"",''].join(""),_switch:""+((t.checked?n[0]:n[1])||"")+""})[a]||l.checkbox,"
        "].join(""));o[0]&&o.remove(),i.after(t),function(i,a){var n=C(this);i.on("click",function(){var e=n.attr("lay-filter"),t=(n.attr("lay-text")||"").split("|");n[0].disabled||(n[0].checked?(n[0].checked=!1,i.removeClass(a[1]).find("em").text(t[1])):(n[0].checked=!0,i.addClass(a[1]).find("em").text(t[0])),layui.event.call(n[0],w,a[2]+"("+e+")",{elem:n[0],value:n[0].value,othis:i}))})}.call(this,t,r)})},radio:function(e){var r="layui-form-radio",o=["",""],e=e||a.find("input[type=radio]");e.each(function(e,t){var i=C(this),a=i.next("."+r),n=this.disabled;if("string"==typeof i.attr("lay-ignore"))return i.show();a[0]&&a.remove();n=C(['
        ',''+o[t.checked?0:1]+"","
        "+(a=t.title||"",a="string"==typeof i.next().attr("lay-radio")?i.next().html():a)+"
        ","
        "].join(""));i.after(n),function(a){var n=C(this),l="layui-anim-scaleSpring";a.on("click",function(){var e=n[0].name,t=n.parents(s),i=n.attr("lay-filter"),e=t.find("input[name="+e.replace(/(\.|#|\[|\])/g,"\\$1")+"]");n[0].disabled||(layui.each(e,function(){var e=C(this).next("."+r);this.checked=!1,e.removeClass(r+"ed"),e.find(".layui-icon").removeClass(l).html(o[1])}),n[0].checked=!0,a.addClass(r+"ed"),a.find(".layui-icon").addClass(l).html(o[0]),layui.event.call(n[0],w,"radio("+i+")",{elem:n[0],value:n[0].value,othis:a}))})}.call(this,n)})}};return"object"===layui.type(e)?e.each(function(e,t){var i=C(t);i.closest(s).length&&("SELECT"===t.tagName?n.select(i):"INPUT"===t.tagName&&("checkbox"===(t=t.type)||"radio"===t?n[t](i):n.input(i)))}):e?n[e]?n[e]():l.error('\u4e0d\u652f\u6301\u7684 "'+e+'" \u8868\u5355\u6e32\u67d3'):layui.each(n,function(e,t){t()}),this},t.prototype.validate=function(e){var c=null,u=r.config.verify,d="layui-form-danger";return!(e=C(e))[0]||(e.attr("lay-verify")!==undefined||!1!==this.validate(e.find("*[lay-verify]")))&&(layui.each(e,function(e,l){var r=C(this),t=(r.attr("lay-verify")||"").split("|"),o=r.attr("lay-verType"),s=r.val();if(r.removeClass(d),layui.each(t,function(e,t){var i="",a="function"==typeof u[t];if(u[t]){var a=a?i=u[t](s,l):!u[t][0].test(s),n="select"===l.tagName.toLowerCase()||/^checkbox|radio$/.test(l.type),i=i||u[t][1];if("required"===t&&(i=r.attr("lay-reqText")||i),a)return"tips"===o?f.tips(i,"string"!=typeof r.attr("lay-ignore")&&n?r.next():r,{tips:1}):"alert"===o?f.alert(i,{title:"\u63d0\u793a",shadeClose:!0}):/\bstring|number\b/.test(typeof i)&&f.msg(i,{icon:5,shift:6}),setTimeout(function(){(n?r.next().find("input"):l).focus()},7),r.addClass(d),c=!0}}),c)return c}),!c)},t.prototype.submit=function(e,t){var i=C(this),e="string"==typeof e?e:i.attr("lay-filter"),a=this.getFormElem?this.getFormElem(e):i.parents(s).eq(0),n=a.find("*[lay-verify]");if(!r.validate(n))return!1;n=r.getValue(null,a),a={elem:this.getFormElem?window.event&&window.event.target:this,form:(this.getFormElem?a:i.parents("form"))[0],field:n};return"function"==typeof t&&t(a),layui.event.call(this,w,"submit("+e+")",a)}),r=new t,t=C(document),q=C(window);C(function(){r.render()}),t.on("reset",s,function(){var e=C(this).attr("lay-filter");setTimeout(function(){r.render(null,e)},50)}),t.on("submit",s,i).on("click","*[lay-submit]",i),e(w,r)});layui.define(["laytpl","laypage","form","util"],function(e){"use strict";var m=layui.$,v=layui.laytpl,r=layui.laypage,g=layui.layer,y=layui.form,h=layui.util,f=layui.hint(),p=layui.device(),b={config:{checkName:"LAY_CHECKED",indexName:"LAY_TABLE_INDEX",disabledName:"LAY_DISABLED"},cache:{},index:layui.table?layui.table.index+1e4:0,set:function(e){var t=this;return t.config=m.extend({},t.config,e),t},on:function(e,t){return layui.onevent.call(this,C,e,t)}},x=function(){var a=this,e=a.config,i=e.id||e.index;return i&&(x.that[i]=a,x.config[i]=e),{config:e,reload:function(e,t){a.reload.call(a,e,t)},reloadData:function(e,t){b.reloadData(i,e,t)},setColsWidth:function(){a.setColsWidth.call(a)},resize:function(){a.resize.call(a)}}},l=function(e){var t=x.config[e];return t||f.error(e?"The table instance with ID '"+e+"' not found":"ID argument required"),t||null},k=function(e){var t=this.config||{},a=(e=e||{}).item3,i=e.content,t=(t.escape&&(i=h.escape(i)),e.text&&a.exportTemplet||a.templet||a.toolbar);return t&&(i="function"==typeof t?t.call(a,e.tplData,e.obj):v(m(t).html()||String(i)).render(e.tplData)),e.text?m("
        "+i+"
        ").text():i},C="table",w="layui-hide",d="layui-hide-v",c="layui-none",s="layui-table-view",u=".layui-table-header",T=".layui-table-body",N=".layui-table-pageview",L=".layui-table-sort",D="layui-table-edit",E="layui-table-hover",A="layui-table-col-special",j="LAY_TABLE_MOVE_DICT",t=function(e){return['',"","{{# layui.each(d.data.cols, function(i1, item1){ }}","","{{# layui.each(item1, function(i2, item2){ }}",'{{# if(item2.fixed && item2.fixed !== "right"){ left = true; } }}','{{# if(item2.fixed === "right"){ right = true; } }}',(e=e||{}).fixed&&"right"!==e.fixed?'{{# if(item2.fixed && item2.fixed !== "right"){ }}':"right"===e.fixed?'{{# if(item2.fixed === "right"){ }}':"","{{# var isSort = !(item2.colGroup) && item2.sort; }}",'",e.fixed?"{{# }; }}":"","{{# }); }}","","{{# }); }}","","
        ','
        ','{{# if(item2.type === "checkbox"){ }}','',"{{# } else { }}",'{{-item2.title||""}}',"{{# if(isSort){ }}",'',"{{# } }}","{{# } }}","
        ","
        "].join("")},a=['',"","
        "].join(""),R=[,"{{# if(d.data.toolbar){ }}",'
        ','
        ','
        ',"
        ","{{# } }}",'
        ',"{{# if(d.data.loading){ }}",'
        ','',"
        ","{{# } }}","{{# var left, right; }}",'
        ',t(),"
        ",'
        ',a,"
        ","{{# if(left){ }}",'
        ','
        ',t({fixed:!0}),"
        ",'
        ',a,"
        ","
        ","{{# }; }}","{{# if(right){ }}",'
        ','
        ',t({fixed:"right"}),'
        ',"
        ",'
        ',a,"
        ","
        ","{{# }; }}","
        ","{{# if(d.data.totalRow){ }}",'
        ','','',"
        ","
        ","{{# } }}",'
        ','
        ',"
        ",""].join(""),_=m(window),S=m(document),i=function(e){this.index=++b.index,this.config=m.extend({},this.config,b.config,e),this.render()},F=(i.prototype.config={limit:10,loading:!0,escape:!0,cellMinWidth:60,editTrigger:"click",defaultToolbar:["filter","exports","print"],autoSort:!0,text:{none:"\u65e0\u6570\u636e"}},i.prototype.render=function(e){var t=this,a=t.config;if(a.elem=m(a.elem),a.where=a.where||{},a.id=a.id||a.elem.attr("id")||t.index,a.request=m.extend({pageName:"page",limitName:"limit"},a.request),a.response=m.extend({statusName:"code",statusCode:0,msgName:"msg",dataName:"data",totalRowName:"totalRow",countName:"count"},a.response),"object"==typeof a.page&&(a.limit=a.page.limit||a.limit,a.limits=a.page.limits||a.limits,t.page=a.page.curr=a.page.curr||1,delete a.page.elem,delete a.page.jump),!a.elem[0])return t;if("reloadData"===e)return t.pullData(t.page,{type:"reloadData"});a.height&&/^full-\d+$/.test(a.height)&&(t.fullHeightGap=a.height.split("-")[1],a.height=_.height()-t.fullHeightGap),t.setInit();var i,l,e=a.elem,n=e.next("."+s),o=t.elem=m("
        ");o.addClass((i=[s,s+"-"+t.index,"layui-form","layui-border-box"],a.className&&i.push(a.className),i.join(" "))).attr({"lay-filter":"LAY-TABLE-FORM-DF-"+t.index,"lay-id":a.id,style:(i=[],a.width&&i.push("width:"+a.width+"px;"),a.height&&i.push("height:"+a.height+"px;"),i.join(""))}).html(v(R).render({data:a,index:t.index})),a.index=t.index,t.key=a.id||a.index,n[0]&&n.remove(),e.after(o),t.layTool=o.find(".layui-table-tool"),t.layBox=o.find(".layui-table-box"),t.layHeader=o.find(u),t.layMain=o.find(".layui-table-main"),t.layBody=o.find(T),t.layFixed=o.find(".layui-table-fixed"),t.layFixLeft=o.find(".layui-table-fixed-l"),t.layFixRight=o.find(".layui-table-fixed-r"),t.layTotal=o.find(".layui-table-total"),t.layPage=o.find(".layui-table-page"),t.renderToolbar(),t.renderPagebar(),t.fullSize(),1
        ','
        ','
        '].join(""),a=this.layTool.find(".layui-table-tool-temp"),i=("default"===e.toolbar?a.html(t):"string"==typeof e.toolbar&&(t=m(e.toolbar).html()||"")&&a.html(v(t).render(e)),{filter:{title:"\u7b5b\u9009\u5217",layEvent:"LAYTABLE_COLS",icon:"layui-icon-cols"},exports:{title:"\u5bfc\u51fa",layEvent:"LAYTABLE_EXPORT",icon:"layui-icon-export"},print:{title:"\u6253\u5370",layEvent:"LAYTABLE_PRINT",icon:"layui-icon-print"}}),l=[];"object"==typeof e.defaultToolbar&&layui.each(e.defaultToolbar,function(e,t){t="string"==typeof t?i[t]:t;t&&l.push('
        ')}),this.layTool.find(".layui-table-tool-self").html(l.join(""))},i.prototype.renderPagebar=function(){var e,t=this.config,a=this.layPagebar=m('
        ');t.pagebar&&((e=m(t.pagebar).html()||"")&&a.append(v(e).render(t)),this.layPage.append(a))},i.prototype.setParentCol=function(e,t){var a=this.config,i=this.layHeader.find('th[data-key="'+a.index+"-"+t+'"]'),l=parseInt(i.attr("colspan"))||0;i[0]&&(t=t.split("-"),t=a.cols[t[0]][t[1]],e?l--:l++,i.attr("colspan",l),i[l<1?"addClass":"removeClass"](w),t.colspan=l,t.hide=l<1,(a=i.data("parentkey"))&&this.setParentCol(e,a))},i.prototype.setColsPatch=function(){var a=this,e=a.config;layui.each(e.cols,function(e,t){layui.each(t,function(e,t){t.hide&&a.setParentCol(t.hide,t.parentKey)})})},i.prototype.setColsWidth=function(){var t,a,i=this,o=i.config,l=0,r=0,d=0,c=0,s=i.setInit("width"),e=(i.eachCols(function(e,t){t.hide||l++}),s=s-("line"===o.skin||"nob"===o.skin?2:l+1)-i.getScrollWidth(i.layMain[0])-1,function(n){layui.each(o.cols,function(e,l){layui.each(l,function(e,t){var a=0,i=t.minWidth||o.cellMinWidth;t?t.colGroup||t.hide||(n?d&&d'+(e||"Error")+"
        ");a[0]&&(t.layNone.remove(),a.remove()),t.layFixed.addClass(w),t.layMain.find("tbody").html(""),t.layMain.append(t.layNone=e),t.layTotal.addClass(d),t.layPage.find(N).addClass(d),b.cache[t.key]=[],t.syncCheckAll()},i.prototype.page=1,i.prototype.pullData=function(t,a){var e,i=this,l=i.config,n=l.request,o=l.response,r=function(){"object"==typeof l.initSort&&i.sort(l.initSort.field,l.initSort.type)};a=a||{},"function"==typeof l.before&&l.before(l),i.startTime=(new Date).getTime(),l.url?((e={})[n.pageName]=t,e[n.limitName]=l.limit,n=m.extend(e,l.where),l.contentType&&0==l.contentType.indexOf("application/json")&&(n=JSON.stringify(n)),i.loading(),m.ajax({type:l.method||"get",url:l.url,contentType:l.contentType,data:n,dataType:l.dataType||"json",jsonpCallback:l.jsonpCallback,headers:l.headers||{},success:function(e){(e="function"==typeof l.parseData?l.parseData(e)||e:e)[o.statusName]!=o.statusCode?(i.renderForm(),i.errorView(e[o.msgName]||'\u8fd4\u56de\u7684\u6570\u636e\u4e0d\u7b26\u5408\u89c4\u8303\uff0c\u6b63\u786e\u7684\u6210\u529f\u72b6\u6001\u7801\u5e94\u4e3a\uff1a"'+o.statusName+'": '+o.statusCode)):(i.renderData({res:e,curr:t,count:e[o.countName],type:a.type}),r(),l.time=(new Date).getTime()-i.startTime+" ms"),i.setColsWidth(),"function"==typeof l.done&&l.done(e,t,e[o.countName])},error:function(e,t){i.errorView("\u8bf7\u6c42\u5f02\u5e38\uff0c\u9519\u8bef\u63d0\u793a\uff1a"+t),i.renderForm(),i.setColsWidth(),"function"==typeof l.error&&l.error(e,t)}})):"array"===layui.type(l.data)&&(e=t*l.limit-l.limit,(n={})[o.dataName]=l.data.concat().splice(e,l.limit),n[o.countName]=l.data.length,"object"==typeof l.totalRow&&(n[o.totalRowName]=m.extend({},l.totalRow)),i.renderData({res:n,curr:t,count:n[o.countName],type:a.type}),r(),i.setColsWidth(),"function"==typeof l.done&&l.done(n,t,n[o.countName]))},i.prototype.eachCols=function(e){return b.eachCols(null,e,this.config.cols),this},i.prototype.renderData=function(e){var u=this,y=u.config,t=e.res,l=e.curr,a=e.count,n=e.sort,i=t[y.response.dataName]||[],t=t[y.response.totalRowName],h=[],f=[],p=[],o=function(){var s;if(y.HAS_SET_COLS_PATCH||u.setColsPatch(),y.HAS_SET_COLS_PATCH=!0,!n&&u.sortKey)return u.sort(u.sortKey.field,u.sortKey.sort,!0);layui.each(i,function(o,r){var a=[],i=[],d=[],c=o+y.limit*(l-1)+1;"array"===layui.type(r)&&0===r.length||(n||(r[b.config.indexName]=o),u.eachCols(function(e,l){var e=l.field||e,t=y.index+"-"+l.key,n=r[e];n!==undefined&&null!==n||(n=""),l.colGroup||(t=['','
        "+function(){var e,t=m.extend(!0,{LAY_INDEX:c,LAY_COL:l},r),a=b.config.checkName,i=b.config.disabledName;switch(l.type){case"checkbox":return'";case"radio":return t[a]&&(s=o),'';case"numbers":return c}return l.toolbar?v(m(l.toolbar).html()||"").render(t):k.call(u,{item3:l,content:n,tplData:t})}(),"
        "].join(""),a.push(t),l.fixed&&"right"!==l.fixed&&i.push(t),"right"===l.fixed&&d.push(t))}),h.push(''+a.join("")+""),f.push(''+i.join("")+""),p.push(''+d.join("")+""))}),"fixed"===y.scrollPos&&"reloadData"===e.type||u.layBody.scrollTop(0),"reset"===y.scrollPos&&u.layBody.scrollLeft(0),u.layMain.find("."+c).remove(),u.layMain.find("tbody").html(h.join("")),u.layFixLeft.find("tbody").html(f.join("")),u.layFixRight.find("tbody").html(p.join("")),u.renderForm(),"number"==typeof s&&u.setThisRowChecked(s),u.syncCheckAll(),u.fullSize(),u.haveInit?u.scrollPatch():setTimeout(function(){u.scrollPatch()},50),u.haveInit=!0,g.close(u.tipsIndex)};return b.cache[u.key]=i,u.layTotal[0==i.length?"addClass":"removeClass"](d),u.layPage[y.page||y.pagebar?"removeClass":"addClass"](w),u.layPage.find(N)[!y.page||0==a||0===i.length&&1==l?"addClass":"removeClass"](d),0===i.length?(u.renderForm(),u.errorView(y.text.none)):(u.layFixLeft.removeClass(w),n?o():(o(),u.renderTotal(i,t),u.layTotal&&u.layTotal.removeClass(w),void(y.page&&(y.page=m.extend({elem:"layui-table-page"+y.index,count:a,limit:y.limit,limits:y.limits||[10,20,30,40,50,60,70,80,90],groups:3,layout:["prev","page","next","skip","count","limit"],prev:'',next:'',jump:function(e,t){t||(u.page=e.curr,y.limit=e.limit,u.pullData(e.curr))}},y.page),y.page.count=a,r.render(y.page)))))},i.prototype.renderTotal=function(e,n){var o,r=this,d=r.config,c={};d.totalRow&&(layui.each(e,function(e,i){"array"===layui.type(i)&&0===i.length||r.eachCols(function(e,t){var e=t.field||e,a=i[e];t.totalRow&&(c[e]=(c[e]||0)+(parseFloat(a)||0))})}),r.dataTotal={},o=[],r.eachCols(function(e,t){var a,e=t.field||e,i=(a=t.totalRowText||"",l="totalRowDecimals"in t?t.totalRowDecimals:2,l=parseFloat(c[e]).toFixed(l),(i={LAY_COL:t})[e]=l,l=t.totalRow&&k.call(r,{item3:t,content:l,tplData:i})||a,n&&n[t.field]||l),l=['','
        "+("string"==typeof(a=t.totalRow||d.totalRow)?v(a).render(m.extend({TOTAL_NUMS:c[e],LAY_COL:t},t)):i),"
        "].join("");t.field&&(r.dataTotal[e]=i),o.push(l)}),r.layTotal.find("tbody").html(""+o.join("")+""))},i.prototype.getColElem=function(e,t){var a=this.config;return e.eq(0).find(".laytable-cell-"+a.index+"-"+t+":eq(0)")},i.prototype.renderForm=function(e){this.config;var t=this.elem.attr("lay-filter");y.render(e,t)},i.prototype.setThisRowChecked=function(e){this.config;var t="layui-table-click";this.layBody.find('tr[data-index="'+e+'"]').addClass(t).siblings("tr").removeClass(t)},i.prototype.sort=function(l,e,t,a){var i,n=this,o={},r=n.config,d=r.elem.attr("lay-filter"),c=b.cache[n.key];"string"==typeof l&&(s=l,n.layHeader.find("th").each(function(e,t){var a=m(this),i=a.data("field");if(i===l)return l=a,s=i,!1}));try{var s=s||l.data("field"),u=l.data("key");if(n.sortKey&&!t&&s===n.sortKey.field&&e===n.sortKey.sort)return;var y=n.layHeader.find("th .laytable-cell-"+u).find(L);n.layHeader.find("th").find(L).removeAttr("lay-sort"),y.attr("lay-sort",e||null),n.layFixed.find("th")}catch(h){f.error("Table modules: sort field '"+s+"' not matched")}n.sortKey={field:s,sort:e},r.autoSort&&("asc"===e?i=layui.sort(c,s):"desc"===e?i=layui.sort(c,s,!0):(i=layui.sort(c,b.config.indexName),delete n.sortKey,delete r.initSort)),o[r.response.dataName]=i||c,n.renderData({res:o,curr:n.page,count:n.count,sort:!0}),a&&(r.initSort={field:s,type:e},layui.event.call(l,C,"sort("+d+")",r.initSort))},i.prototype.loading=function(e){var t=this;t.config.loading&&(e?(t.layInit&&t.layInit.remove(),delete t.layInit,t.layBox.find(".layui-table-init").remove()):(t.layInit=m(['
        ','',"
        "].join("")),t.layBox.append(t.layInit)))},i.prototype.setCheckData=function(e,t){var a=this.config,i=b.cache[this.key];i[e]&&"array"!==layui.type(i[e])&&(i[e][a.checkName]=t)},i.prototype.syncCheckAll=function(){var e=this,i=e.config,t=e.layHeader.find('input[name="layTableCheckbox"]'),a=function(a){return e.eachCols(function(e,t){"checkbox"===t.type&&(t[i.checkName]=a)}),a};t[0]&&(b.checkStatus(e.key).isAll?(t[0].checked||(t.prop("checked",!0),e.renderForm("checkbox")),a(!0)):(t[0].checked&&(t.prop("checked",!1),e.renderForm("checkbox")),a(!1)))},i.prototype.getCssRule=function(a,i){var e=this.elem.find("style")[0],e=e.sheet||e.styleSheet||{},e=e.cssRules||e.rules;layui.each(e,function(e,t){if(t.selectorText===".laytable-cell-"+a)return i(t),!0})},i.prototype.fullSize=function(){var e=this,t=e.config,a=t.height;e.fullHeightGap&&(a=_.height()-e.fullHeightGap,e.elem.css("height",a=a<135?135:a)),a&&(a=parseFloat(a)-(e.layHeader.outerHeight()||38),t.toolbar&&(a-=e.layTool.outerHeight()||50),t.totalRow&&(a-=e.layTotal.outerHeight()||40),(t.page||t.pagebar)&&(a-=e.layPage.outerHeight()||43),e.layMain.outerHeight(a))},i.prototype.getScrollWidth=function(e){var t=0;return e?t=e.offsetWidth-e.clientWidth:((e=document.createElement("div")).style.width="100px",e.style.height="100px",e.style.overflowY="scroll",document.body.appendChild(e),t=e.offsetWidth-e.clientWidth,document.body.removeChild(e)),t},i.prototype.scrollPatch=function(){var e=this,t=e.layMain.children("table"),a=e.layMain.width()-e.layMain.prop("clientWidth"),i=e.layMain.height()-e.layMain.prop("clientHeight"),l=(e.getScrollWidth(e.layMain[0]),t.outerWidth()-e.layMain.width()),n=function(e){var t;a&&i?(e=e.eq(0)).find(".layui-table-patch")[0]||((t=m('
        ')).find("div").css({width:a}),e.find("tr").append(t)):e.find(".layui-table-patch").remove()};n(e.layHeader),n(e.layTotal);n=e.layMain.height()-i;e.layFixed.find(T).css("height",t.height()>=n?n:"auto"),e.layFixRight[0');a.html(t),c.height&&a.css("max-height",c.height-(d.layTool.outerHeight()||50)),i.find(".layui-table-tool-panel")[0]||i.append(a),d.renderForm(),a.on("click",function(e){layui.stope(e)}),e.done&&e.done(a,t)};switch(layui.stope(e),S.trigger("table.tool.panel.remove"),g.close(d.tipsIndex),t){case"LAYTABLE_COLS":l({list:(a=[],d.eachCols(function(e,t){t.field&&"normal"==t.type&&a.push('
      • ')}),a.join("")),done:function(){y.on("checkbox(LAY_TABLE_TOOL_COLS)",function(e){var e=m(e.elem),i=this.checked,l=e.data("key"),n=e.data("parentkey");layui.each(c.cols,function(a,e){layui.each(e,function(e,t){a+"-"+e===l&&(e=t.hide,t.hide=!i,d.elem.find('*[data-key="'+c.index+"-"+l+'"]')[i?"removeClass":"addClass"](w),e!=t.hide&&d.setParentCol(!i,n),d.resize())})})})}});break;case"LAYTABLE_EXPORT":p.ie?g.tips("\u5bfc\u51fa\u529f\u80fd\u4e0d\u652f\u6301 IE\uff0c\u8bf7\u7528 Chrome \u7b49\u9ad8\u7ea7\u6d4f\u89c8\u5668\u5bfc\u51fa",this,{tips:3}):l({list:['
      • \u5bfc\u51fa csv \u683c\u5f0f\u6587\u4ef6
      • ','
      • \u5bfc\u51fa xls \u683c\u5f0f\u6587\u4ef6
      • '].join(""),done:function(e,t){t.on("click",function(){var e=m(this).data("type");b.exportFile.call(d,c.id,null,e)})}});break;case"LAYTABLE_PRINT":var n=window.open("about:blank","_blank"),o=[""].join(""),r=m(d.layHeader.html());r.append(d.layMain.find("table").html()),r.append(d.layTotal.find("table").html()),r.find("th.layui-table-patch").remove(),r.find("thead>tr>th."+A).filter(function(e,t){return!m(t).children(".laytable-cell-group").length}).remove(),r.find("tbody>tr>td."+A).remove(),n.document.write(o+r.prop("outerHTML")),n.document.close(),n.print(),n.close()}layui.event.call(this,C,"toolbar("+s+")",m.extend({event:t,config:c},{}))}),d.layPagebar.on("click","*[lay-event]",function(e){var t=m(this).attr("lay-event");layui.event.call(this,C,"pagebar("+s+")",m.extend({event:t,config:c},{}))}),e.on("mousemove",function(e){var t=m(this),a=t.offset().left,e=e.clientX-a;t.data("unresize")||x.eventMoveElem||(l.allowResize=t.width()-e<=10,i.css("cursor",l.allowResize?"col-resize":""))}).on("mouseleave",function(){m(this);x.eventMoveElem||i.css("cursor","")}).on("mousedown",function(e){var t,a=m(this);l.allowResize&&(t=a.data("key"),e.preventDefault(),l.offset=[e.clientX,e.clientY],d.getCssRule(t,function(e){var t=e.style.width||a.outerWidth();l.rule=e,l.ruleWidth=parseFloat(t),l.minWidth=a.data("minwidth")||c.cellMinWidth}),a.data(j,l),x.eventMoveElem=a)}),x.docEvent||S.on("mousemove",function(e){var t;x.eventMoveElem&&(t=x.eventMoveElem.data(j)||{},x.eventMoveElem.data("resizing",1),e.preventDefault(),t.rule&&((e=t.ruleWidth+e.clientX-t.offset[0])':''))[0].value=t.data("content")||i.text(),t.find("."+D)[0]||t.append(a),a.focus(),layui.stope(e))}).on("mouseenter","td",function(){a.call(this)}).on("mouseleave","td",function(){a.call(this,"hide")}),"layui-table-grid-down"),a=function(e){var t=m(this),a=t.children(u);t.data("off")||(e?t.find(".layui-table-grid-down").remove():!(a.prop("scrollWidth")>a.outerWidth()||0
        '))},r=(d.layBody.on("click","."+o,function(e){var t=m(this).parent().children(u);d.tipsIndex=g.tips(['
        ',t.html(),"
        ",''].join(""),t[0],{tips:[3,""],time:-1,anim:-1,maxWidth:p.ios||p.android?300:d.elem.width()/2,isOutAnim:!1,skin:"layui-table-tips",success:function(e,t){e.find(".layui-table-tips-c").on("click",function(){g.close(t)})}}),layui.stope(e)}),function(e){var t=m(this),a=t.parents("tr").eq(0).data("index");layui.event.call(this,C,(e||"tool")+"("+s+")",n.call(this,{event:t.attr("lay-event")})),d.setThisRowChecked(a)});d.layBody.on("click","*[lay-event]",function(){return r.call(this),!1}).on("dblclick","*[lay-event]",function(){return r.call(this,"toolDouble"),!1}),d.layMain.on("scroll",function(){var e=m(this),t=e.scrollLeft(),e=e.scrollTop();d.layHeader.scrollLeft(t),d.layTotal.scrollLeft(t),d.layFixed.find(T).scrollTop(e),g.close(d.tipsIndex)}),_.on("resize",function(){d.resize()})},S.on("click",function(){S.trigger("table.remove.tool.panel")}),S.on("table.remove.tool.panel",function(){m(".layui-table-tool-panel").remove()}),b.init=function(a,i){i=i||{};var e=m(a?'table[lay-filter="'+a+'"]':".layui-table[lay-data]"),r="Table element property lay-data configuration item has a syntax error: ";return e.each(function(){var e=m(this),t=e.attr("lay-data");try{t=new Function("return "+t)()}catch(l){f.error(r+t,"error")}var n=[],o=m.extend({elem:this,cols:[],data:[],skin:e.attr("lay-skin"),size:e.attr("lay-size"),even:"string"==typeof e.attr("lay-even")},b.config,i,t);a&&e.hide(),e.find("thead>tr").each(function(i){o.cols[i]=[],m(this).children().each(function(e){var t=m(this),a=t.attr("lay-data");try{a=new Function("return "+a)()}catch(l){return f.error(r+a)}t=m.extend({title:t.text(),colspan:t.attr("colspan")||1,rowspan:t.attr("rowspan")||1},a);t.colspan<2&&n.push(t),o.cols[i].push(t)})}),e.find("tbody>tr").each(function(e){var a=m(this),l={};a.children("td").each(function(e,t){var a=m(this),i=a.data("field");if(i)return l[i]=a.html()}),layui.each(n,function(e,t){e=a.children("td").eq(e);l[t.field]=e.html()}),o.data[e]=l}),b.render(o)}),this},x.that={},x.config={},function(a,i,e,l){var n,o;l.colGroup&&(n=0,a++,l.CHILD_COLS=[],o=e+(parseInt(l.rowspan)||1),layui.each(i[o],function(e,t){t.parentKey?t.parentKey===l.key&&(t.PARENT_COL_INDEX=a,l.CHILD_COLS.push(t),F(a,i,o,t)):t.PARENT_COL_INDEX||1<=n&&n==(l.colspan||1)||(t.PARENT_COL_INDEX=a,l.CHILD_COLS.push(t),n+=t.hide?0:parseInt(1td'),a!==undefined&&null!==a||(a=""),0==l&&r.push(t.title||""),o.push('"'+k.call(c,{item3:t,content:a,tplData:n,text:"text",obj:c.commonMember.call(i.eq(0),{td:function(e){return i.filter('[data-field="'+e+'"]')}})})+'"')))}),i.push(o.join(","))}),c&&layui.each(c.dataTotal,function(e,t){d[e]||l.push(t)}),r.join(",")+"\r\n"+i.join("\r\n")+"\r\n"+l.join(","))),u.download=(a.title||o.title||"table_"+(o.index||""))+"."+n,document.body.appendChild(u),u.click(),document.body.removeChild(u)},b.resize=function(e){e?l(e)&&x.that[e].resize():layui.each(x.that,function(){this.resize()})},b.reload=function(e,t,a,i){if(l(e))return e=x.that[e],e.reload(t,a,i),x.call(e)},b.reloadData=function(){var a=m.extend([],arguments),i=(a[3]="reloadData",new RegExp("^("+["data","url","method","contentType","dataType","jsonpCallback","headers","where","page","limit","request","response","parseData","scrollPos"].join("|")+")$"));return layui.each(a[1],function(e,t){i.test(e)||delete a[1][e]}),b.reload.apply(null,a)},b.render=function(e){e=new i(e);return x.call(e)},b.clearCacheKey=function(e){return delete(e=m.extend({},e))[b.config.checkName],delete e[b.config.indexName],delete e[b.config.disabledName],e},m(function(){b.init()}),e(C,b)});layui.define("form",function(e){"use strict";var u=layui.$,i=layui.form,p=layui.layer,n="tree",a={config:{},index:layui[n]?layui[n].index+1e4:0,set:function(e){var i=this;return i.config=u.extend({},i.config,e),i},on:function(e,i){return layui.onevent.call(this,n,e,i)}},t=function(){var i=this,e=i.config,n=e.id||i.index;return t.that[n]=i,{config:t.config[n]=e,reload:function(e){i.reload.call(i,e)},getChecked:function(){return i.getChecked.call(i)},setChecked:function(e){return i.setChecked.call(i,e)}}},y="layui-hide",d="layui-disabled",f="layui-tree-set",C="layui-tree-iconClick",k="layui-icon-addition",v="layui-icon-subtraction",m="layui-tree-entry",x="layui-tree-main",b="layui-tree-txt",g="layui-tree-pack",w="layui-tree-spread",N="layui-tree-setLineShort",T="layui-tree-showLine",L="layui-tree-lineExtend",l=function(e){var i=this;i.index=++a.index,i.config=u.extend({},i.config,a.config,e),i.render()};l.prototype.config={data:[],showCheckbox:!1,showLine:!0,accordion:!1,onlyIconControl:!1,isJump:!1,edit:!1,text:{defaultNodeName:"\u672a\u547d\u540d",none:"\u65e0\u6570\u636e"}},l.prototype.reload=function(e){var n=this;layui.each(e,function(e,i){"array"===layui.type(i)&&delete n.config[e]}),n.config=u.extend(!0,{},n.config,e),n.render()},l.prototype.render=function(){var e=this,i=e.config,n=(e.checkids=[],u('
        ')),a=(e.tree(n),i.elem=u(i.elem));if(a[0]){if(e.key=i.id||e.index,e.elem=n,e.elemNone=u('
        '+i.text.none+"
        "),a.html(e.elem),0==e.elem.find(".layui-tree-set").length)return e.elem.append(e.elemNone);i.showCheckbox&&e.renderForm("checkbox"),e.elem.find(".layui-tree-set").each(function(){var e=u(this);e.parent(".layui-tree-pack")[0]||e.addClass("layui-tree-setHide"),!e.next()[0]&&e.parents(".layui-tree-pack").eq(1).hasClass("layui-tree-lineExtend")&&e.addClass(N),e.next()[0]||e.parents(".layui-tree-set").eq(0).next()[0]||e.addClass(N)}),e.events()}},l.prototype.renderForm=function(e){i.render(e,"LAY-tree-"+this.index)},l.prototype.tree=function(l,e){var r=this,c=r.config,e=e||c.data;layui.each(e,function(e,i){var n=i.children&&0"),t=u(['
        ','
        ','
        ',c.showLine?n?'':'':'',c.showCheckbox?'':"",c.isJump&&i.href?''+(i.title||i.label||c.text.defaultNodeName)+"":''+(i.title||i.label||c.text.defaultNodeName)+"","
        ",function(){if(!c.edit)return"";var n={add:'',update:'',del:''},a=['
        '];return!0===c.edit&&(c.edit=["update","del"]),"object"==typeof c.edit?(layui.each(c.edit,function(e,i){a.push(n[i]||"")}),a.join("")+"
        "):void 0}(),"
        "].join(""));n&&(t.append(a),r.tree(a,i.children)),l.append(t),t.prev("."+f)[0]&&t.prev().children(".layui-tree-pack").addClass("layui-tree-showLine"),n||t.parent(".layui-tree-pack").addClass("layui-tree-lineExtend"),r.spread(t,i),c.showCheckbox&&(i.checked&&r.checkids.push(i.id),r.checkClick(t,i)),c.edit&&r.operate(t,i)})},l.prototype.spread=function(a,e){var t=this.config,i=a.children("."+m),n=i.children("."+x),l=i.find("."+C),i=i.find("."+b),r=t.onlyIconControl?l:n,c="";r.on("click",function(e){var i=a.children("."+g),n=(r.children(".layui-icon")[0]?r:r.find(".layui-tree-icon")).children(".layui-icon");i[0]?a.hasClass(w)?(a.removeClass(w),i.slideUp(200),n.removeClass(v).addClass(k)):(a.addClass(w),i.slideDown(200),n.addClass(v).removeClass(k),t.accordion&&((i=a.siblings("."+f)).removeClass(w),i.children("."+g).slideUp(200),i.find(".layui-tree-icon").children(".layui-icon").removeClass(v).addClass(k))):c="normal"}),i.on("click",function(){u(this).hasClass(d)||(c=a.hasClass(w)?t.onlyIconControl?"open":"close":t.onlyIconControl?"close":"open",t.click&&t.click({elem:a,state:c,data:e}))})},l.prototype.setCheckbox=function(e,i,n){this.config;var t,l=n.prop("checked");n.prop("disabled")||("object"!=typeof i.children&&!e.find("."+g)[0]||e.find("."+g).find('input[same="layuiTreeCheck"]').each(function(){this.disabled||(this.checked=l)}),(t=function(e){var i,n,a;e.parents("."+f)[0]&&(n=(e=e.parent("."+g)).parent(),a=e.prev().find('input[same="layuiTreeCheck"]'),l?a.prop("checked",l):(e.find('input[same="layuiTreeCheck"]').each(function(){this.checked&&(i=!0)}),i||a.prop("checked",!1)),t(n))})(e),this.renderForm("checkbox"))},l.prototype.checkClick=function(n,a){var t=this,l=t.config;n.children("."+m).children("."+x).on("click",'input[same="layuiTreeCheck"]+',function(e){layui.stope(e);var e=u(this).prev(),i=e.prop("checked");e.prop("disabled")||(t.setCheckbox(n,a,e),l.oncheck&&l.oncheck({elem:n,checked:i,data:a}))})},l.prototype.operate=function(c,d){var s=this,o=s.config,e=c.children("."+m),h=e.children("."+x);e.children(".layui-tree-btnGroup").on("click",".layui-icon",function(e){layui.stope(e);var i,e=u(this).data("type"),a=c.children("."+g),t={data:d,type:e,elem:c};if("add"==e){a[0]||(o.showLine?(h.find("."+C).addClass("layui-tree-icon"),h.find("."+C).children(".layui-icon").addClass(k).removeClass("layui-icon-file")):h.find(".layui-tree-iconArrow").removeClass(y),c.append('
        '));var n,l=o.operate&&o.operate(t),r={};if(r.title=o.text.defaultNodeName,r.id=l,s.tree(c.children("."+g),[r]),o.showLine&&(a[0]?(a.hasClass(L)||a.addClass(L),c.find("."+g).each(function(){u(this).children("."+f).last().addClass(N)}),(a.children("."+f).last().prev().hasClass(N)?a.children("."+f).last().prev():a.children("."+f).last()).removeClass(N),!c.parent("."+g)[0]&&c.next()[0]&&a.children("."+f).last().removeClass(N)):(l=c.siblings("."+f),n=1,r=c.parent("."+g),layui.each(l,function(e,i){u(i).children("."+g)[0]||(n=0)}),1==n?(l.children("."+g).addClass(T),l.children("."+g).children("."+f).removeClass(N),c.children("."+g).addClass(T),r.removeClass(L),r.children("."+f).last().children("."+g).children("."+f).last().addClass(N)):c.children("."+g).children("."+f).addClass(N))),!o.showCheckbox)return;h.find('input[same="layuiTreeCheck"]')[0].checked&&(c.children("."+g).children("."+f).last().find('input[same="layuiTreeCheck"]')[0].checked=!0),s.renderForm("checkbox")}else"update"==e?(l=h.children("."+b).html(),h.children("."+b).html(""),h.append(''),h.children(".layui-tree-editInput").val(l).focus(),i=function(e){var i=(i=e.val().trim())||o.text.defaultNodeName;e.remove(),h.children("."+b).html(i),t.data.title=i,o.operate&&o.operate(t)},h.children(".layui-tree-editInput").blur(function(){i(u(this))}),h.children(".layui-tree-editInput").on("keydown",function(e){13===e.keyCode&&(e.preventDefault(),i(u(this)))})):p.confirm('\u786e\u8ba4\u5220\u9664\u8be5\u8282\u70b9 "'+(d.title||"")+'" \u5417\uff1f',function(e){if(o.operate&&o.operate(t),t.status="remove",p.close(e),!c.prev("."+f)[0]&&!c.next("."+f)[0]&&!c.parent("."+g)[0])return c.remove(),void s.elem.append(s.elemNone);var l,n,i;c.siblings("."+f).children("."+m)[0]?(o.showCheckbox&&(l=function(e){var i,n,a,t;e.parents("."+f)[0]&&(i=e.siblings("."+f).children("."+m),n=(e=e.parent("."+g).prev()).find('input[same="layuiTreeCheck"]')[0],a=1,(t=0)==n.checked&&(i.each(function(e,i){i=u(i).find('input[same="layuiTreeCheck"]')[0];0!=i.checked||i.disabled||(a=0),i.disabled||(t=1)}),1==a&&1==t&&(n.checked=!0,s.renderForm("checkbox"),l(e.parent("."+f)))))})(c),o.showLine&&(e=c.siblings("."+f),n=1,i=c.parent("."+g),layui.each(e,function(e,i){u(i).children("."+g)[0]||(n=0)}),1==n?(a[0]||(i.removeClass(L),e.children("."+g).addClass(T),e.children("."+g).children("."+f).removeClass(N)),(c.next()[0]?i.children("."+f).last():c.prev()).children("."+g).children("."+f).last().addClass(N),c.next()[0]||c.parents("."+f)[1]||c.parents("."+f).eq(0).next()[0]||c.prev("."+f).addClass(N)):!c.next()[0]&&c.hasClass(N)&&c.prev().addClass(N))):(e=c.parent("."+g).prev(),o.showLine?(e.find("."+C).removeClass("layui-tree-icon"),e.find("."+C).children(".layui-icon").removeClass(v).addClass("layui-icon-file"),(i=e.parents("."+g).eq(0)).addClass(L),i.children("."+f).each(function(){u(this).children("."+g).children("."+f).last().addClass(N)})):e.find(".layui-tree-iconArrow").addClass(y),c.parents("."+f).eq(0).removeClass(w),c.parent("."+g).remove()),c.remove()})})},l.prototype.events=function(){var i=this,t=i.config;i.elem.find(".layui-tree-checkedFirst");i.setChecked(i.checkids),i.elem.find(".layui-tree-search").on("keyup",function(){var e=u(this),n=e.val(),e=e.nextAll(),a=[];e.find("."+b).each(function(){var i,e=u(this).parents("."+m);-1!=u(this).html().indexOf(n)&&(a.push(u(this).parent()),(i=function(e){e.addClass("layui-tree-searchShow"),e.parent("."+g)[0]&&i(e.parent("."+g).parent("."+f))})(e.parent("."+f)))}),e.find("."+m).each(function(){var e=u(this).parent("."+f);e.hasClass("layui-tree-searchShow")||e.addClass(y)}),0==e.find(".layui-tree-searchShow").length&&i.elem.append(i.elemNone),t.onsearch&&t.onsearch({elem:a})}),i.elem.find(".layui-tree-search").on("keydown",function(){u(this).nextAll().find("."+m).each(function(){u(this).parent("."+f).removeClass("layui-tree-searchShow "+y)}),u(".layui-tree-emptyText")[0]&&u(".layui-tree-emptyText").remove()})},l.prototype.getChecked=function(){var e=this.config,i=[],n=[],t=(this.elem.find(".layui-form-checked").each(function(){i.push(u(this).prev()[0].value)}),function(e,a){layui.each(e,function(e,n){layui.each(i,function(e,i){if(n.id==i)return delete(i=u.extend({},n)).children,a.push(i),n.children&&(i.children=[],t(n.children,i.children)),!0})})});return t(u.extend({},e.data),n),n},l.prototype.setChecked=function(l){this.config;this.elem.find("."+f).each(function(e,i){var n=u(this).data("id"),a=u(i).children("."+m).find('input[same="layuiTreeCheck"]'),t=a.next();if("number"==typeof l){if(n==l)return a[0].checked||t.click(),!1}else"object"==typeof l&&layui.each(l,function(e,i){if(i==n&&!a[0].checked)return t.click(),!0})})},t.that={},t.config={},a.reload=function(e,i){e=t.that[e];return e.reload(i),t.call(e)},a.getChecked=function(e){return t.that[e].getChecked()},a.setChecked=function(e,i){return t.that[e].setChecked(i)},a.render=function(e){e=new l(e);return t.call(e)},e(n,a)});layui.define(["laytpl","form"],function(e){"use strict";var d=layui.$,n=layui.laytpl,t=layui.form,a="transfer",i={config:{},index:layui[a]?layui[a].index+1e4:0,set:function(e){var t=this;return t.config=d.extend({},t.config,e),t},on:function(e,t){return layui.onevent.call(this,a,e,t)}},l=function(){var t=this,e=t.config,a=e.id||t.index;return l.that[a]=t,{config:l.config[a]=e,reload:function(e){t.reload.call(t,e)},getData:function(){return t.getData.call(t)}}},s="layui-hide",h="layui-btn-disabled",r="layui-none",c="layui-transfer-box",u="layui-transfer-header",o="layui-transfer-search",f="layui-transfer-data",y=function(e){return['
        ','
        ','","
        ","{{# if(d.data.showSearch){ }}",'","{{# } }}",'
          ',"
          "].join("")},p=['
          ',y({index:0,checkAllName:"layTransferLeftCheckAll"}),'
          ','",'","
          ",y({index:1,checkAllName:"layTransferRightCheckAll"}),"
          "].join(""),v=function(e){var t=this;t.index=++i.index,t.config=d.extend({},t.config,i.config,e),t.render()};v.prototype.config={title:["\u5217\u8868\u4e00","\u5217\u8868\u4e8c"],width:200,height:360,data:[],value:[],showSearch:!1,id:"",text:{none:"\u65e0\u6570\u636e",searchNone:"\u65e0\u5339\u914d\u6570\u636e"}},v.prototype.reload=function(e){var t=this;t.config=d.extend({},t.config,e),t.render()},v.prototype.render=function(){var e=this,t=e.config,a=e.elem=d(n(p).render({data:t,index:e.index})),i=t.elem=d(t.elem);i[0]&&(t.data=t.data||[],t.value=t.value||[],e.key=t.id||e.index,i.html(e.elem),e.layBox=e.elem.find("."+c),e.layHeader=e.elem.find("."+u),e.laySearch=e.elem.find("."+o),e.layData=a.find("."+f),e.layBtn=a.find(".layui-transfer-active .layui-btn"),e.layBox.css({width:t.width,height:t.height}),e.layData.css({height:(i=t.height-e.layHeader.outerHeight(),t.showSearch&&(i-=e.laySearch.outerHeight()),i-2)}),e.renderData(),e.events())},v.prototype.renderData=function(){var e=this,i=(e.config,[{checkName:"layTransferLeftCheck",views:[]},{checkName:"layTransferRightCheck",views:[]}]);e.parseData(function(e){var t=e.selected?1:0,a=["
        • ",'',"
        • "].join("");i[t].views.push(a),delete e.selected}),e.layData.eq(0).html(i[0].views.join("")),e.layData.eq(1).html(i[1].views.join("")),e.renderCheckBtn()},v.prototype.renderForm=function(e){t.render(e,"LAY-transfer-"+this.index)},v.prototype.renderCheckBtn=function(r){var c=this,o=c.config;r=r||{},c.layBox.each(function(e){var t=d(this),a=t.find("."+f),t=t.find("."+u).find('input[type="checkbox"]'),i=a.find('input[type="checkbox"]'),n=0,l=!1;i.each(function(){var e=d(this).data("hide");(this.checked||this.disabled||e)&&n++,this.checked&&!e&&(l=!0)}),t.prop("checked",l&&n===i.length),c.layBtn.eq(e)[l?"removeClass":"addClass"](h),r.stopNone||(i=a.children("li:not(."+s+")").length,c.noneView(a,i?"":o.text.none))}),c.renderForm("checkbox")},v.prototype.noneView=function(e,t){var a=d('

          '+(t||"")+"

          ");e.find("."+r)[0]&&e.find("."+r).remove(),t.replace(/\s/g,"")&&e.append(a)},v.prototype.setValue=function(){var e=this.config,t=[];return this.layBox.eq(1).find("."+f+' input[type="checkbox"]').each(function(){d(this).data("hide")||t.push(this.value)}),e.value=t,this},v.prototype.parseData=function(t){var i=this.config,n=[];return layui.each(i.data,function(e,a){a=("function"==typeof i.parseData?i.parseData(a):a)||a,n.push(a=d.extend({},a)),layui.each(i.value,function(e,t){t==a.value&&(a.selected=!0)}),t&&t(a)}),i.data=n,this},v.prototype.getData=function(e){var t=this.config,i=[];return this.setValue(),layui.each(e||t.value,function(e,a){layui.each(t.data,function(e,t){delete t.selected,a==t.value&&i.push(t)})}),i},v.prototype.transfer=function(e,t){var a,i=this,n=i.config,l=i.layBox.eq(e),r=[],t=(t?((a=(t=t).find('input[type="checkbox"]'))[0].checked=!1,l.siblings("."+c).find("."+f).append(t.clone()),t.remove(),r.push(a[0].value),i.setValue()):l.each(function(e){d(this).find("."+f).children("li").each(function(){var e=d(this),t=e.find('input[type="checkbox"]'),a=t.data("hide");t[0].checked&&!a&&(t[0].checked=!1,l.siblings("."+c).find("."+f).append(e.clone()),e.remove(),r.push(t[0].value)),i.setValue()})}),i.renderCheckBtn(),l.siblings("."+c).find("."+o+" input"));""!==t.val()&&t.trigger("keyup"),n.onchange&&n.onchange(i.getData(r),e)},v.prototype.events=function(){var n=this,a=n.config;n.elem.on("click",'input[lay-filter="layTransferCheckbox"]+',function(){var e=d(this).prev(),t=e[0].checked,a=e.parents("."+c).eq(0).find("."+f);e[0].disabled||("all"===e.attr("lay-type")&&a.find('input[type="checkbox"]').each(function(){this.disabled||(this.checked=t)}),setTimeout(function(){n.renderCheckBtn({stopNone:!0})},0))}),n.elem.on("dblclick","."+f+">li",function(e){var t=d(this),a=t.children('input[type="checkbox"]'),i=t.parent().parent();a[0].disabled||n.transfer(i.data("index"),t)}),n.layBtn.on("click",function(){var e=d(this),t=e.data("index");e.hasClass(h)||n.transfer(t)}),n.laySearch.find("input").on("keyup",function(){var i=this.value,e=d(this).parents("."+o).eq(0).siblings("."+f),t=e.children("li"),t=(t.each(function(){var e=d(this),t=e.find('input[type="checkbox"]'),a=-1!==t[0].title.indexOf(i);e[a?"removeClass":"addClass"](s),t.data("hide",!a)}),n.renderCheckBtn(),t.length===e.children("li."+s).length);n.noneView(e,t?a.text.searchNone:"")})},l.that={},l.config={},i.reload=function(e,t){e=l.that[e];return e.reload(t),l.call(e)},i.getData=function(e){return l.that[e].getData()},i.render=function(e){e=new v(e);return l.call(e)},e(a,i)});layui.define("jquery",function(e){"use strict";var a=layui.$,n=(layui.hint(),layui.device(),{config:{},set:function(e){var i=this;return i.config=a.extend({},i.config,e),i},on:function(e,i){return layui.onevent.call(this,d,e,i)}}),d="carousel",r="layui-this",s="layui-carousel-left",u="layui-carousel-right",c="layui-carousel-prev",m="layui-carousel-next",t="layui-carousel-arrow",l="layui-carousel-ind",i=function(e){var i=this;i.config=a.extend({},i.config,n.config,e),i.render()};i.prototype.config={width:"600px",height:"280px",full:!1,arrow:"hover",indicator:"inside",autoplay:!0,interval:3e3,anim:"",trigger:"click",index:0},i.prototype.render=function(){var e=this,i=e.config;i.elem=a(i.elem),i.elem[0]&&(e.elemItem=i.elem.find(">*[carousel-item]>*"),i.index<0&&(i.index=0),i.index>=e.elemItem.length&&(i.index=e.elemItem.length-1),i.interval<800&&(i.interval=800),i.full?i.elem.css({position:"fixed",width:"100%",height:"100%",zIndex:9999}):i.elem.css({width:i.width,height:i.height}),i.elem.attr("lay-anim",i.anim),e.elemItem.eq(i.index).addClass(r),e.elemItem.length<=1||(e.indicator(),e.arrow(),e.autoplay(),e.events()))},i.prototype.reload=function(e){var i=this;clearInterval(i.timer),i.config=a.extend({},i.config,e),i.render()},i.prototype.prevIndex=function(){var e=this.config.index-1;return e=e<0?this.elemItem.length-1:e},i.prototype.nextIndex=function(){var e=this.config.index+1;return e=e>=this.elemItem.length?0:e},i.prototype.addIndex=function(e){var i=this.config;i.index=i.index+(e=e||1),i.index>=this.elemItem.length&&(i.index=0)},i.prototype.subIndex=function(e){var i=this.config;i.index=i.index-(e=e||1),i.index<0&&(i.index=this.elemItem.length-1)},i.prototype.autoplay=function(){var e=this,i=e.config;i.autoplay&&(clearInterval(e.timer),e.timer=setInterval(function(){e.slide()},i.interval))},i.prototype.arrow=function(){var i=this,e=i.config,n=a(['",'"].join(""));e.elem.attr("lay-arrow",e.arrow),e.elem.find("."+t)[0]&&e.elem.find("."+t).remove(),e.elem.append(n),n.on("click",function(){var e=a(this).attr("lay-type");i.slide(e)})},i.prototype.indicator=function(){var i,n=this,t=n.config,e=n.elemInd=a(['
            ',(i=[],layui.each(n.elemItem,function(e){i.push("")}),i.join("")),"
          "].join(""));t.elem.attr("lay-indicator",t.indicator),t.elem.find("."+l)[0]&&t.elem.find("."+l).remove(),t.elem.append(e),"updown"===t.anim&&e.css("margin-top",-e.height()/2),e.find("li").on("hover"===t.trigger?"mouseover":t.trigger,function(){var e=a(this).index();e>t.index?n.slide("add",e-t.index):ea.length&&(a.value=a.length),parseInt(a.value)===a.value||a.half||(a.value=Math.ceil(a.value)-a.value<.5?Math.ceil(a.value):Math.floor(a.value)),'
            "),n=1;n<=a.length;n++){var t='
          • ";a.half&&parseInt(a.value)!==a.value&&n==Math.ceil(a.value)?i=i+'
          • ":i+=t}i+="
          "+(a.text?''+a.value+"\u661f":"")+"";var o=a.elem,s=o.next(".layui-rate");s[0]&&s.remove(),e.elemTemp=u(i),a.span=e.elemTemp.next("span"),a.setText&&a.setText(a.value),o.html(e.elemTemp),o.addClass("layui-inline"),a.readonly||e.action()},a.prototype.setvalue=function(e){this.config.value=e,this.render()},a.prototype.action=function(){var i=this.config,n=this.elemTemp,t=n.find("i").width();n.children("li").each(function(e){var a=e+1,l=u(this);l.on("click",function(e){i.value=a,i.half&&e.pageX-u(this).offset().left<=t/2&&(i.value=i.value-.5),i.text&&n.next("span").text(i.value+"\u661f"),i.choose&&i.choose(i.value),i.setText&&i.setText(i.value)}),l.on("mousemove",function(e){n.find("i").each(function(){u(this).addClass(c).removeClass(s)}),n.find("i:lt("+a+")").each(function(){u(this).addClass(r).removeClass(f)}),i.half&&e.pageX-u(this).offset().left<=t/2&&l.children("i").addClass(o).removeClass(r)}),l.on("mouseleave",function(){n.find("i").each(function(){u(this).addClass(c).removeClass(s)}),n.find("i:lt("+Math.floor(i.value)+")").each(function(){u(this).addClass(r).removeClass(f)}),i.half&&parseInt(i.value)!==i.value&&n.children("li:eq("+Math.floor(i.value)+")").children("i").addClass(o).removeClass("layui-icon-rate-solid layui-icon-rate")})})},a.prototype.events=function(){this.config},l.render=function(e){e=new a(e);return function(){var a=this;return{setvalue:function(e){a.setvalue.call(a,e)},config:a.config}}.call(e)},e(i,l)});layui.define("jquery",function(l){"use strict";var g=layui.$,e=function(l){};e.prototype.load=function(l){var t,i,n,e,r,o,a,c,m,s,u,f,y,d=this,p=0,h=g((l=l||{}).elem);if(h[0])return e=g(l.scrollElem||document),r=l.mb||50,o=!("isAuto"in l)||l.isAuto,a=l.end||"\u6ca1\u6709\u66f4\u591a\u4e86",c=l.scrollElem&&l.scrollElem!==document,m="\u52a0\u8f7d\u66f4\u591a",s=g('"),h.find(".layui-flow-more")[0]||h.append(s),u=function(l,e){l=g(l),s.before(l),(e=0==e||null)?s.html(a):s.find("a").html(m),i=e,t=null,y&&y()},f=function(){t=!0,s.find("a").html(''),"function"==typeof l.done&&l.done(++p,u)},f(),s.find("a").on("click",function(){g(this);i||t||f()}),l.isLazyimg&&(y=d.lazyimg({elem:l.elem+" img",scrollElem:l.scrollElem})),o&&e.on("scroll",function(){var e=g(this),o=e.scrollTop();n&&clearTimeout(n),!i&&h.width()&&(n=setTimeout(function(){var l=(c?e:g(window)).height();(c?e.prop("scrollHeight"):document.documentElement.scrollHeight)-o-l<=r&&(t||f())},100))}),d},e.prototype.lazyimg=function(l){var e,c=this,m=0,s=g((l=l||{}).scrollElem||document),u=l.elem||"img",f=l.scrollElem&&l.scrollElem!==document,y=function(e,l){var o,t=s.scrollTop(),l=t+l,i=f?e.offset().top-s.offset().top+t:e.offset().top;t<=i&&i<=l&&e.attr("lay-src")&&(o=e.attr("lay-src"),layui.img(o,function(){var l=c.lazyimg.elem.eq(m);e.attr("src",o).removeAttr("lay-src"),l[0]&&n(l),m++},function(){c.lazyimg.elem.eq(m);e.removeAttr("lay-src")}))},n=function(l,e){var o=(f?e||s:g(window)).height(),t=s.scrollTop(),i=t+o;if(c.lazyimg.elem=g(u),l)y(l,o);else for(var n=0;n','
          '+e+"
          ",'
          ','',"
          ",""].join(""));return d.ie&&d.ie<8?s.removeClass("layui-hide").addClass("layui-show"):(c[0]&&c.remove(),f.call(a,o,s[0],n),s.addClass("layui-hide").after(o),a.index)},e.prototype.getContent=function(t){t=n(t);if(t[0])return l(t[0].document.body.innerHTML)},e.prototype.getText=function(t){t=n(t);if(t[0])return u(t[0].document.body).text()},e.prototype.setContent=function(t,e,i){var l=n(t);l[0]&&(i?u(l[0].document.body).append(e):u(l[0].document.body).html(e),layedit.sync(t))},e.prototype.sync=function(t){t=n(t);t[0]&&u("#"+t[1].attr("textarea")).val(l(t[0].document.body.innerHTML))},e.prototype.getSelection=function(t){var t=n(t);if(t[0])return t=p(t[0].document),document.selection?t.text:t.toString()},function(a,n,o){var s=this,r=a.find("iframe");r.css({height:o.height}).on("load",function(){var t=r.contents(),e=r.prop("contentWindow"),i=t.find("head"),l=u([""].join("")),t=t.find("body");i.append(l),t.attr("contenteditable","true").css({"min-height":o.height}).html(n.value||""),m.apply(s,[e,r,n,o]),g.call(s,e,a,o)})}),n=function(t){t=u("#LAY_layedit_"+t);return[t.prop("contentWindow"),t]},l=function(t){return t=8==d.ie?t.replace(/<.+>/g,function(t){return t.toLowerCase()}):t},m=function(e,t,i,l){var a=e.document,n=u(a.body);n.on("keydown",function(t){if(13===t.keyCode){var e=p(a);if("pre"===h(e).parentNode.tagName.toLowerCase())return t.shiftKey?void 0:(c.msg("\u8bf7\u6682\u65f6\u7528shift+enter"),!1);a.execCommand("formatBlock",!1,"

          ")}}),u(i).parents("form").on("submit",function(){var t=n.html();8==d.ie&&(t=t.replace(/<.+>/g,function(t){return t.toLowerCase()})),i.value=t}),n.on("paste",function(t){a.execCommand("formatBlock",!1,"

          "),setTimeout(function(){o.call(e,n),i.value=n.html()},100)})},o=function(t){this.document;t.find("*[style]").each(function(){var t=this.style.textAlign;this.removeAttribute("style"),u(this).css({"text-align":t||""})}),t.find("table").addClass("layui-table"),t.find("script,link").remove()},p=function(t){return t.selection?t.selection.createRange():t.getSelection().getRangeAt(0)},h=function(t){return t.endContainer||t.parentElement().childNodes[0]},v=function(t,e,i){var l,a,n=this.document,o=document.createElement(t);for(l in e)o.setAttribute(l,e[l]);o.removeAttribute("text"),n.selection?(a=i.text||e.text,"a"===t&&!a||(a&&(o.innerHTML=a),i.pasteHTML(u(o).prop("outerHTML")),i.select())):(a=i.toString()||e.text,"a"===t&&!a||(a&&(o.innerHTML=a),i.deleteContents(),i.insertNode(o)))},b=function(e,t){var i=this.document,l="layedit-tool-active",i=h(p(i)),a=function(t){return e.find(".layedit-tool-"+t)};t&&t[t.hasClass(l)?"removeClass":"addClass"](l),e.find(">i").removeClass(l),a("unlink").addClass(y),u(i).parents().each(function(){var t=this.tagName.toLowerCase(),e=this.style.textAlign;"b"!==t&&"strong"!==t||a("b").addClass(l),"i"!==t&&"em"!==t||a("i").addClass(l),"u"===t&&a("u").addClass(l),"strike"===t&&a("d").addClass(l),"p"===t&&a("center"===e?"center":"right"===e?"right":"left").addClass(l),"a"===t&&(a("link").addClass(l),a("unlink").removeClass(y))})},g=function(a,t,e){var n=a.document,o=u(n.body),s={link:function(i){var t=h(i),l=u(t).parent();x.call(o,{href:l.attr("href"),target:l.attr("target")},function(t){var e=l[0];"A"===e.tagName?e.href=t.url:v.call(a,"a",{target:t.target,href:t.url,text:t.url},i)})},unlink:function(t){n.execCommand("unlink")},code:function(e){k.call(o,function(t){v.call(a,"pre",{text:t.code,"lay-lang":t.lang},e)})},help:function(){c.open({type:2,title:"\u5e2e\u52a9",area:["600px","380px"],shadeClose:!0,shade:.1,skin:"layui-layer-msg",content:["","no"]})}},r=t.find(".layui-layedit-tool"),i=function(){var t,e=u(this),i=e.attr("layedit-event"),l=e.attr("lay-command");e.hasClass(y)||(o.focus(),(t=p(n)).commonAncestorContainer,l?(n.execCommand(l),/justifyLeft|justifyCenter|justifyRight/.test(l)&&n.execCommand("formatBlock",!1,"

          "),setTimeout(function(){o.focus()},10)):s[i]&&s[i].call(this,t),b.call(a,r,e))},l=/image/;r.find(">i").on("mousedown",function(){var t=u(this).attr("layedit-event");l.test(t)||i.call(this)}).on("click",function(){var t=u(this).attr("layedit-event");l.test(t)&&i.call(this)}),o.on("click",function(){b.call(a,r)})},x=function(t,i){var l=this,t=c.open({type:1,id:"LAY_layedit_link",area:"350px",shade:.05,shadeClose:!0,moveType:1,title:"\u8d85\u94fe\u63a5",skin:"layui-layer-msg",content:['

            ','
          • ','','
            ','',"
            ","
          • ",'
          • ','','
            ','",'","
            ","
          • ",'
          • ','','',"
          • ","
          "].join(""),success:function(t,e){a.render("radio"),t.find(".layui-btn-primary").on("click",function(){c.close(e),l.focus()}),a.on("submit(layedit-link-yes)",function(t){c.close(x.index),i&&i(t.field)})}});x.index=t},k=function(i){var l=this,t=c.open({type:1,id:"LAY_layedit_code",area:"550px",shade:.05,shadeClose:!0,moveType:1,title:"\u63d2\u5165\u4ee3\u7801",skin:"layui-layer-msg",content:['
            ','
          • ','','
            ','","
            ","
          • ",'
          • ','','
            ','',"
            ","
          • ",'
          • ','','',"
          • ","
          "].join(""),success:function(t,e){a.render("select"),t.find(".layui-btn-primary").on("click",function(){c.close(e),l.focus()}),a.on("submit(layedit-code-yes)",function(t){c.close(k.index),i&&i(t.field)})}});k.index=t},C={html:'',strong:'',italic:'',underline:'',del:'',"|":'',left:'',center:'',right:'',link:'',unlink:'',face:'',image:'',code:'',help:''},e=new e;t(i,e)});layui.define(["lay","util"],function(e){"use strict";var d=layui.$,o=layui.util,u="layui-code-title",l={elem:".layui-code",title:"</>",about:"",ln:!0};e("code",function(e){var c=e=d.extend({},l,e);e.elem=d(e.elem),e.elem[0]&&layui.each(e.elem.get().reverse(),function(e,l){var t,a=d(l),i=(i=a.html(),d.trim(i).replace(/^\n|\n$/,"")),l=d.extend({},c,lay.options(l),(t={},layui.each(["title","height","encode","skin","about"],function(e,l){var i=a.attr("lay-"+l);"string"==typeof i&&(t[l]=i)}),t)),s=l.ln?"ol":"ul",s=d("<"+s+' class="layui-code-'+s+'">'),n=d('
          ');a.addClass("layui-code-view layui-box"),l.skin&&("notepad"===l.skin&&(l.skin="dark"),a.addClass("layui-code-"+l.skin)),i=(i=l.encode?o.escape(i):i).replace(/[\r\t\n]+/g,"
        • "),a.html(s.html("
        • "+i+"
        • ")),a.children("."+u)[0]||(n.html(l.title+(l.about?'
          '+l.about+"
          ":"")),a.prepend(n)),0<(i=Math.floor(s.find("li").length/100))&&s.css("margin-left",i+"px"),l.height&&s.css("max-height",l.height)})})}).addcss("modules/code.css?v=3","skincodecss"); \ No newline at end of file +/** 2.7.4 | MIT Licensed */;!function(d){"use strict";var t,h=d.document,m={modules:{},status:{},timeout:10,event:{}},r=function(){this.v="2.7.4"},e=d.LAYUI_GLOBAL||{},v=(t=h.currentScript?h.currentScript.src:function(){for(var t,e=h.scripts,o=e.length-1,r=o;01e3*m.timeout/4?g(u+" is not a valid module","error"):void(m.status[u]?c():setTimeout(r,4))}())}function c(){e.push(layui[u]),11e3*m.timeout/4?g(u+" is not a valid module","error"):void("string"==typeof m.modules[u]&&m.status[u]?c():setTimeout(f,4))}():((p=h.createElement("script"))["async"]=!0,p.charset="utf-8",p.src=y+((i=!0===m.version?m.v||(new Date).getTime():m.version||"")?"?v="+i:""),a.appendChild(p),!p.attachEvent||p.attachEvent.toString&&p.attachEvent.toString().indexOf("[native code")<0||b?p.addEventListener("load",function(t){s(t,y)},!1):p.attachEvent("onreadystatechange",function(t){s(t,y)}),m.modules[u]=y),n},r.prototype.disuse=function(t){var o=this;return t=o.isArray(t)?t:[t],o.each(t,function(t,e){m.status[e],delete o[e],delete N[e],delete o.modules[e],delete m.status[e],delete m.modules[e]}),o},r.prototype.getStyle=function(t,e){t=t.currentStyle||d.getComputedStyle(t,null);return t[t.getPropertyValue?"getPropertyValue":"getAttribute"](e)},r.prototype.link=function(o,r,t){var n=this,e=h.getElementsByTagName("head")[0],i=h.createElement("link"),t=((t="string"==typeof r?r:t)||o).replace(/\.|\//g,""),a=i.id="layuicss-"+t,u="creating",l=0;return i.rel="stylesheet",i.href=o+(m.debug?"?v="+(new Date).getTime():""),i.media="all",h.getElementById(a)||e.appendChild(i),"function"!=typeof r||function s(t){var e=h.getElementById(a);return++l>1e3*m.timeout/100?g(o+" timeout"):void(1989===parseInt(n.getStyle(e,"width"))?(t===u&&e.removeAttribute("lay-status"),e.getAttribute("lay-status")===u?setTimeout(s,100):r()):(e.setAttribute("lay-status",u),setTimeout(function(){s(u)},100)))}(),n},r.prototype.addcss=function(t,e,o){return layui.link(m.dir+"css/"+t,e,o)},m.callback={},r.prototype.factory=function(t){if(layui[t])return"function"==typeof m.callback[t]?m.callback[t]:null},r.prototype.img=function(t,e,o){var r=new Image;if(r.src=t,r.complete)return e(r);r.onload=function(){r.onload=null,"function"==typeof e&&e(r)},r.onerror=function(t){r.onerror=null,"function"==typeof o&&o(t)}},r.prototype.config=function(t){for(var e in t=t||{})m[e]=t[e];return this},r.prototype.modules=function(){var t,e={};for(t in N)e[t]=N[t];return e}(),r.prototype.extend=function(t){for(var e in t=t||{})this[e]||this.modules[e]?g(e+" Module already exists","error"):this.modules[e]=t[e];return this},r.prototype.router=r.prototype.hash=function(t){var o={path:[],search:{},hash:((t=t||location.hash).match(/[^#](#.*$)/)||[])[1]||""};return/^#\//.test(t)&&(t=t.replace(/^#\//,""),o.href="/"+t,t=t.replace(/([^#])(#.*$)/,"$1").split("/")||[],this.each(t,function(t,e){/^\w+=/.test(e)?(e=e.split("="),o.search[e[0]]=e[1]):o.path.push(e)})),o},r.prototype.url=function(t){var n,e,o=this;return{pathname:(t?((t.match(/\.[^.]+?\/.+/)||[])[0]||"").replace(/^[^\/]+/,"").replace(/\?.+/,""):location.pathname).replace(/^\//,"").split("/"),search:(n={},e=(t?((t.match(/\?.+/)||[])[0]||"").replace(/\#.+/,""):location.search).replace(/^\?+/,"").split("&"),o.each(e,function(t,e){var o=e.indexOf("="),r=o<0?e.substr(0,e.length):0!==o&&e.substr(0,o);r&&(n[r]=0(l.innerHeight||f.documentElement.clientHeight)},h.position=function(t,e,n){var o,i,r,c,u,a,s;e&&(n=n||{},t!==f&&t!==h("body")[0]||(n.clickType="right"),u="right"===n.clickType?{left:(u=n.e||l.event||{}).clientX,top:u.clientY,right:u.clientX,bottom:u.clientY}:t.getBoundingClientRect(),a=e.offsetWidth,s=e.offsetHeight,o=function(t){return f.body[t=t?"scrollLeft":"scrollTop"]|f.documentElement[t]},r=u.left,c=u.bottom,"center"===n.align?r-=(a-t.offsetWidth)/2:"right"===n.align&&(r=r-a+t.offsetWidth),(r=r+a+5>(i=function(t){return f.documentElement[t?"clientWidth":"clientHeight"]})("width")?i("width")-a-5:r)<5&&(r=5),c+s+5>i()&&(u.top>s+5?c=u.top-s-10:"right"===n.clickType?(c=i()-s-10)<0&&(c=0):c=5),(a=n.position)&&(e.style.position=a),e.style.left=r+("fixed"===a?0:o(1))+"px",e.style.top=c+("fixed"===a?0:o())+"px",h.hasScrollbar()||(s=e.getBoundingClientRect(),!n.SYSTEM_RELOAD&&s.bottom+5>i()&&(n.SYSTEM_RELOAD=!0,setTimeout(function(){h.position(t,e,n)},50))))},h.options=function(t,e){t=h(t),e=e||"lay-options";try{return new Function("return "+(t.attr(e)||"{}"))()}catch(n){return hint.error("parseerror\uff1a"+n,"error"),{}}},h.isTopElem=function(n){var t=[f,h("body")[0]],o=!1;return h.each(t,function(t,e){if(e===n)return o=!0}),o},i.addStr=function(n,t){return n=n.replace(/\s+/," "),t=t.replace(/\s+/," ").split(" "),h.each(t,function(t,e){new RegExp("\\b"+e+"\\b").test(n)||(n=n+" "+e)}),n.replace(/^\s|\s$/,"")},i.removeStr=function(n,t){return n=n.replace(/\s+/," "),t=t.replace(/\s+/," ").split(" "),h.each(t,function(t,e){e=new RegExp("\\b"+e+"\\b");e.test(n)&&(n=n.replace(e,""))}),n.replace(/\s+/," ").replace(/^\s|\s$/,"")},i.prototype.find=function(o){var i=this,r=0,c=[],u="object"==typeof o;return this.each(function(t,e){for(var n=u?e.contains(o):e.querySelectorAll(o||null);r]|&(?=#[a-zA-Z0-9]+)/g.test(e+="")?e.replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,"""):e},error:function(e,r){var n="Laytpl Error: ";return"object"==typeof console&&console.error(n+e+"\n"+(r||"")),n+e}},l=a.exp,r=function(e){this.tpl=e},n=(r.pt=r.prototype,window.errors=0,r.pt.parse=function(e,r){var n=e,c=l("^"+p.open+"#",""),t=l(p.close+"$","");e='"use strict";var view = "'+(e=e.replace(/\s+|\r|\t|\n/g," ").replace(l(p.open+"#"),p.open+"# ").replace(l(p.close+"}"),"} "+p.close).replace(/\\/g,"\\\\").replace(l(p.open+"!(.+?)!"+p.close),function(e){return e=e.replace(l("^"+p.open+"!"),"").replace(l("!"+p.close),"").replace(l(p.open+"|"+p.close),function(e){return e.replace(/(.)/g,"\\$1")})}).replace(/(?="|')/g,"\\").replace(a.query(),function(e){return'";'+(e=e.replace(c,"").replace(t,"")).replace(/\\(.)/g,"$1")+';view+="'}).replace(a.query(1),function(e){var r='"+laytpl.escape(';return e.replace(/\s/g,"")===p.open+p.close?"":(e=e.replace(l(p.open+"|"+p.close),""),/^=/.test(e)?e=e.replace(/^=/,""):/^-/.test(e)&&(e=e.replace(/^-/,""),r='"+('),r+e.replace(/\\(.)/g,"$1")+')+"')}))+'";return view;';try{return this.cache=e=new Function("d, laytpl",e),e(r,a)}catch(o){return delete this.cache,a.error(o,n)}},r.pt.render=function(e,r){var n=this;return e?(e=n.cache?n.cache(e,a):n.parse(n.tpl,e),r?void r(e):e):a.error("no data")},function(e){return"string"!=typeof e?a.error("Template not found"):new r(e)});n.config=function(e){for(var r in e=e||{})p[r]=e[r]},n.v="1.2.0",e("laytpl",n)});layui.define(function(e){"use strict";var n=document,u="getElementById",c="getElementsByTagName",a="layui-disabled",t=function(e){var a=this;a.config=e||{},a.config.index=++o.index,a.render(!0)},o=(t.prototype.type=function(){var e=this.config;if("object"==typeof e.elem)return e.elem.length===undefined?2:3},t.prototype.view=function(){var t,i,r=this.config,n=r.groups="groups"in r?Number(r.groups)||0:5,u=(r.layout="object"==typeof r.layout?r.layout:["prev","page","next"],r.count=Number(r.count)||0,r.curr=Number(r.curr)||1,r.limits="object"==typeof r.limits?r.limits:[10,20,30,40,50],r.limit=Number(r.limit)||10,r.pages=Math.ceil(r.count/r.limit)||1,r.curr>r.pages?r.curr=r.pages:r.curr<1&&(r.curr=1),n<0?n=1:n>r.pages&&(n=r.pages),r.prev="prev"in r?r.prev:"上一页",r.next="next"in r?r.next:"下一页",r.pages>n?Math.ceil((r.curr+(1'+r.prev+"":"",page:function(){var e=[];if(r.count<1)return"";1'+(r.first||1)+"");var a=Math.floor((n-1)/2),t=1r.pages?r.pages:a:n;for(i-t…');t<=i;t++)t===r.curr?e.push('"+t+""):e.push(''+t+"");return r.pages>n&&r.pages>i&&!1!==r.last&&(i+1…'),0!==n&&e.push(''+(r.last||r.pages)+"")),e.join("")}(),next:r.next?''+r.next+"":"",count:'\u5171 '+r.count+" \u6761",limit:(t=['"),refresh:['','',""].join(""),skip:['到第','','页',""].join("")};return['
          ',(i=[],layui.each(r.layout,function(e,a){s[a]&&i.push(s[a])}),i.join("")),"
          "].join("")},t.prototype.jump=function(e,a){if(e){var t=this,i=t.config,r=e.children,n=e[c]("button")[0],u=e[c]("input")[0],e=e[c]("select")[0],s=function(){var e=Number(u.value.replace(/\s|\D/g,""));e&&(i.curr=e,t.render())};if(a)return s();for(var l=0,p=r.length;li.pages||(i.curr=e,t.render())});e&&o.on(e,"change",function(){var e=this.value;i.curr*e>i.count&&(i.curr=Math.ceil(i.count/e)),i.limit=e,t.render()}),n&&o.on(n,"click",function(){s()})}},t.prototype.skip=function(t){var i,e;t&&(i=this,(e=t[c]("input")[0])&&o.on(e,"keyup",function(e){var a=this.value,e=e.keyCode;/^(37|38|39|40)$/.test(e)||(/\D/.test(a)&&(this.value=a.replace(/\D/,"")),13===e&&i.jump(t,!0))}))},t.prototype.render=function(e){var a=this,t=a.config,i=a.type(),r=a.view(),i=(2===i?t.elem&&(t.elem.innerHTML=r):3===i?t.elem.html(r):n[u](t.elem)&&(n[u](t.elem).innerHTML=r),t.jump&&t.jump(t,e),n[u]("layui-laypage-"+t.index));a.jump(i),t.hash&&!e&&(location.hash="!"+t.hash+"="+t.curr),a.skip(i)},{render:function(e){return new t(e).index},index:layui.laypage?layui.laypage.index+1e4:0,on:function(a,e,t){return a.attachEvent?a.attachEvent("on"+e,function(e){e.target=e.srcElement,t.call(a,e)}):a.addEventListener(e,t,!1),this}});e("laypage",o)});!function(i,r){"use strict";var n=i.layui&&layui.define,l={getPath:i.lay&&lay.getPath?lay.getPath:"",link:function(e,t,a){u.path&&i.lay&&lay.layui&&lay.layui.link(u.path+e,t,a)}},e=i.LAYUI_GLOBAL||{},u={v:"5.3.1",config:{weekStart:0},index:i.laydate&&i.laydate.v?1e5:0,path:e.laydate_dir||l.getPath,set:function(e){var t=this;return t.config=lay.extend({},t.config,e),t},ready:function(e){var t="laydate",a=(n?"modules/laydate/":"theme/")+"default/laydate.css?v="+u.v;return n?layui.addcss(a,e,t):l.link(a,e,t),this}},s=function(){var t=this,e=t.config.id;return{hint:function(e){t.hint.call(t,e)},config:(s.that[e]=t).config}},a="laydate",w="layui-this",x="laydate-disabled",h=[100,2e5],p="layui-laydate-static",M="layui-laydate-list",o="layui-laydate-hint",E=".laydate-btns-confirm",C="laydate-time-text",k="laydate-btns-time",f="layui-laydate-preview",g=function(e){var t=this;t.index=++u.index,t.config=lay.extend({},t.config,u.config,e),(e=t.config).id="id"in e?e.id:t.index,u.ready(function(){t.init()})},y="yyyy|y|MM|M|dd|d|HH|H|mm|m|ss|s";s.formatArr=function(e){return(e||"").match(new RegExp(y+"|.","g"))||[]},g.isLeapYear=function(e){return e%4==0&&e%100!=0||e%400==0},g.prototype.config={type:"date",range:!1,format:"yyyy-MM-dd",value:null,isInitValue:!0,min:"1900-1-1",max:"2099-12-31",trigger:"click",show:!1,showBottom:!0,isPreview:!0,btns:["clear","now","confirm"],lang:"cn",theme:"default",position:null,calendar:!1,mark:{},holidays:null,zIndex:null,done:null,change:null},g.prototype.lang=function(){var e={cn:{weeks:["\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d"],time:["\u65f6","\u5206","\u79d2"],timeTips:"\u9009\u62e9\u65f6\u95f4",startTime:"\u5f00\u59cb\u65f6\u95f4",endTime:"\u7ed3\u675f\u65f6\u95f4",dateTips:"\u8fd4\u56de\u65e5\u671f",month:["\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d","\u4e03","\u516b","\u4e5d","\u5341","\u5341\u4e00","\u5341\u4e8c"],tools:{confirm:"\u786e\u5b9a",clear:"\u6e05\u7a7a",now:"\u73b0\u5728"},timeout:"\u7ed3\u675f\u65f6\u95f4\u4e0d\u80fd\u65e9\u4e8e\u5f00\u59cb\u65f6\u95f4
          \u8bf7\u91cd\u65b0\u9009\u62e9",invalidDate:"\u4e0d\u5728\u6709\u6548\u65e5\u671f\u6216\u65f6\u95f4\u8303\u56f4\u5185",formatError:["\u65e5\u671f\u683c\u5f0f\u4e0d\u5408\u6cd5
          \u5fc5\u987b\u9075\u5faa\u4e0b\u8ff0\u683c\u5f0f\uff1a
          ","
          \u5df2\u4e3a\u4f60\u91cd\u7f6e"],preview:"\u5f53\u524d\u9009\u4e2d\u7684\u7ed3\u679c"},en:{weeks:["Su","Mo","Tu","We","Th","Fr","Sa"],time:["Hours","Minutes","Seconds"],timeTips:"Select Time",startTime:"Start Time",endTime:"End Time",dateTips:"Select Date",month:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],tools:{confirm:"Confirm",clear:"Clear",now:"Now"},timeout:"End time cannot be less than start Time
          Please re-select",invalidDate:"Invalid date",formatError:["The date format error
          Must be followed\uff1a
          ","
          It has been reset"],preview:"The selected result"}};return e[this.config.lang]||e.cn},g.prototype.init=function(){var r=this,o=r.config,e="static"===o.position,t={year:"yyyy",month:"yyyy-MM",date:"yyyy-MM-dd",time:"HH:mm:ss",datetime:"yyyy-MM-dd HH:mm:ss"};o.elem=lay(o.elem),o.eventElem=lay(o.eventElem),o.elem[0]&&(r.rangeStr=o.range?"string"==typeof o.range?o.range:"-":"","array"===layui.type(o.range)&&(r.rangeElem=[lay(o.range[0]),lay(o.range[1])]),t[o.type]||(i.console&&console.error&&console.error("laydate type error:'"+o.type+"' is not supported"),o.type="date"),o.format===t.date&&(o.format=t[o.type]||t.date),r.format=s.formatArr(o.format),o.weekStart&&!/^[0-6]$/.test(o.weekStart)&&(t=r.lang(),o.weekStart=t.weeks.indexOf(o.weekStart),-1===o.weekStart&&(o.weekStart=0)),r.EXP_IF="",r.EXP_SPLIT="",lay.each(r.format,function(e,t){e=new RegExp(y).test(t)?"\\d{"+(new RegExp(y).test(r.format[0===e?e+1:e-1]||"")?/^yyyy|y$/.test(t)?4:t.length:/^yyyy$/.test(t)?"1,4":/^y$/.test(t)?"1,308":"1,2")+"}":"\\"+t;r.EXP_IF=r.EXP_IF+e,r.EXP_SPLIT=r.EXP_SPLIT+"("+e+")"}),r.EXP_IF_ONE=new RegExp("^"+r.EXP_IF+"$"),r.EXP_IF=new RegExp("^"+(o.range?r.EXP_IF+"\\s\\"+r.rangeStr+"\\s"+r.EXP_IF:r.EXP_IF)+"$"),r.EXP_SPLIT=new RegExp("^"+r.EXP_SPLIT+"$",""),r.isInput(o.elem[0])||"focus"===o.trigger&&(o.trigger="click"),o.elem.attr("lay-key")||(o.elem.attr("lay-key",r.index),o.eventElem.attr("lay-key",r.index)),o.mark=lay.extend({},o.calendar&&"cn"===o.lang?{"0-1-1":"\u5143\u65e6","0-2-14":"\u60c5\u4eba","0-3-8":"\u5987\u5973","0-3-12":"\u690d\u6811","0-4-1":"\u611a\u4eba","0-5-1":"\u52b3\u52a8","0-5-4":"\u9752\u5e74","0-6-1":"\u513f\u7ae5","0-9-10":"\u6559\u5e08","0-10-1":"\u56fd\u5e86","0-12-25":"\u5723\u8bde"}:{},o.mark),lay.each(["min","max"],function(e,t){var a,n,i=[],l=[];l="number"==typeof o[t]?(n=o[t],a=new Date,a=r.newDate({year:a.getFullYear(),month:a.getMonth(),date:a.getDate(),hours:"23",minutes:"59",seconds:"59"}).getTime(),i=[(n=new Date(n?n<864e5?a+864e5*n:n:a)).getFullYear(),n.getMonth()+1,n.getDate()],[n.getHours(),n.getMinutes(),n.getSeconds()]):(i=(o[t].match(/\d+-\d+-\d+/)||[""])[0].split("-"),(o[t].match(/\d+:\d+:\d+/)||[""])[0].split(":")),o[t]={year:0|i[0]||(new Date).getFullYear(),month:i[1]?(0|i[1])-1:(new Date).getMonth(),date:0|i[2]||(new Date).getDate(),hours:0|l[0],minutes:0|l[1],seconds:0|l[2]}}),r.elemID="layui-laydate"+o.elem.attr("lay-key"),(o.show||e)&&r.render(),e||r.events(),o.value&&o.isInitValue&&("date"===layui.type(o.value)?r.setValue(r.parse(0,r.systemDate(o.value))):r.setValue(o.value)))},g.prototype.render=function(){var n,e,t=this,o=t.config,s=t.lang(),i="static"===o.position,a=t.elem=lay.elem("div",{id:t.elemID,"class":["layui-laydate",o.range?" layui-laydate-range":"",i?" "+p:"",o.theme&&"default"!==o.theme&&!/^#/.test(o.theme)?" laydate-theme-"+o.theme:""].join("")}),y=t.elemMain=[],d=t.elemHeader=[],m=t.elemCont=[],c=t.table=[],l=t.footer=lay.elem("div",{"class":"layui-laydate-footer"});o.zIndex&&(a.style.zIndex=o.zIndex),lay.each(new Array(2),function(e){if(!o.range&&0'+s.timeTips+""),!o.range&&"datetime"===o.type||e.push(''),lay.each(o.btns,function(e,t){var a=s.tools[t]||"btn";o.range&&"now"===t||(i&&"clear"===t&&(a="cn"===o.lang?"\u91cd\u7f6e":"Reset"),n.push(''+a+""))}),e.push('"),e.join(""))),lay.each(y,function(e,t){a.appendChild(t)}),o.showBottom&&a.appendChild(l),/^#/.test(o.theme)&&(e=lay.elem("style"),l=["#{{id}} .layui-laydate-header{background-color:{{theme}};}","#{{id}} .layui-this{background-color:{{theme}} !important;}"].join("").replace(/{{id}}/g,t.elemID).replace(/{{theme}}/g,o.theme),"styleSheet"in e?(e.setAttribute("type","text/css"),e.styleSheet.cssText=l):e.innerHTML=l,lay(a).addClass("laydate-theme-molv"),a.appendChild(e)),t.remove(g.thisElemDate),u.thisId=o.id,i?o.elem.append(a):(r.body.appendChild(a),t.position()),t.checkDate().calendar(null,0,"init"),t.changeEvent(),g.thisElemDate=t.elemID,"function"==typeof o.ready&&o.ready(lay.extend({},o.dateTime,{month:o.dateTime.month+1})),t.preview()},g.prototype.remove=function(e){var t=this,a=t.config,n=lay("#"+(e||t.elemID));return n[0]&&(n.hasClass(p)||t.checkDate(function(){n.remove(),delete u.thisId,"function"==typeof a.close&&a.close(t)})),t},g.prototype.position=function(){var e=this.config;return lay.position(this.bindElem||e.elem[0],this.elem,{position:e.position}),this},g.prototype.hint=function(e){var t=this,a=(t.config,lay.elem("div",{"class":o}));t.elem&&(a.innerHTML=e||"",lay(t.elem).find("."+o).remove(),t.elem.appendChild(a),clearTimeout(t.hinTimer),t.hinTimer=setTimeout(function(){lay(t.elem).find("."+o).remove()},3e3))},g.prototype.getAsYM=function(e,t,a){return a?t--:t++,t<0&&(t=11,e--),11h[1]&&(e.year=h[1],o=!0),11t&&(e.date=t,o=!0)},r=function(n,i,l){var r=["startTime","endTime"];i=(i.match(s.EXP_SPLIT)||[]).slice(1),l=l||0,y.range&&(s[r[l]]=s[r[l]]||{}),lay.each(s.format,function(e,t){var a=parseFloat(i[e]);i[e].lengthc(y.max)?n=y.dateTime=lay.extend({},y.max):c(n)c(y.max))&&(s.endDate=lay.extend({},y.max)),e&&e(),s},g.prototype.mark=function(e,a){var n,t=this.config;return lay.each(t.mark,function(e,t){e=e.split("-");e[0]!=a[0]&&0!=e[0]||e[1]!=a[1]&&0!=e[1]||e[2]!=a[2]||(n=t||a[2])}),n&&e.html(''+n+""),this},g.prototype.holidays=function(n,i){var e=this.config,l=["","work"];return"array"!==layui.type(e.holidays)||lay.each(e.holidays,function(a,e){lay.each(e,function(e,t){t===n.attr("lay-ymd")&&n.html('"+i[2]+"")})}),this},g.prototype.limit=function(e,t,a,i){var l=this,n=l.config,r={},a=n[41r.max,e&&e[t?"addClass":"removeClass"](x),t},g.prototype.thisDateTime=function(e){var t=this.config;return e?this.endDate:t.dateTime},g.prototype.calendar=function(e,t,a){var i,l,r,o=this,n=o.config,t=t?1:0,s=e||o.thisDateTime(t),y=new Date,d=o.lang(),m="date"!==n.type&&"datetime"!==n.type,c=lay(o.table[t]).find("td"),t=lay(o.elemHeader[t][2]).find("span");return s.yearh[1]&&(s.year=h[1],o.hint(d.invalidDate)),o.firstDate||(o.firstDate=lay.extend({},s)),y.setFullYear(s.year,s.month,1),i=(y.getDay()+(7-n.weekStart))%7,l=u.getEndDate(s.month||12,s.year),r=u.getEndDate(s.month+1,s.year),lay.each(c,function(e,t){var a=[s.year,s.month],n=0;(t=lay(t)).removeAttr("class"),e"+d.time[t]+"

            "];lay.each(new Array(e),function(e){n.push(""+lay.digit(e,2)+"")}),a.innerHTML=n.join("")+"
          ",m.appendChild(a)}),l()),p&&h.removeChild(p),h.appendChild(m),"year"===t||"month"===t?(lay(o.elemMain[n]).addClass("laydate-ym-show"),lay(m).find("li").on("click",function(){var e=0|lay(this).attr("lay-ym");lay(this).hasClass(x)||(0===n?(y[t]=e,o.limit(lay(o.footer).find(E),null,0)):o.endDate[t]=e,"year"===s.type||"month"===s.type?(lay(m).find("."+w).removeClass(w),lay(this).addClass(w),"month"===s.type&&"year"===t&&(o.listYM[n][0]=e,a&&((n?o.endDate:y).year=e),o.list("month",n))):(o.checkDate("limit").calendar(null,n),o.closeList()),o.setBtnStatus(),s.range||("month"===s.type&&"month"===t||"year"===s.type&&"year"===t)&&o.setValue(o.parse()).remove().done(),o.done(null,"change"),lay(o.footer).find("."+k).removeClass(x))})):(e=lay.elem("span",{"class":C}),r=function(){lay(m).find("ol").each(function(e){var a=this,t=lay(a).find("li");a.scrollTop=30*(o[D][T[e]]-2),a.scrollTop<=0&&t.each(function(e,t){if(!lay(this).hasClass(x))return a.scrollTop=30*(e-2),!0})})},u=lay(c[2]).find("."+C),r(),e.innerHTML=s.range?[d.startTime,d.endTime][n]:d.timeTips,lay(o.elemMain[n]).addClass("laydate-time-show"),u[0]&&u.remove(),c[2].appendChild(e),lay(m).find("ol").each(function(t){var a=this;lay(a).find("li").on("click",function(){var e=0|this.innerHTML;lay(this).hasClass(x)||(s.range?o[D][T[t]]=e:y[T[t]]=e,lay(a).find("."+w).removeClass(w),lay(this).addClass(w),l(),r(),!o.endDate&&"time"!==s.type||o.done(null,"change"),o.setBtnStatus())})})),o},g.prototype.listYM=[],g.prototype.closeList=function(){var a=this;a.config;lay.each(a.elemCont,function(e,t){lay(this).find("."+M).remove(),lay(a.elemMain[e]).removeClass("laydate-ym-show laydate-time-show")}),lay(a.elem).find("."+C).remove()},g.prototype.setBtnStatus=function(e,t,a){var n=this,i=n.config,l=n.lang(),r=lay(n.footer).find(E);i.range&&"time"!==i.type&&(t=t||i.dateTime,a=a||n.endDate,i=n.newDate(t).getTime()>n.newDate(a).getTime(),n.limit(null,t)||n.limit(null,a)?r.addClass(x):r[i?"addClass":"removeClass"](x),e&&i&&n.hint("string"==typeof e?l.timeout.replace(/\u65e5\u671f/g,e):l.timeout))},g.prototype.parse=function(e,t){var a=this,n=a.config,t=t||("end"==e?lay.extend({},a.endDate,a.endTime):n.range?lay.extend({},n.dateTime,a.startTime):n.dateTime),t=u.parse(t,a.format,1);return n.range&&e===undefined?t+" "+a.rangeStr+" "+a.parse("end"):t},g.prototype.newDate=function(e){return e=e||{},new Date(e.year||1,e.month||0,e.date||1,e.hours||0,e.minutes||0,e.seconds||0)},g.prototype.setValue=function(e){var t=this,a=t.config,n=t.bindElem||a.elem[0];return"static"===a.position||(e=e||"",t.isInput(n)?lay(n).val(e):(a=t.rangeElem)?("array"!==layui.type(e)&&(e=e.split(" "+t.rangeStr+" ")),a[0].val(e[0]||""),a[1].val(e[1]||"")):(0===lay(n).find("*").length&&lay(n).html(e),lay(n).attr("lay-date",e))),t},g.prototype.preview=function(){var e,t=this,a=t.config;a.isPreview&&(e=lay(t.elem).find("."+f),a=!a.range||t.endDate?t.parse():"",e.html(a).css({color:"#5FB878"}),setTimeout(function(){e.css({color:"#666"})},300))},g.prototype.done=function(e,t){var a=this,n=a.config,i=lay.extend({},lay.extend(n.dateTime,a.startTime)),l=lay.extend({},lay.extend(a.endDate,a.endTime));return lay.each([i,l],function(e,t){"month"in t&&lay.extend(t,{month:t.month+1})}),a.preview(),e=e||[a.parse(),i,l],"function"==typeof n[t||"done"]&&n[t||"done"].apply(n,e),a},g.prototype.choose=function(e,t){var a=this,n=a.config,i=a.thisDateTime(t),l=(lay(a.elem).find("td"),{year:0|(l=e.attr("lay-ymd").split("-"))[0],month:(0|l[1])-1,date:0|l[2]});e.hasClass(x)||(lay.extend(i,l),n.range?(lay.each(["startTime","endTime"],function(e,t){a[t]=a[t]||{hours:e?23:0,minutes:e?59:0,seconds:e?59:0}}),a.calendar(null,t).done(null,"change")):"static"===n.position?a.calendar().done().done(null,"change"):"date"===n.type?a.setValue(a.parse()).remove().done():"datetime"===n.type&&a.calendar().done(null,"change"))},g.prototype.tool=function(e,t){var a=this,n=a.config,i=a.lang(),l=n.dateTime,r="static"===n.position,o={datetime:function(){lay(e).hasClass(x)||(a.list("time",0),n.range&&a.list("time",1),lay(e).attr("lay-type","date").html(a.lang().dateTips))},date:function(){a.closeList(),lay(e).attr("lay-type","datetime").html(a.lang().timeTips)},clear:function(){r&&(lay.extend(l,a.firstDate),a.calendar()),n.range&&(delete n.dateTime,delete a.endDate,delete a.startTime,delete a.endTime),a.setValue("").remove(),a.done(["",{},{}])},now:function(){var e=new Date;lay.extend(l,a.systemDate(),{hours:e.getHours(),minutes:e.getMinutes(),seconds:e.getSeconds()}),a.setValue(a.parse()).remove(),r&&a.calendar(),a.done()},confirm:function(){if(n.range){if(lay(e).hasClass(x))return a.hint("time"===n.type?i.timeout.replace(/\u65e5\u671f/g,"\u65f6\u95f4"):i.timeout)}else if(lay(e).hasClass(x))return a.hint(i.invalidDate);a.setValue(a.parse()).remove(),a.done()}};o[t]&&o[t]()},g.prototype.change=function(n){var i=this,l=i.config,r=i.thisDateTime(n),o=l.range&&("year"===l.type||"month"===l.type),s=i.elemCont[n||0],y=i.listYM[n],e=function(e){var t=lay(s).find(".laydate-year-list")[0],a=lay(s).find(".laydate-month-list")[0];return t&&(y[0]=e?y[0]-15:y[0]+15,i.list("year",n)),a&&(e?y[0]--:y[0]++,i.list("month",n)),(t||a)&&(lay.extend(r,{year:y[0]}),o&&(r.year=y[0]),l.range||i.done(null,"change"),l.range||i.limit(lay(i.footer).find(E),{year:y[0]})),i.setBtnStatus(),t||a};return{prevYear:function(){e("sub")||(r.year--,i.checkDate("limit").calendar(null,n),i.done(null,"change"))},prevMonth:function(){var e=i.getAsYM(r.year,r.month,"sub");lay.extend(r,{year:e[0],month:e[1]}),i.checkDate("limit").calendar(null,n),i.done(null,"change")},nextMonth:function(){var e=i.getAsYM(r.year,r.month);lay.extend(r,{year:e[0],month:e[1]}),i.checkDate("limit").calendar(null,n),i.done(null,"change")},nextYear:function(){e()||(r.year++,i.checkDate("limit").calendar(null,n),i.done(null,"change"))}}},g.prototype.changeEvent=function(){var i=this;i.config;lay(i.elem).on("click",function(e){lay.stope(e)}).on("mousedown",function(e){lay.stope(e)}),lay.each(i.elemHeader,function(n,e){lay(e[0]).on("click",function(e){i.change(n).prevYear()}),lay(e[1]).on("click",function(e){i.change(n).prevMonth()}),lay(e[2]).find("span").on("click",function(e){var t=lay(this),a=t.attr("lay-ym"),t=t.attr("lay-type");a&&(a=a.split("-"),i.listYM[n]=[0|a[0],0|a[1]],i.list(t,n),lay(i.footer).find("."+k).addClass(x))}),lay(e[3]).on("click",function(e){i.change(n).nextMonth()}),lay(e[4]).on("click",function(e){i.change(n).nextYear()})}),lay.each(i.table,function(e,t){lay(t).find("td").on("click",function(){i.choose(lay(this),e)})}),lay(i.footer).find("span").on("click",function(){var e=lay(this).attr("lay-type");i.tool(this,e)})},g.prototype.isInput=function(e){return/input|textarea/.test(e.tagName.toLocaleLowerCase())||/INPUT|TEXTAREA/.test(e.tagName)},g.prototype.events=function(){var a=this,n=a.config,e=function(e,t){e.on(n.trigger,function(){u.thisId!==n.id&&(t&&(a.bindElem=this),a.render())})};n.elem[0]&&!n.elem[0].eventHandler&&(e(n.elem,"bind"),e(n.eventElem),n.elem[0].eventHandler=!0)},s.that={},s.getThis=function(e){var t=s.that[e];return!t&&n&&layui.hint().error(e?a+" instance with ID '"+e+"' not found":"ID argument required"),t},l.run=function(n){n(r).on("mousedown",function(e){var t,a;!u.thisId||(t=s.getThis(u.thisId))&&(a=t.config,e.target!==a.elem[0]&&e.target!==a.eventElem[0]&&e.target!==n(a.closeStop)[0]&&t.remove())}).on("keydown",function(e){var t;!u.thisId||(t=s.getThis(u.thisId))&&"static"!==t.config.position&&13===e.keyCode&&n("#"+t.elemID)[0]&&t.elemID===g.thisElemDate&&(e.preventDefault(),n(t.footer).find(E)[0].click())}),n(i).on("resize",function(){if(u.thisId){var e=s.getThis(u.thisId);if(e)return!(!e.elem||!n(".layui-laydate")[0])&&void e.position()}})},u.render=function(e){e=new g(e);return s.call(e)},u.parse=function(a,n,i){return a=a||{},n=((n="string"==typeof n?s.formatArr(n):n)||[]).concat(),lay.each(n,function(e,t){/yyyy|y/.test(t)?n[e]=lay.digit(a.year,t.length):/MM|M/.test(t)?n[e]=lay.digit(a.month+(i||0),t.length):/dd|d/.test(t)?n[e]=lay.digit(a.date,t.length):/HH|H/.test(t)?n[e]=lay.digit(a.hours,t.length):/mm|m/.test(t)?n[e]=lay.digit(a.minutes,t.length):/ss|s/.test(t)&&(n[e]=lay.digit(a.seconds,t.length))}),n.join("")},u.getEndDate=function(e,t){var a=new Date;return a.setFullYear(t||a.getFullYear(),e||a.getMonth()+1,1),new Date(a.getTime()-864e5).getDate()},u.close=function(e){lay("#"+(e?"layui-laydate"+e:g.thisElemDate)).remove()},n?(u.ready(),layui.define("lay",function(e){u.path=layui.cache.dir,l.run(lay),e(a,u)})):"function"==typeof define&&define.amd?define(function(){return l.run(lay),u}):(u.ready(),l.run(i.lay),i.laydate=u)}(window,window.document);!function(e,t){"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e):function(e){if(e.document)return t(e);throw new Error("jQuery requires a window with a document")}:t(e)}("undefined"!=typeof window?window:this,function(T,M){var f=[],g=T.document,c=f.slice,O=f.concat,R=f.push,P=f.indexOf,B={},W=B.toString,m=B.hasOwnProperty,y={},e="1.12.4",C=function(e,t){return new C.fn.init(e,t)},I=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,$=/^-ms-/,z=/-([\da-z])/gi,X=function(e,t){return t.toUpperCase()};function U(e){var t=!!e&&"length"in e&&e.length,n=C.type(e);return"function"!==n&&!C.isWindow(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+a+")"+a+"*"),ee=new RegExp("="+a+"*([^\\]'\"]*?)"+a+"*\\]","g"),te=new RegExp(G),ne=new RegExp("^"+s+"$"),f={ID:new RegExp("^#("+s+")"),CLASS:new RegExp("^\\.("+s+")"),TAG:new RegExp("^("+s+"|[*])"),ATTR:new RegExp("^"+J),PSEUDO:new RegExp("^"+G),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+a+"*(even|odd|(([+-]|)(\\d*)n|)"+a+"*(?:([+-]|)"+a+"*(\\d+)|))"+a+"*\\)|)","i"),bool:new RegExp("^(?:"+Y+")$","i"),needsContext:new RegExp("^"+a+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+a+"*((?:-\\d)?\\d*)"+a+"*\\)|)(?=[^-]|$)","i")},re=/^(?:input|select|textarea|button)$/i,ie=/^h\d$/i,c=/^[^{]+\{\s*\[native \w/,oe=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ae=/[+~]/,se=/'|\\/g,d=new RegExp("\\\\([\\da-f]{1,6}"+a+"?|("+a+")|.)","ig"),p=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(65536+r):String.fromCharCode(r>>10|55296,1023&r|56320)},ue=function(){C()};try{D.apply(n=V.call(v.childNodes),v.childNodes),n[v.childNodes.length].nodeType}catch(F){D={apply:n.length?function(e,t){U.apply(e,V.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function H(e,t,n,r){var i,o,a,s,u,l,c,f,d=t&&t.ownerDocument,p=t?t.nodeType:9;if(n=n||[],"string"!=typeof e||!e||1!==p&&9!==p&&11!==p)return n;if(!r&&((t?t.ownerDocument||t:v)!==E&&C(t),t=t||E,N)){if(11!==p&&(l=oe.exec(e)))if(i=l[1]){if(9===p){if(!(a=t.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(d&&(a=d.getElementById(i))&&y(t,a)&&a.id===i)return n.push(a),n}else{if(l[2])return D.apply(n,t.getElementsByTagName(e)),n;if((i=l[3])&&g.getElementsByClassName&&t.getElementsByClassName)return D.apply(n,t.getElementsByClassName(i)),n}if(g.qsa&&!A[e+" "]&&(!m||!m.test(e))){if(1!==p)d=t,f=e;else if("object"!==t.nodeName.toLowerCase()){for((s=t.getAttribute("id"))?s=s.replace(se,"\\$&"):t.setAttribute("id",s=k),o=(c=w(e)).length,u=ne.test(s)?"#"+s:"[id='"+s+"']";o--;)c[o]=u+" "+_(c[o]);f=c.join(","),d=ae.test(e)&&de(t.parentNode)||t}if(f)try{return D.apply(n,d.querySelectorAll(f)),n}catch(h){}finally{s===k&&t.removeAttribute("id")}}}return P(e.replace(L,"$1"),t,n,r)}function le(){var n=[];function r(e,t){return n.push(e+" ")>b.cacheLength&&delete r[n.shift()],r[e+" "]=t}return r}function q(e){return e[k]=!0,e}function h(e){var t=E.createElement("div");try{return!!e(t)}catch(F){return!1}finally{t.parentNode&&t.parentNode.removeChild(t)}}function ce(e,t){for(var n=e.split("|"),r=n.length;r--;)b.attrHandle[n[r]]=t}function fe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||1<<31)-(~e.sourceIndex||1<<31);if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function x(a){return q(function(o){return o=+o,q(function(e,t){for(var n,r=a([],e.length,o),i=r.length;i--;)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function de(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in g=H.support={},O=H.isXML=function(e){e=e&&(e.ownerDocument||e).documentElement;return!!e&&"HTML"!==e.nodeName},C=H.setDocument=function(e){var e=e?e.ownerDocument||e:v;return e!==E&&9===e.nodeType&&e.documentElement&&(t=(E=e).documentElement,N=!O(E),(e=E.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",ue,!1):e.attachEvent&&e.attachEvent("onunload",ue)),g.attributes=h(function(e){return e.className="i",!e.getAttribute("className")}),g.getElementsByTagName=h(function(e){return e.appendChild(E.createComment("")),!e.getElementsByTagName("*").length}),g.getElementsByClassName=c.test(E.getElementsByClassName),g.getById=h(function(e){return t.appendChild(e).id=k,!E.getElementsByName||!E.getElementsByName(k).length}),g.getById?(b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&N)return(e=t.getElementById(e))?[e]:[]},b.filter.ID=function(e){var t=e.replace(d,p);return function(e){return e.getAttribute("id")===t}}):(delete b.find.ID,b.filter.ID=function(e){var t=e.replace(d,p);return function(e){e="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return e&&e.value===t}}),b.find.TAG=g.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):g.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"!==e)return o;for(;n=o[i++];)1===n.nodeType&&r.push(n);return r},b.find.CLASS=g.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&N)return t.getElementsByClassName(e)},r=[],m=[],(g.qsa=c.test(E.querySelectorAll))&&(h(function(e){t.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&m.push("[*^$]="+a+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||m.push("\\["+a+"*(?:value|"+Y+")"),e.querySelectorAll("[id~="+k+"-]").length||m.push("~="),e.querySelectorAll(":checked").length||m.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||m.push(".#.+[+~]")}),h(function(e){var t=E.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&m.push("name"+a+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||m.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),m.push(",.*:")})),(g.matchesSelector=c.test(i=t.matches||t.webkitMatchesSelector||t.mozMatchesSelector||t.oMatchesSelector||t.msMatchesSelector))&&h(function(e){g.disconnectedMatch=i.call(e,"div"),i.call(e,"[s!='']:x"),r.push("!=",G)}),m=m.length&&new RegExp(m.join("|")),r=r.length&&new RegExp(r.join("|")),e=c.test(t.compareDocumentPosition),y=e||c.test(t.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,t=t&&t.parentNode;return e===t||!(!t||1!==t.nodeType||!(n.contains?n.contains(t):e.compareDocumentPosition&&16&e.compareDocumentPosition(t)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},$=e?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!g.sortDetached&&t.compareDocumentPosition(e)===n?e===E||e.ownerDocument===v&&y(v,e)?-1:t===E||t.ownerDocument===v&&y(v,t)?1:u?j(u,e)-j(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===E?-1:t===E?1:i?-1:o?1:u?j(u,e)-j(u,t):0;if(i===o)return fe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?fe(a[r],s[r]):a[r]===v?-1:s[r]===v?1:0}),E},H.matches=function(e,t){return H(e,null,null,t)},H.matchesSelector=function(e,t){if((e.ownerDocument||e)!==E&&C(e),t=t.replace(ee,"='$1']"),g.matchesSelector&&N&&!A[t+" "]&&(!r||!r.test(t))&&(!m||!m.test(t)))try{var n=i.call(e,t);if(n||g.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(F){}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(d,p),e[3]=(e[3]||e[4]||e[5]||"").replace(d,p),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||H.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&H.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return f.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&te.test(n)&&(t=w(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(d,p).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=W[e+" "];return t||(t=new RegExp("(^|"+a+")"+e+"("+a+"|$)"))&&W(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(t,n,r){return function(e){e=H.attr(e,t);return null==e?"!="===n:!n||(e+="","="===n?e===r:"!="===n?e!==r:"^="===n?r&&0===e.indexOf(r):"*="===n?r&&-1(?:<\/\1>|)$/,G=/^.[^:#\[\.,]*$/;function K(e,n,r){if(C.isFunction(n))return C.grep(e,function(e,t){return!!n.call(e,t,e)!==r});if(n.nodeType)return C.grep(e,function(e){return e===n!==r});if("string"==typeof n){if(G.test(n))return C.filter(n,e,r);n=C.filter(n,e)}return C.grep(e,function(e){return-1)[^>]*|#([\w-]*))$/,ee=((C.fn.init=function(e,t,n){if(!e)return this;if(n=n||Q,"string"!=typeof e)return e.nodeType?(this.context=this[0]=e,this.length=1,this):C.isFunction(e)?"undefined"!=typeof n.ready?n.ready(e):e(C):(e.selector!==undefined&&(this.selector=e.selector,this.context=e.context),C.makeArray(e,this));if(!(r="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&3<=e.length?[null,e,null]:Z.exec(e))||!r[1]&&t)return(!t||t.jquery?t||n:this.constructor(t)).find(e);if(r[1]){if(t=t instanceof C?t[0]:t,C.merge(this,C.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:g,!0)),J.test(r[1])&&C.isPlainObject(t))for(var r in t)C.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}if((n=g.getElementById(r[2]))&&n.parentNode){if(n.id!==r[2])return Q.find(e);this.length=1,this[0]=n}return this.context=g,this.selector=e,this}).prototype=C.fn,Q=C(g),/^(?:parents|prev(?:Until|All))/),te={children:!0,contents:!0,next:!0,prev:!0};function ne(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}C.fn.extend({has:function(e){var t,n=C(e,this),r=n.length;return this.filter(function(){for(t=0;t
          a",y.leadingWhitespace=3===S.firstChild.nodeType,y.tbody=!S.getElementsByTagName("tbody").length,y.htmlSerialize=!!S.getElementsByTagName("link").length,y.html5Clone="<:nav>"!==g.createElement("nav").cloneNode(!0).outerHTML,q.type="checkbox",q.checked=!0,k.appendChild(q),y.appendChecked=q.checked,S.innerHTML="",y.noCloneChecked=!!S.cloneNode(!0).lastChild.defaultValue,k.appendChild(S),(q=g.createElement("input")).setAttribute("type","radio"),q.setAttribute("checked","checked"),q.setAttribute("name","t"),S.appendChild(q),y.checkClone=S.cloneNode(!0).cloneNode(!0).lastChild.checked,y.noCloneEvent=!!S.addEventListener,S[C.expando]=1,y.attributes=!S.getAttribute(C.expando);var x={option:[1,""],legend:[1,"
          ","
          "],area:[1,"",""],param:[1,"",""],thead:[1,"","
          "],tr:[2,"","
          "],col:[2,"","
          "],td:[3,"","
          "],_default:y.htmlSerialize?[0,"",""]:[1,"X
          ","
          "]};function b(e,t){var n,r,i=0,o="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):undefined;if(!o)for(o=[],n=e.childNodes||e;null!=(r=n[i]);i++)!t||C.nodeName(r,t)?o.push(r):C.merge(o,b(r,t));return t===undefined||t&&C.nodeName(e,t)?C.merge([e],o):o}function we(e,t){for(var n,r=0;null!=(n=e[r]);r++)C._data(n,"globalEval",!t||C._data(t[r],"globalEval"))}x.optgroup=x.option,x.tbody=x.tfoot=x.colgroup=x.caption=x.thead,x.th=x.td;var Te=/<|&#?\w+;/,Ce=/"!==f[1]||Ce.test(a)?0:u:u.firstChild)&&a.childNodes.length;o--;)C.nodeName(c=a.childNodes[o],"tbody")&&!c.childNodes.length&&a.removeChild(c);for(C.merge(h,u.childNodes),u.textContent="";u.firstChild;)u.removeChild(u.firstChild);u=p.lastChild}else h.push(t.createTextNode(a));for(u&&p.removeChild(u),y.appendChecked||C.grep(b(h,"input"),Ee),g=0;a=h[g++];)if(r&&-1]","i"),Pe=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,Be=/\s*$/g,ze=be(g).appendChild(g.createElement("div"));function Xe(e,t){return C.nodeName(e,"table")&&C.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function Ue(e){return e.type=(null!==C.find.attr(e,"type"))+"/"+e.type,e}function Ve(e){var t=Ie.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function Ye(e,t){if(1===t.nodeType&&C.hasData(e)){var n,r,i,e=C._data(e),o=C._data(t,e),a=e.events;if(a)for(n in delete o.handle,o.events={},a)for(r=0,i=a[n].length;r")},clone:function(e,t,n){var r,i,o,a,s,u=C.contains(e.ownerDocument,e);if(y.html5Clone||C.isXMLDoc(e)||!Re.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(ze.innerHTML=e.outerHTML,ze.removeChild(o=ze.firstChild)),!(y.noCloneEvent&&y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||C.isXMLDoc(e)))for(r=b(o),s=b(e),a=0;null!=(i=s[a]);++a)if(r[a]){f=c=l=p=d=void 0;var l,c,f,d=i,p=r[a];if(1===p.nodeType){if(l=p.nodeName.toLowerCase(),!y.noCloneEvent&&p[C.expando]){for(c in(f=C._data(p)).events)C.removeEvent(p,c,f.handle);p.removeAttribute(C.expando)}"script"===l&&p.text!==d.text?(Ue(p).text=d.text,Ve(p)):"object"===l?(p.parentNode&&(p.outerHTML=d.outerHTML),y.html5Clone&&d.innerHTML&&!C.trim(p.innerHTML)&&(p.innerHTML=d.innerHTML)):"input"===l&&ge.test(d.type)?(p.defaultChecked=p.checked=d.checked,p.value!==d.value&&(p.value=d.value)):"option"===l?p.defaultSelected=p.selected=d.defaultSelected:"input"!==l&&"textarea"!==l||(p.defaultValue=d.defaultValue)}}if(t)if(n)for(s=s||b(e),r=r||b(o),a=0;null!=(i=s[a]);a++)Ye(i,r[a]);else Ye(e,o);return 0<(r=b(o,"script")).length&&we(r,!u&&b(e,"script")),r=s=i=null,o},cleanData:function(e,t){for(var n,r,i,o,a=0,s=C.expando,u=C.cache,l=y.attributes,c=C.event.special;null!=(n=e[a]);a++)if((t||v(n))&&(o=(i=n[s])&&u[i])){if(o.events)for(r in o.events)c[r]?C.event.remove(n,r):C.removeEvent(n,r,o.handle);u[i]&&(delete u[i],l||"undefined"==typeof n.removeAttribute?n[s]=undefined:n.removeAttribute(s),f.push(i))}}}),C.fn.extend({domManip:w,detach:function(e){return Je(this,e,!0)},remove:function(e){return Je(this,e)},text:function(e){return d(this,function(e){return e===undefined?C.text(this):this.empty().append((this[0]&&this[0].ownerDocument||g).createTextNode(e))},null,e,arguments.length)},append:function(){return w(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Xe(this,e).appendChild(e)})},prepend:function(){return w(this,arguments,function(e){var t;1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(t=Xe(this,e)).insertBefore(e,t.firstChild)})},before:function(){return w(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return w(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++){for(1===e.nodeType&&C.cleanData(b(e,!1));e.firstChild;)e.removeChild(e.firstChild);e.options&&C.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return C.clone(this,e,t)})},html:function(e){return d(this,function(e){var t=this[0]||{},n=0,r=this.length;if(e===undefined)return 1===t.nodeType?t.innerHTML.replace(Oe,""):undefined;if("string"==typeof e&&!Be.test(e)&&(y.htmlSerialize||!Re.test(e))&&(y.leadingWhitespace||!ve.test(e))&&!x[(me.exec(e)||["",""])[1].toLowerCase()]){e=C.htmlPrefilter(e);try{for(;n")).appendTo(t.documentElement))[0].contentWindow||Ge[0].contentDocument).document).write(),t.close(),n=Qe(e,t),Ge.detach()),Ke[e]=n),n}var n,et,tt,nt,rt,it,ot,a,at=/^margin/,st=new RegExp("^("+e+")(?!px)[a-z%]+$","i"),ut=function(e,t,n,r){var i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.apply(e,r||[]),t)e.style[i]=o[i];return r},lt=g.documentElement;function t(){var e,t=g.documentElement;t.appendChild(ot),a.style.cssText="-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",n=tt=it=!1,et=rt=!0,T.getComputedStyle&&(e=T.getComputedStyle(a),n="1%"!==(e||{}).top,it="2px"===(e||{}).marginLeft,tt="4px"===(e||{width:"4px"}).width,a.style.marginRight="50%",et="4px"===(e||{marginRight:"4px"}).marginRight,(e=a.appendChild(g.createElement("div"))).style.cssText=a.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",e.style.marginRight=e.style.width="0",a.style.width="1px",rt=!parseFloat((T.getComputedStyle(e)||{}).marginRight),a.removeChild(e)),a.style.display="none",(nt=0===a.getClientRects().length)&&(a.style.display="",a.innerHTML="
          t
          ",a.childNodes[0].style.borderCollapse="separate",(e=a.getElementsByTagName("td"))[0].style.cssText="margin:0;border:0;padding:0;display:none",(nt=0===e[0].offsetHeight)&&(e[0].style.display="",e[1].style.display="none",nt=0===e[0].offsetHeight)),t.removeChild(ot)}ot=g.createElement("div"),(a=g.createElement("div")).style&&(a.style.cssText="float:left;opacity:.5",y.opacity="0.5"===a.style.opacity,y.cssFloat=!!a.style.cssFloat,a.style.backgroundClip="content-box",a.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===a.style.backgroundClip,(ot=g.createElement("div")).style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",a.innerHTML="",ot.appendChild(a),y.boxSizing=""===a.style.boxSizing||""===a.style.MozBoxSizing||""===a.style.WebkitBoxSizing,C.extend(y,{reliableHiddenOffsets:function(){return null==n&&t(),nt},boxSizingReliable:function(){return null==n&&t(),tt},pixelMarginRight:function(){return null==n&&t(),et},pixelPosition:function(){return null==n&&t(),n},reliableMarginRight:function(){return null==n&&t(),rt},reliableMarginLeft:function(){return null==n&&t(),it}}));var l,p,ct=/^(top|right|bottom|left)$/;function ft(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}T.getComputedStyle?(l=function(e){var t=e.ownerDocument.defaultView;return(t=t&&t.opener?t:T).getComputedStyle(e)},p=function(e,t,n){var r,i,o=e.style;return""!==(i=(n=n||l(e))?n.getPropertyValue(t)||n[t]:undefined)&&i!==undefined||C.contains(e.ownerDocument,e)||(i=C.style(e,t)),n&&!y.pixelMarginRight()&&st.test(i)&&at.test(t)&&(e=o.width,t=o.minWidth,r=o.maxWidth,o.minWidth=o.maxWidth=o.width=i,i=n.width,o.width=e,o.minWidth=t,o.maxWidth=r),i===undefined?i:i+""}):lt.currentStyle&&(l=function(e){return e.currentStyle},p=function(e,t,n){var r,i,o,a=e.style;return null==(n=(n=n||l(e))?n[t]:undefined)&&a&&a[t]&&(n=a[t]),st.test(n)&&!ct.test(t)&&(r=a.left,(o=(i=e.runtimeStyle)&&i.left)&&(i.left=e.currentStyle.left),a.left="fontSize"===t?"1em":n,n=a.pixelLeft+"px",a.left=r,o&&(i.left=o)),n===undefined?n:n+""||"auto"});var dt=/alpha\([^)]*\)/i,pt=/opacity\s*=\s*([^)]*)/i,ht=/^(none|table(?!-c[ea]).+)/,gt=new RegExp("^("+e+")(.*)$","i"),mt={position:"absolute",visibility:"hidden",display:"block"},yt={letterSpacing:"0",fontWeight:"400"},vt=["Webkit","O","Moz","ms"],xt=g.createElement("div").style;function bt(e){if(e in xt)return e;for(var t=e.charAt(0).toUpperCase()+e.slice(1),n=vt.length;n--;)if((e=vt[n]+t)in xt)return e}function wt(e,t){for(var n,r,i,o=[],a=0,s=e.length;a
          a",F=q.getElementsByTagName("a")[0],k.setAttribute("type","checkbox"),q.appendChild(k),(F=q.getElementsByTagName("a")[0]).style.cssText="top:1px",y.getSetAttribute="t"!==q.className,y.style=/top/.test(F.getAttribute("style")),y.hrefNormalized="/a"===F.getAttribute("href"),y.checkOn=!!k.value,y.optSelected=e.selected,y.enctype=!!g.createElement("form").enctype,S.disabled=!0,y.optDisabled=!e.disabled,(k=g.createElement("input")).setAttribute("value",""),y.input=""===k.getAttribute("value"),k.value="t",k.setAttribute("type","radio"),y.radioValue="t"===k.value;var Lt=/\r/g,Ht=/[\x20\t\r\n\f]+/g;C.fn.extend({val:function(t){var n,e,r,i=this[0];return arguments.length?(r=C.isFunction(t),this.each(function(e){1===this.nodeType&&(null==(e=r?t.call(this,e,C(this).val()):t)?e="":"number"==typeof e?e+="":C.isArray(e)&&(e=C.map(e,function(e){return null==e?"":e+""})),(n=C.valHooks[this.type]||C.valHooks[this.nodeName.toLowerCase()])&&"set"in n&&n.set(this,e,"value")!==undefined||(this.value=e))})):i?(n=C.valHooks[i.type]||C.valHooks[i.nodeName.toLowerCase()])&&"get"in n&&(e=n.get(i,"value"))!==undefined?e:"string"==typeof(e=i.value)?e.replace(Lt,""):null==e?"":e:void 0}}),C.extend({valHooks:{option:{get:function(e){var t=C.find.attr(e,"value");return null!=t?t:C.trim(C.text(e)).replace(Ht," ")}},select:{get:function(e){for(var t,n=e.options,r=e.selectedIndex,i="select-one"===e.type||r<0,o=i?null:[],a=i?r+1:n.length,s=r<0?a:i?r:0;s").append(C.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},C.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){C.fn[t]=function(e){return this.on(t,e)}}),C.expr.filters.animated=function(t){return C.grep(C.timers,function(e){return t===e.elem}).length},C.offset={setOffset:function(e,t,n){var r,i,o,a,s=C.css(e,"position"),u=C(e),l={};"static"===s&&(e.style.position="relative"),o=u.offset(),r=C.css(e,"top"),a=C.css(e,"left"),s=("absolute"===s||"fixed"===s)&&-1'+(o?n.title[0]:n.title)+"
          ":"";return n.zIndex=a,t([n.shade?'
          ':"",'
          '+(e&&2!=n.type?"":o)+'
          '+(0==n.type&&-1!==n.icon?'':"")+((1!=n.type||!e)&&n.content||"")+'
          '+(i=s?'':"",n.closeBtn&&(i+=''),i)+""+(n.btn?function(){var e="";"string"==typeof n.btn&&(n.btn=[n.btn]);for(var t=0,i=n.btn.length;t'+n.btn[t]+"";return'
          '+e+"
          "}():"")+(n.resize?'':"")+"
          "],o,h('
          ')),this},t.pt.creat=function(){var e,n=this,a=n.config,o=n.index,s="object"==typeof(l=a.content),r=h("body");if(!a.id||!h("#"+a.id)[0]){switch("string"==typeof a.area&&(a.area="auto"===a.area?["",""]:[a.area,""]),a.shift&&(a.anim=a.shift),6==m.ie&&(a.fixed=!1),a.type){case 0:a.btn="btn"in a?a.btn:c.btn[0],m.closeAll("dialog");break;case 2:var l=a.content=s?a.content:[a.content||"","auto"];a.content='';break;case 3:delete a.title,delete a.closeBtn,-1===a.icon&&a.icon,m.closeAll("loading");break;case 4:s||(a.content=[a.content,"body"]),a.follow=a.content[1],a.content=a.content[0]+'',delete a.title,a.tips="object"==typeof a.tips?a.tips:[a.tips,!0],a.tipsMore||m.closeAll("tips")}n.vessel(s,function(e,t,i){r.append(e[0]),s?2==a.type||4==a.type?h("body").append(e[1]):l.parents("."+d[0])[0]||(l.data("display",l.css("display")).show().addClass("layui-layer-wrap").wrap(e[1]),h("#"+d[0]+o).find("."+d[5]).before(t)):r.append(e[1]),h("#"+d.MOVE)[0]||r.append(c.moveElem=i),n.layero=h("#"+d[0]+o),n.shadeo=h("#"+d.SHADE+o),a.scrollbar||d.html.css("overflow","hidden").attr("layer-full",o)}).auto(o),n.shadeo.css({"background-color":a.shade[1]||"#000",opacity:a.shade[0]||a.shade}),2==a.type&&6==m.ie&&n.layero.find("iframe").attr("src",l[0]),4==a.type?n.tips():(n.offset(),parseInt(c.getStyle(document.getElementById(d.MOVE),"z-index"))||(n.layero.css("visibility","hidden"),m.ready(function(){n.offset(),n.layero.css("visibility","visible")}))),a.fixed&&f.on("resize",function(){n.offset(),(/^\d+%$/.test(a.area[0])||/^\d+%$/.test(a.area[1]))&&n.auto(o),4==a.type&&n.tips()}),a.time<=0||setTimeout(function(){m.close(n.index)},a.time),n.move().callback(),d.anim[a.anim]&&(e="layer-anim "+d.anim[a.anim],n.layero.addClass(e).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",function(){h(this).removeClass(e)})),a.isOutAnim&&n.layero.data("isOutAnim",!0)}},t.pt.auto=function(e){var t=this.config,i=h("#"+d[0]+e),n=(""===t.area[0]&&0t.maxWidth&&i.width(t.maxWidth)),[i.innerWidth(),i.innerHeight()]),a=i.find(d[1]).outerHeight()||0,o=i.find("."+d[6]).outerHeight()||0,e=function(e){(e=i.find(e)).height(n[1]-a-o-2*(0|parseFloat(e.css("padding-top"))))};return 2===t.type?e("iframe"):""===t.area[1]?0t.maxHeight?(n[1]=t.maxHeight,e("."+d[5])):t.fixed&&n[1]>=f.height()&&(n[1]=f.height(),e("."+d[5])):e("."+d[5]),this},t.pt.offset=function(){var e=this,t=e.config,i=e.layero,n=[i.outerWidth(),i.outerHeight()],a="object"==typeof t.offset;e.offsetTop=(f.height()-n[1])/2,e.offsetLeft=(f.width()-n[0])/2,a?(e.offsetTop=t.offset[0],e.offsetLeft=t.offset[1]||e.offsetLeft):"auto"!==t.offset&&("t"===t.offset?e.offsetTop=0:"r"===t.offset?e.offsetLeft=f.width()-n[0]:"b"===t.offset?e.offsetTop=f.height()-n[1]:"l"===t.offset?e.offsetLeft=0:"lt"===t.offset?(e.offsetTop=0,e.offsetLeft=0):"lb"===t.offset?(e.offsetTop=f.height()-n[1],e.offsetLeft=0):"rt"===t.offset?(e.offsetTop=0,e.offsetLeft=f.width()-n[0]):"rb"===t.offset?(e.offsetTop=f.height()-n[1],e.offsetLeft=f.width()-n[0]):e.offsetTop=t.offset),t.fixed||(e.offsetTop=/%$/.test(e.offsetTop)?f.height()*parseFloat(e.offsetTop)/100:parseFloat(e.offsetTop),e.offsetLeft=/%$/.test(e.offsetLeft)?f.width()*parseFloat(e.offsetLeft)/100:parseFloat(e.offsetLeft),e.offsetTop+=f.scrollTop(),e.offsetLeft+=f.scrollLeft()),i.attr("minLeft")&&(e.offsetTop=f.height()-(i.find(d[1]).outerHeight()||0),e.offsetLeft=i.css("left")),i.css({top:e.offsetTop,left:e.offsetLeft})},t.pt.tips=function(){var e=this.config,t=this.layero,i=[t.outerWidth(),t.outerHeight()],n=h(e.follow),a={width:(n=n[0]?n:h("body")).outerWidth(),height:n.outerHeight(),top:n.offset().top,left:n.offset().left},o=t.find(".layui-layer-TipsG"),n=e.tips[0];e.tips[1]||o.remove(),a.autoLeft=function(){0":'',o=i.success;return delete i.success,m.open(h.extend({type:1,btn:["确定","取消"],content:t,skin:"layui-layer-prompt"+g("prompt"),maxWidth:f.width(),success:function(e){(a=e.find(".layui-layer-input")).val(i.value||"").focus(),"function"==typeof o&&o(e)},resize:!1,yes:function(e){var t=a.val();""===t?a.focus():t.length>(i.maxlength||500)?m.tips("最多输入"+(i.maxlength||500)+"个字数",a,{tips:1}):n&&n(t,e,a)}},i))},m.tab=function(n){var a=(n=n||{}).tab||{},o="layui-this",s=n.success;return delete n.success,m.open(h.extend({type:1,skin:"layui-layer-tab"+g("tab"),resize:!1,title:function(){var e=a.length,t=1,i="";if(0'+a[0].title+"";t"+a[t].title+"";return i}(),content:'
            '+function(){var e=a.length,t=1,i="";if(0'+(a[0].content||"no content")+"";t'+(a[t].content||"no content")+"";return i}()+"
          ",success:function(e){var t=e.find(".layui-layer-title").children(),i=e.find(".layui-layer-tabmain").children();t.on("mousedown",function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0;var e=h(this),t=e.index();e.addClass(o).siblings().removeClass(o),i.eq(t).show().siblings().hide(),"function"==typeof n.change&&n.change(t)}),"function"==typeof s&&s(e)}},n))},m.photos=function(i,e,n){var a={};if((i=i||{}).photos){var t=!("string"==typeof i.photos||i.photos instanceof h),o=t?i.photos:{},s=o.data||[],r=o.start||0,l=(a.imgIndex=1+(0|r),i.img=i.img||"img",i.success);if(delete i.success,t){if(0===s.length)return m.msg("没有图片")}else{var f=h(i.photos),c=function(){s=[],f.find(i.img).each(function(e){var t=h(this);t.attr("layer-index",e),s.push({alt:t.attr("alt"),pid:t.attr("layer-pid"),src:t.attr("layer-src")||t.attr("src"),thumb:t.attr("src")})})};if(c(),0===s.length)return;if(e||f.on("click",i.img,function(){c();var e=h(this).attr("layer-index");m.photos(h.extend(i,{photos:{start:e,data:s,tab:i.tab},full:i.full}),!0)}),!e)return}a.imgprev=function(e){a.imgIndex--,a.imgIndex<1&&(a.imgIndex=s.length),a.tabimg(e)},a.imgnext=function(e,t){a.imgIndex++,a.imgIndex>s.length&&(a.imgIndex=1,t)||a.tabimg(e)},a.keyup=function(e){var t;a.end||(t=e.keyCode,e.preventDefault(),37===t?a.imgprev(!0):39===t?a.imgnext(!0):27===t&&m.close(a.index))},a.tabimg=function(e){if(!(s.length<=1))return o.start=a.imgIndex-1,m.close(a.index),m.photos(i,!0,e)},a.event=function(){a.bigimg.find(".layui-layer-imgprev").on("click",function(e){e.preventDefault(),a.imgprev(!0)}),a.bigimg.find(".layui-layer-imgnext").on("click",function(e){e.preventDefault(),a.imgnext(!0)}),h(document).on("keyup",a.keyup)},a.loadi=m.load(1,{shade:!("shade"in i)&&.9,scrollbar:!1});var t=s[r].src,d=function(e){var t;m.close(a.loadi),n&&(i.anim=-1),a.index=m.open(h.extend({type:1,id:"layui-layer-photos",area:(e=[e.width,e.height],t=[h(p).width()-100,h(p).height()-100],!i.full&&(e[0]>t[0]||e[1]>t[1])&&((t=[e[0]/t[0],e[1]/t[1]])[1]'+(s[r].alt||'+(1
          '+(s[r].alt||"")+""+a.imgIndex+" / "+s.length+"
          ":"")+"",success:function(e,t){a.bigimg=e.find(".layui-layer-phimg"),a.imgsee=e.find(".layui-layer-imgbar"),a.event(e),i.tab&&i.tab(s[r],e),"function"==typeof l&&l(e)},end:function(){a.end=!0,h(document).off("keyup",a.keyup)}},i))},u=function(){m.close(a.loadi),m.msg("当前图片地址异常
          是否继续查看下一张?",{time:3e4,btn:["下一张","不看了"],yes:function(){1',t.bar1?'
        • '+l[0]+"
        • ":"",t.bar2?'
        • '+l[1]+"
        • ":"",'
        • '+l[2]+"
        • ",""].join("")),c=l.find("."+o),g=function(){a.scrollTop()>=t.showHeight?e||(c.show(),e=1):e&&(c.hide(),e=0)};u("."+n)[0]||("object"==typeof t.css&&l.css(t.css),r.append(l),g(),l.find("li").on("click",function(){var e=u(this).attr("lay-type");"top"===e&&u("html,body").animate({scrollTop:0},200),t.click&&t.click.call(this,e)}),a.on("scroll",function(){clearTimeout(i),i=setTimeout(function(){g()},100)}))},countdown:function(e,t,i){var n=this,o="function"==typeof t,a=new Date(e).getTime(),r=new Date(!t||o?(new Date).getTime():t).getTime(),a=a-r,l=[Math.floor(a/864e5),Math.floor(a/36e5)%24,Math.floor(a/6e4)%60,Math.floor(a/1e3)%60],o=(o&&(i=t),setTimeout(function(){n.countdown(e,r+1e3,i)},1e3));return i&&i(0]|&(?=#[a-zA-Z0-9]+)/g.test(e+="")?e.replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,"""):e},unescape:function(e){return e!==undefined&&null!==e||(e=""),(e+="").replace(/\&/g,"&").replace(/\</g,"<").replace(/\>/g,">").replace(/\'/g,"'").replace(/\"/g,'"')},toVisibleArea:function(e){var t,i,n,o,a,r,l,c;(e=u.extend({margin:160,duration:200,type:"y"},e)).scrollElem[0]&&e.thisElem[0]&&(t=e.scrollElem,l=e.thisElem,n=(a="y"===e.type)?"top":"left",o=t[i=a?"scrollTop":"scrollLeft"](),a=t[a?"height":"width"](),r=t.offset()[n],c={},((l=l.offset()[n]-r)>a-e.margin||l."+y,k=function(e){var i=this;i.index=++c.index,i.config=s.extend({},i.config,c.config,e),i.init()};k.prototype.config={trigger:"click",content:"",className:"",style:"",show:!1,isAllowSpread:!0,isSpreadItem:!0,data:[],delay:300},k.prototype.reload=function(e){var i=this;i.config=s.extend({},i.config,e),i.init(!0)},k.prototype.init=function(e){var i=this,t=i.config,n=t.elem=s(t.elem);return 1",(t="href"in i?''+l+"":l,n?'
          '+t+("parent"===o?'':"group"===o&&u.isAllowSpread?'':"")+"
          ":'
          '+t+"
          "),""].join(""))).data("item",i),n&&(a=s('
          '),t=s("
            "),"parent"===o?(a.append(d(t,i.child)),l.append(a)):l.append(d(t,i.child))),r.append(l))}),r},t=['
            ',"
            "].join("");!(e="contextmenu"!==u.trigger&&!lay.isTopElem(u.elem[0])?e:!0)&&u.elem.data(r+"_opened")||(n.elemView=s(t),n.elemView.append(u.content||(e=s('
              '),0no menu'),e)),u.className&&n.elemView.addClass(u.className),u.style&&n.elemView.attr("style",u.style),c.thisId=u.id,n.remove(),i.append(n.elemView),u.elem.data(r+"_opened",!0),n.position(),(p.prevElem=n.elemView).data("prevElem",u.elem),n.elemView.find(".layui-menu").on(l,function(e){layui.stope(e)}),n.elemView.find(".layui-menu li").on("click",function(e){var i=s(this),t=i.data("item")||{};t.child&&0n.width()&&(t.addClass(C),(i=t[0].getBoundingClientRect()).left<0&&t.removeClass(C)),i.bottom>n.height()&&t.eq(0).css("margin-top",-(i.bottom-n.height())))}).on("mouseleave",t,function(e){var i=s(this).children("."+w);i.removeClass(C),i.css("margin-top",0)}),c.reload=function(e,i){e=p.getThis(e);return e?(e.reload(i),p.call(e)):this},c.render=function(e){e=new k(e);return p.call(e)},e(o,c)});layui.define("jquery",function(e){"use strict";var h=layui.$,t={config:{},index:layui.slider?layui.slider.index+1e4:0,set:function(e){var i=this;return i.config=h.extend({},i.config,e),i},on:function(e,i){return layui.onevent.call(this,a,e,i)}},a="slider",c="layui-disabled",y="layui-slider-bar",g="layui-slider-wrap",b="layui-slider-wrap-btn",x="layui-slider-tips",T="layui-slider-input-txt",w="layui-slider-hover",i=function(e){var i=this;i.index=++t.index,i.config=h.extend({},i.config,t.config,e),i.render()};i.prototype.config={type:"default",min:0,max:100,value:0,step:1,showstep:!1,tips:!0,input:!1,range:!1,height:200,disabled:!1,theme:"#009688"},i.prototype.render=function(){var a,n=this,l=n.config,e=(l.step<1&&(l.step=1),l.maxl.min?i:l.min,l.value[1]=s>l.min?s:l.min,l.value[0]=l.value[0]>l.max?l.max:l.value[0],l.value[1]=l.value[1]>l.max?l.max:l.value[1],i=Math.floor((l.value[0]-l.min)/(l.max-l.min)*100),t=(s=Math.floor((l.value[1]-l.min)/(l.max-l.min)*100))-i+"%",i+="%",s+="%"):("object"==typeof l.value&&(l.value=Math.min.apply(null,l.value)),l.valuel.max&&(l.value=l.max),t=Math.floor((l.value-l.min)/(l.max-l.min)*100)+"%"),l.disabled?"#c2c2c2":l.theme),i='
              '+(l.tips?'
              ':"")+'
              '+(l.range?'
              ':"")+"
              ",t=h(l.elem),s=t.next(".layui-slider");if(s[0]&&s.remove(),n.elemTemp=h(i),l.range?(n.elemTemp.find("."+g).eq(0).data("value",l.value[0]),n.elemTemp.find("."+g).eq(1).data("value",l.value[1])):n.elemTemp.find("."+g).data("value",l.value),t.html(n.elemTemp),"vertical"===l.type&&n.elemTemp.height(l.height+"px"),l.showstep){for(var r=(l.max-l.min)/l.step,o="",u=1;u<1+r;u++){var d=100*u/r;d<100&&(o+='
              ')}n.elemTemp.append(o)}l.input&&!l.range&&(e=h('
              '),t.css("position","relative"),t.append(e),t.find("."+T).children("input").val(l.value),"vertical"===l.type?e.css({left:0,top:-48}):n.elemTemp.css("margin-right",e.outerWidth()+15)),l.disabled?(n.elemTemp.addClass(c),n.elemTemp.find("."+b).addClass(c)):n.slide(),n.elemTemp.find("."+b).on("mouseover",function(){var e="vertical"===l.type?l.height:n.elemTemp[0].offsetWidth,i=n.elemTemp.find("."+g),t=("vertical"===l.type?e-h(this).parent()[0].offsetTop-i.height():h(this).parent()[0].offsetLeft)/e*100,i=h(this).parent().data("value"),e=l.setTips?l.setTips(i):i;n.elemTemp.find("."+x).html(e),clearTimeout(a),a=setTimeout(function(){"vertical"===l.type?n.elemTemp.find("."+x).css({bottom:t+"%","margin-bottom":"20px",display:"inline-block"}):n.elemTemp.find("."+x).css({left:t+"%",display:"inline-block"})},300)}).on("mouseout",function(){clearTimeout(a),n.elemTemp.find("."+x).css("display","none")})},i.prototype.slide=function(e,i,t){var r=this.config,o=this.elemTemp,u=function(){return"vertical"===r.type?r.height:o[0].offsetWidth},d=o.find("."+g),s=o.next(".layui-slider-input"),c=s.children("."+T).children("input").val(),m=100/((r.max-r.min)/Math.ceil(r.step)),v=function(e,i){e=100<(e=100t[1]&&t.reverse(),r.change&&r.change(r.range?t:n)},p=function(e){var i=e/u()*100/m,t=Math.round(i)*m;return t=e==u()?Math.ceil(i)*m:t},f=h(['
              u()?u():i)/u()*100/m;v(i,l),s.addClass(w),o.find("."+x).show(),e.preventDefault()},i=function(){s.removeClass(w),o.find("."+x).hide()},t=function(){i&&i(),f.remove()},h("#LAY-slider-moving")[0]||h("body").append(f),f.on("mousemove",e),f.on("mouseup",t).on("mouseleave",t)})}),o.on("click",function(e){var i,t=h("."+b);!t.is(event.target)&&0===t.has(event.target).length&&t.length&&(i=(t=(t=(t="vertical"===r.type?u()-e.clientY+h(this).offset().top:e.clientX-h(this).offset().left)<0?0:t)>u()?u():t)/u()*100/m,t=r.range?"vertical"===r.type?Math.abs(t-parseInt(h(d[0]).css("bottom")))>Math.abs(t-parseInt(h(d[1]).css("bottom")))?1:0:Math.abs(t-d[0].offsetLeft)>Math.abs(t-d[1].offsetLeft)?1:0:0,v(i,t),e.preventDefault())}),s.children(".layui-slider-input-btn").children("i").each(function(i){h(this).on("click",function(){c=s.children("."+T).children("input").val();var e=((c=1==i?c-r.stepr.max?r.max:Number(c)+r.step)-r.min)/(r.max-r.min)*100/m;v(e,0)})});var a=function(){var e=this.value,e=(e=(e=(e=isNaN(e)?0:e)r.max?r.max:e,((this.value=e)-r.min)/(r.max-r.min)*100/m);v(e,0)};s.children("."+T).children("input").on("keydown",function(e){13===e.keyCode&&(e.preventDefault(),a.call(this))}).on("change",a)},i.prototype.events=function(){this.config},t.render=function(e){e=new i(e);return function(){var t=this,a=t.config;return{setValue:function(e,i){return a.value=e,t.slide("set",e,i||0)},config:a}}.call(e)},e(a,t)});layui.define(["jquery","lay"],function(e){"use strict";var y=layui.jquery,o=layui.lay,r=layui.device().mobile?"click":"mousedown",i={config:{},index:layui.colorpicker?layui.colorpicker.index+1e4:0,set:function(e){var i=this;return i.config=y.extend({},i.config,e),i},on:function(e,i){return layui.onevent.call(this,"colorpicker",e,i)}},n="layui-colorpicker",l=".layui-colorpicker-main",m="layui-icon-down",x="layui-icon-close",P="layui-colorpicker-trigger-span",C="layui-colorpicker-trigger-i",B="layui-colorpicker-side-slider",w="layui-colorpicker-basis",D="layui-colorpicker-alpha-bgcolor",j="layui-colorpicker-alpha-slider",E="layui-colorpicker-basis-cursor",F="layui-colorpicker-main-input",H=function(e){var i={h:0,s:0,b:0},o=Math.min(e.r,e.g,e.b),r=Math.max(e.r,e.g,e.b),n=r-o;return i.b=r,i.s=0!=r?255*n/r:0,0!=i.s?e.r==r?i.h=(e.g-e.b)/n:e.g==r?i.h=2+(e.b-e.r)/n:i.h=4+(e.r-e.g)/n:i.h=-1,r==o&&(i.h=0),i.h*=60,i.h<0&&(i.h+=360),i.s*=100/255,i.b*=100/255,i},M=function(e){var i,o={},r=e.h,n=255*e.s/100,e=255*e.b/100;return 0==n?o.r=o.g=o.b=e:(e=r%60*((i=e)-(n=(255-n)*e/255))/60,(r=360==r?0:r)<60?(o.r=i,o.b=n,o.g=n+e):r<120?(o.g=i,o.b=n,o.r=i-e):r<180?(o.g=i,o.r=n,o.b=n+e):r<240?(o.b=i,o.r=n,o.g=i-e):r<300?(o.b=i,o.g=n,o.r=n+e):r<360?(o.r=i,o.g=n,o.b=i-e):(o.r=0,o.g=0,o.b=0)),{r:Math.round(o.r),g:Math.round(o.g),b:Math.round(o.b)}},f=function(e){var e=M(e),o=[e.r.toString(16),e.g.toString(16),e.b.toString(16)];return y.each(o,function(e,i){1==i.length&&(o[e]="0"+i)}),o.join("")},Y=function(e){e=e.match(/[0-9]{1,3}/g)||[];return{r:e[0],g:e[1],b:e[2]}},I=y(window),t=y(document),c=function(e){this.index=++i.index,this.config=y.extend({},this.config,i.config,e),this.render()};c.prototype.config={color:"",size:null,alpha:!1,format:"hex",predefine:!1,colors:["#009688","#5FB878","#1E9FFF","#FF5722","#FFB800","#01AAED","#999","#c00","#ff8c00","#ffd700","#90ee90","#00ced1","#1e90ff","#c71585","rgb(0, 186, 189)","rgb(255, 120, 0)","rgb(250, 212, 0)","#393D49","rgba(0,0,0,.5)","rgba(255, 69, 0, 0.68)","rgba(144, 240, 144, 0.5)","rgba(31, 147, 255, 0.73)"]},c.prototype.render=function(){var e=this,i=e.config,o=y(['
              ',"",'','',"","","
              "].join("")),r=y(i.elem);i.size&&o.addClass("layui-colorpicker-"+i.size),r.addClass("layui-inline").html(e.elemColorBox=o),e.color=e.elemColorBox.find("."+P)[0].style.background,e.events()},c.prototype.renderPicker=function(){var o,e=this,i=e.config,r=e.elemColorBox[0],i=e.elemPicker=y(['
              ','
              ','
              ','
              ','
              ','
              ',"
              ",'
              ','
              ',"
              ","
              ",'
              ','
              ','
              ',"
              ","
              ",i.predefine?(o=['
              '],layui.each(i.colors,function(e,i){o.push(['
              ','
              ',"
              "].join(""))}),o.push("
              "),o.join("")):"",'
              ','
              ','',"
              ",'
              ','','',"","
              "].join(""));e.elemColorBox.find("."+P)[0];y(l)[0]&&y(l).data("index")==e.index?e.removePicker(c.thisElemInd):(e.removePicker(c.thisElemInd),y("body").append(i)),c.thisElemInd=e.index,c.thisColor=r.style.background,e.position(),e.pickerEvents()},c.prototype.removePicker=function(e){this.config;return y("#layui-colorpicker"+(e||this.index)).remove(),this},c.prototype.position=function(){var e=this,i=e.config;return o.position(e.bindElem||e.elemColorBox[0],e.elemPicker[0],{position:i.position,align:"center"}),e},c.prototype.val=function(){var e,i=this,o=(i.config,i.elemColorBox.find("."+P)),r=i.elemPicker.find("."+F),n=o[0].style.backgroundColor;n?(e=H(Y(n)),o=o.attr("lay-type"),i.select(e.h,e.s,e.b),"torgb"===o&&r.find("input").val(n),"rgba"===o&&(e=Y(n),3==(n.match(/[0-9]{1,3}/g)||[]).length?(r.find("input").val("rgba("+e.r+", "+e.g+", "+e.b+", 1)"),i.elemPicker.find("."+j).css("left",280)):(r.find("input").val(n),o=280*n.slice(n.lastIndexOf(",")+1,n.length-1),i.elemPicker.find("."+j).css("left",o)),i.elemPicker.find("."+D)[0].style.background="linear-gradient(to right, rgba("+e.r+", "+e.g+", "+e.b+", 0), rgb("+e.r+", "+e.g+", "+e.b+"))")):(i.select(0,100,100),r.find("input").val(""),i.elemPicker.find("."+D)[0].style.background="",i.elemPicker.find("."+j).css("left",280))},c.prototype.side=function(){var n=this,l=n.config,t=n.elemColorBox.find("."+P),c=t.attr("lay-type"),a=n.elemPicker.find(".layui-colorpicker-side"),e=n.elemPicker.find("."+B),s=n.elemPicker.find("."+w),r=n.elemPicker.find("."+E),d=n.elemPicker.find("."+D),f=n.elemPicker.find("."+j),u=e[0].offsetTop/180*360,p=100-(r[0].offsetTop+3)/180*100,g=(r[0].offsetLeft+3)/260*100,h=Math.round(f[0].offsetLeft/280*100)/100,v=n.elemColorBox.find("."+C),i=n.elemPicker.find(".layui-colorpicker-pre").children("div"),b=function(e,i,o,r){n.select(e,i,o);e=M({h:e,s:i,b:o});v.addClass(m).removeClass(x),t[0].style.background="rgb("+e.r+", "+e.g+", "+e.b+")","torgb"===c&&n.elemPicker.find("."+F).find("input").val("rgb("+e.r+", "+e.g+", "+e.b+")"),"rgba"===c&&(f.css("left",280*r),n.elemPicker.find("."+F).find("input").val("rgba("+e.r+", "+e.g+", "+e.b+", "+r+")"),t[0].style.background="rgba("+e.r+", "+e.g+", "+e.b+", "+r+")",d[0].style.background="linear-gradient(to right, rgba("+e.r+", "+e.g+", "+e.b+", 0), rgb("+e.r+", "+e.g+", "+e.b+"))"),l.change&&l.change(n.elemPicker.find("."+F).find("input").val())},o=y(['
              '].join("")),k=function(e){y("#LAY-colorpicker-moving")[0]||y("body").append(o),o.on("mousemove",e),o.on("mouseup",function(){o.remove()}).on("mouseleave",function(){o.remove()})};e.on("mousedown",function(e){var r=this.offsetTop,n=e.clientY;k(function(e){var i=r+(e.clientY-n),o=a[0].offsetHeight,o=(i=o<(i=i<0?0:i)?o:i)/180*360;b(u=o,g,p,h),e.preventDefault()}),e.preventDefault()}),a.on("click",function(e){var i=e.clientY-y(this).offset().top,i=(i=(i=i<0?0:i)>this.offsetHeight?this.offsetHeight:i)/180*360;b(u=i,g,p,h),e.preventDefault()}),r.on("mousedown",function(e){var l=this.offsetTop,t=this.offsetLeft,c=e.clientY,a=e.clientX;layui.stope(e),k(function(e){var i=l+(e.clientY-c),o=t+(e.clientX-a),r=s[0].offsetHeight-3,n=s[0].offsetWidth-3,n=((o=n<(o=o<-3?-3:o)?n:o)+3)/260*100,o=100-((i=r<(i=i<-3?-3:i)?r:i)+3)/180*100;b(u,g=n,p=o,h),e.preventDefault()}),e.preventDefault()}),s.on("mousedown",function(e){var i=e.clientY-y(this).offset().top-3+I.scrollTop(),o=e.clientX-y(this).offset().left-3+I.scrollLeft(),o=((i=i<-3?-3:i)>this.offsetHeight-3&&(i=this.offsetHeight-3),((o=(o=o<-3?-3:o)>this.offsetWidth-3?this.offsetWidth-3:o)+3)/260*100),i=100-(i+3)/180*100;b(u,g=o,p=i,h),layui.stope(e),e.preventDefault(),r.trigger(e,"mousedown")}),f.on("mousedown",function(e){var r=this.offsetLeft,n=e.clientX;k(function(e){var i=r+(e.clientX-n),o=d[0].offsetWidth,o=(o<(i=i<0?0:i)&&(i=o),Math.round(i/280*100)/100);b(u,g,p,h=o),e.preventDefault()}),e.preventDefault()}),d.on("click",function(e){var i=e.clientX-y(this).offset().left,i=((i=i<0?0:i)>this.offsetWidth&&(i=this.offsetWidth),Math.round(i/280*100)/100);b(u,g,p,h=i),e.preventDefault()}),i.each(function(){y(this).on("click",function(){y(this).parent(".layui-colorpicker-pre").addClass("selected").siblings().removeClass("selected");var e=this.style.backgroundColor,i=H(Y(e)),o=e.slice(e.lastIndexOf(",")+1,e.length-1);u=i.h,g=i.s,p=i.b,3==(e.match(/[0-9]{1,3}/g)||[]).length&&(o=1),h=o,b(i.h,i.s,i.b,o)})})},c.prototype.select=function(e,i,o,r){var n=this,l=(n.config,f({h:e,s:100,b:100})),t=f({h:e,s:i,b:o}),e=e/360*180,o=180-o/100*180-3,i=i/100*260-3;n.elemPicker.find("."+B).css("top",e),n.elemPicker.find("."+w)[0].style.background="#"+l,n.elemPicker.find("."+E).css({top:o,left:i}),"change"!==r&&n.elemPicker.find("."+F).find("input").val("#"+t)},c.prototype.pickerEvents=function(){var c=this,a=c.config,s=c.elemColorBox.find("."+P),d=c.elemPicker.find("."+F+" input"),o={clear:function(e){s[0].style.background="",c.elemColorBox.find("."+C).removeClass(m).addClass(x),c.color="",a.done&&a.done(""),c.removePicker()},confirm:function(e,i){var o,r,n=d.val(),l=n,t={};if(-1>16,g:(65280&o)>>8,b:255&o},t=H(r),s[0].style.background=l="#"+f(t),c.elemColorBox.find("."+C).removeClass(x).addClass(m)),"change"===i)return c.select(t.h,t.s,t.b,i),void(a.change&&a.change(l));c.color=n,a.done&&a.done(n),c.removePicker()}};c.elemPicker.on("click","*[colorpicker-events]",function(){var e=y(this),i=e.attr("colorpicker-events");o[i]&&o[i].call(this,e)}),d.on("keyup",function(e){var i=y(this);o.confirm.call(this,i,13===e.keyCode?null:"change")})},c.prototype.events=function(){var i=this,e=i.config,o=i.elemColorBox.find("."+P);i.elemColorBox.on("click",function(){i.renderPicker(),y(l)[0]&&(i.val(),i.side())}),e.elem[0]&&!i.elemColorBox[0].eventHandler&&(t.on(r,function(e){y(e.target).hasClass(n)||y(e.target).parents("."+n)[0]||y(e.target).hasClass(l.replace(/\./g,""))||y(e.target).parents(l)[0]||i.elemPicker&&(i.color?(e=H(Y(i.color)),i.select(e.h,e.s,e.b)):i.elemColorBox.find("."+C).removeClass(m).addClass(x),o[0].style.background=i.color||"",i.removePicker())}),I.on("resize",function(){if(!i.elemPicker||!y(l)[0])return!1;i.position()}),i.elemColorBox[0].eventHandler=!0)},i.render=function(e){e=new c(e);return function(){return{config:this.config}}.call(e)},e("colorpicker",i)});layui.define("jquery",function(t){"use strict";var u=layui.$,d=(layui.hint(),layui.device()),c="element",r="layui-this",y="layui-show",i=function(){this.config={}},h=(i.prototype.set=function(t){return u.extend(!0,this.config,t),this},i.prototype.on=function(t,i){return layui.onevent.call(this,c,t,i)},i.prototype.tabAdd=function(t,i){var a,t=u(".layui-tab[lay-filter="+t+"]"),e=t.children(".layui-tab-title"),l=e.children(".layui-tab-bar"),t=t.children(".layui-tab-content"),n=""+(i.title||"unnaming")+"";return l[0]?l.before(n):e.append(n),t.append('
              '+(i.content||"")+"
              "),C.hideTabMore(!0),C.tabAuto(),this},i.prototype.tabDelete=function(t,i){t=u(".layui-tab[lay-filter="+t+"]").children(".layui-tab-title").find('>li[lay-id="'+i+'"]');return C.tabDelete(null,t),this},i.prototype.tabChange=function(t,i){t=u(".layui-tab[lay-filter="+t+"]").children(".layui-tab-title").find('>li[lay-id="'+i+'"]');return C.tabClick.call(t[0],null,null,t),this},i.prototype.tab=function(a){a=a||{},e.on("click",a.headerElem,function(t){var i=u(this).index();C.tabClick.call(this,t,i,null,a)})},i.prototype.progress=function(t,i){var a="layui-progress",t=u("."+a+"[lay-filter="+t+"]").find("."+a+"-bar"),a=t.find("."+a+"-text");return t.css("width",i).attr("lay-percent",i),a.text(i),this},".layui-nav"),f="layui-nav-item",l="layui-nav-bar",p="layui-nav-tree",b="layui-nav-child",v="layui-nav-more",m="layui-anim layui-anim-upbit",C={tabClick:function(t,i,a,e){e=e||{};var a=a||u(this),i=i||a.parent().children("li").index(a),l=e.headerElem?a.parent():a.parents(".layui-tab").eq(0),e=e.bodyElem?u(e.bodyElem):l.children(".layui-tab-content").children(".layui-tab-item"),n=a.find("a"),n="javascript:;"!==n.attr("href")&&"_blank"===n.attr("target"),s="string"==typeof a.attr("lay-unselect"),o=l.attr("lay-filter");n||s||(a.addClass(r).siblings().removeClass(r),e.eq(i).addClass(y).siblings().removeClass(y)),layui.event.call(this,c,"tab("+o+")",{elem:l,index:i})},tabDelete:function(t,i){var i=i||u(this).parent(),a=i.index(),e=i.parents(".layui-tab").eq(0),l=e.children(".layui-tab-content").children(".layui-tab-item"),n=e.attr("lay-filter");i.hasClass(r)&&(i.next()[0]?C.tabClick.call(i.next()[0],null,a+1):i.prev()[0]&&C.tabClick.call(i.prev()[0],null,a-1)),i.remove(),l.eq(a).remove(),setTimeout(function(){C.tabAuto()},50),layui.event.call(this,c,"tabDelete("+n+")",{elem:e,index:a})},tabAuto:function(){var e="layui-tab-bar",l="layui-tab-close",n=this;u(".layui-tab").each(function(){var t=u(this),i=t.children(".layui-tab-title"),a=(t.children(".layui-tab-content").children(".layui-tab-item"),'lay-stope="tabmore"'),a=u('');n===window&&8!=d.ie&&C.hideTabMore(!0),t.attr("lay-allowClose")&&i.find("li").each(function(){var t,i=u(this);i.find("."+l)[0]||((t=u('')).on("click",C.tabDelete),i.append(t))}),"string"!=typeof t.attr("lay-unauto")&&(i.prop("scrollWidth")>i.outerWidth()+1?i.find("."+e)[0]||(i.append(a),t.attr("overflow",""),a.on("click",function(t){i[this.title?"removeClass":"addClass"]("layui-tab-more"),this.title=this.title?"":"\u6536\u7f29"})):(i.find("."+e).remove(),t.removeAttr("overflow")))})},hideTabMore:function(t){var i=u(".layui-tab-title");!0!==t&&"tabmore"===u(t.target).attr("lay-stope")||(i.removeClass("layui-tab-more"),i.find(".layui-tab-bar").attr("title",""))},clickThis:function(){var t=u(this),i=t.parents(h),a=i.attr("lay-filter"),e=t.parent(),l=t.siblings("."+b),n="string"==typeof e.attr("lay-unselect");"javascript:;"!==t.attr("href")&&"_blank"===t.attr("target")||n||l[0]||(i.find("."+r).removeClass(r),e.addClass(r)),i.hasClass(p)&&(l.removeClass(m),l[0]&&(e["none"===l.css("display")?"addClass":"removeClass"](f+"ed"),"all"===i.attr("lay-shrink")&&e.siblings().removeClass(f+"ed"))),layui.event.call(this,c,"nav("+a+")",t)},collapse:function(){var t=u(this),i=t.find(".layui-colla-icon"),a=t.siblings(".layui-colla-content"),e=t.parents(".layui-collapse").eq(0),l=e.attr("lay-filter"),n="none"===a.css("display");"string"==typeof e.attr("lay-accordion")&&((e=e.children(".layui-colla-item").children("."+y)).siblings(".layui-colla-title").children(".layui-colla-icon").html(""),e.removeClass(y)),a[n?"addClass":"removeClass"](y),i.html(n?"":""),layui.event.call(this,c,"collapse("+l+")",{title:t,content:a,show:n})}},a=(i.prototype.render=i.prototype.init=function(t,i){var a=i?'[lay-filter="'+i+'"]':"",i={tab:function(){C.tabAuto.call({})},nav:function(){var s={},o={},c={},r="layui-nav-title";u(h+a).each(function(t){var i=u(this),a=u(''),e=i.find("."+f);i.find("."+l)[0]||(i.append(a),(i.hasClass(p)?e.find("dd,>."+r):e).on("mouseenter",function(){!function(t,i,a){var e,l=u(this),n=l.find("."+b);i.hasClass(p)?n[0]||(e=l.children("."+r),t.css({top:l.offset().top-i.offset().top,height:(e[0]?e:l).outerHeight(),opacity:1})):(n.addClass(m),n.hasClass("layui-nav-child-c")&&n.css({left:-(n.outerWidth()-l.width())/2}),n[0]?t.css({left:t.position().left+t.width()/2,width:0,opacity:0}):t.css({left:l.position().left+parseFloat(l.css("marginLeft")),top:l.position().top+l.height()-t.height()}),s[a]=setTimeout(function(){t.css({width:n[0]?0:l.width(),opacity:n[0]?0:1})},d.ie&&d.ie<10?0:200),clearTimeout(c[a]),"block"===n.css("display")&&clearTimeout(o[a]),o[a]=setTimeout(function(){n.addClass(y),l.find("."+v).addClass(v+"d")},300))}.call(this,a,i,t)}).on("mouseleave",function(){i.hasClass(p)?a.css({height:0,opacity:0}):(clearTimeout(o[t]),o[t]=setTimeout(function(){i.find("."+b).removeClass(y),i.find("."+v).removeClass(v+"d")},300))}),i.on("mouseleave",function(){clearTimeout(s[t]),c[t]=setTimeout(function(){i.hasClass(p)||a.css({width:0,left:a.position().left+a.width()/2,opacity:0})},200)})),e.find("a").each(function(){var t=u(this);t.parent();t.siblings("."+b)[0]&&!t.children("."+v)[0]&&t.append(''),t.off("click",C.clickThis).on("click",C.clickThis)})})},breadcrumb:function(){u(".layui-breadcrumb"+a).each(function(){var t=u(this),i="lay-separator",a=t.attr(i)||"/",e=t.find("a");e.next("span["+i+"]")[0]||(e.each(function(t){t!==e.length-1&&u(this).after(""+a+"")}),t.css("visibility","visible"))})},progress:function(){var e="layui-progress";u("."+e+a).each(function(){var t=u(this),i=t.find(".layui-progress-bar"),a=i.attr("lay-percent");i.css("width",/^.+\/.+$/.test(a)?100*new Function("return "+a)()+"%":a),t.attr("lay-showPercent")&&setTimeout(function(){i.html(''+a+"")},350)})},collapse:function(){u(".layui-collapse"+a).each(function(){u(this).find(".layui-colla-item").each(function(){var t=u(this),i=t.find(".layui-colla-title"),t="none"===t.find(".layui-colla-content").css("display");i.find(".layui-colla-icon").remove(),i.append(''+(t?"":"")+""),i.off("click",C.collapse).on("click",C.collapse)})})}};return i[t]?i[t]():layui.each(i,function(t,i){i()})},new i),e=u(document);u(function(){a.render()});e.on("click",".layui-tab-title li",C.tabClick),e.on("click",C.hideTabMore),u(window).on("resize",C.tabAuto),t(c,a)});layui.define("layer",function(e){"use strict";var v=layui.$,t=layui.layer,r=layui.hint(),y=layui.device(),i={config:{},set:function(e){var t=this;return t.config=v.extend({},t.config,e),t},on:function(e,t){return layui.onevent.call(this,n,e,t)}},n="upload",o="layui-upload-file",a="layui-upload-form",F="layui-upload-iframe",b="layui-upload-choose",x=function(e){var t=this;t.config=v.extend({},t.config,i.config,e),t.render()};x.prototype.config={accept:"images",exts:"",auto:!0,bindAction:"",url:"",force:"",field:"file",acceptMime:"",method:"post",data:{},drag:!0,size:0,number:0,multiple:!1},x.prototype.render=function(e){var t=this;(e=t.config).elem=v(e.elem),e.bindAction=v(e.bindAction),t.file(),t.events()},x.prototype.file=function(){var e=this,t=e.config,i=e.elemFile=v(['"].join("")),n=t.elem.next();(n.hasClass(o)||n.hasClass(a))&&n.remove(),y.ie&&y.ie<10&&t.elem.wrap('
              '),e.isFile()?(e.elemFile=t.elem,t.field=t.elem[0].name):t.elem.after(i),y.ie&&y.ie<10&&e.initIE()},x.prototype.initIE=function(){var i,e=this.config,t=v(''),n=v(['
              ',"
              "].join(""));v("#"+F)[0]||v("body").append(t),e.elem.next().hasClass(a)||(this.elemFile.wrap(n),e.elem.next("."+a).append((i=[],layui.each(e.data,function(e,t){t="function"==typeof t?t():t,i.push('')}),i.join(""))))},x.prototype.msg=function(e){return t.msg(e,{icon:2,shift:6})},x.prototype.isFile=function(){var e=this.config.elem[0];if(e)return"input"===e.tagName.toLocaleLowerCase()&&"file"===e.type},x.prototype.preview=function(n){window.FileReader&&layui.each(this.chooseFiles,function(e,t){var i=new FileReader;i.readAsDataURL(t),i.onload=function(){n&&n(e,t,this.result)}})},x.prototype.upload=function(i,e){var n,o,t,a,l=this,r=l.config,u=l.elemFile[0],c=function(){var t=0,o=0,e=i||l.files||l.chooseFiles||u.files,a=function(){r.multiple&&t+o===l.fileLength&&"function"==typeof r.allDone&&r.allDone({total:l.fileLength,successful:t,failed:o})};layui.each(e,function(i,e){var n=new FormData,e=(n.append(r.field,e),layui.each(r.data,function(e,t){t="function"==typeof t?t():t,n.append(e,t)}),{url:r.url,type:"post",data:n,contentType:!1,processData:!1,dataType:"json",headers:r.headers||{},success:function(e){t++,f(i,e),a()},error:function(e){o++,l.msg("Request URL is abnormal: "+(e.statusText||"error")),p(i),a()}});"function"==typeof r.progress&&(e.xhr=function(){var e=v.ajaxSettings.xhr();return e.upload.addEventListener("progress",function(e){var t;e.lengthComputable&&(t=Math.floor(e.loaded/e.total*100),r.progress(t,(r.item||r.elem)[0],e,i))}),e}),v.ajax(e)})},s=function(){var n=v("#"+F);l.elemFile.parent().submit(),clearInterval(x.timer),x.timer=setInterval(function(){var e,t=n.contents().find("body");try{e=t.text()}catch(i){l.msg("Cross-domain requests are not supported"),clearInterval(x.timer),p()}e&&(clearInterval(x.timer),t.html(""),f(0,e))},30)},f=function(e,t){if(l.elemFile.next("."+b).remove(),u.value="","json"===r.force&&"object"!=typeof t)try{t=JSON.parse(t)}catch(i){return t={},l.msg("Please return JSON data format")}"function"==typeof r.done&&r.done(t,e||0,function(e){l.upload(e)})},p=function(e){r.auto&&(u.value=""),"function"==typeof r.error&&r.error(e||0,function(e){l.upload(e)})},d=r.exts,m=(o=[],layui.each(i||l.chooseFiles,function(e,t){o.push(t.name)}),o),h={preview:function(e){l.preview(e)},upload:function(e,t){var i={};i[e]=t,l.upload(i)},pushFile:function(){return l.files=l.files||{},layui.each(l.chooseFiles,function(e,t){l.files[e]=t}),l.files},resetFile:function(e,t,i){t=new File([t],i);l.files=l.files||{},l.files[e]=t}},g={file:"\u6587\u4ef6",images:"\u56fe\u7247",video:"\u89c6\u9891",audio:"\u97f3\u9891"}[r.accept]||"\u6587\u4ef6",m=0===m.length?u.value.match(/[^\/\\]+\..+/g)||[]||"":m;if(0!==m.length){switch(r.accept){case"file":layui.each(m,function(e,t){if(d&&!RegExp(".\\.("+d+")$","i").test(escape(t)))return n=!0});break;case"video":layui.each(m,function(e,t){if(!RegExp(".\\.("+(d||"avi|mp4|wma|rmvb|rm|flash|3gp|flv")+")$","i").test(escape(t)))return n=!0});break;case"audio":layui.each(m,function(e,t){if(!RegExp(".\\.("+(d||"mp3|wav|mid")+")$","i").test(escape(t)))return n=!0});break;default:layui.each(m,function(e,t){if(!RegExp(".\\.("+(d||"jpg|png|gif|bmp|jpeg")+")$","i").test(escape(t)))return n=!0})}if(n)return l.msg("\u9009\u62e9\u7684"+g+"\u4e2d\u5305\u542b\u4e0d\u652f\u6301\u7684\u683c\u5f0f"),u.value="";if("choose"!==e&&!r.auto||(r.choose&&r.choose(h),"choose"!==e)){if(l.fileLength=(t=0,g=i||l.files||l.chooseFiles||u.files,layui.each(g,function(){t++}),t),r.number&&l.fileLength>r.number)return l.msg("\u540c\u65f6\u6700\u591a\u53ea\u80fd\u4e0a\u4f20: "+r.number+" \u4e2a\u6587\u4ef6
              \u60a8\u5f53\u524d\u5df2\u7ecf\u9009\u62e9\u4e86: "+l.fileLength+" \u4e2a\u6587\u4ef6");if(01024*r.size&&(t=1<=(t=r.size/1024)?t.toFixed(2)+"MB":r.size+"KB",u.value="",a=t)}),a)return l.msg("\u6587\u4ef6\u5927\u5c0f\u4e0d\u80fd\u8d85\u8fc7 "+a);if(!r.before||!1!==r.before(h))y.ie?(9'+e+"")};o.elem.off("upload.start").on("upload.start",function(){var e=v(this),t=e.attr("lay-data");if(t)try{t=new Function("return "+t)(),n.config=v.extend({},o,t)}catch(i){r.error("Upload element property lay-data configuration item has a syntax error: "+t)}n.config.item=e,n.elemFile[0].click()}),y.ie&&y.ie<10||o.elem.off("upload.over").on("upload.over",function(){v(this).attr("lay-over","")}).off("upload.leave").on("upload.leave",function(){v(this).removeAttr("lay-over")}).off("upload.drop").on("upload.drop",function(e,t){var i=v(this),t=t.originalEvent.dataTransfer.files||[];i.removeAttr("lay-over"),a(t),o.auto?n.upload():l(t)}),n.elemFile.off("upload.change").on("upload.change",function(){var e=this.files||[];a(e),o.auto?n.upload():l(e)}),o.bindAction.off("upload.action").on("upload.action",function(){n.upload()}),o.elem.data("haveEvents")||(n.elemFile.on("change",function(){v(this).trigger("upload.change")}),o.elem.on("click",function(){n.isFile()||v(this).trigger("upload.start")}),o.drag&&o.elem.on("dragover",function(e){e.preventDefault(),v(this).trigger("upload.over")}).on("dragleave",function(e){v(this).trigger("upload.leave")}).on("drop",function(e){e.preventDefault(),v(this).trigger("upload.drop",e)}),o.bindAction.on("click",function(){v(this).trigger("upload.action")}),o.elem.data("haveEvents",!0))},i.render=function(e){e=new x(e);return function(){var t=this;return{upload:function(e){t.upload.call(t,e)},reload:function(e){t.reload.call(t,e)},config:t.config}}.call(e)},e(n,i)});layui.define("layer",function(e){"use strict";var C=layui.$,h=layui.layer,l=layui.hint(),w=(layui.device(),"form"),s=".layui-form",T="layui-this",$="layui-hide",E="layui-disabled",t=function(){this.config={verify:{required:[/[\S]+/,"\u5fc5\u586b\u9879\u4e0d\u80fd\u4e3a\u7a7a"],phone:[/^1\d{10}$/,"\u8bf7\u8f93\u5165\u6b63\u786e\u7684\u624b\u673a\u53f7"],email:[/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/,"\u90ae\u7bb1\u683c\u5f0f\u4e0d\u6b63\u786e"],url:[/^(#|(http(s?)):\/\/|\/\/)[^\s]+\.[^\s]+$/,"\u94fe\u63a5\u683c\u5f0f\u4e0d\u6b63\u786e"],number:function(e){if(!e||isNaN(e))return"\u53ea\u80fd\u586b\u5199\u6570\u5b57"},date:[/^(\d{4})[-\/](\d{1}|0\d{1}|1[0-2])([-\/](\d{1}|0\d{1}|[1-2][0-9]|3[0-1]))*$/,"\u65e5\u671f\u683c\u5f0f\u4e0d\u6b63\u786e"],identity:[/(^\d{15}$)|(^\d{17}(x|X|\d)$)/,"\u8bf7\u8f93\u5165\u6b63\u786e\u7684\u8eab\u4efd\u8bc1\u53f7"]},autocomplete:null}},i=(t.prototype.set=function(e){return C.extend(!0,this.config,e),this},t.prototype.verify=function(e){return C.extend(!0,this.config.verify,e),this},t.prototype.getFormElem=function(e){return C(s+(e?'[lay-filter="'+e+'"]':""))},t.prototype.on=function(e,t){return layui.onevent.call(this,w,e,t)},t.prototype.val=function(e,i){return this.getFormElem(e).each(function(e,t){var a=C(this);layui.each(i,function(e,t){var i,e=a.find('[name="'+e+'"]');e[0]&&("checkbox"===(i=e[0].type)?e[0].checked=t:"radio"===i?e.each(function(){this.value==t&&(this.checked=!0)}):e.val(t))})}),r.render(null,e),this.getValue(e)},t.prototype.getValue=function(e,t){t=t||this.getFormElem(e);var a={},n={},e=t.find("input,select,textarea");return layui.each(e,function(e,t){var i;C(this);t.name=(t.name||"").replace(/^\s*|\s*&/,""),t.name&&(/^.*\[\]$/.test(t.name)&&(i=t.name.match(/^(.*)\[\]$/g)[0],a[i]=0|a[i],i=t.name.replace(/^(.*)\[\]$/,"$1["+a[i]+++"]")),/^checkbox|radio$/.test(t.type)&&!t.checked||(n[i||t.name]=t.value))}),n},t.prototype.render=function(e,t){var i=this.config,a=C(s+(t?'[lay-filter="'+t+'"]':"")),n={input:function(e){e=e||a.find("input,textarea");i.autocomplete&&e.attr("autocomplete",i.autocomplete)},select:function(e){var p,c="\u8bf7\u9009\u62e9",m="layui-form-select",g="layui-select-title",k="layui-select-none",x="",e=e||a.find("select"),b=function(e,t){C(e.target).parent().hasClass(g)&&!t||(C("."+m).removeClass(m+"ed "+m+"up"),p&&x&&p.val(x)),p=null},u=function(a,e,t){var o,r,i,n,s,l,c=C(this),u=a.find("."+g),d=u.find("input"),f=a.find("dl"),h=f.children("dd"),y=f.children("dt"),v=this.selectedIndex;e||(r=c.attr("lay-search"),i=function(){var e=a.offset().top+a.outerHeight()+5-q.scrollTop(),t=f.outerHeight();v=c[0].selectedIndex,a.addClass(m+"ed"),h.removeClass($),y.removeClass($),o=null,h.eq(v).addClass(T).siblings().removeClass(T),e+t>q.height()&&t<=e&&a.addClass(m+"up"),s()},n=function(e){a.removeClass(m+"ed "+m+"up"),d.blur(),o=null,e||l(d.val(),function(e){var t=c[0].selectedIndex;e&&(x=C(c[0].options[t]).html(),0===t&&x===d.attr("placeholder")&&(x=""),d.val(x||""))})},s=function(){var e,t,i=f.children("dd."+T);i[0]&&(e=i.position().top,t=f.height(),i=i.height(),t\u65e0\u5339\u914d\u9879

              '):f.find("."+k).remove()},"keyup"),""===t&&f.find("."+k).remove(),s()}).on("blur",function(e){var t=c[0].selectedIndex;p=d,x=C(c[0].options[t]).html(),0===t&&x===d.attr("placeholder")&&(x=""),setTimeout(function(){l(d.val(),function(e){x||d.val("")},"blur")},200)}),h.on("click",function(){var e=C(this),t=e.attr("lay-value"),i=c.attr("lay-filter");return e.hasClass(E)||(e.hasClass("layui-select-tips")?d.val(""):(d.val(e.text()),e.addClass(T)),e.siblings().removeClass(T),c.val(t).removeClass("layui-form-danger"),layui.event.call(this,w,"select("+i+")",{elem:c[0],value:t,othis:a}),n(!0)),!1}),a.find("dl>dt").on("click",function(e){return!1}),C(document).off("click",b).on("click",b))};e.each(function(e,t){var i=C(this),a=i.next("."+m),n=this.disabled,l=t.value,r=C(t.options[t.selectedIndex]),t=t.options[0];if("string"==typeof i.attr("lay-ignore"))return i.show();var o,s="string"==typeof i.attr("lay-search"),t=t&&!t.value&&t.innerHTML||c,r=C(['
              ','
              ','','
              ','
              ',(t=i.find("*"),o=[],layui.each(t,function(e,t){0!==e||t.value?"optgroup"===t.tagName.toLowerCase()?o.push("
              "+t.label+"
              "):o.push('
              '+C.trim(t.innerHTML)+"
              "):o.push('
              '+C.trim(t.innerHTML||c)+"
              ")}),0===o.length&&o.push('
              \u6ca1\u6709\u9009\u9879
              '),o.join("")+"
              "),"
              "].join(""));a[0]&&a.remove(),i.after(r),u.call(this,r,n,s)})},checkbox:function(e){var s={checkbox:["layui-form-checkbox","layui-form-checked","checkbox"],_switch:["layui-form-switch","layui-form-onswitch","switch"]},e=e||a.find("input[type=checkbox]");e.each(function(e,t){var i=C(this),a=i.attr("lay-skin"),n=(i.attr("lay-text")||"").split("|"),l=this.disabled,r=s[a="switch"===a?"_"+a:a]||s.checkbox;if("string"==typeof i.attr("lay-ignore"))return i.show();var o=i.next("."+r[0]),t=C(['
              ",(l={checkbox:[t.title.replace(/\s/g,"")?""+t.title+"":"",''].join(""),_switch:""+((t.checked?n[0]:n[1])||"")+""})[a]||l.checkbox,"
              "].join(""));o[0]&&o.remove(),i.after(t),function(i,a){var n=C(this);i.on("click",function(){var e=n.attr("lay-filter"),t=(n.attr("lay-text")||"").split("|");n[0].disabled||(n[0].checked?(n[0].checked=!1,i.removeClass(a[1]).find("em").text(t[1])):(n[0].checked=!0,i.addClass(a[1]).find("em").text(t[0])),layui.event.call(n[0],w,a[2]+"("+e+")",{elem:n[0],value:n[0].value,othis:i}))})}.call(this,t,r)})},radio:function(e){var r="layui-form-radio",o=["",""],e=e||a.find("input[type=radio]");e.each(function(e,t){var i=C(this),a=i.next("."+r),n=this.disabled;if("string"==typeof i.attr("lay-ignore"))return i.show();a[0]&&a.remove();n=C(['
              ',''+o[t.checked?0:1]+"","
              "+(a=t.title||"",a="string"==typeof i.next().attr("lay-radio")?i.next().html():a)+"
              ","
              "].join(""));i.after(n),function(a){var n=C(this),l="layui-anim-scaleSpring";a.on("click",function(){var e=n[0].name,t=n.parents(s),i=n.attr("lay-filter"),e=t.find("input[name="+e.replace(/(\.|#|\[|\])/g,"\\$1")+"]");n[0].disabled||(layui.each(e,function(){var e=C(this).next("."+r);this.checked=!1,e.removeClass(r+"ed"),e.find(".layui-icon").removeClass(l).html(o[1])}),n[0].checked=!0,a.addClass(r+"ed"),a.find(".layui-icon").addClass(l).html(o[0]),layui.event.call(n[0],w,"radio("+i+")",{elem:n[0],value:n[0].value,othis:a}))})}.call(this,n)})}};return"object"===layui.type(e)?e.each(function(e,t){var i=C(t);i.closest(s).length&&("SELECT"===t.tagName?n.select(i):"INPUT"===t.tagName&&("checkbox"===(t=t.type)||"radio"===t?n[t](i):n.input(i)))}):e?n[e]?n[e]():l.error('\u4e0d\u652f\u6301\u7684 "'+e+'" \u8868\u5355\u6e32\u67d3'):layui.each(n,function(e,t){t()}),this},t.prototype.validate=function(e){var u=null,d=r.config.verify,f="layui-form-danger";return!(e=C(e))[0]||(e.attr("lay-verify")!==undefined||!1!==this.validate(e.find("*[lay-verify]")))&&(layui.each(e,function(e,r){var o=C(this),t=(o.attr("lay-verify")||"").split("|"),s=o.attr("lay-verType"),c=o.val();if(o.removeClass(f),layui.each(t,function(e,t){var i="",a=d[t];if(a){var n="function"==typeof a?i=a(c,r):!a[0].test(c),l="select"===r.tagName.toLowerCase()||/^checkbox|radio$/.test(r.type),i=i||a[1];if("required"===t&&(i=o.attr("lay-reqText")||i),n)return"tips"===s?h.tips(i,"string"!=typeof o.attr("lay-ignore")&&l?o.next():o,{tips:1}):"alert"===s?h.alert(i,{title:"\u63d0\u793a",shadeClose:!0}):/\bstring|number\b/.test(typeof i)&&h.msg(i,{icon:5,shift:6}),setTimeout(function(){(l?o.next().find("input"):r).focus()},7),o.addClass(f),u=!0}}),u)return u}),!u)},t.prototype.submit=function(e,t){var i=C(this),e="string"==typeof e?e:i.attr("lay-filter"),a=this.getFormElem?this.getFormElem(e):i.parents(s).eq(0),n=a.find("*[lay-verify]");if(!r.validate(n))return!1;n=r.getValue(null,a),a={elem:this.getFormElem?window.event&&window.event.target:this,form:(this.getFormElem?a:i.parents("form"))[0],field:n};return"function"==typeof t&&t(a),layui.event.call(this,w,"submit("+e+")",a)}),r=new t,t=C(document),q=C(window);C(function(){r.render()}),t.on("reset",s,function(){var e=C(this).attr("lay-filter");setTimeout(function(){r.render(null,e)},50)}),t.on("submit",s,i).on("click","*[lay-submit]",i),e(w,r)});layui.define(["laytpl","laypage","form","util"],function(e){"use strict";var m=layui.$,v=layui.laytpl,d=layui.laypage,g=layui.layer,y=layui.form,h=layui.util,f=layui.hint(),p=layui.device(),b={config:{checkName:"LAY_CHECKED",indexName:"LAY_TABLE_INDEX",disabledName:"LAY_DISABLED"},cache:{},index:layui.table?layui.table.index+1e4:0,set:function(e){var t=this;return t.config=m.extend({},t.config,e),t},on:function(e,t){return layui.onevent.call(this,C,e,t)}},x=function(){var a=this,e=a.config,i=e.id||e.index;return i&&(x.that[i]=a,x.config[i]=e),{config:e,reload:function(e,t){a.reload.call(a,e,t)},reloadData:function(e,t){b.reloadData(i,e,t)},setColsWidth:function(){a.setColsWidth.call(a)},resize:function(){a.resize.call(a)}}},l=function(e){var t=x.config[e];return t||f.error(e?"The table instance with ID '"+e+"' not found":"ID argument required"),t||null},k=function(e){var t=this.config||{},a=(e=e||{}).item3,i=e.content,t=(t.escape&&(i=h.escape(i)),e.text&&a.exportTemplet||a.templet||a.toolbar);return t&&(i="function"==typeof t?t.call(a,e.tplData,e.obj):v(m(t).html()||String(i)).render(e.tplData)),e.text?m("
              "+i+"
              ").text():i},C="table",w="layui-hide",r="layui-hide-v",c="layui-none",s="layui-table-view",u=".layui-table-header",T=".layui-table-body",N=".layui-table-pageview",L=".layui-table-sort",D="layui-table-edit",E="layui-table-hover",A="layui-table-col-special",j="LAY_TABLE_MOVE_DICT",t=function(e){return['',"","{{# layui.each(d.data.cols, function(i1, item1){ }}","","{{# layui.each(item1, function(i2, item2){ }}",'{{# if(item2.fixed && item2.fixed !== "right"){ left = true; } }}','{{# if(item2.fixed === "right"){ right = true; } }}',(e=e||{}).fixed&&"right"!==e.fixed?'{{# if(item2.fixed && item2.fixed !== "right"){ }}':"right"===e.fixed?'{{# if(item2.fixed === "right"){ }}':"","{{# var isSort = !(item2.colGroup) && item2.sort; }}",'",e.fixed?"{{# }; }}":"","{{# }); }}","","{{# }); }}","","
              ','
              ','{{# if(item2.type === "checkbox"){ }}','',"{{# } else { }}",'{{-item2.title||""}}',"{{# if(isSort){ }}",'',"{{# } }}","{{# } }}","
              ","
              "].join("")},a=['',"","
              "].join(""),R=[,"{{# if(d.data.toolbar){ }}",'
              ','
              ','
              ',"
              ","{{# } }}",'
              ',"{{# if(d.data.loading){ }}",'
              ','',"
              ","{{# } }}","{{# var left, right; }}",'
              ',t(),"
              ",'
              ',a,"
              ","{{# if(left){ }}",'
              ','
              ',t({fixed:!0}),"
              ",'
              ',a,"
              ","
              ","{{# }; }}","{{# if(right){ }}",'
              ','
              ',t({fixed:"right"}),'
              ',"
              ",'
              ',a,"
              ","
              ","{{# }; }}","
              ","{{# if(d.data.totalRow){ }}",'
              ','','',"
              ","
              ","{{# } }}",'
              ','
              ',"
              ",""].join(""),_=m(window),S=m(document),i=function(e){this.index=++b.index,this.config=m.extend({},this.config,b.config,e),this.render()},F=(i.prototype.config={limit:10,loading:!0,escape:!0,cellMinWidth:60,editTrigger:"click",defaultToolbar:["filter","exports","print"],autoSort:!0,text:{none:"\u65e0\u6570\u636e"}},i.prototype.render=function(e){var t=this,a=t.config;if(a.elem=m(a.elem),a.where=a.where||{},a.id=a.id||a.elem.attr("id")||t.index,a.request=m.extend({pageName:"page",limitName:"limit"},a.request),a.response=m.extend({statusName:"code",statusCode:0,msgName:"msg",dataName:"data",totalRowName:"totalRow",countName:"count"},a.response),"object"==typeof a.page&&(a.limit=a.page.limit||a.limit,a.limits=a.page.limits||a.limits,t.page=a.page.curr=a.page.curr||1,delete a.page.elem,delete a.page.jump),!a.elem[0])return t;if("reloadData"===e)return t.pullData(t.page,{type:"reloadData"});a.height&&/^full-\d+$/.test(a.height)&&(t.fullHeightGap=a.height.split("-")[1],a.height=_.height()-t.fullHeightGap),t.setInit();var i,l,e=a.elem,n=e.next("."+s),o=t.elem=m("
              ");o.addClass((i=[s,s+"-"+t.index,"layui-form","layui-border-box"],a.className&&i.push(a.className),i.join(" "))).attr({"lay-filter":"LAY-TABLE-FORM-DF-"+t.index,"lay-id":a.id,style:(i=[],a.width&&i.push("width:"+a.width+"px;"),a.height&&i.push("height:"+a.height+"px;"),i.join(""))}).html(v(R).render({data:a,index:t.index})),a.index=t.index,t.key=a.id||a.index,n[0]&&n.remove(),e.after(o),t.layTool=o.find(".layui-table-tool"),t.layBox=o.find(".layui-table-box"),t.layHeader=o.find(u),t.layMain=o.find(".layui-table-main"),t.layBody=o.find(T),t.layFixed=o.find(".layui-table-fixed"),t.layFixLeft=o.find(".layui-table-fixed-l"),t.layFixRight=o.find(".layui-table-fixed-r"),t.layTotal=o.find(".layui-table-total"),t.layPage=o.find(".layui-table-page"),t.renderToolbar(),t.renderPagebar(),t.fullSize(),1
              ','
              ','
              '].join(""),a=this.layTool.find(".layui-table-tool-temp"),i=("default"===e.toolbar?a.html(t):"string"==typeof e.toolbar&&(t=m(e.toolbar).html()||"")&&a.html(v(t).render(e)),{filter:{title:"\u7b5b\u9009\u5217",layEvent:"LAYTABLE_COLS",icon:"layui-icon-cols"},exports:{title:"\u5bfc\u51fa",layEvent:"LAYTABLE_EXPORT",icon:"layui-icon-export"},print:{title:"\u6253\u5370",layEvent:"LAYTABLE_PRINT",icon:"layui-icon-print"}}),l=[];"object"==typeof e.defaultToolbar&&layui.each(e.defaultToolbar,function(e,t){t="string"==typeof t?i[t]:t;t&&l.push('
              ')}),this.layTool.find(".layui-table-tool-self").html(l.join(""))},i.prototype.renderPagebar=function(){var e,t=this.config,a=this.layPagebar=m('
              ');t.pagebar&&((e=m(t.pagebar).html()||"")&&a.append(v(e).render(t)),this.layPage.append(a))},i.prototype.setParentCol=function(e,t){var a=this.config,i=this.layHeader.find('th[data-key="'+a.index+"-"+t+'"]'),l=parseInt(i.attr("colspan"))||0;i[0]&&(t=t.split("-"),t=a.cols[t[0]][t[1]],e?l--:l++,i.attr("colspan",l),i[l<1?"addClass":"removeClass"](w),t.colspan=l,t.hide=l<1,(a=i.data("parentkey"))&&this.setParentCol(e,a))},i.prototype.setColsPatch=function(){var a=this,e=a.config;layui.each(e.cols,function(e,t){layui.each(t,function(e,t){t.hide&&a.setParentCol(t.hide,t.parentKey)})})},i.prototype.setColsWidth=function(){var t,a,i=this,o=i.config,l=0,d=0,r=0,c=0,s=i.setInit("width"),e=(i.eachCols(function(e,t){t.hide||l++}),s=s-("line"===o.skin||"nob"===o.skin?2:l+1)-i.getScrollWidth(i.layMain[0])-1,function(n){layui.each(o.cols,function(e,l){layui.each(l,function(e,t){var a=0,i=t.minWidth||o.cellMinWidth;t?t.colGroup||t.hide||(n?r&&r'+(e||"Error")+"
              ");a[0]&&(t.layNone.remove(),a.remove()),t.layFixed.addClass(w),t.layMain.find("tbody").html(""),t.layMain.append(t.layNone=e),t.layTotal.addClass(r),t.layPage.find(N).addClass(r),b.cache[t.key]=[],t.syncCheckAll()},i.prototype.page=1,i.prototype.pullData=function(t,a){var e,i=this,l=i.config,n=l.request,o=l.response,d=function(){"object"==typeof l.initSort&&i.sort(l.initSort.field,l.initSort.type)};a=a||{},"function"==typeof l.before&&l.before(l),i.startTime=(new Date).getTime(),l.url?((e={})[n.pageName]=t,e[n.limitName]=l.limit,n=m.extend(e,l.where),l.contentType&&0==l.contentType.indexOf("application/json")&&(n=JSON.stringify(n)),i.loading(),m.ajax({type:l.method||"get",url:l.url,contentType:l.contentType,data:n,dataType:l.dataType||"json",jsonpCallback:l.jsonpCallback,headers:l.headers||{},success:function(e){(e="function"==typeof l.parseData?l.parseData(e)||e:e)[o.statusName]!=o.statusCode?(i.renderForm(),i.errorView(e[o.msgName]||'\u8fd4\u56de\u7684\u6570\u636e\u4e0d\u7b26\u5408\u89c4\u8303\uff0c\u6b63\u786e\u7684\u6210\u529f\u72b6\u6001\u7801\u5e94\u4e3a\uff1a"'+o.statusName+'": '+o.statusCode)):(i.renderData({res:e,curr:t,count:e[o.countName],type:a.type}),d(),l.time=(new Date).getTime()-i.startTime+" ms"),i.setColsWidth(),"function"==typeof l.done&&l.done(e,t,e[o.countName])},error:function(e,t){i.errorView("\u8bf7\u6c42\u5f02\u5e38\uff0c\u9519\u8bef\u63d0\u793a\uff1a"+t),i.renderForm(),i.setColsWidth(),"function"==typeof l.error&&l.error(e,t)}})):"array"===layui.type(l.data)&&(e=t*l.limit-l.limit,(n={})[o.dataName]=l.data.concat().splice(e,l.limit),n[o.countName]=l.data.length,"object"==typeof l.totalRow&&(n[o.totalRowName]=m.extend({},l.totalRow)),i.renderData({res:n,curr:t,count:n[o.countName],type:a.type}),d(),i.setColsWidth(),"function"==typeof l.done&&l.done(n,t,n[o.countName]))},i.prototype.eachCols=function(e){return b.eachCols(null,e,this.config.cols),this},i.prototype.renderData=function(e){var u=this,y=u.config,t=e.res,l=e.curr,a=e.count,n=e.sort,i=t[y.response.dataName]||[],t=t[y.response.totalRowName],h=[],f=[],p=[],o=function(){var s;if(y.HAS_SET_COLS_PATCH||u.setColsPatch(),y.HAS_SET_COLS_PATCH=!0,!n&&u.sortKey)return u.sort(u.sortKey.field,u.sortKey.sort,!0);layui.each(i,function(o,d){var a=[],i=[],r=[],c=o+y.limit*(l-1)+1;"array"===layui.type(d)&&0===d.length||(n||(d[b.config.indexName]=o),u.eachCols(function(e,l){var e=l.field||e,t=y.index+"-"+l.key,n=d[e];n!==undefined&&null!==n||(n=""),l.colGroup||(t=['','
              "+function(){var e,t=m.extend(!0,{LAY_INDEX:c,LAY_COL:l},d),a=b.config.checkName,i=b.config.disabledName;switch(l.type){case"checkbox":return'";case"radio":return t[a]&&(s=o),'';case"numbers":return c}return l.toolbar?v(m(l.toolbar).html()||"").render(t):k.call(u,{item3:l,content:n,tplData:t})}(),"
              "].join(""),a.push(t),l.fixed&&"right"!==l.fixed&&i.push(t),"right"===l.fixed&&r.push(t))}),h.push(''+a.join("")+""),f.push(''+i.join("")+""),p.push(''+r.join("")+""))}),"fixed"===y.scrollPos&&"reloadData"===e.type||u.layBody.scrollTop(0),"reset"===y.scrollPos&&u.layBody.scrollLeft(0),u.layMain.find("."+c).remove(),u.layMain.find("tbody").html(h.join("")),u.layFixLeft.find("tbody").html(f.join("")),u.layFixRight.find("tbody").html(p.join("")),u.renderForm(),"number"==typeof s&&u.setThisRowChecked(s),u.syncCheckAll(),u.fullSize(),u.haveInit?u.scrollPatch():setTimeout(function(){u.scrollPatch()},50),u.haveInit=!0,g.close(u.tipsIndex)};return b.cache[u.key]=i,u.layTotal[0==i.length?"addClass":"removeClass"](r),u.layPage[y.page||y.pagebar?"removeClass":"addClass"](w),u.layPage.find(N)[!y.page||0==a||0===i.length&&1==l?"addClass":"removeClass"](r),0===i.length?(u.renderForm(),u.errorView(y.text.none)):(u.layFixLeft.removeClass(w),n?o():(o(),u.renderTotal(i,t),u.layTotal&&u.layTotal.removeClass(w),void(y.page&&(y.page=m.extend({elem:"layui-table-page"+y.index,count:a,limit:y.limit,limits:y.limits||[10,20,30,40,50,60,70,80,90],groups:3,layout:["prev","page","next","skip","count","limit"],prev:'',next:'',jump:function(e,t){t||(u.page=e.curr,y.limit=e.limit,u.pullData(e.curr))}},y.page),y.page.count=a,d.render(y.page)))))},i.prototype.renderTotal=function(e,o){var d,r=this,c=r.config,s={};c.totalRow&&(layui.each(e,function(e,i){"array"===layui.type(i)&&0===i.length||r.eachCols(function(e,t){var e=t.field||e,a=i[e];t.totalRow&&(s[e]=(s[e]||0)+(parseFloat(a)||0))})}),r.dataTotal={},d=[],r.eachCols(function(e,t){var a,e=t.field||e,i=o&&o[t.field],l=(a=t.totalRowText||"",n="totalRowDecimals"in t?t.totalRowDecimals:2,n=parseFloat(s[e]).toFixed(n),(l={LAY_COL:t})[e]=n,n=t.totalRow&&k.call(r,{item3:t,content:n,tplData:l})||a,i||n),n=['','
              "+("string"==typeof(a=t.totalRow||c.totalRow)?v(a).render(m.extend({TOTAL_NUMS:i||s[e],LAY_COL:t},t)):l),"
              "].join("");t.field&&(r.dataTotal[e]=l),d.push(n)}),r.layTotal.find("tbody").html(""+d.join("")+""))},i.prototype.getColElem=function(e,t){var a=this.config;return e.eq(0).find(".laytable-cell-"+a.index+"-"+t+":eq(0)")},i.prototype.renderForm=function(e){this.config;var t=this.elem.attr("lay-filter");y.render(e,t)},i.prototype.setThisRowChecked=function(e){this.config;var t="layui-table-click";this.layBody.find('tr[data-index="'+e+'"]').addClass(t).siblings("tr").removeClass(t)},i.prototype.sort=function(l,e,t,a){var i,n=this,o={},d=n.config,r=d.elem.attr("lay-filter"),c=b.cache[n.key];"string"==typeof l&&(s=l,n.layHeader.find("th").each(function(e,t){var a=m(this),i=a.data("field");if(i===l)return l=a,s=i,!1}));try{var s=s||l.data("field"),u=l.data("key");if(n.sortKey&&!t&&s===n.sortKey.field&&e===n.sortKey.sort)return;var y=n.layHeader.find("th .laytable-cell-"+u).find(L);n.layHeader.find("th").find(L).removeAttr("lay-sort"),y.attr("lay-sort",e||null),n.layFixed.find("th")}catch(h){f.error("Table modules: sort field '"+s+"' not matched")}n.sortKey={field:s,sort:e},d.autoSort&&("asc"===e?i=layui.sort(c,s):"desc"===e?i=layui.sort(c,s,!0):(i=layui.sort(c,b.config.indexName),delete n.sortKey,delete d.initSort)),o[d.response.dataName]=i||c,n.renderData({res:o,curr:n.page,count:n.count,sort:!0}),a&&(d.initSort={field:s,type:e},layui.event.call(l,C,"sort("+r+")",d.initSort))},i.prototype.loading=function(e){var t=this;t.config.loading&&(e?(t.layInit&&t.layInit.remove(),delete t.layInit,t.layBox.find(".layui-table-init").remove()):(t.layInit=m(['
              ','',"
              "].join("")),t.layBox.append(t.layInit)))},i.prototype.setCheckData=function(e,t){var a=this.config,i=b.cache[this.key];i[e]&&"array"!==layui.type(i[e])&&(i[e][a.checkName]=t)},i.prototype.syncCheckAll=function(){var e=this,i=e.config,t=e.layHeader.find('input[name="layTableCheckbox"]'),a=function(a){return e.eachCols(function(e,t){"checkbox"===t.type&&(t[i.checkName]=a)}),a};t[0]&&(b.checkStatus(e.key).isAll?(t[0].checked||(t.prop("checked",!0),e.renderForm("checkbox")),a(!0)):(t[0].checked&&(t.prop("checked",!1),e.renderForm("checkbox")),a(!1)))},i.prototype.getCssRule=function(a,i){var e=this.elem.find("style")[0],e=e.sheet||e.styleSheet||{},e=e.cssRules||e.rules;layui.each(e,function(e,t){if(t.selectorText===".laytable-cell-"+a)return i(t),!0})},i.prototype.fullSize=function(){var e=this,t=e.config,a=t.height;e.fullHeightGap&&(a=_.height()-e.fullHeightGap,e.elem.css("height",a=a<135?135:a)),a&&(a=parseFloat(a)-(e.layHeader.outerHeight()||38),t.toolbar&&(a-=e.layTool.outerHeight()||50),t.totalRow&&(a-=e.layTotal.outerHeight()||40),(t.page||t.pagebar)&&(a-=e.layPage.outerHeight()||43),e.layMain.outerHeight(a))},i.prototype.getScrollWidth=function(e){var t=0;return e?t=e.offsetWidth-e.clientWidth:((e=document.createElement("div")).style.width="100px",e.style.height="100px",e.style.overflowY="scroll",document.body.appendChild(e),t=e.offsetWidth-e.clientWidth,document.body.removeChild(e)),t},i.prototype.scrollPatch=function(){var e=this,t=e.layMain.children("table"),a=e.layMain.width()-e.layMain.prop("clientWidth"),i=e.layMain.height()-e.layMain.prop("clientHeight"),l=(e.getScrollWidth(e.layMain[0]),t.outerWidth()-e.layMain.width()),n=function(e){var t;a&&i?(e=e.eq(0)).find(".layui-table-patch")[0]||((t=m('
              ')).find("div").css({width:a}),e.find("tr").append(t)):e.find(".layui-table-patch").remove()};n(e.layHeader),n(e.layTotal);n=e.layMain.height()-i;e.layFixed.find(T).css("height",t.height()>=n?n:"auto"),e.layFixRight[0');a.html(t),r.height&&a.css("max-height",r.height-(s.layTool.outerHeight()||50)),i.find(".layui-table-tool-panel")[0]||i.append(a),s.renderForm(),a.on("click",function(e){layui.stope(e)}),e.done&&e.done(a,t)};switch(layui.stope(e),S.trigger("table.tool.panel.remove"),g.close(s.tipsIndex),t){case"LAYTABLE_COLS":l({list:(a=[],s.eachCols(function(e,t){t.field&&"normal"==t.type&&a.push('
            • ')}),a.join("")),done:function(){y.on("checkbox(LAY_TABLE_TOOL_COLS)",function(e){var e=m(e.elem),i=this.checked,l=e.data("key"),n=e.data("parentkey");layui.each(r.cols,function(a,e){layui.each(e,function(e,t){a+"-"+e===l&&(e=t.hide,t.hide=!i,s.elem.find('*[data-key="'+r.index+"-"+l+'"]')[i?"removeClass":"addClass"](w),e!=t.hide&&s.setParentCol(!i,n),s.resize())})})})}});break;case"LAYTABLE_EXPORT":p.ie?g.tips("\u5bfc\u51fa\u529f\u80fd\u4e0d\u652f\u6301 IE\uff0c\u8bf7\u7528 Chrome \u7b49\u9ad8\u7ea7\u6d4f\u89c8\u5668\u5bfc\u51fa",this,{tips:3}):l({list:['
            • \u5bfc\u51fa csv \u683c\u5f0f\u6587\u4ef6
            • ','
            • \u5bfc\u51fa xls \u683c\u5f0f\u6587\u4ef6
            • '].join(""),done:function(e,t){t.on("click",function(){var e=m(this).data("type");b.exportFile.call(s,r.id,null,e)})}});break;case"LAYTABLE_PRINT":var n=window.open("about:blank","_blank"),o=[""].join(""),d=m(s.layHeader.html());d.append(s.layMain.find("table").html()),d.append(s.layTotal.find("table").html()),d.find("th.layui-table-patch").remove(),d.find("thead>tr>th."+A).filter(function(e,t){return!m(t).children(".laytable-cell-group").length}).remove(),d.find("tbody>tr>td."+A).remove(),n.document.write(o+d.prop("outerHTML")),n.document.close(),n.print(),n.close()}layui.event.call(this,C,"toolbar("+c+")",m.extend({event:t,config:r},{}))}),s.layPagebar.on("click","*[lay-event]",function(e){var t=m(this).attr("lay-event");layui.event.call(this,C,"pagebar("+c+")",m.extend({event:t,config:r},{}))}),e.on("mousemove",function(e){var t=m(this),a=t.offset().left,e=e.clientX-a;t.data("unresize")||x.eventMoveElem||(l.allowResize=t.width()-e<=10,i.css("cursor",l.allowResize?"col-resize":""))}).on("mouseleave",function(){m(this);x.eventMoveElem||i.css("cursor","")}).on("mousedown",function(e){var t,a=m(this);l.allowResize&&(t=a.data("key"),e.preventDefault(),l.offset=[e.clientX,e.clientY],s.getCssRule(t,function(e){var t=e.style.width||a.outerWidth();l.rule=e,l.ruleWidth=parseFloat(t),l.minWidth=a.data("minwidth")||r.cellMinWidth}),a.data(j,l),x.eventMoveElem=a)}),x.docEvent||S.on("mousemove",function(e){var t;x.eventMoveElem&&(t=x.eventMoveElem.data(j)||{},x.eventMoveElem.data("resizing",1),e.preventDefault(),t.rule&&((e=t.ruleWidth+e.clientX-t.offset[0])':''))[0].value=t.data("content")||i.text(),t.find("."+D)[0]||t.append(a),a.focus(),layui.stope(e))}).on("mouseenter","td",function(){a.call(this)}).on("mouseleave","td",function(){a.call(this,"hide")}),"layui-table-grid-down"),a=function(e){var t=m(this),a=t.children(u);t.data("off")||(e?t.find(".layui-table-grid-down").remove():!(a.prop("scrollWidth")>a.outerWidth()||0
              '))},d=(s.layBody.on("click","."+o,function(e){var t=m(this).parent().children(u);s.tipsIndex=g.tips(['
              ',t.html(),"
              ",''].join(""),t[0],{tips:[3,""],time:-1,anim:-1,maxWidth:p.ios||p.android?300:s.elem.width()/2,isOutAnim:!1,skin:"layui-table-tips",success:function(e,t){e.find(".layui-table-tips-c").on("click",function(){g.close(t)})}}),layui.stope(e)}),function(e){var t=m(this),a=t.parents("tr").eq(0).data("index");layui.event.call(this,C,(e||"tool")+"("+c+")",n.call(this,{event:t.attr("lay-event")})),s.setThisRowChecked(a)});s.layBody.on("click","*[lay-event]",function(){return d.call(this),!1}).on("dblclick","*[lay-event]",function(){return d.call(this,"toolDouble"),!1}),s.layMain.on("scroll",function(){var e=m(this),t=e.scrollLeft(),e=e.scrollTop();s.layHeader.scrollLeft(t),s.layTotal.scrollLeft(t),s.layFixed.find(T).scrollTop(e),g.close(s.tipsIndex)}),_.on("resize",function(){s.resize()})},S.on("click",function(){S.trigger("table.remove.tool.panel")}),S.on("table.remove.tool.panel",function(){m(".layui-table-tool-panel").remove()}),b.init=function(a,i){i=i||{};var e=m(a?'table[lay-filter="'+a+'"]':".layui-table[lay-data]"),d="Table element property lay-data configuration item has a syntax error: ";return e.each(function(){var e=m(this),t=e.attr("lay-data");try{t=new Function("return "+t)()}catch(l){f.error(d+t,"error")}var n=[],o=m.extend({elem:this,cols:[],data:[],skin:e.attr("lay-skin"),size:e.attr("lay-size"),even:"string"==typeof e.attr("lay-even")},b.config,i,t);a&&e.hide(),e.find("thead>tr").each(function(i){o.cols[i]=[],m(this).children().each(function(e){var t=m(this),a=t.attr("lay-data");try{a=new Function("return "+a)()}catch(l){return f.error(d+a)}t=m.extend({title:t.text(),colspan:t.attr("colspan")||1,rowspan:t.attr("rowspan")||1},a);t.colspan<2&&n.push(t),o.cols[i].push(t)})}),e.find("tbody>tr").each(function(e){var a=m(this),l={};a.children("td").each(function(e,t){var a=m(this),i=a.data("field");if(i)return l[i]=a.html()}),layui.each(n,function(e,t){e=a.children("td").eq(e);l[t.field]=e.html()}),o.data[e]=l}),b.render(o)}),this},x.that={},x.config={},function(a,i,e,l){var n,o;l.colGroup&&(n=0,a++,l.CHILD_COLS=[],o=e+(parseInt(l.rowspan)||1),layui.each(i[o],function(e,t){t.parentKey?t.parentKey===l.key&&(t.PARENT_COL_INDEX=a,l.CHILD_COLS.push(t),F(a,i,o,t)):t.PARENT_COL_INDEX||1<=n&&n==(l.colspan||1)||(t.PARENT_COL_INDEX=a,l.CHILD_COLS.push(t),n+=t.hide?0:parseInt(1td'),a!==undefined&&null!==a||(a=""),0==l&&d.push(t.title||""),o.push('"'+k.call(c,{item3:t,content:a,tplData:n,text:"text",obj:c.commonMember.call(i.eq(0),{td:function(e){return i.filter('[data-field="'+e+'"]')}})})+'"')))}),i.push(o.join(","))}),c&&layui.each(c.dataTotal,function(e,t){r[e]||l.push(t)}),d.join(",")+"\r\n"+i.join("\r\n")+"\r\n"+l.join(","))),u.download=(a.title||o.title||"table_"+(o.index||""))+"."+n,document.body.appendChild(u),u.click(),document.body.removeChild(u)},b.resize=function(e){e?l(e)&&x.that[e].resize():layui.each(x.that,function(){this.resize()})},b.reload=function(e,t,a,i){if(l(e))return e=x.that[e],e.reload(t,a,i),x.call(e)},b.reloadData=function(){var a=m.extend([],arguments),i=(a[3]="reloadData",new RegExp("^("+["data","url","method","contentType","dataType","jsonpCallback","headers","where","page","limit","request","response","parseData","scrollPos"].join("|")+")$"));return layui.each(a[1],function(e,t){i.test(e)||delete a[1][e]}),b.reload.apply(null,a)},b.render=function(e){e=new i(e);return x.call(e)},b.clearCacheKey=function(e){return delete(e=m.extend({},e))[b.config.checkName],delete e[b.config.indexName],delete e[b.config.disabledName],e},m(function(){b.init()}),e(C,b)});layui.define("form",function(e){"use strict";var u=layui.$,i=layui.form,p=layui.layer,n="tree",a={config:{},index:layui[n]?layui[n].index+1e4:0,set:function(e){var i=this;return i.config=u.extend({},i.config,e),i},on:function(e,i){return layui.onevent.call(this,n,e,i)}},t=function(){var i=this,e=i.config,n=e.id||i.index;return t.that[n]=i,{config:t.config[n]=e,reload:function(e){i.reload.call(i,e)},getChecked:function(){return i.getChecked.call(i)},setChecked:function(e){return i.setChecked.call(i,e)}}},y="layui-hide",d="layui-disabled",f="layui-tree-set",C="layui-tree-iconClick",k="layui-icon-addition",v="layui-icon-subtraction",m="layui-tree-entry",x="layui-tree-main",b="layui-tree-txt",g="layui-tree-pack",w="layui-tree-spread",N="layui-tree-setLineShort",T="layui-tree-showLine",L="layui-tree-lineExtend",l=function(e){var i=this;i.index=++a.index,i.config=u.extend({},i.config,a.config,e),i.render()};l.prototype.config={data:[],showCheckbox:!1,showLine:!0,accordion:!1,onlyIconControl:!1,isJump:!1,edit:!1,text:{defaultNodeName:"\u672a\u547d\u540d",none:"\u65e0\u6570\u636e"}},l.prototype.reload=function(e){var n=this;layui.each(e,function(e,i){"array"===layui.type(i)&&delete n.config[e]}),n.config=u.extend(!0,{},n.config,e),n.render()},l.prototype.render=function(){var e=this,i=e.config,n=(e.checkids=[],u('
              ')),a=(e.tree(n),i.elem=u(i.elem));if(a[0]){if(e.key=i.id||e.index,e.elem=n,e.elemNone=u('
              '+i.text.none+"
              "),a.html(e.elem),0==e.elem.find(".layui-tree-set").length)return e.elem.append(e.elemNone);i.showCheckbox&&e.renderForm("checkbox"),e.elem.find(".layui-tree-set").each(function(){var e=u(this);e.parent(".layui-tree-pack")[0]||e.addClass("layui-tree-setHide"),!e.next()[0]&&e.parents(".layui-tree-pack").eq(1).hasClass("layui-tree-lineExtend")&&e.addClass(N),e.next()[0]||e.parents(".layui-tree-set").eq(0).next()[0]||e.addClass(N)}),e.events()}},l.prototype.renderForm=function(e){i.render(e,"LAY-tree-"+this.index)},l.prototype.tree=function(l,e){var r=this,c=r.config,e=e||c.data;layui.each(e,function(e,i){var n=i.children&&0"),t=u(['
              ','
              ','
              ',c.showLine?n?'':'':'',c.showCheckbox?'':"",c.isJump&&i.href?''+(i.title||i.label||c.text.defaultNodeName)+"":''+(i.title||i.label||c.text.defaultNodeName)+"","
              ",function(){if(!c.edit)return"";var n={add:'',update:'',del:''},a=['
              '];return!0===c.edit&&(c.edit=["update","del"]),"object"==typeof c.edit?(layui.each(c.edit,function(e,i){a.push(n[i]||"")}),a.join("")+"
              "):void 0}(),"
              "].join(""));n&&(t.append(a),r.tree(a,i.children)),l.append(t),t.prev("."+f)[0]&&t.prev().children(".layui-tree-pack").addClass("layui-tree-showLine"),n||t.parent(".layui-tree-pack").addClass("layui-tree-lineExtend"),r.spread(t,i),c.showCheckbox&&(i.checked&&r.checkids.push(i.id),r.checkClick(t,i)),c.edit&&r.operate(t,i)})},l.prototype.spread=function(a,e){var t=this.config,i=a.children("."+m),n=i.children("."+x),l=i.find("."+C),i=i.find("."+b),r=t.onlyIconControl?l:n,c="";r.on("click",function(e){var i=a.children("."+g),n=(r.children(".layui-icon")[0]?r:r.find(".layui-tree-icon")).children(".layui-icon");i[0]?a.hasClass(w)?(a.removeClass(w),i.slideUp(200),n.removeClass(v).addClass(k)):(a.addClass(w),i.slideDown(200),n.addClass(v).removeClass(k),t.accordion&&((i=a.siblings("."+f)).removeClass(w),i.children("."+g).slideUp(200),i.find(".layui-tree-icon").children(".layui-icon").removeClass(v).addClass(k))):c="normal"}),i.on("click",function(){u(this).hasClass(d)||(c=a.hasClass(w)?t.onlyIconControl?"open":"close":t.onlyIconControl?"close":"open",t.click&&t.click({elem:a,state:c,data:e}))})},l.prototype.setCheckbox=function(e,i,n){this.config;var t,l=n.prop("checked");n.prop("disabled")||("object"!=typeof i.children&&!e.find("."+g)[0]||e.find("."+g).find('input[same="layuiTreeCheck"]').each(function(){this.disabled||(this.checked=l)}),(t=function(e){var i,n,a;e.parents("."+f)[0]&&(n=(e=e.parent("."+g)).parent(),a=e.prev().find('input[same="layuiTreeCheck"]'),l?a.prop("checked",l):(e.find('input[same="layuiTreeCheck"]').each(function(){this.checked&&(i=!0)}),i||a.prop("checked",!1)),t(n))})(e),this.renderForm("checkbox"))},l.prototype.checkClick=function(n,a){var t=this,l=t.config;n.children("."+m).children("."+x).on("click",'input[same="layuiTreeCheck"]+',function(e){layui.stope(e);var e=u(this).prev(),i=e.prop("checked");e.prop("disabled")||(t.setCheckbox(n,a,e),l.oncheck&&l.oncheck({elem:n,checked:i,data:a}))})},l.prototype.operate=function(c,d){var s=this,o=s.config,e=c.children("."+m),h=e.children("."+x);e.children(".layui-tree-btnGroup").on("click",".layui-icon",function(e){layui.stope(e);var i,e=u(this).data("type"),a=c.children("."+g),t={data:d,type:e,elem:c};if("add"==e){a[0]||(o.showLine?(h.find("."+C).addClass("layui-tree-icon"),h.find("."+C).children(".layui-icon").addClass(k).removeClass("layui-icon-file")):h.find(".layui-tree-iconArrow").removeClass(y),c.append('
              '));var n,l=o.operate&&o.operate(t),r={};if(r.title=o.text.defaultNodeName,r.id=l,s.tree(c.children("."+g),[r]),o.showLine&&(a[0]?(a.hasClass(L)||a.addClass(L),c.find("."+g).each(function(){u(this).children("."+f).last().addClass(N)}),(a.children("."+f).last().prev().hasClass(N)?a.children("."+f).last().prev():a.children("."+f).last()).removeClass(N),!c.parent("."+g)[0]&&c.next()[0]&&a.children("."+f).last().removeClass(N)):(l=c.siblings("."+f),n=1,r=c.parent("."+g),layui.each(l,function(e,i){u(i).children("."+g)[0]||(n=0)}),1==n?(l.children("."+g).addClass(T),l.children("."+g).children("."+f).removeClass(N),c.children("."+g).addClass(T),r.removeClass(L),r.children("."+f).last().children("."+g).children("."+f).last().addClass(N)):c.children("."+g).children("."+f).addClass(N))),!o.showCheckbox)return;h.find('input[same="layuiTreeCheck"]')[0].checked&&(c.children("."+g).children("."+f).last().find('input[same="layuiTreeCheck"]')[0].checked=!0),s.renderForm("checkbox")}else"update"==e?(l=h.children("."+b).html(),h.children("."+b).html(""),h.append(''),h.children(".layui-tree-editInput").val(l).focus(),i=function(e){var i=(i=e.val().trim())||o.text.defaultNodeName;e.remove(),h.children("."+b).html(i),t.data.title=i,o.operate&&o.operate(t)},h.children(".layui-tree-editInput").blur(function(){i(u(this))}),h.children(".layui-tree-editInput").on("keydown",function(e){13===e.keyCode&&(e.preventDefault(),i(u(this)))})):p.confirm('\u786e\u8ba4\u5220\u9664\u8be5\u8282\u70b9 "'+(d.title||"")+'" \u5417\uff1f',function(e){if(o.operate&&o.operate(t),t.status="remove",p.close(e),!c.prev("."+f)[0]&&!c.next("."+f)[0]&&!c.parent("."+g)[0])return c.remove(),void s.elem.append(s.elemNone);var l,n,i;c.siblings("."+f).children("."+m)[0]?(o.showCheckbox&&(l=function(e){var i,n,a,t;e.parents("."+f)[0]&&(i=e.siblings("."+f).children("."+m),n=(e=e.parent("."+g).prev()).find('input[same="layuiTreeCheck"]')[0],a=1,(t=0)==n.checked&&(i.each(function(e,i){i=u(i).find('input[same="layuiTreeCheck"]')[0];0!=i.checked||i.disabled||(a=0),i.disabled||(t=1)}),1==a&&1==t&&(n.checked=!0,s.renderForm("checkbox"),l(e.parent("."+f)))))})(c),o.showLine&&(e=c.siblings("."+f),n=1,i=c.parent("."+g),layui.each(e,function(e,i){u(i).children("."+g)[0]||(n=0)}),1==n?(a[0]||(i.removeClass(L),e.children("."+g).addClass(T),e.children("."+g).children("."+f).removeClass(N)),(c.next()[0]?i.children("."+f).last():c.prev()).children("."+g).children("."+f).last().addClass(N),c.next()[0]||c.parents("."+f)[1]||c.parents("."+f).eq(0).next()[0]||c.prev("."+f).addClass(N)):!c.next()[0]&&c.hasClass(N)&&c.prev().addClass(N))):(e=c.parent("."+g).prev(),o.showLine?(e.find("."+C).removeClass("layui-tree-icon"),e.find("."+C).children(".layui-icon").removeClass(v).addClass("layui-icon-file"),(i=e.parents("."+g).eq(0)).addClass(L),i.children("."+f).each(function(){u(this).children("."+g).children("."+f).last().addClass(N)})):e.find(".layui-tree-iconArrow").addClass(y),c.parents("."+f).eq(0).removeClass(w),c.parent("."+g).remove()),c.remove()})})},l.prototype.events=function(){var i=this,t=i.config;i.elem.find(".layui-tree-checkedFirst");i.setChecked(i.checkids),i.elem.find(".layui-tree-search").on("keyup",function(){var e=u(this),n=e.val(),e=e.nextAll(),a=[];e.find("."+b).each(function(){var i,e=u(this).parents("."+m);-1!=u(this).html().indexOf(n)&&(a.push(u(this).parent()),(i=function(e){e.addClass("layui-tree-searchShow"),e.parent("."+g)[0]&&i(e.parent("."+g).parent("."+f))})(e.parent("."+f)))}),e.find("."+m).each(function(){var e=u(this).parent("."+f);e.hasClass("layui-tree-searchShow")||e.addClass(y)}),0==e.find(".layui-tree-searchShow").length&&i.elem.append(i.elemNone),t.onsearch&&t.onsearch({elem:a})}),i.elem.find(".layui-tree-search").on("keydown",function(){u(this).nextAll().find("."+m).each(function(){u(this).parent("."+f).removeClass("layui-tree-searchShow "+y)}),u(".layui-tree-emptyText")[0]&&u(".layui-tree-emptyText").remove()})},l.prototype.getChecked=function(){var e=this.config,i=[],n=[],t=(this.elem.find(".layui-form-checked").each(function(){i.push(u(this).prev()[0].value)}),function(e,a){layui.each(e,function(e,n){layui.each(i,function(e,i){if(n.id==i)return delete(i=u.extend({},n)).children,a.push(i),n.children&&(i.children=[],t(n.children,i.children)),!0})})});return t(u.extend({},e.data),n),n},l.prototype.setChecked=function(l){this.config;this.elem.find("."+f).each(function(e,i){var n=u(this).data("id"),a=u(i).children("."+m).find('input[same="layuiTreeCheck"]'),t=a.next();if("number"==typeof l){if(n==l)return a[0].checked||t.click(),!1}else"object"==typeof l&&layui.each(l,function(e,i){if(i==n&&!a[0].checked)return t.click(),!0})})},t.that={},t.config={},a.reload=function(e,i){e=t.that[e];return e.reload(i),t.call(e)},a.getChecked=function(e){return t.that[e].getChecked()},a.setChecked=function(e,i){return t.that[e].setChecked(i)},a.render=function(e){e=new l(e);return t.call(e)},e(n,a)});layui.define(["laytpl","form"],function(e){"use strict";var d=layui.$,n=layui.laytpl,t=layui.form,a="transfer",i={config:{},index:layui[a]?layui[a].index+1e4:0,set:function(e){var t=this;return t.config=d.extend({},t.config,e),t},on:function(e,t){return layui.onevent.call(this,a,e,t)}},l=function(){var t=this,e=t.config,a=e.id||t.index;return l.that[a]=t,{config:l.config[a]=e,reload:function(e){t.reload.call(t,e)},getData:function(){return t.getData.call(t)}}},s="layui-hide",h="layui-btn-disabled",r="layui-none",c="layui-transfer-box",u="layui-transfer-header",o="layui-transfer-search",f="layui-transfer-data",y=function(e){return['
              ','
              ','","
              ","{{# if(d.data.showSearch){ }}",'","{{# } }}",'
                ',"
                "].join("")},p=['
                ',y({index:0,checkAllName:"layTransferLeftCheckAll"}),'
                ','",'","
                ",y({index:1,checkAllName:"layTransferRightCheckAll"}),"
                "].join(""),v=function(e){var t=this;t.index=++i.index,t.config=d.extend({},t.config,i.config,e),t.render()};v.prototype.config={title:["\u5217\u8868\u4e00","\u5217\u8868\u4e8c"],width:200,height:360,data:[],value:[],showSearch:!1,id:"",text:{none:"\u65e0\u6570\u636e",searchNone:"\u65e0\u5339\u914d\u6570\u636e"}},v.prototype.reload=function(e){var t=this;t.config=d.extend({},t.config,e),t.render()},v.prototype.render=function(){var e=this,t=e.config,a=e.elem=d(n(p).render({data:t,index:e.index})),i=t.elem=d(t.elem);i[0]&&(t.data=t.data||[],t.value=t.value||[],e.key=t.id||e.index,i.html(e.elem),e.layBox=e.elem.find("."+c),e.layHeader=e.elem.find("."+u),e.laySearch=e.elem.find("."+o),e.layData=a.find("."+f),e.layBtn=a.find(".layui-transfer-active .layui-btn"),e.layBox.css({width:t.width,height:t.height}),e.layData.css({height:(i=t.height-e.layHeader.outerHeight(),t.showSearch&&(i-=e.laySearch.outerHeight()),i-2)}),e.renderData(),e.events())},v.prototype.renderData=function(){var e=this,i=(e.config,[{checkName:"layTransferLeftCheck",views:[]},{checkName:"layTransferRightCheck",views:[]}]);e.parseData(function(e){var t=e.selected?1:0,a=["
              • ",'',"
              • "].join("");i[t].views.push(a),delete e.selected}),e.layData.eq(0).html(i[0].views.join("")),e.layData.eq(1).html(i[1].views.join("")),e.renderCheckBtn()},v.prototype.renderForm=function(e){t.render(e,"LAY-transfer-"+this.index)},v.prototype.renderCheckBtn=function(r){var c=this,o=c.config;r=r||{},c.layBox.each(function(e){var t=d(this),a=t.find("."+f),t=t.find("."+u).find('input[type="checkbox"]'),i=a.find('input[type="checkbox"]'),n=0,l=!1;i.each(function(){var e=d(this).data("hide");(this.checked||this.disabled||e)&&n++,this.checked&&!e&&(l=!0)}),t.prop("checked",l&&n===i.length),c.layBtn.eq(e)[l?"removeClass":"addClass"](h),r.stopNone||(i=a.children("li:not(."+s+")").length,c.noneView(a,i?"":o.text.none))}),c.renderForm("checkbox")},v.prototype.noneView=function(e,t){var a=d('

                '+(t||"")+"

                ");e.find("."+r)[0]&&e.find("."+r).remove(),t.replace(/\s/g,"")&&e.append(a)},v.prototype.setValue=function(){var e=this.config,t=[];return this.layBox.eq(1).find("."+f+' input[type="checkbox"]').each(function(){d(this).data("hide")||t.push(this.value)}),e.value=t,this},v.prototype.parseData=function(t){var i=this.config,n=[];return layui.each(i.data,function(e,a){a=("function"==typeof i.parseData?i.parseData(a):a)||a,n.push(a=d.extend({},a)),layui.each(i.value,function(e,t){t==a.value&&(a.selected=!0)}),t&&t(a)}),i.data=n,this},v.prototype.getData=function(e){var t=this.config,i=[];return this.setValue(),layui.each(e||t.value,function(e,a){layui.each(t.data,function(e,t){delete t.selected,a==t.value&&i.push(t)})}),i},v.prototype.transfer=function(e,t){var a,i=this,n=i.config,l=i.layBox.eq(e),r=[],t=(t?((a=(t=t).find('input[type="checkbox"]'))[0].checked=!1,l.siblings("."+c).find("."+f).append(t.clone()),t.remove(),r.push(a[0].value),i.setValue()):l.each(function(e){d(this).find("."+f).children("li").each(function(){var e=d(this),t=e.find('input[type="checkbox"]'),a=t.data("hide");t[0].checked&&!a&&(t[0].checked=!1,l.siblings("."+c).find("."+f).append(e.clone()),e.remove(),r.push(t[0].value)),i.setValue()})}),i.renderCheckBtn(),l.siblings("."+c).find("."+o+" input"));""!==t.val()&&t.trigger("keyup"),n.onchange&&n.onchange(i.getData(r),e)},v.prototype.events=function(){var n=this,a=n.config;n.elem.on("click",'input[lay-filter="layTransferCheckbox"]+',function(){var e=d(this).prev(),t=e[0].checked,a=e.parents("."+c).eq(0).find("."+f);e[0].disabled||("all"===e.attr("lay-type")&&a.find('input[type="checkbox"]').each(function(){this.disabled||(this.checked=t)}),setTimeout(function(){n.renderCheckBtn({stopNone:!0})},0))}),n.elem.on("dblclick","."+f+">li",function(e){var t=d(this),a=t.children('input[type="checkbox"]'),i=t.parent().parent();a[0].disabled||n.transfer(i.data("index"),t)}),n.layBtn.on("click",function(){var e=d(this),t=e.data("index");e.hasClass(h)||n.transfer(t)}),n.laySearch.find("input").on("keyup",function(){var i=this.value,e=d(this).parents("."+o).eq(0).siblings("."+f),t=e.children("li"),t=(t.each(function(){var e=d(this),t=e.find('input[type="checkbox"]'),a=-1!==t[0].title.indexOf(i);e[a?"removeClass":"addClass"](s),t.data("hide",!a)}),n.renderCheckBtn(),t.length===e.children("li."+s).length);n.noneView(e,t?a.text.searchNone:"")})},l.that={},l.config={},i.reload=function(e,t){e=l.that[e];return e.reload(t),l.call(e)},i.getData=function(e){return l.that[e].getData()},i.render=function(e){e=new v(e);return l.call(e)},e(a,i)});layui.define("jquery",function(e){"use strict";var a=layui.$,n=(layui.hint(),layui.device(),{config:{},set:function(e){var i=this;return i.config=a.extend({},i.config,e),i},on:function(e,i){return layui.onevent.call(this,d,e,i)}}),d="carousel",r="layui-this",s="layui-carousel-left",u="layui-carousel-right",c="layui-carousel-prev",m="layui-carousel-next",t="layui-carousel-arrow",l="layui-carousel-ind",i=function(e){var i=this;i.config=a.extend({},i.config,n.config,e),i.render()};i.prototype.config={width:"600px",height:"280px",full:!1,arrow:"hover",indicator:"inside",autoplay:!0,interval:3e3,anim:"",trigger:"click",index:0},i.prototype.render=function(){var e=this,i=e.config;i.elem=a(i.elem),i.elem[0]&&(e.elemItem=i.elem.find(">*[carousel-item]>*"),i.index<0&&(i.index=0),i.index>=e.elemItem.length&&(i.index=e.elemItem.length-1),i.interval<800&&(i.interval=800),i.full?i.elem.css({position:"fixed",width:"100%",height:"100%",zIndex:9999}):i.elem.css({width:i.width,height:i.height}),i.elem.attr("lay-anim",i.anim),e.elemItem.eq(i.index).addClass(r),e.elemItem.length<=1||(e.indicator(),e.arrow(),e.autoplay(),e.events()))},i.prototype.reload=function(e){var i=this;clearInterval(i.timer),i.config=a.extend({},i.config,e),i.render()},i.prototype.prevIndex=function(){var e=this.config.index-1;return e=e<0?this.elemItem.length-1:e},i.prototype.nextIndex=function(){var e=this.config.index+1;return e=e>=this.elemItem.length?0:e},i.prototype.addIndex=function(e){var i=this.config;i.index=i.index+(e=e||1),i.index>=this.elemItem.length&&(i.index=0)},i.prototype.subIndex=function(e){var i=this.config;i.index=i.index-(e=e||1),i.index<0&&(i.index=this.elemItem.length-1)},i.prototype.autoplay=function(){var e=this,i=e.config;i.autoplay&&(clearInterval(e.timer),e.timer=setInterval(function(){e.slide()},i.interval))},i.prototype.arrow=function(){var i=this,e=i.config,n=a(['",'"].join(""));e.elem.attr("lay-arrow",e.arrow),e.elem.find("."+t)[0]&&e.elem.find("."+t).remove(),e.elem.append(n),n.on("click",function(){var e=a(this).attr("lay-type");i.slide(e)})},i.prototype.indicator=function(){var i,n=this,t=n.config,e=n.elemInd=a(['
                  ',(i=[],layui.each(n.elemItem,function(e){i.push("")}),i.join("")),"
                "].join(""));t.elem.attr("lay-indicator",t.indicator),t.elem.find("."+l)[0]&&t.elem.find("."+l).remove(),t.elem.append(e),"updown"===t.anim&&e.css("margin-top",-e.height()/2),e.find("li").on("hover"===t.trigger?"mouseover":t.trigger,function(){var e=a(this).index();e>t.index?n.slide("add",e-t.index):ea.length&&(a.value=a.length),parseInt(a.value)===a.value||a.half||(a.value=Math.ceil(a.value)-a.value<.5?Math.ceil(a.value):Math.floor(a.value)),'
                  "),n=1;n<=a.length;n++){var t='
                • ";a.half&&parseInt(a.value)!==a.value&&n==Math.ceil(a.value)?i=i+'
                • ":i+=t}i+="
                "+(a.text?''+a.value+"\u661f":"")+"";var o=a.elem,s=o.next(".layui-rate");s[0]&&s.remove(),e.elemTemp=u(i),a.span=e.elemTemp.next("span"),a.setText&&a.setText(a.value),o.html(e.elemTemp),o.addClass("layui-inline"),a.readonly||e.action()},a.prototype.setvalue=function(e){this.config.value=e,this.render()},a.prototype.action=function(){var i=this.config,n=this.elemTemp,t=n.find("i").width();n.children("li").each(function(e){var a=e+1,l=u(this);l.on("click",function(e){i.value=a,i.half&&e.pageX-u(this).offset().left<=t/2&&(i.value=i.value-.5),i.text&&n.next("span").text(i.value+"\u661f"),i.choose&&i.choose(i.value),i.setText&&i.setText(i.value)}),l.on("mousemove",function(e){n.find("i").each(function(){u(this).addClass(c).removeClass(s)}),n.find("i:lt("+a+")").each(function(){u(this).addClass(r).removeClass(f)}),i.half&&e.pageX-u(this).offset().left<=t/2&&l.children("i").addClass(o).removeClass(r)}),l.on("mouseleave",function(){n.find("i").each(function(){u(this).addClass(c).removeClass(s)}),n.find("i:lt("+Math.floor(i.value)+")").each(function(){u(this).addClass(r).removeClass(f)}),i.half&&parseInt(i.value)!==i.value&&n.children("li:eq("+Math.floor(i.value)+")").children("i").addClass(o).removeClass("layui-icon-rate-solid layui-icon-rate")})})},a.prototype.events=function(){this.config},l.render=function(e){e=new a(e);return function(){var a=this;return{setvalue:function(e){a.setvalue.call(a,e)},config:a.config}}.call(e)},e(i,l)});layui.define("jquery",function(l){"use strict";var g=layui.$,e=function(l){};e.prototype.load=function(l){var t,i,n,e,r,o,a,c,m,s,u,f,y,d=this,p=0,h=g((l=l||{}).elem);if(h[0])return e=g(l.scrollElem||document),r=l.mb||50,o=!("isAuto"in l)||l.isAuto,a=l.end||"\u6ca1\u6709\u66f4\u591a\u4e86",c=l.scrollElem&&l.scrollElem!==document,m="\u52a0\u8f7d\u66f4\u591a",s=g('"),h.find(".layui-flow-more")[0]||h.append(s),u=function(l,e){l=g(l),s.before(l),(e=0==e||null)?s.html(a):s.find("a").html(m),i=e,t=null,y&&y()},f=function(){t=!0,s.find("a").html(''),"function"==typeof l.done&&l.done(++p,u)},f(),s.find("a").on("click",function(){g(this);i||t||f()}),l.isLazyimg&&(y=d.lazyimg({elem:l.elem+" img",scrollElem:l.scrollElem})),o&&e.on("scroll",function(){var e=g(this),o=e.scrollTop();n&&clearTimeout(n),!i&&h.width()&&(n=setTimeout(function(){var l=(c?e:g(window)).height();(c?e.prop("scrollHeight"):document.documentElement.scrollHeight)-o-l<=r&&(t||f())},100))}),d},e.prototype.lazyimg=function(l){var e,c=this,m=0,s=g((l=l||{}).scrollElem||document),u=l.elem||"img",f=l.scrollElem&&l.scrollElem!==document,y=function(e,l){var o,t=s.scrollTop(),l=t+l,i=f?e.offset().top-s.offset().top+t:e.offset().top;t<=i&&i<=l&&e.attr("lay-src")&&(o=e.attr("lay-src"),layui.img(o,function(){var l=c.lazyimg.elem.eq(m);e.attr("src",o).removeAttr("lay-src"),l[0]&&n(l),m++},function(){c.lazyimg.elem.eq(m);e.removeAttr("lay-src")}))},n=function(l,e){var o=(f?e||s:g(window)).height(),t=s.scrollTop(),i=t+o;if(c.lazyimg.elem=g(u),l)y(l,o);else for(var n=0;n','
                '+e+"
                ",'
                ','',"
                ",""].join(""));return d.ie&&d.ie<8?s.removeClass("layui-hide").addClass("layui-show"):(c[0]&&c.remove(),f.call(a,o,s[0],n),s.addClass("layui-hide").after(o),a.index)},e.prototype.getContent=function(t){t=n(t);if(t[0])return l(t[0].document.body.innerHTML)},e.prototype.getText=function(t){t=n(t);if(t[0])return u(t[0].document.body).text()},e.prototype.setContent=function(t,e,i){var l=n(t);l[0]&&(i?u(l[0].document.body).append(e):u(l[0].document.body).html(e),layedit.sync(t))},e.prototype.sync=function(t){t=n(t);t[0]&&u("#"+t[1].attr("textarea")).val(l(t[0].document.body.innerHTML))},e.prototype.getSelection=function(t){var t=n(t);if(t[0])return t=p(t[0].document),document.selection?t.text:t.toString()},function(a,n,o){var s=this,r=a.find("iframe");r.css({height:o.height}).on("load",function(){var t=r.contents(),e=r.prop("contentWindow"),i=t.find("head"),l=u([""].join("")),t=t.find("body");i.append(l),t.attr("contenteditable","true").css({"min-height":o.height}).html(n.value||""),m.apply(s,[e,r,n,o]),g.call(s,e,a,o)})}),n=function(t){t=u("#LAY_layedit_"+t);return[t.prop("contentWindow"),t]},l=function(t){return t=8==d.ie?t.replace(/<.+>/g,function(t){return t.toLowerCase()}):t},m=function(e,t,i,l){var a=e.document,n=u(a.body);n.on("keydown",function(t){if(13===t.keyCode){var e=p(a);if("pre"===h(e).parentNode.tagName.toLowerCase())return t.shiftKey?void 0:(c.msg("\u8bf7\u6682\u65f6\u7528shift+enter"),!1);a.execCommand("formatBlock",!1,"

                ")}}),u(i).parents("form").on("submit",function(){var t=n.html();8==d.ie&&(t=t.replace(/<.+>/g,function(t){return t.toLowerCase()})),i.value=t}),n.on("paste",function(t){a.execCommand("formatBlock",!1,"

                "),setTimeout(function(){o.call(e,n),i.value=n.html()},100)})},o=function(t){this.document;t.find("*[style]").each(function(){var t=this.style.textAlign;this.removeAttribute("style"),u(this).css({"text-align":t||""})}),t.find("table").addClass("layui-table"),t.find("script,link").remove()},p=function(t){return t.selection?t.selection.createRange():t.getSelection().getRangeAt(0)},h=function(t){return t.endContainer||t.parentElement().childNodes[0]},v=function(t,e,i){var l,a,n=this.document,o=document.createElement(t);for(l in e)o.setAttribute(l,e[l]);o.removeAttribute("text"),n.selection?(a=i.text||e.text,"a"===t&&!a||(a&&(o.innerHTML=a),i.pasteHTML(u(o).prop("outerHTML")),i.select())):(a=i.toString()||e.text,"a"===t&&!a||(a&&(o.innerHTML=a),i.deleteContents(),i.insertNode(o)))},b=function(e,t){var i=this.document,l="layedit-tool-active",i=h(p(i)),a=function(t){return e.find(".layedit-tool-"+t)};t&&t[t.hasClass(l)?"removeClass":"addClass"](l),e.find(">i").removeClass(l),a("unlink").addClass(y),u(i).parents().each(function(){var t=this.tagName.toLowerCase(),e=this.style.textAlign;"b"!==t&&"strong"!==t||a("b").addClass(l),"i"!==t&&"em"!==t||a("i").addClass(l),"u"===t&&a("u").addClass(l),"strike"===t&&a("d").addClass(l),"p"===t&&a("center"===e?"center":"right"===e?"right":"left").addClass(l),"a"===t&&(a("link").addClass(l),a("unlink").removeClass(y))})},g=function(a,t,e){var n=a.document,o=u(n.body),s={link:function(i){var t=h(i),l=u(t).parent();x.call(o,{href:l.attr("href"),target:l.attr("target")},function(t){var e=l[0];"A"===e.tagName?e.href=t.url:v.call(a,"a",{target:t.target,href:t.url,text:t.url},i)})},unlink:function(t){n.execCommand("unlink")},code:function(e){k.call(o,function(t){v.call(a,"pre",{text:t.code,"lay-lang":t.lang},e)})},help:function(){c.open({type:2,title:"\u5e2e\u52a9",area:["600px","380px"],shadeClose:!0,shade:.1,skin:"layui-layer-msg",content:["","no"]})}},r=t.find(".layui-layedit-tool"),i=function(){var t,e=u(this),i=e.attr("layedit-event"),l=e.attr("lay-command");e.hasClass(y)||(o.focus(),(t=p(n)).commonAncestorContainer,l?(n.execCommand(l),/justifyLeft|justifyCenter|justifyRight/.test(l)&&n.execCommand("formatBlock",!1,"

                "),setTimeout(function(){o.focus()},10)):s[i]&&s[i].call(this,t),b.call(a,r,e))},l=/image/;r.find(">i").on("mousedown",function(){var t=u(this).attr("layedit-event");l.test(t)||i.call(this)}).on("click",function(){var t=u(this).attr("layedit-event");l.test(t)&&i.call(this)}),o.on("click",function(){b.call(a,r)})},x=function(t,i){var l=this,t=c.open({type:1,id:"LAY_layedit_link",area:"350px",shade:.05,shadeClose:!0,moveType:1,title:"\u8d85\u94fe\u63a5",skin:"layui-layer-msg",content:['

                  ','
                • ','','
                  ','',"
                  ","
                • ",'
                • ','','
                  ','",'","
                  ","
                • ",'
                • ','','',"
                • ","
                "].join(""),success:function(t,e){a.render("radio"),t.find(".layui-btn-primary").on("click",function(){c.close(e),l.focus()}),a.on("submit(layedit-link-yes)",function(t){c.close(x.index),i&&i(t.field)})}});x.index=t},k=function(i){var l=this,t=c.open({type:1,id:"LAY_layedit_code",area:"550px",shade:.05,shadeClose:!0,moveType:1,title:"\u63d2\u5165\u4ee3\u7801",skin:"layui-layer-msg",content:['
                  ','
                • ','','
                  ','","
                  ","
                • ",'
                • ','','
                  ','',"
                  ","
                • ",'
                • ','','',"
                • ","
                "].join(""),success:function(t,e){a.render("select"),t.find(".layui-btn-primary").on("click",function(){c.close(e),l.focus()}),a.on("submit(layedit-code-yes)",function(t){c.close(k.index),i&&i(t.field)})}});k.index=t},C={html:'',strong:'',italic:'',underline:'',del:'',"|":'',left:'',center:'',right:'',link:'',unlink:'',face:'',image:'',code:'',help:''},e=new e;t(i,e)});layui.define(["lay","util"],function(e){"use strict";var d=layui.$,o=layui.util,u="layui-code-title",l={elem:".layui-code",title:"</>",about:"",ln:!0};e("code",function(e){var c=e=d.extend({},l,e);e.elem=d(e.elem),e.elem[0]&&layui.each(e.elem.get().reverse(),function(e,l){var t,a=d(l),i=(i=a.html(),d.trim(i).replace(/^\n|\n$/,"")),l=d.extend({},c,lay.options(l),(t={},layui.each(["title","height","encode","skin","about"],function(e,l){var i=a.attr("lay-"+l);"string"==typeof i&&(t[l]=i)}),t)),s=l.ln?"ol":"ul",s=d("<"+s+' class="layui-code-'+s+'">'),n=d('
                ');a.addClass("layui-code-view layui-box"),l.skin&&("notepad"===l.skin&&(l.skin="dark"),a.addClass("layui-code-"+l.skin)),i=(i=l.encode?o.escape(i):i).replace(/[\r\t\n]+/g,"
              • "),a.html(s.html("
              • "+i+"
              • ")),a.children("."+u)[0]||(n.html(l.title+(l.about?'
                '+l.about+"
                ":"")),a.prepend(n)),0<(i=Math.floor(s.find("li").length/100))&&s.css("margin-left",i+"px"),l.height&&s.css("max-height",l.height)})})}).addcss("modules/code.css?v=3","skincodecss"); \ No newline at end of file