commit 24211533706a672686b84ec006f37c75d45a762b Author: pioneer Date: Fri Apr 7 16:07:06 2023 +0800 open diff --git a/README.md b/README.md new file mode 100644 index 0000000..f1082c7 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# open-JSD-9934 + +JSD-11642 做目录权限控制,通过不同的url过滤掉不同的目录结构。并且不同url单点过来的平台使用不同的主题样式\ +免责说明:该源码为第三方爱好者提供,不保证源码和方案的可靠性,也不提供任何形式的源码教学指导和协助!\ +仅作为开发者学习参考使用!禁止用于任何商业用途!\ +为保护开发者隐私,开发者信息已隐去!若原开发者希望公开自己的信息,可联系【pioneer】处理。 \ No newline at end of file diff --git a/lib/finekit-10.0-20220427.jar b/lib/finekit-10.0-20220427.jar new file mode 100644 index 0000000..6793f18 Binary files /dev/null and b/lib/finekit-10.0-20220427.jar differ diff --git a/plugin.xml b/plugin.xml new file mode 100644 index 0000000..8866d19 --- /dev/null +++ b/plugin.xml @@ -0,0 +1,33 @@ + + + com.fr.plugin.cpic.home + + yes + 1.1.4 + 11.0 + 2021-02-10 + fr.open + com.fr.plugin + 2022-12-21 + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/java/com/fr/plugin/cpic/config/CpicCustomConfig.java b/src/main/java/com/fr/plugin/cpic/config/CpicCustomConfig.java new file mode 100644 index 0000000..09abd2c --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/config/CpicCustomConfig.java @@ -0,0 +1,53 @@ +package com.fr.plugin.cpic.config; + +import com.fr.config.*; +import com.fr.config.holder.Conf; +import com.fr.config.holder.factory.Holders; + +/** + * 插件参数配置 + **/ +@Visualization(category = "cpic-插件设置") +public class CpicCustomConfig extends DefaultConfiguration { + + private static volatile CpicCustomConfig config = null; + + public static CpicCustomConfig getInstance() { + if (config == null) { + config = ConfigContext.getConfigInstance(CpicCustomConfig.class); + } + return config; + } + + // IP白名单 + @Identifier(value = "ipWhiteValue", name = "IP白名单", description = "IP白名单,支持配置多个,用英文分号(;)分隔,示例:192.168.1.1;192.168.2.*;192.168.3.17-192.168.3.38", status = Status.SHOW) + private Conf ipWhiteValue = Holders.simple(""); + + // 报表快照缓存地址 + @Identifier(value = "cachePath", name = "报表快照缓存地址", description = "请输入绝对地址,示例:(windows)D:\\cache; (linux)/tmp/cache", status = Status.SHOW) + private Conf cachePath = Holders.simple(""); + + public String getIpWhiteValue() { + return ipWhiteValue.get(); + } + + public void setIpWhiteValue(String ipWhiteValue) { + this.ipWhiteValue.set(ipWhiteValue); + } + + public String getCachePath() { + return cachePath.get(); + } + + public void setCachePath(String cachePath) { + this.cachePath.set(cachePath); + } + + @Override + public Object clone() throws CloneNotSupportedException { + CpicCustomConfig cloned = (CpicCustomConfig) super.clone(); + cloned.ipWhiteValue = (Conf) ipWhiteValue.clone(); + cloned.cachePath = (Conf) cachePath.clone(); + return cloned; + } +} diff --git a/src/main/java/com/fr/plugin/cpic/config/CpicLifeCycleMonitor.java b/src/main/java/com/fr/plugin/cpic/config/CpicLifeCycleMonitor.java new file mode 100644 index 0000000..ce2f3f7 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/config/CpicLifeCycleMonitor.java @@ -0,0 +1,18 @@ +package com.fr.plugin.cpic.config; + +import com.fr.plugin.context.PluginContext; +import com.fr.plugin.observer.inner.AbstractPluginLifecycleMonitor; + +public class CpicLifeCycleMonitor extends AbstractPluginLifecycleMonitor { + @Override + public void afterRun(PluginContext pluginContext) { + // 初始化自定义配置 + CpicCustomConfig.getInstance(); + } + + @Override + public void beforeStop(PluginContext pluginContext) { + + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/db/CpicDBAccessProvider.java b/src/main/java/com/fr/plugin/cpic/db/CpicDBAccessProvider.java new file mode 100644 index 0000000..f036548 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/db/CpicDBAccessProvider.java @@ -0,0 +1,31 @@ +package com.fr.plugin.cpic.db; + +import com.fr.db.fun.impl.AbstractDBAccessProvider; +import com.fr.plugin.cpic.db.dao.CpicEntryDao; +import com.fr.plugin.cpic.db.dao.CpicHomeDao; +import com.fr.plugin.cpic.db.dao.CpicUserDao; +import com.fr.stable.db.accessor.DBAccessor; +import com.fr.stable.db.dao.DAOProvider; + +public class CpicDBAccessProvider extends AbstractDBAccessProvider { + + private static DBAccessor accessor; + + public static DBAccessor getAccessor() { + return accessor; + } + + @Override + public DAOProvider[] registerDAO() { + return new DAOProvider[]{ + CpicHomeDao.DAO, + CpicEntryDao.DAO, + CpicUserDao.DAO, + }; + } + + @Override + public void onDBAvailable(DBAccessor dbAccessor) { + accessor = dbAccessor; + } +} diff --git a/src/main/java/com/fr/plugin/cpic/db/bean/CpicEntryBean.java b/src/main/java/com/fr/plugin/cpic/db/bean/CpicEntryBean.java new file mode 100644 index 0000000..2735859 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/db/bean/CpicEntryBean.java @@ -0,0 +1,74 @@ +package com.fr.plugin.cpic.db.bean; + +public class CpicEntryBean { + + public CpicEntryBean() { + } + + private String id; + private String homeId; + private String homeName; + private String entryId; + private String entryName; + private String del; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getHomeId() { + return homeId; + } + + public void setHomeId(String homeId) { + this.homeId = homeId; + } + + public String getHomeName() { + return homeName; + } + + public void setHomeName(String homeName) { + this.homeName = homeName; + } + + public String getEntryId() { + return entryId; + } + + public void setEntryId(String entryId) { + this.entryId = entryId; + } + + public String getEntryName() { + return entryName; + } + + public void setEntryName(String entryName) { + this.entryName = entryName; + } + + public String getDel() { + return del; + } + + public void setDel(String del) { + this.del = del; + } + + @Override + public String toString() { + return "CpicEntryBean{" + + "id='" + id + '\'' + + ", homeId='" + homeId + '\'' + + ", homeName='" + homeName + '\'' + + ", entryId='" + entryId + '\'' + + ", entryName='" + entryName + '\'' + + ", del='" + del + '\'' + + '}'; + } +} diff --git a/src/main/java/com/fr/plugin/cpic/db/bean/CpicHomeBean.java b/src/main/java/com/fr/plugin/cpic/db/bean/CpicHomeBean.java new file mode 100644 index 0000000..2a0e9f4 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/db/bean/CpicHomeBean.java @@ -0,0 +1,96 @@ +package com.fr.plugin.cpic.db.bean; + +import java.util.Date; + +public class CpicHomeBean { + + public CpicHomeBean() { + } + + private String id; + private String name; + private String themeId; + private String themeName; + private String path; + private String mhpath; + private String del; + + private Date editDate; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getThemeId() { + return themeId; + } + + public void setThemeId(String themeId) { + this.themeId = themeId; + } + + public String getThemeName() { + return themeName; + } + + public void setThemeName(String themeName) { + this.themeName = themeName; + } + + public String getPath() { + return path; + } + + public void setPath(String path) { + this.path = path; + } + + public String getMhpath() { + return mhpath; + } + + public void setMhpath(String mhpath) { + this.mhpath = mhpath; + } + + public String getDel() { + return del; + } + + public void setDel(String del) { + this.del = del; + } + + public Date getEditDate() { + return editDate; + } + + public void setEditDate(Date editDate) { + this.editDate = editDate; + } + + @Override + public String toString() { + return "CpicHomeBean{" + + "id='" + id + '\'' + + ", name='" + name + '\'' + + ", themeId='" + themeId + '\'' + + ", themeName='" + themeName + '\'' + + ", path='" + path + '\'' + + ", del='" + del + '\'' + + ", editDate=" + editDate + + '}'; + } +} diff --git a/src/main/java/com/fr/plugin/cpic/db/bean/CpicUserBean.java b/src/main/java/com/fr/plugin/cpic/db/bean/CpicUserBean.java new file mode 100644 index 0000000..c7e08b0 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/db/bean/CpicUserBean.java @@ -0,0 +1,84 @@ +package com.fr.plugin.cpic.db.bean; + +public class CpicUserBean { + + public CpicUserBean() { + } + + private String id; + private String homeId; + private String homeName; + private String userId; + private String userAccount; + private String userName; + private String del; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getHomeId() { + return homeId; + } + + public void setHomeId(String homeId) { + this.homeId = homeId; + } + + public String getHomeName() { + return homeName; + } + + public void setHomeName(String homeName) { + this.homeName = homeName; + } + + public String getUserId() { + return userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public String getUserAccount() { + return userAccount; + } + + public void setUserAccount(String userAccount) { + this.userAccount = userAccount; + } + + public String getUserName() { + return userName; + } + + public void setUserName(String userName) { + this.userName = userName; + } + + public String getDel() { + return del; + } + + public void setDel(String del) { + this.del = del; + } + + @Override + public String toString() { + return "CpicUserBean{" + + "id='" + id + '\'' + + ", homeId='" + homeId + '\'' + + ", homeName='" + homeName + '\'' + + ", userId='" + userId + '\'' + + ", userAccount='" + userAccount + '\'' + + ", userName='" + userName + '\'' + + ", del='" + del + '\'' + + '}'; + } +} diff --git a/src/main/java/com/fr/plugin/cpic/db/dao/CpicEntryDao.java b/src/main/java/com/fr/plugin/cpic/db/dao/CpicEntryDao.java new file mode 100644 index 0000000..ca43c6b --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/db/dao/CpicEntryDao.java @@ -0,0 +1,84 @@ +package com.fr.plugin.cpic.db.dao; + +import com.fanruan.api.util.StringKit; +import com.fr.plugin.cpic.db.entity.CpicEntryEntity; +import com.fr.stable.db.dao.BaseDAO; +import com.fr.stable.db.dao.DAOProvider; +import com.fr.stable.db.session.DAOSession; +import com.fr.stable.query.QueryFactory; +import com.fr.stable.query.condition.QueryCondition; +import com.fr.stable.query.restriction.RestrictionFactory; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class CpicEntryDao extends BaseDAO { + + public CpicEntryDao(DAOSession daoSession) { + super(daoSession); + } + + /** + * 如果重写了getEntityClass方法,就可以不重写其他所有DAO接口中的方法 + * 推荐只重写getEntityClass方法,保留原写法作为兼容 + * + * @return + */ + @Override + protected Class getEntityClass() { + return CpicEntryEntity.class; + } + + public final static DAOProvider DAO = new DAOProvider() { + @Override + public Class getEntityClass() { + return CpicEntryEntity.class; + } + + @Override + public Class getDAOClass() { + return CpicEntryDao.class; + } + }; + + public CpicEntryEntity findById(String id) throws Exception { + QueryCondition condition = QueryFactory.create(); + if (StringKit.isNotBlank(id)) { + condition.addRestriction(RestrictionFactory.eq("id", id)); + condition.addRestriction(RestrictionFactory.eq("del", "0")); + } else { + return null; + } + return findOne(condition); + } + + public List findEntryList(String homeId) throws Exception { + QueryCondition condition = QueryFactory.create(); + if (StringKit.isNotBlank(homeId)) { + condition.addRestriction(RestrictionFactory.eq("homeId", homeId)); + condition.addRestriction(RestrictionFactory.eq("del", "0")); + } else { + return null; + } + return find(condition); + } + + public void realDel(String id) throws Exception { + QueryCondition condition = QueryFactory.create(); + if (StringKit.isNotBlank(id)) { + condition.addRestriction(RestrictionFactory.eq("id", id)); + remove(condition); + } + } + + public void logicDelByHomeId(String homeId) throws Exception { + Map updateParams = new HashMap<>(); + updateParams.put("del", "1"); + QueryCondition condition = QueryFactory.create(); + if (StringKit.isNotBlank(homeId)) { + condition.addRestriction(RestrictionFactory.eq("homeId", homeId)); + update(updateParams, condition); + } + } +} diff --git a/src/main/java/com/fr/plugin/cpic/db/dao/CpicHomeDao.java b/src/main/java/com/fr/plugin/cpic/db/dao/CpicHomeDao.java new file mode 100644 index 0000000..97ffa04 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/db/dao/CpicHomeDao.java @@ -0,0 +1,100 @@ +package com.fr.plugin.cpic.db.dao; + +import com.fanruan.api.util.StringKit; +import com.fr.plugin.cpic.db.entity.CpicHomeEntity; +import com.fr.stable.db.dao.BaseDAO; +import com.fr.stable.db.dao.DAOProvider; +import com.fr.stable.db.session.DAOSession; +import com.fr.stable.query.QueryFactory; +import com.fr.stable.query.condition.QueryCondition; +import com.fr.stable.query.restriction.RestrictionFactory; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class CpicHomeDao extends BaseDAO { + + public CpicHomeDao(DAOSession daoSession) { + super(daoSession); + } + + /** + * 如果重写了getEntityClass方法,就可以不重写其他所有DAO接口中的方法 + * 推荐只重写getEntityClass方法,保留原写法作为兼容 + * + * @return + */ + @Override + protected Class getEntityClass() { + return CpicHomeEntity.class; + } + + public final static DAOProvider DAO = new DAOProvider() { + @Override + public Class getEntityClass() { + return CpicHomeEntity.class; + } + + @Override + public Class getDAOClass() { + return CpicHomeDao.class; + } + }; + + public CpicHomeEntity findById(String id) throws Exception { + QueryCondition condition = QueryFactory.create(); + if (StringKit.isNotBlank(id)) { + condition.addRestriction(RestrictionFactory.eq("id", id)); + condition.addRestriction(RestrictionFactory.eq("del", "0")); + } else { + return null; + } + return findOne(condition); + } + + public CpicHomeEntity findByName(String name, String id) throws Exception { + QueryCondition condition = QueryFactory.create(); + if (StringKit.isNotBlank(id)) { + condition.addRestriction(RestrictionFactory.neq("id", id)); + } + if (StringKit.isNotBlank(name)) { + condition.addRestriction(RestrictionFactory.eq("name", name)); + condition.addRestriction(RestrictionFactory.eq("del", "0")); + } else { + return null; + } + return findOne(condition); + } + + public CpicHomeEntity findByPath(String path, String id) throws Exception { + QueryCondition condition = QueryFactory.create(); + if (StringKit.isNotBlank(id)) { + condition.addRestriction(RestrictionFactory.neq("id", id)); + } + if (StringKit.isNotBlank(path)) { + condition.addRestriction(RestrictionFactory.eq("path", path)); + condition.addRestriction(RestrictionFactory.eq("del", "0")); + } else { + return null; + } + return findOne(condition); + } + + public void logicDel(String id) throws Exception { + Map updateParams = new HashMap<>(); + updateParams.put("del", "1"); + QueryCondition condition = QueryFactory.create(); + if (StringKit.isNotBlank(id)) { + condition.addRestriction(RestrictionFactory.eq("id", id)); + update(updateParams, condition); + } + } + + public List findList() throws Exception { + QueryCondition condition = QueryFactory.create(); + condition.addRestriction(RestrictionFactory.eq("del", "0")); + condition.addSort("editDate", true); + return find(condition); + } +} diff --git a/src/main/java/com/fr/plugin/cpic/db/dao/CpicUserDao.java b/src/main/java/com/fr/plugin/cpic/db/dao/CpicUserDao.java new file mode 100644 index 0000000..a0ee8ed --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/db/dao/CpicUserDao.java @@ -0,0 +1,96 @@ +package com.fr.plugin.cpic.db.dao; + +import com.fanruan.api.util.StringKit; +import com.fr.plugin.cpic.db.entity.CpicUserEntity; +import com.fr.stable.db.dao.BaseDAO; +import com.fr.stable.db.dao.DAOProvider; +import com.fr.stable.db.session.DAOSession; +import com.fr.stable.query.QueryFactory; +import com.fr.stable.query.condition.QueryCondition; +import com.fr.stable.query.restriction.RestrictionFactory; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class CpicUserDao extends BaseDAO { + + public CpicUserDao(DAOSession daoSession) { + super(daoSession); + } + + /** + * 如果重写了getEntityClass方法,就可以不重写其他所有DAO接口中的方法 + * 推荐只重写getEntityClass方法,保留原写法作为兼容 + * + * @return + */ + @Override + protected Class getEntityClass() { + return CpicUserEntity.class; + } + + public final static DAOProvider DAO = new DAOProvider() { + @Override + public Class getEntityClass() { + return CpicUserEntity.class; + } + + @Override + public Class getDAOClass() { + return CpicUserDao.class; + } + }; + + public CpicUserEntity findById(String id) throws Exception { + QueryCondition condition = QueryFactory.create(); + if (StringKit.isNotBlank(id)) { + condition.addRestriction(RestrictionFactory.eq("id", id)); + condition.addRestriction(RestrictionFactory.eq("del", "0")); + } else { + return null; + } + return findOne(condition); + } + + public CpicUserEntity findHomeUserByUserId(String homeId, String id) throws Exception { + QueryCondition condition = QueryFactory.create(); + if (StringKit.isNotBlank(id)) { + condition.addRestriction(RestrictionFactory.eq("homeId", homeId)); + condition.addRestriction(RestrictionFactory.eq("userId", id)); + condition.addRestriction(RestrictionFactory.eq("del", "0")); + } else { + return null; + } + return findOne(condition); + } + + public List findUserList(String homeId) throws Exception { + QueryCondition condition = QueryFactory.create(); + if (StringKit.isNotBlank(homeId)) { + condition.addRestriction(RestrictionFactory.eq("homeId", homeId)); + condition.addRestriction(RestrictionFactory.eq("del", "0")); + } else { + return null; + } + return find(condition); + } + + public void realDel(String id) throws Exception { + QueryCondition condition = QueryFactory.create(); + if (StringKit.isNotBlank(id)) { + condition.addRestriction(RestrictionFactory.eq("id", id)); + remove(condition); + } + } + + public void logicDelByHomeId(String homeId) throws Exception { + Map updateParams = new HashMap<>(); + updateParams.put("del", "1"); + QueryCondition condition = QueryFactory.create(); + if (StringKit.isNotBlank(homeId)) { + condition.addRestriction(RestrictionFactory.eq("homeId", homeId)); + update(updateParams, condition); + } + } +} diff --git a/src/main/java/com/fr/plugin/cpic/db/entity/CpicEntryEntity.java b/src/main/java/com/fr/plugin/cpic/db/entity/CpicEntryEntity.java new file mode 100644 index 0000000..e25fb97 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/db/entity/CpicEntryEntity.java @@ -0,0 +1,71 @@ +package com.fr.plugin.cpic.db.entity; + +import com.fr.stable.db.entity.BaseEntity; +import com.fr.third.javax.persistence.Column; +import com.fr.third.javax.persistence.Entity; +import com.fr.third.javax.persistence.Table; + +@Entity +@Table(name = "fine_plugin_cpic_entry") +public class CpicEntryEntity extends BaseEntity { + + private static final long serialVersionUID = -2004581862888013344L; + + public CpicEntryEntity() { + } + + @Column(name = "homeId", length = 255) + private String homeId; + + @Column(name = "homeName", length = 255) + private String homeName; + + @Column(name = "entryId", length = 255) + private String entryId; + + @Column(name = "entryName", length = 255) + private String entryName; + + @Column(name = "del", length = 255) + private String del; + + public String getHomeId() { + return homeId; + } + + public void setHomeId(String homeId) { + this.homeId = homeId; + } + + public String getHomeName() { + return homeName; + } + + public void setHomeName(String homeName) { + this.homeName = homeName; + } + + public String getEntryId() { + return entryId; + } + + public void setEntryId(String entryId) { + this.entryId = entryId; + } + + public String getEntryName() { + return entryName; + } + + public void setEntryName(String entryName) { + this.entryName = entryName; + } + + public String getDel() { + return del; + } + + public void setDel(String del) { + this.del = del; + } +} diff --git a/src/main/java/com/fr/plugin/cpic/db/entity/CpicHomeEntity.java b/src/main/java/com/fr/plugin/cpic/db/entity/CpicHomeEntity.java new file mode 100644 index 0000000..eb3d202 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/db/entity/CpicHomeEntity.java @@ -0,0 +1,94 @@ +package com.fr.plugin.cpic.db.entity; + +import com.fr.stable.db.entity.BaseEntity; +import com.fr.third.javax.persistence.Column; +import com.fr.third.javax.persistence.Entity; +import com.fr.third.javax.persistence.Table; + +import java.util.Date; + +@Entity +@Table(name = "fine_plugin_cpic_home") +public class CpicHomeEntity extends BaseEntity { + + private static final long serialVersionUID = -638785764795126993L; + + public CpicHomeEntity() { + } + + @Column(name = "name", length = 255) + private String name; + + @Column(name = "themeId", length = 255) + private String themeId; + + @Column(name = "themeName", length = 255) + private String themeName; + + @Column(name = "path", length = 255) + private String path; + @Column(name = "mhpath", length = 255) + private String mhpath; + + @Column(name = "del", length = 255) + private String del; + + @Column(name = "editDate") + private Date editDate; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getThemeId() { + return themeId; + } + + public void setThemeId(String themeId) { + this.themeId = themeId; + } + + public String getThemeName() { + return themeName; + } + + public void setThemeName(String themeName) { + this.themeName = themeName; + } + + public String getPath() { + return path; + } + + public void setPath(String path) { + this.path = path; + } + + public String getMhpath() { + return mhpath; + } + + public void setMhpath(String mhpath) { + this.mhpath = mhpath; + } + + public String getDel() { + return del; + } + + public void setDel(String del) { + this.del = del; + } + + public Date getEditDate() { + return editDate; + } + + public void setEditDate(Date editDate) { + this.editDate = editDate; + } +} diff --git a/src/main/java/com/fr/plugin/cpic/db/entity/CpicUserEntity.java b/src/main/java/com/fr/plugin/cpic/db/entity/CpicUserEntity.java new file mode 100644 index 0000000..716cf62 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/db/entity/CpicUserEntity.java @@ -0,0 +1,82 @@ +package com.fr.plugin.cpic.db.entity; + +import com.fr.stable.db.entity.BaseEntity; +import com.fr.third.javax.persistence.Column; +import com.fr.third.javax.persistence.Entity; +import com.fr.third.javax.persistence.Table; + +@Entity +@Table(name = "fine_plugin_cpic_user") +public class CpicUserEntity extends BaseEntity { + + private static final long serialVersionUID = -2986626466229549903L; + + public CpicUserEntity() { + } + + @Column(name = "homeId", length = 255) + private String homeId; + + @Column(name = "homeName", length = 255) + private String homeName; + + @Column(name = "userId", length = 255) + private String userId; + + @Column(name = "userAccount", length = 255) + private String userAccount; + + @Column(name = "userName", length = 255) + private String userName; + + @Column(name = "del", length = 255) + private String del; + + public String getHomeId() { + return homeId; + } + + public void setHomeId(String homeId) { + this.homeId = homeId; + } + + public String getHomeName() { + return homeName; + } + + public void setHomeName(String homeName) { + this.homeName = homeName; + } + + public String getUserId() { + return userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public String getUserAccount() { + return userAccount; + } + + public void setUserAccount(String userAccount) { + this.userAccount = userAccount; + } + + public String getUserName() { + return userName; + } + + public void setUserName(String userName) { + this.userName = userName; + } + + public String getDel() { + return del; + } + + public void setDel(String del) { + this.del = del; + } +} diff --git a/src/main/java/com/fr/plugin/cpic/db/service/CpicEntryService.java b/src/main/java/com/fr/plugin/cpic/db/service/CpicEntryService.java new file mode 100644 index 0000000..fdb5c6c --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/db/service/CpicEntryService.java @@ -0,0 +1,116 @@ +package com.fr.plugin.cpic.db.service; + +import com.fanruan.api.log.LogKit; +import com.fanruan.api.util.StringKit; +import com.fr.plugin.cpic.db.CpicDBAccessProvider; +import com.fr.plugin.cpic.db.bean.CpicEntryBean; +import com.fr.plugin.cpic.db.dao.CpicEntryDao; +import com.fr.plugin.cpic.db.dao.CpicHomeDao; +import com.fr.plugin.cpic.db.dao.CpicUserDao; +import com.fr.plugin.cpic.db.entity.CpicEntryEntity; +import com.fr.stable.core.UUID; +import com.fr.stable.db.action.DBAction; +import com.fr.stable.db.dao.DAOContext; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +public class CpicEntryService { + + /** + * 新增 + */ + public static void saveOrUpdate(CpicEntryBean bean) { + try { + CpicDBAccessProvider.getAccessor().runDMLAction(new DBAction() { + @Override + public Boolean run(DAOContext context) throws Exception { + CpicEntryEntity targetEntity = null; + // 尝试查询 + if (bean.getId() != null && StringKit.isNotBlank(bean.getId())) { + targetEntity = context.getDAO(CpicEntryDao.class).findById(bean.getId()); + } + + if (targetEntity != null) { + // 更新 + targetEntity.setHomeId(bean.getHomeId()); + targetEntity.setHomeName(bean.getHomeName()); + targetEntity.setEntryId(bean.getEntryId()); + targetEntity.setEntryName(bean.getEntryName()); + context.getDAO(CpicEntryDao.class).update(targetEntity); + } else { + // 新增 + targetEntity = new CpicEntryEntity(); + targetEntity.setId(UUID.randomUUID().toString().toLowerCase()); + targetEntity.setHomeId(bean.getHomeId()); + targetEntity.setHomeName(bean.getHomeName()); + targetEntity.setEntryId(bean.getEntryId()); + targetEntity.setEntryName(bean.getEntryName()); + targetEntity.setDel("0"); + context.getDAO(CpicEntryDao.class).add(targetEntity); + } + return true; + } + }); + } catch (Exception e) { + LogKit.error("新增/更新失败:{}", e.getMessage()); + } + } + + /** + * 查询列表 + */ + public static List findList(String homeId) { + try { + return CpicDBAccessProvider.getAccessor().runQueryAction(new DBAction>() { + @Override + public List run(DAOContext context) throws Exception { + List items = context.getDAO(CpicEntryDao.class).findEntryList(homeId); + List result = new ArrayList<>(); + for (CpicEntryEntity item : items) { + result.add(entityToBean(item)); + } + return result; + } + }); + } catch (Throwable e) { + LogKit.error("查询失败:{}", e.getMessage()); + } + return Collections.emptyList(); + } + + /** + * 删除 + * + * @return + */ + public static void realDel(String id) { + try { + CpicDBAccessProvider.getAccessor().runDMLAction(new DBAction() { + @Override + public Boolean run(DAOContext context) throws Exception { + context.getDAO(CpicEntryDao.class).realDel(id); + return true; + } + }); + } catch (Exception e) { + LogKit.error("删除失败:{}", e.getMessage()); + } + } + + public static CpicEntryBean entityToBean(CpicEntryEntity entity) { + if (null == entity) { + return null; + } + CpicEntryBean bean = new CpicEntryBean(); + bean.setId(entity.getId()); + bean.setHomeId(entity.getHomeId()); + bean.setHomeName(entity.getHomeName()); + bean.setEntryId(entity.getEntryId()); + bean.setEntryName(entity.getEntryName()); + bean.setDel(entity.getDel()); + return bean; + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/db/service/CpicHomeService.java b/src/main/java/com/fr/plugin/cpic/db/service/CpicHomeService.java new file mode 100644 index 0000000..b2ea1ba --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/db/service/CpicHomeService.java @@ -0,0 +1,177 @@ +package com.fr.plugin.cpic.db.service; + +import com.fanruan.api.log.LogKit; +import com.fanruan.api.util.StringKit; +import com.fr.plugin.cpic.db.CpicDBAccessProvider; +import com.fr.plugin.cpic.db.bean.CpicHomeBean; +import com.fr.plugin.cpic.db.dao.CpicEntryDao; +import com.fr.plugin.cpic.db.dao.CpicHomeDao; +import com.fr.plugin.cpic.db.dao.CpicUserDao; +import com.fr.plugin.cpic.db.entity.CpicHomeEntity; +import com.fr.stable.core.UUID; +import com.fr.stable.db.action.DBAction; +import com.fr.stable.db.dao.DAOContext; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.Date; +import java.util.List; + +public class CpicHomeService { + + /** + * 新增 + */ + public static void saveOrUpdate(CpicHomeBean bean) { + try { + CpicDBAccessProvider.getAccessor().runDMLAction(new DBAction() { + @Override + public Boolean run(DAOContext context) throws Exception { + CpicHomeEntity targetEntity = null; + // 尝试查询 + if (bean.getId() != null && StringKit.isNotBlank(bean.getId())) { + targetEntity = context.getDAO(CpicHomeDao.class).findById(bean.getId()); + } + + if (targetEntity != null) { + // 更新 + targetEntity.setName(bean.getName()); + targetEntity.setThemeId(bean.getThemeId()); + targetEntity.setThemeName(bean.getThemeName()); + targetEntity.setPath(bean.getPath()); + targetEntity.setMhpath(bean.getMhpath()); + targetEntity.setEditDate(new Date()); + context.getDAO(CpicHomeDao.class).update(targetEntity); + } else { + // 新增 + targetEntity = new CpicHomeEntity(); + targetEntity.setId(UUID.randomUUID().toString().toLowerCase()); + targetEntity.setName(bean.getName()); + targetEntity.setThemeId(bean.getThemeId()); + targetEntity.setThemeName(bean.getThemeName()); + targetEntity.setPath(bean.getPath()); + targetEntity.setMhpath(bean.getMhpath()); + targetEntity.setDel("0"); + targetEntity.setEditDate(new Date()); + context.getDAO(CpicHomeDao.class).add(targetEntity); + } + return true; + } + }); + } catch (Exception e) { + LogKit.error("新增/更新失败:{}", e.getMessage()); + } + } + + /** + * 查询列表 + */ + public static List findList() { + try { + return CpicDBAccessProvider.getAccessor().runQueryAction(new DBAction>() { + @Override + public List run(DAOContext context) throws Exception { + List items = context.getDAO(CpicHomeDao.class).findList(); + List result = new ArrayList<>(); + for (CpicHomeEntity item : items) { + result.add(entityToBean(item)); + } + return result; + } + }); + } catch (Throwable e) { + LogKit.error("查询失败:{}", e.getMessage()); + } + return Collections.emptyList(); + } + + /** + * 根据id查询 + */ + public static CpicHomeBean findById(String id) { + try { + return CpicDBAccessProvider.getAccessor().runQueryAction(new DBAction() { + @Override + public CpicHomeBean run(DAOContext context) throws Exception { + CpicHomeEntity item = context.getDAO(CpicHomeDao.class).findById(id); + return entityToBean(item); + } + }); + } catch (Throwable e) { + LogKit.error("查询失败:{}", e.getMessage()); + } + return null; + } + + /** + * 根据name查询 + */ + public static CpicHomeBean findByName(String name, String id) { + try { + return CpicDBAccessProvider.getAccessor().runQueryAction(new DBAction() { + @Override + public CpicHomeBean run(DAOContext context) throws Exception { + CpicHomeEntity item = context.getDAO(CpicHomeDao.class).findByName(name, id); + return entityToBean(item); + } + }); + } catch (Throwable e) { + LogKit.error("查询失败:{}", e.getMessage()); + } + return null; + } + + /** + * 根据path查询 + */ + public static CpicHomeBean findByPath(String path, String id) { + try { + return CpicDBAccessProvider.getAccessor().runQueryAction(new DBAction() { + @Override + public CpicHomeBean run(DAOContext context) throws Exception { + CpicHomeEntity item = context.getDAO(CpicHomeDao.class).findByPath(path, id); + return entityToBean(item); + } + }); + } catch (Throwable e) { + LogKit.error("查询失败:{}", e.getMessage()); + } + return null; + } + + /** + * 逻辑删除 + * + * @return + */ + public static void logicDel(String id) { + try { + CpicDBAccessProvider.getAccessor().runDMLAction(new DBAction() { + @Override + public Boolean run(DAOContext context) throws Exception { + context.getDAO(CpicHomeDao.class).logicDel(id); + context.getDAO(CpicEntryDao.class).logicDelByHomeId(id); + context.getDAO(CpicUserDao.class).logicDelByHomeId(id); + return true; + } + }); + } catch (Exception e) { + LogKit.error("更新失败:{}", e.getMessage()); + } + } + + public static CpicHomeBean entityToBean(CpicHomeEntity entity) { + if (null == entity) { + return null; + } + CpicHomeBean bean = new CpicHomeBean(); + bean.setId(entity.getId()); + bean.setName(entity.getName()); + bean.setThemeId(entity.getThemeId()); + bean.setThemeName(entity.getThemeName()); + bean.setPath(null == entity.getPath() ? "" : entity.getPath()); + bean.setMhpath(null == entity.getMhpath() ? "" : entity.getMhpath()); + return bean; + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/db/service/CpicUserService.java b/src/main/java/com/fr/plugin/cpic/db/service/CpicUserService.java new file mode 100644 index 0000000..3e2b882 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/db/service/CpicUserService.java @@ -0,0 +1,135 @@ +package com.fr.plugin.cpic.db.service; + +import com.fanruan.api.log.LogKit; +import com.fanruan.api.util.StringKit; +import com.fr.plugin.cpic.db.CpicDBAccessProvider; +import com.fr.plugin.cpic.db.bean.CpicUserBean; +import com.fr.plugin.cpic.db.dao.CpicEntryDao; +import com.fr.plugin.cpic.db.dao.CpicUserDao; +import com.fr.plugin.cpic.db.entity.CpicUserEntity; +import com.fr.stable.core.UUID; +import com.fr.stable.db.action.DBAction; +import com.fr.stable.db.dao.DAOContext; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +public class CpicUserService { + + /** + * 新增 + */ + public static void saveOrUpdate(CpicUserBean bean) { + try { + CpicDBAccessProvider.getAccessor().runDMLAction(new DBAction() { + @Override + public Boolean run(DAOContext context) throws Exception { + CpicUserEntity targetEntity = null; + // 尝试查询 + if (bean.getId() != null && StringKit.isNotBlank(bean.getId())) { + targetEntity = context.getDAO(CpicUserDao.class).findById(bean.getId()); + } + + if (targetEntity != null) { + // 更新 + targetEntity.setHomeId(bean.getHomeId()); + targetEntity.setHomeName(bean.getHomeName()); + targetEntity.setUserId(bean.getUserId()); + targetEntity.setUserName(bean.getUserName()); + targetEntity.setUserAccount(bean.getUserAccount()); + context.getDAO(CpicUserDao.class).update(targetEntity); + } else { + // 新增 + targetEntity = new CpicUserEntity(); + targetEntity.setId(UUID.randomUUID().toString().toLowerCase()); + targetEntity.setHomeId(bean.getHomeId()); + targetEntity.setHomeName(bean.getHomeName()); + targetEntity.setUserId(bean.getUserId()); + targetEntity.setUserName(bean.getUserName()); + targetEntity.setUserAccount(bean.getUserAccount()); + targetEntity.setDel("0"); + context.getDAO(CpicUserDao.class).add(targetEntity); + } + return true; + } + }); + } catch (Exception e) { + LogKit.error("新增/更新失败:{}", e.getMessage()); + } + } + + /** + * 查询用户 + */ + public static CpicUserBean findHomeUserByUserId(String homeId, String userId) { + try { + return CpicDBAccessProvider.getAccessor().runQueryAction(new DBAction() { + @Override + public CpicUserBean run(DAOContext context) throws Exception { + CpicUserEntity item = context.getDAO(CpicUserDao.class).findHomeUserByUserId(homeId, userId); + return entityToBean(item); + } + }); + } catch (Throwable e) { + LogKit.error("查询失败:{}", e.getMessage()); + } + return null; + } + + /** + * 查询列表 + */ + public static List findList(String homeId) { + try { + return CpicDBAccessProvider.getAccessor().runQueryAction(new DBAction>() { + @Override + public List run(DAOContext context) throws Exception { + List items = context.getDAO(CpicUserDao.class).findUserList(homeId); + List result = new ArrayList<>(); + for (CpicUserEntity item : items) { + result.add(entityToBean(item)); + } + return result; + } + }); + } catch (Throwable e) { + LogKit.error("查询失败:{}", e.getMessage()); + } + return Collections.emptyList(); + } + + /** + * 删除 + * + * @return + */ + public static void realDel(String id) { + try { + CpicDBAccessProvider.getAccessor().runDMLAction(new DBAction() { + @Override + public Boolean run(DAOContext context) throws Exception { + context.getDAO(CpicUserDao.class).realDel(id); + return true; + } + }); + } catch (Exception e) { + LogKit.error("删除失败:{}", e.getMessage()); + } + } + + public static CpicUserBean entityToBean(CpicUserEntity entity) { + if (null == entity) { + return null; + } + CpicUserBean bean = new CpicUserBean(); + bean.setId(entity.getId()); + bean.setHomeId(entity.getHomeId()); + bean.setHomeName(entity.getHomeName()); + bean.setUserId(entity.getUserId()); + bean.setUserName(entity.getUserName()); + bean.setUserAccount(entity.getUserAccount()); + return bean; + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/filter/EntryFilter.java b/src/main/java/com/fr/plugin/cpic/filter/EntryFilter.java new file mode 100644 index 0000000..1f6b4d4 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/filter/EntryFilter.java @@ -0,0 +1,148 @@ +package com.fr.plugin.cpic.filter; + +import com.fanruan.api.json.JSONKit; +import com.fanruan.api.log.LogKit; +import com.fanruan.api.util.StringKit; +import com.fr.base.ServerConfig; +import com.fr.decision.fun.impl.AbstractGlobalRequestFilterProvider; +import com.fr.decision.webservice.bean.authority.PrivilegeDetailBean; +import com.fr.decision.webservice.bean.entry.DirectoryBean; +import com.fr.decision.webservice.bean.entry.EntryBean; +import com.fr.decision.webservice.v10.entry.EntryService; +import com.fr.plugin.cpic.db.bean.CpicEntryBean; +import com.fr.plugin.cpic.db.bean.CpicHomeBean; +import com.fr.plugin.cpic.db.service.CpicEntryService; +import com.fr.plugin.cpic.db.service.CpicHomeService; +import com.fr.plugin.transform.ExecuteFunctionRecord; +import com.fr.plugin.transform.FunctionRecorder; +import com.fr.third.org.apache.commons.collections4.CollectionUtils; +import com.fr.web.utils.WebUtils; + +import javax.servlet.FilterChain; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.io.PrintWriter; +import java.util.*; + +/** + * 目录拦截器 + */ +@FunctionRecorder(localeKey = "EntryFilter") +public class EntryFilter extends AbstractGlobalRequestFilterProvider { + + + @Override + public String filterName() { + return "EntryFilter"; + } + + @Override + public String[] urlPatterns() { + return new String[]{"/*"}; + } + + @Override + @ExecuteFunctionRecord + public void doFilter(HttpServletRequest req, HttpServletResponse res, FilterChain filterChain) { + try { + // 判断是否拦截 +// String originalUrl = WebUtils.getOriginalURL(req); + String requestURI = req.getRequestURI(); + if(!requestURI.endsWith("/v10/view/entry/tree") || !req.getMethod().equals("GET")){ + filterChain.doFilter(req, res); + return; + } + + // 判断请求来源 + String referer = req.getHeader("Referer"); + if (StringKit.isBlank(referer)) { + filterChain.doFilter(req, res); + return; + } + String[] refererSpArr = referer.split("/"); + String h1 = ""; + String h2 = ""; + if (refererSpArr.length >= 2) { + h1 = refererSpArr[refererSpArr.length - 2]; + h2 = refererSpArr[refererSpArr.length - 1]; + if (StringKit.isBlank(h1) || !StringKit.equals("home", h1)) { + filterChain.doFilter(req, res); + return; + } + if (StringKit.isBlank(h2)) { + filterChain.doFilter(req, res); + return; + } + } + + // 查询对应home的path是否存在 + CpicHomeBean homeBean = CpicHomeService.findByPath(h2, ""); + if (null == homeBean) { + filterChain.doFilter(req, res); + return; + } + +// filterChain.doFilter(req, res); + + // 当前门户配置的目录 + List cpicEntryBeanList = CpicEntryService.findList(homeBean.getId()); + LogKit.debug("门户目录: "+JSONKit.createJSONArray(cpicEntryBeanList).toString()); + // 当前用户配置的目录 + List entryBeanList = EntryService.getInstance().getEntryTree(req); + LogKit.debug("用户目录: "+JSONKit.createJSONArray(entryBeanList).toString()); + + // 其中一个为空时交集一定为空,直接返回空 + if (CollectionUtils.isEmpty(cpicEntryBeanList) || CollectionUtils.isEmpty(entryBeanList)) { + Map result = new HashMap<>(); + result.put("data", Collections.EMPTY_LIST); + PrintWriter printer = res.getWriter(); + printer.write(JSONKit.create(result).toString()); + printer.flush(); + printer.close(); + } + + // 取交集 + List resultList = new ArrayList<>(); + for (EntryBean entry : entryBeanList) { + CpicEntryBean cpicEntryBean = cpicEntryBeanList.stream().filter(item -> item.getEntryId().equals(entry.getId())).findFirst().orElse(null); + if (null != cpicEntryBean) { + resultList.add(entry); + } + } + + EntryBean root = entryBeanList.stream().filter(item -> "decision-directory-root".equals(item.getId())).findFirst().orElse(null); + if(null == root){ + // 手动创建一个根目录 + root = new DirectoryBean(); + root.setId("decision-directory-root"); + root.setText("Dec-Entry_Management"); + root.setDeviceType(7); + root.setEntryType(3); + root.setSortIndex(0); + root.setIsParent(true); + root.setOpen(false); + root.setParentDeviceType(7); + List privilegeDetailBeanList = new ArrayList<>(); + PrivilegeDetailBean privilegeDetailBean = new PrivilegeDetailBean(); + privilegeDetailBean.setPrivilegeType(1); + privilegeDetailBean.setPrivilegeValue(3); + root.setPrivilegeDetailBeanList(privilegeDetailBeanList); + } + resultList.add(root); + + LogKit.debug("交集目录: "+JSONKit.createJSONArray(resultList).toString()); + + res.setContentType("text/html; charset="+ ServerConfig.getInstance().getServerCharset()); + // 返回数据 + Map result = new HashMap<>(); + result.put("data", resultList); + PrintWriter printer = res.getWriter(); + printer.write(JSONKit.create(result).toString()); + printer.flush(); + printer.close(); + } catch (Exception e) { + LogKit.error(e.getMessage()); + e.printStackTrace(); + } + } +} diff --git a/src/main/java/com/fr/plugin/cpic/filter/LogoutFilter.java b/src/main/java/com/fr/plugin/cpic/filter/LogoutFilter.java new file mode 100644 index 0000000..e5a785a --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/filter/LogoutFilter.java @@ -0,0 +1,96 @@ +package com.fr.plugin.cpic.filter; + +import com.fanruan.api.log.LogKit; +import com.fanruan.api.util.StringKit; +import com.fr.decision.fun.impl.AbstractGlobalRequestFilterProvider; +import com.fr.decision.webservice.v10.login.LoginService; +import com.fr.plugin.cpic.db.bean.CpicHomeBean; +import com.fr.plugin.cpic.db.service.CpicHomeService; +import com.fr.plugin.transform.ExecuteFunctionRecord; +import com.fr.plugin.transform.FunctionRecorder; + +import javax.servlet.FilterChain; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +/** + * 登出拦截器 + */ +@FunctionRecorder(localeKey = "LogoutFilter") +public class LogoutFilter extends AbstractGlobalRequestFilterProvider { + + + @Override + public String filterName() { + return "LogoutFilter"; + } + + @Override + public String[] urlPatterns() { + return new String[]{"/*"}; + } + + @Override + @ExecuteFunctionRecord + public void doFilter(HttpServletRequest req, HttpServletResponse res, FilterChain filterChain) { + try { + // 判断是否拦截 +// String originalUrl = WebUtils.getOriginalURL(req); + String requestURI = req.getRequestURI(); + if (!requestURI.endsWith("/logout") || !req.getMethod().equals("POST")) { + filterChain.doFilter(req, res); + return; + } + + // 判断请求来源 + String referer = req.getHeader("Referer"); + if (StringKit.isBlank(referer)) { + filterChain.doFilter(req, res); + return; + } + String[] refererSpArr = referer.split("/"); + String h1 = ""; + String h2 = ""; + if (refererSpArr.length >= 2) { + h1 = refererSpArr[refererSpArr.length - 2]; + h2 = refererSpArr[refererSpArr.length - 1]; + if (StringKit.isBlank(h1) || !StringKit.equals("home", h1)) { + filterChain.doFilter(req, res); + return; + } + if (StringKit.isBlank(h2)) { + filterChain.doFilter(req, res); + return; + } + } + + // 查询对应home的path是否存在 + CpicHomeBean homeBean = CpicHomeService.findByPath(h2, ""); + if (null == homeBean) { + filterChain.doFilter(req, res); + return; + } + + // 登出 + LoginService.getInstance().logout(req, res); + + // 跳转到门户首页 + this.sendRedirect(res, referer); + return; + } catch (Exception e) { + LogKit.error(e.getMessage()); + e.printStackTrace(); + } + } + + /** + * 重定向 1 + * + * @param res + * @param url + */ + private void sendRedirect(HttpServletResponse res, String url) { + res.setStatus(HttpServletResponse.SC_MOVED_TEMPORARILY); + res.setHeader("Location", url); + } +} diff --git a/src/main/java/com/fr/plugin/cpic/filter/ResponseWrapper.java b/src/main/java/com/fr/plugin/cpic/filter/ResponseWrapper.java new file mode 100644 index 0000000..7b59e03 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/filter/ResponseWrapper.java @@ -0,0 +1,83 @@ +package com.fr.plugin.cpic.filter; + +import javax.servlet.ServletOutputStream; +import javax.servlet.WriteListener; +import javax.servlet.http.HttpServletResponse; +import javax.servlet.http.HttpServletResponseWrapper; +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.io.OutputStreamWriter; +import java.io.PrintWriter; +import java.nio.charset.StandardCharsets; + +public class ResponseWrapper extends HttpServletResponseWrapper { + + private ByteArrayOutputStream bytes = new ByteArrayOutputStream(); + ; + private HttpServletResponse response; + private PrintWriter pwrite; + + public ResponseWrapper(HttpServletResponse response) throws IOException { + super(response); + this.response = response; + } + + @Override + public ServletOutputStream getOutputStream() throws IOException { + return new MyServletOutputStream(bytes); + } + + /** + * 重写父类的 getWriter() 方法,将响应数据缓存在 PrintWriter 中 + */ + @Override + public PrintWriter getWriter() throws IOException { + pwrite = new PrintWriter(new OutputStreamWriter(bytes, StandardCharsets.UTF_8)); + return pwrite; + } + + /** + * 获取缓存在 PrintWriter 中的响应数据 + * + * @return + */ + public byte[] getBytes() { + if (null != pwrite) { + pwrite.close(); + return bytes.toByteArray(); + } + + if (null != bytes) { + try { + bytes.flush(); + } catch (IOException e) { + e.printStackTrace(); + } + } + return bytes.toByteArray(); + } + + class MyServletOutputStream extends ServletOutputStream { + private ByteArrayOutputStream ostream; + + public MyServletOutputStream(ByteArrayOutputStream ostream) { + this.ostream = ostream; + } + + @Override + public void write(int b) throws IOException { + ostream.write(b); // 将数据写到 stream 中 + } + + @Override + public boolean isReady() { + return true; + } + + @Override + public void setWriteListener(WriteListener writeListener) { + + } + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/recorder/FunctionRecoder.java b/src/main/java/com/fr/plugin/cpic/recorder/FunctionRecoder.java new file mode 100644 index 0000000..b4bba86 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/recorder/FunctionRecoder.java @@ -0,0 +1,13 @@ +package com.fr.plugin.cpic.recorder; + +import com.fr.plugin.transform.ExecuteFunctionRecord; +import com.fr.plugin.transform.FunctionRecorder; + +@FunctionRecorder +public class FunctionRecoder { + + @ExecuteFunctionRecord + public void exe() { + System.out.println("插件功能埋点"); + } +} diff --git a/src/main/java/com/fr/plugin/cpic/utils/ConvertUtil.java b/src/main/java/com/fr/plugin/cpic/utils/ConvertUtil.java new file mode 100644 index 0000000..2c69dd3 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/utils/ConvertUtil.java @@ -0,0 +1,295 @@ +package com.fr.plugin.cpic.utils; + +import com.fanruan.api.json.JSONKit; +import com.fanruan.api.log.LogKit; +import com.fanruan.api.util.StringKit; +import com.fr.decision.authority.data.CustomRole; +import com.fr.decision.authority.data.Department; +import com.fr.decision.webservice.bean.entry.EntryBean; +import com.fr.json.JSONArray; +import com.fr.plugin.cpic.db.bean.CpicEntryBean; +import com.fr.plugin.cpic.web.bean.TreeItemBean; +import com.fr.plugin.cpic.web.bean.UserMenuBean; +import com.fr.third.org.apache.commons.collections4.CollectionUtils; + +import java.util.ArrayList; +import java.util.List; +import java.util.stream.Collectors; + +public class ConvertUtil { + + public static List toTree(List entryBeanList, List cpicEntryBeanList) { + // 转换 + List items = ConvertUtil.toTreeItems(entryBeanList, cpicEntryBeanList); + // 生成树 + List tree = ConvertUtil.toTreeItemBeanList(items); + return tree; + } + + /** + * 目录列表转换为List + * + * @param entryBeanList + * @return + */ + public static List toTreeItems(List entryBeanList, List cpicEntryBeanList) { + List list = new ArrayList<>(); + for (EntryBean entryBean : entryBeanList) { + TreeItemBean entry = ConvertUtil.toTreeItem(entryBean, cpicEntryBeanList); + if (null != entry) { + list.add(entry); + } + } + return list; + } + + /** + * 转换为TreeItemBean,同时设置是否选中 + * + * @param entryBean + * @param cpicEntryBeanList + * @return + */ + public static TreeItemBean toTreeItem(EntryBean entryBean, List cpicEntryBeanList) { + TreeItemBean item = null; + if (entryBean != null) { + item = new TreeItemBean(); + // 是否根目录 + if ("decision-directory-root".equals(entryBean.getId())) { + item.setTitle("根目录"); + item.setId(entryBean.getId()); + item.setPid(StringKit.isBlank(entryBean.getpId()) ? "" : entryBean.getpId()); + item.setField(""); + item.setHref(""); + item.setSpread(true); + item.setChecked(false); + item.setDisabled(true); + } else { + // 查询是否存在配置 +// CpicEntryBean cpicEntryBean = cpicEntryBeanList.stream().filter(bean -> bean.getEntryId().equals(entryBean.getId())).findFirst().orElse(null); + item.setTitle(entryBean.getText()); + item.setId(entryBean.getId()); + item.setPid(StringKit.isBlank(entryBean.getpId()) ? "" : entryBean.getpId()); + item.setField(""); + item.setHref(""); + item.setSpread(false); + item.setChecked(false); +// if (null == cpicEntryBean) { +// } else { +// item.setChecked(true); +// } + item.setDisabled(false); + } + } + return item; + } + + // 返回构建好的树列表 + public static List toTreeItemBeanList(List allTreeItemBeanList) { + // 获取所有根节点 + List treeList = new ArrayList<>(); + List rootCode = new ArrayList<>(); + for (TreeItemBean treeItemBean : allTreeItemBeanList) { + if (rootCode.contains(treeItemBean.getId())) { + continue; + } + // 根据该节点查询根节点 + TreeItemBean parent = ConvertUtil.getParentCode(allTreeItemBeanList, treeItemBean); + if (rootCode.contains(parent.getId())) { + continue; + } + treeList.add(parent); + rootCode.add(parent.getId()); + } + + // 根据所有根节点分别构建树 + for (TreeItemBean parentItem : treeList) { + ConvertUtil.buildTree(allTreeItemBeanList, parentItem); + } + + // 输出一下结果 + JSONArray jsonArray = JSONKit.createJSONArray(treeList); + LogKit.debug(jsonArray.toString()); + + return treeList; + } + + // 构建树 + private static void buildTree(List allTreeItemBeanList, TreeItemBean parentTreeItemBean) { + // 查询下级节点 + List childs = allTreeItemBeanList.stream().filter(item -> item.getPid().equals(parentTreeItemBean.getId())).collect(Collectors.toList()); + // 下级节点继续构建 + if (CollectionUtils.isNotEmpty(childs)) { + for (TreeItemBean treeItemBean : childs) { + ConvertUtil.buildTree(allTreeItemBeanList, treeItemBean); + } + } + parentTreeItemBean.setChildren(childs); + } + + // 返回根节点 + private static TreeItemBean getParentCode(List allTreeItemBeanList, TreeItemBean treeItemBean) { + boolean haveNext = true; + List parentTreeItemBeans; + TreeItemBean parentTreeItemBean = treeItemBean; + while (haveNext) { + TreeItemBean finalParentTreeItemBean = parentTreeItemBean; + parentTreeItemBeans = allTreeItemBeanList.stream().filter(item -> item.getId().equals(finalParentTreeItemBean.getPid())).collect(Collectors.toList()); + if (CollectionUtils.isNotEmpty(parentTreeItemBeans)) { + // 有父节点 + parentTreeItemBean = parentTreeItemBeans.get(0); + } else { + haveNext = false; + } + + } + return parentTreeItemBean; + } + + /** + * 转换list + * + * @param tree + * @return + */ + public static List itemsToEntrys(List tree) { + List result = new ArrayList<>(); + CpicEntryBean entryBean; + for (TreeItemBean item : tree) { + if ("decision-directory-root".equals(item.getId())) { + continue; + } + entryBean = new CpicEntryBean(); + entryBean.setEntryId(item.getId()); + entryBean.setEntryName(item.getTitle()); + result.add(entryBean); + } + return result; + } + + /** + * tree转换为list + * + * @param tree + * @return + */ + public static List treeToList(List tree) { + List result = new ArrayList<>(); + for (TreeItemBean item : tree) { + ConvertUtil.buildList(result, item); + } + return result; + } + + public static void buildList(List result, TreeItemBean treeBean) { + List childrens = treeBean.getChildren(); + if (CollectionUtils.isNotEmpty(childrens)) { + CpicEntryBean entryBean; + for (TreeItemBean item : childrens) { + ConvertUtil.buildList(result, item); + entryBean = new CpicEntryBean(); + entryBean.setEntryId(item.getId()); + entryBean.setEntryName(item.getTitle()); + result.add(entryBean); + } + } + } + + //////////////////////////////////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////////////////////////////////// + + public static List deptListToMenuList(List departmentList) { + // 转换 + List list = new ArrayList<>(); + UserMenuBean userMenuBean; + for (Department department : departmentList) { + userMenuBean = new UserMenuBean(); + userMenuBean.setId(department.getId()); + userMenuBean.setTitle(department.getName()); + userMenuBean.setMtype("department"); + userMenuBean.setPid(department.getParentId()); + list.add(userMenuBean); + } + return list; + } + public static List roleListToMenuList(List departmentList) { + // 转换 + List list = new ArrayList<>(); + UserMenuBean userMenuBean; + for (CustomRole department : departmentList) { + userMenuBean = new UserMenuBean(); + userMenuBean.setId(department.getId()); + userMenuBean.setTitle(department.getName()); + userMenuBean.setMtype("customrole"); +// userMenuBean.setPid(department.getParentId()); + list.add(userMenuBean); + } + return list; + } + + public static List departmentListToTree(List departmentList) { + // 转换 + List list = ConvertUtil.deptListToMenuList(departmentList); + // 生成树 + List tree = ConvertUtil.departmentListToTreeItemBeanList(list); + return tree; + } + + private static List departmentListToTreeItemBeanList(List userMenuBeanList) { + // 获取所有根节点 + List treeList = new ArrayList<>(); + List rootCode = new ArrayList<>(); + for (UserMenuBean treeItemBean : userMenuBeanList) { + if (rootCode.contains(treeItemBean.getId())) { + continue; + } + // 根据该节点查询根节点 + UserMenuBean parent = ConvertUtil.getParentCode2(userMenuBeanList, treeItemBean); + if (rootCode.contains(parent.getId())) { + continue; + } + treeList.add(parent); + rootCode.add(parent.getId()); + } + + // 根据所有根节点分别构建树 + for (UserMenuBean parentItem : treeList) { + ConvertUtil.buildTree2(userMenuBeanList, parentItem); + } + return treeList; + } + + // 返回根节点 + private static UserMenuBean getParentCode2(List allTreeItemBeanList, UserMenuBean treeItemBean) { + boolean haveNext = true; + List parentTreeItemBeans; + UserMenuBean parentTreeItemBean = treeItemBean; + while (haveNext) { + UserMenuBean finalParentTreeItemBean = parentTreeItemBean; + parentTreeItemBeans = allTreeItemBeanList.stream().filter(item -> item.getId().equals(finalParentTreeItemBean.getPid())).collect(Collectors.toList()); + if (CollectionUtils.isNotEmpty(parentTreeItemBeans)) { + // 有父节点 + parentTreeItemBean = parentTreeItemBeans.get(0); + } else { + haveNext = false; + } + + } + return parentTreeItemBean; + } + + // 构建树 + private static void buildTree2(List allTreeItemBeanList, UserMenuBean parentTreeItemBean) { + // 查询下级节点 + List childs = allTreeItemBeanList.stream().filter(item -> item.getPid().equals(parentTreeItemBean.getId())).collect(Collectors.toList()); + // 下级节点继续构建 + if (CollectionUtils.isNotEmpty(childs)) { + for (UserMenuBean treeItemBean : childs) { + ConvertUtil.buildTree2(allTreeItemBeanList, treeItemBean); + } + } + parentTreeItemBean.setChildren(childs); + } +} diff --git a/src/main/java/com/fr/plugin/cpic/utils/DateUtils.java b/src/main/java/com/fr/plugin/cpic/utils/DateUtils.java new file mode 100644 index 0000000..f55b8c0 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/utils/DateUtils.java @@ -0,0 +1,88 @@ +package com.fr.plugin.cpic.utils; + + +import java.time.LocalDateTime; +import java.time.format.DateTimeFormatter; +import java.util.Calendar; +import java.util.Date; + +public class DateUtils { + + /** + * 返回当前时间 + * + * @return + */ + public static String getNowDateStr() { + DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyyMMdd"); + LocalDateTime date = LocalDateTime.now(); + return date.format(df); + } + + /** + * 返回1小时10分钟前时间 + * + * @return + */ + public static String get1h10mDateStr() { + DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS"); + LocalDateTime date = LocalDateTime.now(); + date = date.minusHours(1).minusMinutes(10); + return date.format(df); + } + + /** + * 返回昨天当前的时间 + * + * @return + */ + public static String getYesterdayDateStr() { + DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS"); + LocalDateTime date = LocalDateTime.now(); + date = date.minusDays(1); + return date.format(df); + } + + /** + * 返回N天当前的时间 + * + * @return + */ + public static String getYesterdayDateStr(int daynum) { + DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS"); + LocalDateTime date = LocalDateTime.now(); + date = date.minusDays(daynum); + return date.format(df); + } + + /** + * 返回今天的DATE + * + * @return + */ + public static Date getNowDayDate() { + Calendar calendar1 = Calendar.getInstance(); + calendar1.setTime(new Date()); + Calendar calendar2 = Calendar.getInstance(); + calendar2.set(Calendar.YEAR, calendar1.get(Calendar.YEAR)); + calendar2.set(Calendar.MONTH, calendar1.get(Calendar.MONTH)); + calendar2.set(Calendar.DATE, calendar1.get(Calendar.DATE)); + return calendar2.getTime(); + } + + /** + * 返回一年后今天的DATE + * + * @return + */ + public static Date getYearDayDate() { + Calendar calendar1 = Calendar.getInstance(); + calendar1.setTime(new Date()); + Calendar calendar2 = Calendar.getInstance(); + calendar2.set(Calendar.YEAR, calendar1.get(Calendar.YEAR) + 1); + calendar2.set(Calendar.MONTH, calendar1.get(Calendar.MONTH)); + calendar2.set(Calendar.DATE, calendar1.get(Calendar.DATE)); + return calendar2.getTime(); + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/utils/IPWhiteListUtil.java b/src/main/java/com/fr/plugin/cpic/utils/IPWhiteListUtil.java new file mode 100644 index 0000000..2144c88 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/utils/IPWhiteListUtil.java @@ -0,0 +1,373 @@ +package com.fr.plugin.cpic.utils; + +/** + * IP校验类的方法 + */ + +import com.fanruan.api.util.StringKit; +import com.fr.plugin.cpic.config.CpicCustomConfig; + +import javax.servlet.http.HttpServletRequest; +import java.util.ArrayList; +import java.util.HashSet; +import java.util.List; +import java.util.Set; +import java.util.regex.Pattern; + + +public class IPWhiteListUtil { + + private static final String[] PROXYS = {"x-forwarded-for", "Proxy-Client-IP", "WL-Proxy-Client-IP", "X-Real-IP", "HTTP_CLIENT_IP"}; + + // IP的正则 + private static Pattern pattern = Pattern + .compile("(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})\\." + + "(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})\\." + + "(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})\\." + + "(1\\d{1,2}|2[0-4]\\d|25[0-5]|\\d{1,2})"); + + /** + * getAvaliIpList:(根据IP白名单设置获取可用的IP列表). + * + * @return + */ + private static Set getAvaliIpList(String allowIp) { + Set ipList = new HashSet(); + for (String allow : allowIp.replaceAll("\\s", "").split(";")) { + if (allow.indexOf("*") > -1) { + String[] ips = allow.split("\\."); + String[] from = new String[]{"0", "0", "0", "0"}; + String[] end = new String[]{"255", "255", "255", "255"}; + List tem = new ArrayList(); + for (int i = 0; i < ips.length; i++) + if (ips[i].indexOf("*") > -1) { + tem = complete(ips[i]); + from[i] = null; + end[i] = null; + } else { + from[i] = ips[i]; + end[i] = ips[i]; + } + StringBuffer fromIP = new StringBuffer(); + StringBuffer endIP = new StringBuffer(); + for (int i = 0; i < 4; i++) { + if (from[i] != null) { + fromIP.append(from[i]).append("."); + endIP.append(end[i]).append("."); + } else { + fromIP.append("[*]."); + endIP.append("[*]."); + } + } + fromIP.deleteCharAt(fromIP.length() - 1); + endIP.deleteCharAt(endIP.length() - 1); + for (String s : tem) { + String ip = fromIP.toString().replace("[*]", + s.split(";")[0]) + + "-" + + endIP.toString().replace("[*]", s.split(";")[1]); + + if (validate(ip)) { + ipList.add(ip); + } + } + + } else { + if (validate(allow)) { + ipList.add(allow); + } + } + } + return ipList; + } + + private static Set getAvaliIpList(Set ipSet) { + Set ipList = new HashSet(); + for (String allow : ipSet) { + if (allow.indexOf("*") > -1) { + String[] ips = allow.split("\\."); + String[] from = new String[]{"0", "0", "0", "0"}; + String[] end = new String[]{"255", "255", "255", "255"}; + List tem = new ArrayList(); + for (int i = 0; i < ips.length; i++) + if (ips[i].indexOf("*") > -1) { + tem = complete(ips[i]); + from[i] = null; + end[i] = null; + } else { + from[i] = ips[i]; + end[i] = ips[i]; + } + StringBuffer fromIP = new StringBuffer(); + StringBuffer endIP = new StringBuffer(); + for (int i = 0; i < 4; i++) { + if (from[i] != null) { + fromIP.append(from[i]).append("."); + endIP.append(end[i]).append("."); + } else { + fromIP.append("[*]."); + endIP.append("[*]."); + } + } + fromIP.deleteCharAt(fromIP.length() - 1); + + endIP.deleteCharAt(endIP.length() - 1); + + + for (String s : tem) { + String ip = fromIP.toString().replace("[*]", + s.split(";")[0]) + + "-" + + endIP.toString().replace("[*]", s.split(";")[1]); + if (validate(ip)) { + ipList.add(ip); + } + } + } else { + if (validate(allow)) { + ipList.add(allow); + } + } + } + return ipList; + } + + /** + * 对单个IP节点进行范围限定 + * + * @param arg + * @return 返回限定后的IP范围,格式为List[10;19, 100;199] + */ + + private static List complete(String arg) { + List com = new ArrayList(); + if (arg.length() == 1) { + com.add("0;255"); + } else if (arg.length() == 2) { + String s1 = complete(arg, 1); + if (s1 != null) { + com.add(s1); + } + String s2 = complete(arg, 2); + if (s2 != null) { + com.add(s2); + } + } else { + String s1 = complete(arg, 1); + if (s1 != null) { + com.add(s1); + } + } + return com; + } + + private static String complete(String arg, int length) { + + String from = ""; + + String end = ""; + + if (length == 1) { + + from = arg.replace("*", "0"); + + end = arg.replace("*", "9"); + + } else { + + from = arg.replace("*", "00"); + + end = arg.replace("*", "99"); + + } + + if (Integer.valueOf(from) > 255) { + return null; + } + if (Integer.valueOf(end) > 255) { + end = "255"; + } + return from + ";" + end; + + } + + + /** + * 在添加至白名单时进行格式校验 + * + * @param ip + * @return + */ + + private static boolean validate(String ip) { + + for (String s : ip.split("-")) { + if (!pattern.matcher(s).matches()) { + + return false; + + } + } + return true; + + } + + + /** + * checkLoginIP:(根据IP,及可用Ip列表来判断ip是否包含在白名单之中). + * + * @param ip + * @param ipList + * @return + */ + + private static boolean checkLoginIP(String ip, Set ipList) { + if (ipList.contains(ip)) { + return true; + } else { + for (String allow : ipList) { + if (allow.indexOf("-") > -1) { + String[] from = allow.split("-")[0].split("\\."); + String[] end = allow.split("-")[1].split("\\."); + String[] tag = ip.split("\\."); + // 对IP从左到右进行逐段匹配 + boolean check = true; + for (int i = 0; i < 4; i++) { + int s = Integer.valueOf(from[i]); + int t = Integer.valueOf(tag[i]); + int e = Integer.valueOf(end[i]); + if (!(s <= t && t <= e)) { + check = false; + break; + } + } + if (check) { + return true; + } + } + } + } + return false; + } + + + /** + * checkLoginIP:(根据IP地址,及IP白名单设置规则判断IP是否包含在白名单). + * + * @param request + * @return + */ + + public static boolean checkIpIsWhite(HttpServletRequest request) { + // 获取配置 + CpicCustomConfig config = CpicCustomConfig.getInstance(); + String ipWhiteValue = config.getIpWhiteValue(); + if (StringKit.isBlank(ipWhiteValue)) { + return false; + } + + // 获取当前请求IP + String ip = IPWhiteListUtil.getIpAddr(request); + + // 获取白名单全部IP + Set ipList = getAvaliIpList(ipWhiteValue); + + // 返回结果 + return checkLoginIP(ip, ipList); + + } + + + /** + * ip在ipList中,则返回true + * + * @param ip + * @param ipList + * @return + */ + + public static boolean checkIpList(String ip, List ipList) { + + Set ipSet = new HashSet(); + + for (String ipStr : ipList) { + + if (!ipStr.trim().startsWith("#")) { + + ipSet.add(ipStr.trim()); + + } + + } + + ipSet = getAvaliIpList(ipSet); + + return checkLoginIP(ip, ipSet); + + } + + /** + * 获取请求中的IP地址 + * + * @param request + * @return + */ + public static String getIpAddr(HttpServletRequest request) { + String ipAddress = null; + + try { + for (String proxy : PROXYS) { + ipAddress = request.getHeader(proxy); + if (StringKit.isNotBlank(ipAddress) && !"unknown".equalsIgnoreCase(ipAddress)) { + return ipAddress; + } + } + if (StringKit.isBlank(ipAddress) || "unknown".equalsIgnoreCase(ipAddress)) { + ipAddress = request.getRemoteAddr(); +// if (ipAddress.equals("127.0.0.1") || ipAddress.equals("0:0:0:0:0:0:0:1")) { +// // 根据网卡取本机配置的IP +// InetAddress inet = null; +// try { +// inet = InetAddress.getLocalHost(); +// } catch (UnknownHostException e) { +// e.printStackTrace(); +// } +// ipAddress = inet.getHostAddress(); +// } + } + // 对于通过多个代理的情况,第一个IP为客户端真实IP,多个IP按照','分割 + // "***.***.***.***".length() = 15 + if (ipAddress != null && ipAddress.length() > 15) { + if (ipAddress.indexOf(",") > 0) { + ipAddress = ipAddress.substring(0, ipAddress.indexOf(",")); + } + } + } catch (Exception e) { + ipAddress = ""; + } + return ipAddress; + } + + + // 测试 + + public static void main(String[] args) { + + List ipWhilte = new ArrayList<>(); + ipWhilte.add("192.168.1.1"); //设置单个IP的白名单 + ipWhilte.add("192.168.2.*"); //设置ip通配符,对一个ip段进行匹配 + ipWhilte.add("192.168.3.17-192.168.3.38"); //设置一个IP范围 + + System.out.println(ipWhilte); + boolean flag = checkIpList("192.168.2.2", ipWhilte); + boolean flag2 = checkIpList("192.168.1.2", ipWhilte); + boolean flag3 = checkIpList("192.168.3.16", ipWhilte); + boolean flag4 = checkIpList("192.168.3.17", ipWhilte); + System.out.println(flag); //true + System.out.println(flag2); //false + System.out.println(flag3); //false + System.out.println(flag4); //true + } +} + + diff --git a/src/main/java/com/fr/plugin/cpic/utils/PathUtil.java b/src/main/java/com/fr/plugin/cpic/utils/PathUtil.java new file mode 100644 index 0000000..e92c01a --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/utils/PathUtil.java @@ -0,0 +1,48 @@ +package com.fr.plugin.cpic.utils; + +import com.fanruan.api.util.StringKit; +import com.fr.plugin.context.PluginContext; +import com.fr.plugin.context.PluginContexts; + +import java.net.URL; +import java.util.List; + +/** + * 路径工具 + */ +public class PathUtil { + + /** + * 获取当前插件目录 + * + * @return + * @throws Exception + */ + public static String getLocalCachePath() throws Exception { + PluginContext contexts = PluginContexts.currentContext(); + List urls = contexts.getClassPaths(); + String classPath = ""; + for (URL url : urls) { + if (url.getPath().contains("classes")) { + classPath = StringKit.subStringByByteLength(url.getPath(), "UTF-8", url.getPath().indexOf("classes")); + } + } + return classPath; + } + + /** + * 获取后缀名 + * + * @param fileName + * @return + */ + public static String getLastName(String fileName) { + String[] split = fileName.split("\\."); + if (split.length > 1) { + return split[split.length - 1]; + } else { + return ""; + } + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/utils/UrlUtils.java b/src/main/java/com/fr/plugin/cpic/utils/UrlUtils.java new file mode 100644 index 0000000..611ecfa --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/utils/UrlUtils.java @@ -0,0 +1,83 @@ +package com.fr.plugin.cpic.utils; + +import com.fr.stable.StringUtils; + +import java.util.HashMap; +import java.util.Map; +import java.util.Map.Entry; + +public class UrlUtils { + + /** + * 获取URL的参数列表 + * + * @param url + * @return + */ + public static String getBaseUrl(String url) { + String baseUrl = ""; + if (StringUtils.isBlank(url)) { + return baseUrl; + } + url = url.trim(); + String[] urlParts = url.split("\\?"); + //没有参数 + if (urlParts.length >= 1) { + baseUrl = urlParts[0]; + } + return baseUrl; + } + + /** + * 获取URL的参数列表 + * + * @param url + * @return + */ + public static Map getParams(String url) { + Map params = new HashMap<>(); + if (StringUtils.isBlank(url)) { + return params; + } + url = url.trim(); + String[] urlParts = url.split("\\?"); + //没有参数 + if (urlParts.length <= 1) { + return params; + } + //有参数 + String[] urlParams = urlParts[1].split("&"); + for (String param : urlParams) { + String[] keyValue = param.split("="); + if (keyValue.length < 2) { + continue; + } + params.put(keyValue[0], keyValue[1]); + } + return params; + } + + /** + * 生成完整url + * + * @param baseUrl + * @param params + * @return + */ + public static String getUrl(String baseUrl, Map params) { + StringBuilder sb = new StringBuilder(); + sb.append(baseUrl); + if (null != params && params.size() > 0) { + sb.append("?"); + for (Entry entry : params.entrySet()) { + sb.append(entry.getKey()).append("=").append(entry.getValue()).append("&"); + } + } + String url = sb.toString(); + if (url.endsWith("&")) { + url = url.substring(0, url.length() - 1); + } + return url; + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/web/CpicControllerRegisterProvider.java b/src/main/java/com/fr/plugin/cpic/web/CpicControllerRegisterProvider.java new file mode 100644 index 0000000..8a36fdf --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/CpicControllerRegisterProvider.java @@ -0,0 +1,22 @@ +package com.fr.plugin.cpic.web; + +import com.fr.decision.fun.impl.AbstractControllerRegisterProvider; +import com.fr.plugin.cpic.web.controller.CpicEntryController; +import com.fr.plugin.cpic.web.controller.CpicHomeController; +import com.fr.plugin.cpic.web.controller.CpicHomeIndexController; +import com.fr.plugin.cpic.web.controller.CpicUserController; + +/** + * 注册新的接口 + */ +public class CpicControllerRegisterProvider extends AbstractControllerRegisterProvider { + @Override + public Class[] getControllers() { + return new Class[]{ + CpicHomeIndexController.class, + CpicHomeController.class, + CpicUserController.class, + CpicEntryController.class, + }; + } +} diff --git a/src/main/java/com/fr/plugin/cpic/web/CpicHomeOptionProvider.java b/src/main/java/com/fr/plugin/cpic/web/CpicHomeOptionProvider.java new file mode 100644 index 0000000..bc6d901 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/CpicHomeOptionProvider.java @@ -0,0 +1,50 @@ +package com.fr.plugin.cpic.web; + +import com.fr.decision.authority.base.AuthorityConstants; +import com.fr.decision.authority.base.constant.AuthorityStaticItemId; +import com.fr.decision.fun.impl.AbstractSystemOptionProvider; +import com.fr.decision.web.MainComponent; +import com.fr.plugin.cpic.web.component.CpicHomeComponent; +import com.fr.stable.fun.mark.API; +import com.fr.web.struct.Atom; + + +@API(level = CpicHomeOptionProvider.CURRENT_LEVEL) +public class CpicHomeOptionProvider extends AbstractSystemOptionProvider { + + private static final String DEC_PLUGIN_HOME_ID = "dec_plugin_home_id"; + + @Override + public String id() { + return DEC_PLUGIN_HOME_ID; + } + + @Override + public String displayName() { + return "门户管理"; + } + + @Override + public int sortIndex() { + return 0; + } + + @Override + public String fullPath() { + // 判断后台实际权限 + return AuthorityStaticItemId.DEC_MANAGEMENT_ID + + AuthorityConstants.FULL_PATH_SPLITTER + + DEC_PLUGIN_HOME_ID; + } + + @Override + public Atom attach() { + return MainComponent.KEY; + } + + @Override + public Atom client() { + return CpicHomeComponent.KEY; + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/web/CpicWebResourceProvider.java b/src/main/java/com/fr/plugin/cpic/web/CpicWebResourceProvider.java new file mode 100644 index 0000000..79a5d1d --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/CpicWebResourceProvider.java @@ -0,0 +1,23 @@ +package com.fr.plugin.cpic.web; + +import com.fr.decision.fun.impl.AbstractWebResourceProvider; +import com.fr.decision.web.MainComponent; +import com.fr.plugin.cpic.web.component.CpicThemeJsComponent; +import com.fr.web.struct.Atom; + +/** + * 注入JS + */ +public class CpicWebResourceProvider extends AbstractWebResourceProvider { + + @Override + public Atom attach() { + return MainComponent.KEY; + } + + public Atom[] clients() { + return new Atom[]{ + CpicThemeJsComponent.KEY + }; + } +} diff --git a/src/main/java/com/fr/plugin/cpic/web/bean/TreeItemBean.java b/src/main/java/com/fr/plugin/cpic/web/bean/TreeItemBean.java new file mode 100644 index 0000000..f011079 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/bean/TreeItemBean.java @@ -0,0 +1,88 @@ +package com.fr.plugin.cpic.web.bean; + +import java.util.List; + +public class TreeItemBean { + + private String title; + private String id; + private String field; + private String href; + private boolean spread; + private boolean checked; + private boolean disabled; + private String pid; + private List children; + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getField() { + return field; + } + + public void setField(String field) { + this.field = field; + } + + public String getHref() { + return href; + } + + public void setHref(String href) { + this.href = href; + } + + public boolean isSpread() { + return spread; + } + + public void setSpread(boolean spread) { + this.spread = spread; + } + + public boolean isChecked() { + return checked; + } + + public void setChecked(boolean checked) { + this.checked = checked; + } + + public boolean isDisabled() { + return disabled; + } + + public void setDisabled(boolean disabled) { + this.disabled = disabled; + } + + public List getChildren() { + return children; + } + + public void setChildren(List children) { + this.children = children; + } + + public String getPid() { + return pid; + } + + public void setPid(String pid) { + this.pid = pid; + } +} diff --git a/src/main/java/com/fr/plugin/cpic/web/bean/UserMenuBean.java b/src/main/java/com/fr/plugin/cpic/web/bean/UserMenuBean.java new file mode 100644 index 0000000..fe32fab --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/bean/UserMenuBean.java @@ -0,0 +1,52 @@ +package com.fr.plugin.cpic.web.bean; + +import java.util.List; + +public class UserMenuBean { + + private String id; + private String title; + private String pid; + private String mtype; + private List children; + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getPid() { + return pid; + } + + public void setPid(String pid) { + this.pid = pid; + } + + public String getMtype() { + return mtype; + } + + public void setMtype(String mtype) { + this.mtype = mtype; + } + + public List getChildren() { + return children; + } + + public void setChildren(List children) { + this.children = children; + } +} diff --git a/src/main/java/com/fr/plugin/cpic/web/component/CpicHomeComponent.java b/src/main/java/com/fr/plugin/cpic/web/component/CpicHomeComponent.java new file mode 100644 index 0000000..8603a30 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/component/CpicHomeComponent.java @@ -0,0 +1,24 @@ +package com.fr.plugin.cpic.web.component; + +import com.fr.plugin.transform.ExecuteFunctionRecord; +import com.fr.plugin.transform.FunctionRecorder; +import com.fr.web.struct.Component; +import com.fr.web.struct.browser.RequestClient; +import com.fr.web.struct.category.ScriptPath; + +@FunctionRecorder +public class CpicHomeComponent extends Component { + + public static CpicHomeComponent KEY = new CpicHomeComponent(); + + private CpicHomeComponent() { + + } + + @ExecuteFunctionRecord + @Override + public ScriptPath script(RequestClient requestClient) { + return ScriptPath.build("/com/fr/plugin/cpic/web/js/cpic_home.js"); + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/web/component/CpicThemeJsComponent.java b/src/main/java/com/fr/plugin/cpic/web/component/CpicThemeJsComponent.java new file mode 100644 index 0000000..976f837 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/component/CpicThemeJsComponent.java @@ -0,0 +1,22 @@ +package com.fr.plugin.cpic.web.component; + +import com.fr.web.struct.Component; +import com.fr.web.struct.browser.RequestClient; +import com.fr.web.struct.category.FileType; +import com.fr.web.struct.category.ParserType; +import com.fr.web.struct.category.ScriptPath; + +public class CpicThemeJsComponent extends Component { + + public static CpicThemeJsComponent KEY = new CpicThemeJsComponent(); + + private CpicThemeJsComponent() { + + } + + @Override + public ScriptPath script(RequestClient requestClient) { + return ScriptPath.build("com.fr.plugin.cpic.web.component.generator.CpicThemeJsGenerator", FileType.CLASS, ParserType.DYNAMIC); + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/web/component/generator/CpicThemeJsGenerator.java b/src/main/java/com/fr/plugin/cpic/web/component/generator/CpicThemeJsGenerator.java new file mode 100644 index 0000000..fda68f5 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/component/generator/CpicThemeJsGenerator.java @@ -0,0 +1,28 @@ +package com.fr.plugin.cpic.web.component.generator; + +import com.fr.base.TemplateUtils; +import com.fr.gen.TextGenerator; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.util.HashMap; +import java.util.Map; + +public class CpicThemeJsGenerator implements TextGenerator { + + public String text(HttpServletRequest req, HttpServletResponse res) throws Exception { + Map renderMap = new HashMap(); + + return TemplateUtils.renderTemplate(this.template(), renderMap); + } + + + public String mimeType() { + return "text/javascript"; + } + + public String template() { + return "/com/fr/plugin/cpic/web/js/customexport.js"; + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/web/controller/CpicEntryController.java b/src/main/java/com/fr/plugin/cpic/web/controller/CpicEntryController.java new file mode 100644 index 0000000..4b175e3 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/controller/CpicEntryController.java @@ -0,0 +1,145 @@ +package com.fr.plugin.cpic.web.controller; + +import com.fr.decision.authority.data.User; +import com.fr.decision.service.DecisionService; +import com.fr.decision.webservice.Response; +import com.fr.decision.webservice.annotation.LoginStatusChecker; +import com.fr.decision.webservice.bean.entry.EntryBean; +import com.fr.decision.webservice.utils.ControllerFactory; +import com.fr.decision.webservice.v10.user.UserService; +import com.fr.plugin.cpic.db.bean.CpicEntryBean; +import com.fr.plugin.cpic.db.bean.CpicHomeBean; +import com.fr.plugin.cpic.db.service.CpicEntryService; +import com.fr.plugin.cpic.db.service.CpicHomeService; +import com.fr.plugin.cpic.utils.ConvertUtil; +import com.fr.plugin.cpic.web.bean.TreeItemBean; +import com.fr.stable.web.Device; +import com.fr.third.org.apache.commons.collections4.CollectionUtils; +import com.fr.third.springframework.stereotype.Controller; +import com.fr.third.springframework.web.bind.annotation.RequestBody; +import com.fr.third.springframework.web.bind.annotation.RequestMapping; +import com.fr.third.springframework.web.bind.annotation.RequestMethod; +import com.fr.third.springframework.web.bind.annotation.ResponseBody; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.util.ArrayList; +import java.util.List; +import java.util.stream.Collectors; + +/** + * 目录 + */ +@Controller +@LoginStatusChecker(required = false) +@RequestMapping(value = "/cpic") +public class CpicEntryController { + + @RequestMapping(value = "/home/entrys", method = RequestMethod.GET) + @ResponseBody + public Response getAllEntry(HttpServletRequest request, HttpServletResponse response) throws Exception { + try { + String homeId = request.getParameter("homeId"); + // 获取全部目录和报表 +// String userId = UserService.getInstance().getAdminUserIdList().get(0); + String userId = DecisionService.getInstance().authority().userService().getAdminUserIdList().get(0); + + List entryBeanList = ControllerFactory.getInstance().getEntryController(userId).getEntryTree(userId, Device.PC); + // 获取门户勾选的目录 + List cpicEntryBeanList = CpicEntryService.findList(homeId); + // 生成树结构数据 + List treeBean = ConvertUtil.toTree(entryBeanList, cpicEntryBeanList); + return Response.ok(treeBean); + } catch (Exception e) { + return Response.error("-1", "error:" + e.getMessage()); + } + } + + @RequestMapping(value = "/home/entrychecked", method = RequestMethod.GET) + @ResponseBody + public Response getChecked(HttpServletRequest request, HttpServletResponse response) throws Exception { + try { + String homeId = request.getParameter("homeId"); + // 获取门户勾选的目录 + List cpicEntryBeanList = CpicEntryService.findList(homeId); + // 生成树结构数据 + List entryIdList = cpicEntryBeanList.stream().map(CpicEntryBean::getEntryId).collect(Collectors.toList()); + return Response.ok(entryIdList); + } catch (Exception e) { + return Response.error("-1", "error:" + e.getMessage()); + } + } + + @RequestMapping(value = "/home/entrys", method = RequestMethod.POST) + @ResponseBody + public Response saveOrUpdate(HttpServletRequest request, HttpServletResponse response, @RequestBody List treeBean) throws Exception { + try { + // 校验输入 +// if (null == treeBean || CollectionUtils.isEmpty(treeBean)) { +// return Response.success(); +// } + + String homeId = request.getParameter("homeId"); + // 查询home信息 + CpicHomeBean home = CpicHomeService.findById(homeId); + if (null == home) { + return Response.success(); + } + // 获取现有保存的数据 + List cpicEntryBeanList = CpicEntryService.findList(homeId); + + // treeBean转换 + List checkedEntry = ConvertUtil.itemsToEntrys(treeBean); + + // 获取新增和更新列表 + List updateList = new ArrayList<>(); + List addList = new ArrayList<>(); + for (CpicEntryBean item : checkedEntry) { + CpicEntryBean temp = cpicEntryBeanList.stream().filter(entry -> entry.getEntryId().equals(item.getEntryId())).findFirst().orElse(null); + if (null != temp) { + temp.setEntryName(item.getEntryName()); + updateList.add(temp); + } else { + item.setHomeId(home.getId()); + item.setHomeName(home.getName()); + addList.add(item); + } + } + + // 获取删除列表 + List delList = new ArrayList<>(); + for (CpicEntryBean item : cpicEntryBeanList) { + CpicEntryBean temp = checkedEntry.stream().filter(entry -> entry.getEntryId().equals(item.getEntryId())).findFirst().orElse(null); + if (null == temp) { + delList.add(item); + } + } + + // 更新 + if (CollectionUtils.isNotEmpty(updateList)) { + for (CpicEntryBean entry : updateList) { + CpicEntryService.saveOrUpdate(entry); + } + } + + // 新增 + if (CollectionUtils.isNotEmpty(addList)) { + for (CpicEntryBean entry : addList) { + CpicEntryService.saveOrUpdate(entry); + } + } + + // 删除 + if (CollectionUtils.isNotEmpty(delList)) { + for (CpicEntryBean entry : delList) { + CpicEntryService.realDel(entry.getId()); + } + } + + return Response.success(); + } catch (Exception e) { + return Response.error("-1", "error:" + e.getMessage()); + } + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/web/controller/CpicHomeController.java b/src/main/java/com/fr/plugin/cpic/web/controller/CpicHomeController.java new file mode 100644 index 0000000..78b573a --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/controller/CpicHomeController.java @@ -0,0 +1,119 @@ +package com.fr.plugin.cpic.web.controller; + +import com.fanruan.api.util.StringKit; +import com.fr.decision.webservice.Response; +import com.fr.decision.webservice.annotation.LoginStatusChecker; +import com.fr.decision.webservice.bean.config.ThemeConfigBean; +import com.fr.decision.webservice.v10.config.ConfigService; +import com.fr.plugin.cpic.db.bean.CpicHomeBean; +import com.fr.plugin.cpic.db.service.CpicHomeService; +import com.fr.third.springframework.stereotype.Controller; +import com.fr.third.springframework.web.bind.annotation.RequestBody; +import com.fr.third.springframework.web.bind.annotation.RequestMapping; +import com.fr.third.springframework.web.bind.annotation.RequestMethod; +import com.fr.third.springframework.web.bind.annotation.ResponseBody; +import com.fr.web.utils.WebUtils; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +/** + * 回调接口 + */ +@Controller +@LoginStatusChecker(required = false) +@RequestMapping(value = "/cpic") +public class CpicHomeController { + + @RequestMapping(value = "/home", method = RequestMethod.GET) + public void index(HttpServletRequest request, HttpServletResponse response) throws Exception { + HashMap hashMap = new HashMap(); + hashMap.put("loginUser", "xx"); + hashMap.put("callBack", "xx"); + WebUtils.writeOutTemplate("/com/fr/plugin/cpic/web/html/home.html", response, hashMap); + } + + @RequestMapping(value = "/home/list", method = RequestMethod.GET) + @ResponseBody + public Response getAll(HttpServletRequest request, HttpServletResponse response) throws Exception { + try { + List list = CpicHomeService.findList(); + Map result = new HashMap<>(); + result.put("homeList", list); + return Response.ok(result); + } catch (Exception e) { + return Response.error("-1", "error:" + e.getMessage()); + } + } + + @RequestMapping(value = "/home/themes", method = RequestMethod.GET) + @ResponseBody + public Response getAllTheme(HttpServletRequest request, HttpServletResponse response) throws Exception { + try { + return Response.ok(ConfigService.getInstance().getAllThemes()); + } catch (Exception e) { + return Response.error("-1", "error:" + e.getMessage()); + } + } + + @RequestMapping(value = "/home/edit", method = RequestMethod.POST) + @ResponseBody + public Response saveOrUpdate(HttpServletRequest request, HttpServletResponse response, @RequestBody CpicHomeBean cpicHomeBean) throws Exception { + try { + // 校验输入 + if (StringKit.isBlank(cpicHomeBean.getName())) { + return Response.error("-1", "请输入门户名称!"); + } + if (StringKit.isBlank(cpicHomeBean.getPath())) { + return Response.error("-1", "请输入门户地址!"); + } + + // 校验重名 + CpicHomeBean nameBean = CpicHomeService.findByName(cpicHomeBean.getName(), cpicHomeBean.getId()); + if (null != nameBean) { + return Response.error("-1", "门户名称重复,请修改后重试!"); + } + CpicHomeBean pathBean = CpicHomeService.findByPath(cpicHomeBean.getPath(), cpicHomeBean.getId()); + if (null != pathBean) { + return Response.error("-1", "门户地址重复,请修改后重试!"); + } + + List themeList = ConfigService.getInstance().getAllThemes(); + ThemeConfigBean themeConfigBean = themeList.stream().filter(item -> item.getThemeId().equals(cpicHomeBean.getThemeId())).findFirst().orElse(null); + if (null != themeConfigBean) { + cpicHomeBean.setThemeName(themeConfigBean.getName()); + } + if ("classic".equals(cpicHomeBean.getThemeId())) { + cpicHomeBean.setThemeName("经典"); + } + if ("modern".equals(cpicHomeBean.getThemeId())) { + cpicHomeBean.setThemeName("扁平化"); + } + + // 保存 + CpicHomeService.saveOrUpdate(cpicHomeBean); + + // 返回成功的数据 + CpicHomeBean result = CpicHomeService.findByName(cpicHomeBean.getName(), ""); + return Response.ok(result); + } catch (Exception e) { + return Response.error("-1", "error:" + e.getMessage()); + } + } + + @RequestMapping(value = "/home/del", method = RequestMethod.POST) + @ResponseBody + public Response delete(HttpServletRequest request, HttpServletResponse response, @RequestBody CpicHomeBean cpicHomeBean) throws Exception { + try { + // 删除 + CpicHomeService.logicDel(cpicHomeBean.getId()); + return Response.success(); + } catch (Exception e) { + return Response.error("-1", "error:" + e.getMessage()); + } + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/web/controller/CpicHomeIndexController.java b/src/main/java/com/fr/plugin/cpic/web/controller/CpicHomeIndexController.java new file mode 100644 index 0000000..e4f0665 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/controller/CpicHomeIndexController.java @@ -0,0 +1,102 @@ +package com.fr.plugin.cpic.web.controller; + +import com.fanruan.api.log.LogKit; +import com.fr.base.ServerConfig; +import com.fr.decision.authority.data.User; +import com.fr.decision.inject.DecisionInjectExtraInfoBuilder; +import com.fr.decision.inject.DefaultDecisionInjectNodes; +import com.fr.decision.inject.node.DecisionInjectNode; +import com.fr.decision.inject.node.DecisionInjectNodeManager; +import com.fr.decision.service.DecisionService; +import com.fr.decision.web.MainComponent; +import com.fr.decision.webservice.annotation.LoginStatusChecker; +import com.fr.decision.webservice.v10.login.TokenResource; +import com.fr.plugin.cpic.db.bean.CpicHomeBean; +import com.fr.plugin.cpic.db.bean.CpicUserBean; +import com.fr.plugin.cpic.db.service.CpicHomeService; +import com.fr.plugin.cpic.db.service.CpicUserService; +import com.fr.plugin.cpic.web.custom.CustomDecisionErrorInjectNode; +import com.fr.plugin.cpic.web.custom.CustomDecisionSystemInjectNode; +import com.fr.plugin.cpic.web.custom.CustomDecisionUserInjectNode; +import com.fr.third.springframework.stereotype.Controller; +import com.fr.third.springframework.web.bind.annotation.PathVariable; +import com.fr.third.springframework.web.bind.annotation.RequestMapping; +import com.fr.third.springframework.web.bind.annotation.ResponseBody; +import com.fr.web.Browser; +import com.fr.web.struct.AtomBuilder; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.util.HashMap; + +/** + * 页面 + */ +@Controller +//@LoginStatusChecker(required = false) +@RequestMapping(value = "/home") +public class CpicHomeIndexController { + + @RequestMapping( + value = {"/{path}"}, + produces = {"text/html"} + ) + @ResponseBody + @LoginStatusChecker( + tokenResource = TokenResource.COOKIE + ) + public String home(HttpServletRequest request, HttpServletResponse response, @PathVariable("path") String path) throws Exception { + HashMap params = new HashMap(); + params.put("charset", ServerConfig.getInstance().getServerCharset()); + // 根据path查询 + CpicHomeBean home = CpicHomeService.findByPath(path, ""); + if (null == home) { + DecisionInjectNode[] nodes = new DecisionInjectNode[]{ + new CustomDecisionErrorInjectNode("NN", "", "门户地址[" + path + "]不存在") + }; + return DecisionInjectNodeManager.box( + DecisionInjectExtraInfoBuilder.builder().request(request).user(DecisionService.getInstance().authority().userService().getUserByRequestCookie(request)).pagePath("/com/fr/plugin/cpic/web/html/error.html").pathGroup(AtomBuilder.create().buildAssembleFilePath(Browser.resolve(request), MainComponent.KEY)).build(), + nodes); + } + User user = DecisionService.getInstance().authority().userService().getUserByRequestCookie(request); + // 查询当前用户是否有登录权限 + CpicUserBean cpicUserBean = CpicUserService.findHomeUserByUserId(home.getId(), user.getId()); + // 没有权限的用户跳转到提示页面 + if (null == cpicUserBean) { + DecisionInjectNode[] nodes = new DecisionInjectNode[]{ + new CustomDecisionErrorInjectNode("YY", home.getPath(), "登录用户[" + user.getUserName() + "]没有门户[" + home.getName() + "]登录权限") + }; + return DecisionInjectNodeManager.box( + DecisionInjectExtraInfoBuilder.builder().request(request).user(DecisionService.getInstance().authority().userService().getUserByRequestCookie(request)).pagePath("/com/fr/plugin/cpic/web/html/error.html").pathGroup(AtomBuilder.create().buildAssembleFilePath(Browser.resolve(request), MainComponent.KEY)).build(), + nodes); + } + + // 主页 + LogKit.debug("门户首页地址:", home.getMhpath()); + CustomDecisionUserInjectNode customUserNode = new CustomDecisionUserInjectNode(home.getMhpath()); + + // 主题 + LogKit.debug("门户主题:", home.getThemeId()); + CustomDecisionSystemInjectNode customSystemNode = new CustomDecisionSystemInjectNode(home.getThemeId()); + + // 生成数据 + DecisionInjectNode[] nodes = new DecisionInjectNode[]{ + DefaultDecisionInjectNodes.scriptInfo(), + DefaultDecisionInjectNodes.styleInfo(), + DefaultDecisionInjectNodes.charsetInfo(), +// DefaultDecisionInjectNodes.systemInfo(), + customSystemNode, +// DefaultDecisionInjectNodes.userInfo(), + customUserNode, + DefaultDecisionInjectNodes.titleInfo() + }; + + return DecisionInjectNodeManager.box( + DecisionInjectExtraInfoBuilder.builder().request(request).user(DecisionService.getInstance().authority().userService().getUserByRequestCookie(request)).pagePath("/com/fr/plugin/cpic/web/html/resources/index.html").pathGroup(AtomBuilder.create().buildAssembleFilePath(Browser.resolve(request), MainComponent.KEY)).build(), + nodes); + + } + + + +} diff --git a/src/main/java/com/fr/plugin/cpic/web/controller/CpicUserController.java b/src/main/java/com/fr/plugin/cpic/web/controller/CpicUserController.java new file mode 100644 index 0000000..b30e177 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/controller/CpicUserController.java @@ -0,0 +1,382 @@ +package com.fr.plugin.cpic.web.controller; + +import com.fr.decision.authority.AuthorityContext; +import com.fr.decision.authority.base.constant.type.authority.GradeManagementAuthorityType; +import com.fr.decision.authority.data.CustomRole; +import com.fr.decision.authority.data.Department; +import com.fr.decision.authority.data.Post; +import com.fr.decision.authority.data.User; +import com.fr.decision.service.DecisionService; +import com.fr.decision.webservice.Response; +import com.fr.decision.webservice.annotation.LoginStatusChecker; +import com.fr.decision.webservice.utils.ControllerFactory; +import com.fr.decision.webservice.v10.user.UserService; +import com.fr.general.ComparatorUtils; +import com.fr.plugin.cpic.db.bean.CpicHomeBean; +import com.fr.plugin.cpic.db.bean.CpicUserBean; +import com.fr.plugin.cpic.db.service.CpicHomeService; +import com.fr.plugin.cpic.db.service.CpicUserService; +import com.fr.plugin.cpic.utils.ConvertUtil; +import com.fr.plugin.cpic.web.bean.UserMenuBean; +import com.fr.stable.query.QueryFactory; +import com.fr.stable.query.data.DataList; +import com.fr.stable.query.restriction.RestrictionFactory; +import com.fr.third.org.apache.commons.collections4.CollectionUtils; +import com.fr.third.springframework.stereotype.Controller; +import com.fr.third.springframework.web.bind.annotation.RequestBody; +import com.fr.third.springframework.web.bind.annotation.RequestMapping; +import com.fr.third.springframework.web.bind.annotation.RequestMethod; +import com.fr.third.springframework.web.bind.annotation.ResponseBody; +import com.fr.web.utils.WebUtils; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.util.*; +import java.util.stream.Collectors; + +/** + * 用户 + */ +@Controller +@LoginStatusChecker(required = false) +@RequestMapping(value = "/cpic") +public class CpicUserController { + + @RequestMapping(value = "/user", method = RequestMethod.GET) + public void index(HttpServletRequest request, HttpServletResponse response) throws Exception { + // 查询初始化数据 + String homeId = request.getParameter("homeId"); + CpicHomeBean home = CpicHomeService.findById(homeId); + + HashMap hashMap = new HashMap(); + hashMap.put("homeId", home.getId()); + hashMap.put("homeName", home.getName()); + WebUtils.writeOutTemplate("/com/fr/plugin/cpic/web/html/user.html", response, hashMap); + } + + @RequestMapping(value = "/user/menus", method = RequestMethod.GET) + @ResponseBody + public Response getMenus2(HttpServletRequest request, HttpServletResponse response) throws Exception { + try { + String dimensionType = request.getParameter("dimensionType"); +// String adminId = UserService.getInstance().getAdminUserIdList().get(0); + String adminId = DecisionService.getInstance().authority().userService().getAdminUserIdList().get(0); + // 查询菜单结构 + List menuList = new ArrayList<>(); + if ("department".equals(dimensionType)) { + // 部门 + Department[] departments = ControllerFactory.getInstance().getDepartmentController(adminId).getDepartmentTree(adminId); + List departmentList = new ArrayList(departments.length); + Collections.addAll(departmentList, departments); + departmentList.sort((var0, var1x) -> ComparatorUtils.compare(var0.getAlias(), var1x.getAlias())); + menuList = ConvertUtil.departmentListToTree(departmentList); + } + if ("customrole".equals(dimensionType)) { + // 角色 + List customRoleList = ControllerFactory.getInstance().getCustomRoleController(adminId).getAllCustomRoles(adminId, "", GradeManagementAuthorityType.TYPE); + customRoleList.sort((var0, var1x) -> ComparatorUtils.compare(var0.getAlias(), var1x.getAlias())); + menuList = ConvertUtil.roleListToMenuList(customRoleList); + } + return Response.ok(menuList); + } catch (Exception e) { + return Response.error("-1", "error:" + e.getMessage()); + } + } + + @RequestMapping(value = "/user/list", method = RequestMethod.GET) + @ResponseBody + public Response getUsers(HttpServletRequest request, HttpServletResponse response) throws Exception { + try { + String menuId = request.getParameter("menuId"); + String menuType = request.getParameter("menuType"); + String homeId = request.getParameter("homeId"); + CpicHomeBean home = CpicHomeService.findById(homeId); + // 查询所有已配置的用户 + List userList = CpicUserService.findList(homeId); + + List resultUserList = new ArrayList<>(); + // 获取全部用户 + if ("all".equals(menuType)) { + // 查询 + List sysUserList = AuthorityContext.getInstance().getUserController().find(QueryFactory.create().addRestriction(RestrictionFactory.eq("enable", true))); + CpicUserBean cpicUser; + if (CollectionUtils.isNotEmpty(sysUserList)) { + for (User user : sysUserList) { + cpicUser = new CpicUserBean(); + cpicUser.setHomeId(home.getId()); + cpicUser.setHomeName(home.getName()); + cpicUser.setUserId(user.getId()); + cpicUser.setUserAccount(user.getUserName()); + cpicUser.setUserName(user.getRealName()); + resultUserList.add(cpicUser); + } + } + // 剔除已配置的用户返回 + return Response.ok(eliminateUser(resultUserList, userList)); + } else { + List sysUserList = new ArrayList<>(); + if ("department".equals(menuType)) { + // 查询指定部门用户(部门下可能有多个职务) + sysUserList = this.getUserListByDept(menuId); + } + if ("customrole".equals(menuType)) { + // 查询指定角色用户 + DataList roleUserList = AuthorityContext.getInstance().getUserController().findByCustomRole(menuId, null); + if (!roleUserList.isEmpty()) { + sysUserList.addAll(roleUserList.getList()); + } + } + if (CollectionUtils.isNotEmpty(sysUserList)) { + CpicUserBean cpicUser; + for (User user : sysUserList) { + cpicUser = new CpicUserBean(); + cpicUser.setHomeId(home.getId()); + cpicUser.setHomeName(home.getName()); + cpicUser.setUserId(user.getId()); + cpicUser.setUserAccount(user.getUserName()); + cpicUser.setUserName(user.getRealName()); + resultUserList.add(cpicUser); + } + } + // 筛选出当前部门或者角色已配置用户 + List filterUserList = new ArrayList<>(); + for (CpicUserBean userBean : userList) { + CpicUserBean temp = resultUserList.stream().filter(item -> item.getUserId().equals(userBean.getUserId())).findFirst().orElse(null); + if (null != temp) { + filterUserList.add(userBean); + } + } + return Response.ok(eliminateUser(resultUserList, filterUserList)); + } + } catch ( + Exception e) { + return Response.error("-1", "error:" + e.getMessage()); + } + } + + @RequestMapping(value = "/user/list2", method = RequestMethod.GET) + @ResponseBody + public Response getUsers2(HttpServletRequest request, HttpServletResponse response) throws Exception { + try { + String menuId = request.getParameter("menuId"); + String menuType = request.getParameter("menuType"); + String homeId = request.getParameter("homeId"); + CpicHomeBean home = CpicHomeService.findById(homeId); + + // 查询所有已配置的用户 + List userList = CpicUserService.findList(homeId); + + // 获取全部用户 + if ("all".equals(menuType)) { + return Response.ok(userList); + } else { + List allUserList = new ArrayList<>(); + List sysUserList = new ArrayList<>(); + if ("department".equals(menuType)) { + // 查询指定部门用户 + sysUserList = this.getUserListByDept(menuId); + } + if ("customrole".equals(menuType)) { + // 查询指定角色用户 + DataList roleUserList = AuthorityContext.getInstance().getUserController().findByCustomRole(menuId, null); + if (!roleUserList.isEmpty()) { + sysUserList.addAll(roleUserList.getList()); + } + } + if (CollectionUtils.isNotEmpty(sysUserList)) { + CpicUserBean cpicUser; + for (User user : sysUserList) { + cpicUser = new CpicUserBean(); + cpicUser.setHomeId(home.getId()); + cpicUser.setHomeName(home.getName()); + cpicUser.setUserId(user.getId()); + cpicUser.setUserAccount(user.getUserName()); + cpicUser.setUserName(user.getRealName()); + allUserList.add(cpicUser); + } + } + // 筛选出当前部门或者角色已配置用户 + List filterUserList = new ArrayList<>(); + for (CpicUserBean userBean : userList) { + CpicUserBean temp = allUserList.stream().filter(item -> item.getUserId().equals(userBean.getUserId())).findFirst().orElse(null); + if (null != temp) { + filterUserList.add(userBean); + } + } + return Response.ok(filterUserList); + } + } catch ( + Exception e) { + return Response.error("-1", "error:" + e.getMessage()); + } + + } + + @RequestMapping(value = "/user/add", method = RequestMethod.POST) + @ResponseBody + public Response saveOrUpdate(HttpServletRequest request, HttpServletResponse response, @RequestBody List userBeanList) throws Exception { + try { + String menuId = request.getParameter("menuId"); + String menuType = request.getParameter("menuType"); + String homeId = request.getParameter("homeId"); + CpicHomeBean home = CpicHomeService.findById(homeId); + + if (null == home) { + return Response.success(); + } + + // 查询所有已配置的用户 + List userList = CpicUserService.findList(homeId); + Map> result; + // 获取全部用户 + if ("all".equals(menuType)) { + result = handleUserList(userList, userBeanList, home); + } else { + List allUserList = new ArrayList<>(); + List sysUserList = new ArrayList<>(); + if ("department".equals(menuType)) { + // 查询指定部门用户 + sysUserList = this.getUserListByDept(menuId); + } + if ("customrole".equals(menuType)) { + // 查询指定角色用户 + DataList roleUserList = AuthorityContext.getInstance().getUserController().findByCustomRole(menuId, null); + if (!roleUserList.isEmpty()) { + sysUserList.addAll(roleUserList.getList()); + } + } + if (CollectionUtils.isNotEmpty(sysUserList)) { + CpicUserBean cpicUser; + for (User user : sysUserList) { + cpicUser = new CpicUserBean(); + cpicUser.setHomeId(home.getId()); + cpicUser.setHomeName(home.getName()); + cpicUser.setUserId(user.getId()); + cpicUser.setUserAccount(user.getUserName()); + cpicUser.setUserName(user.getRealName()); + allUserList.add(cpicUser); + } + } + + // 筛选出当前部门或者角色已配置用户 + List filterUserList = new ArrayList<>(); + for (CpicUserBean userBean : userList) { + CpicUserBean temp = allUserList.stream().filter(item -> item.getUserId().equals(userBean.getUserId())).findFirst().orElse(null); + if (null != temp) { + filterUserList.add(userBean); + } + } + result = handleUserList(filterUserList, userBeanList, home); + } + + // 新增/修改/删除列表 + List addList = result.getOrDefault("ADD", new ArrayList<>()); + List updateList = result.getOrDefault("UPDATE", new ArrayList<>()); + List delList = result.getOrDefault("DELETE", new ArrayList<>()); + + // 更新 + if (CollectionUtils.isNotEmpty(updateList)) { + for (CpicUserBean user : updateList) { + CpicUserService.saveOrUpdate(user); + } + } + + // 新增 + if (CollectionUtils.isNotEmpty(addList)) { + for (CpicUserBean user : addList) { + CpicUserService.saveOrUpdate(user); + } + } + + // 删除 + if (CollectionUtils.isNotEmpty(delList)) { + for (CpicUserBean user : delList) { + CpicUserService.realDel(user.getId()); + } + } + return Response.success(); + } catch (Exception e) { + return Response.error("-1", "error:" + e.getMessage()); + } + } + + /** + * 返回新增/修改/删除列表 + * + * @param oldList + * @param newList + * @return + */ + private Map> handleUserList(List oldList, List newList, CpicHomeBean home) { + Map> result = new HashMap<>(); + List addList = new ArrayList<>(); + List updateList = new ArrayList<>(); + List delList = new ArrayList<>(); + + // 获取新增和更新列表 + for (CpicUserBean item : newList) { + CpicUserBean temp = oldList.stream().filter(entry -> entry.getUserId().equals(item.getUserId())).findFirst().orElse(null); + if (null != temp) { + temp.setHomeId(home.getId()); + temp.setHomeName(home.getName()); + temp.setUserName(item.getUserName()); + updateList.add(temp); + } else { + item.setHomeId(home.getId()); + item.setHomeName(home.getName()); + addList.add(item); + } + } + + // 获取删除列表 + for (CpicUserBean item : oldList) { + CpicUserBean temp = newList.stream().filter(entry -> entry.getUserId().equals(item.getUserId())).findFirst().orElse(null); + if (null == temp) { + delList.add(item); + } + } + + result.put("ADD", addList); + result.put("UPDATE", updateList); + result.put("DELETE", delList); + return result; + } + + /** + * 已选择的用户不返回 + * + * @param allList + * @param checkedList + * @return + */ + public List eliminateUser(List allList, List checkedList) { + List resultList = new ArrayList<>(); + for (CpicUserBean item : allList) { + CpicUserBean temp = checkedList.stream().filter(entry -> entry.getUserId().equals(item.getUserId())).findFirst().orElse(null); + if (null == temp) { + resultList.add(item); + } + } + return resultList; + } + + public List getUserListByDept(String deptId) throws Exception { + List sysUserList = new ArrayList<>(); + DataList deptUserList = AuthorityContext.getInstance().getUserController().findByDepartment(deptId, null); + if (!deptUserList.isEmpty()) { + sysUserList.addAll(deptUserList.getList()); + } + // 部门下所有职务 + List postList = AuthorityContext.getInstance().getPostController().findByDepartment(deptId, null); + // 循环查询职务下的用户 + for (Post post : postList) { + DataList postUserList = AuthorityContext.getInstance().getUserController().findByDepartmentAndPost(deptId, post.getId(), null); + if (!postUserList.isEmpty()) { + sysUserList.addAll(postUserList.getList()); + } + } + // 去重 + return sysUserList.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(User::getId))), ArrayList::new)); + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/web/custom/CustomDecisionErrorInjectNode.java b/src/main/java/com/fr/plugin/cpic/web/custom/CustomDecisionErrorInjectNode.java new file mode 100644 index 0000000..7b068b4 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/custom/CustomDecisionErrorInjectNode.java @@ -0,0 +1,60 @@ +package com.fr.plugin.cpic.web.custom; + +import com.fr.decision.inject.DecisionInjectExtraInfoBuilder; +import com.fr.decision.inject.node.impl.AbstractDecisionInjectNode; + +import java.util.HashMap; +import java.util.Map; + +public class CustomDecisionErrorInjectNode extends AbstractDecisionInjectNode { + + private String type; + private String homepath; + private String message; + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getHomepath() { + return homepath; + } + + public void setHomepath(String homepath) { + this.homepath = homepath; + } + + public String getMessage() { + return message; + } + + public void setMessage(String message) { + this.message = message; + } + + public CustomDecisionErrorInjectNode(String type, String homepath, String message) { + this.setType(type); + this.setHomepath(homepath); + this.setMessage(message); + } + + public String name() { + return null; + } + + @Override + protected Map calculate(DecisionInjectExtraInfoBuilder var1) throws Exception { + HashMap var2 = new HashMap(); + if (var1.user() != null) { + var2.put("type", this.getType()); + var2.put("homepath", "/" + this.getHomepath()); + var2.put("message", this.getMessage()); + } + return var2; + } + +} diff --git a/src/main/java/com/fr/plugin/cpic/web/custom/CustomDecisionSystemInjectNode.java b/src/main/java/com/fr/plugin/cpic/web/custom/CustomDecisionSystemInjectNode.java new file mode 100644 index 0000000..a99e63e --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/custom/CustomDecisionSystemInjectNode.java @@ -0,0 +1,131 @@ +package com.fr.plugin.cpic.web.custom; + +import com.fanruan.api.util.StringKit; +import com.fr.base.ServerConfig; +import com.fr.base.email.EmailCenter; +import com.fr.cluster.ClusterBridge; +import com.fr.compatible.Version; +import com.fr.config.ServerPreferenceConfig; +import com.fr.decision.authority.base.constant.type.operation.ManualOperationType; +import com.fr.decision.authority.base.constant.type.operation.SyncOperationType; +import com.fr.decision.config.AppearanceConfig; +import com.fr.decision.config.DirectoryConfig; +import com.fr.decision.config.FSConfig; +import com.fr.decision.config.UserDataSetConfig; +import com.fr.decision.hyperlink.HyperlinkFactory; +import com.fr.decision.inject.DecisionInjectExtraInfoBuilder; +import com.fr.decision.inject.node.DecisionInjectNode; +import com.fr.decision.inject.node.impl.AbstractDecisionInjectNode; +import com.fr.decision.inject.node.impl.DecisionWebsocketInjectNode; +import com.fr.decision.migration.MigrationContext; +import com.fr.decision.service.DecisionService; +import com.fr.decision.update.acquirer.JSEngineInfo; +import com.fr.decision.webservice.bean.config.ThemeConfigBean; +import com.fr.decision.webservice.utils.theme.ThemeSubConfigFactory; +import com.fr.decision.webservice.v10.config.ConfigService; +import com.fr.decision.webservice.v10.login.LoginService; +import com.fr.decision.webservice.v10.register.RegisterService; +import com.fr.decision.webservice.v10.sms.SMSService; +import com.fr.decision.webservice.v10.system.SystemService; +import com.fr.general.CloudCenter; +import com.fr.general.CloudCenterConfig; +import com.fr.security.SecurityConfig; +import com.fr.security.encryption.irreversible.IrreversibleEncryptors; +import com.fr.security.encryption.transmission.TransmissionEncryptors; +import com.fr.security.encryption.transmission.impl.SM4TransmissionEncryption; +import com.fr.web.WebSocketConfig; + +import java.util.*; + +public class CustomDecisionSystemInjectNode extends AbstractDecisionInjectNode { + + public String themeId; + + public String getThemeId() { + return themeId; + } + + public void setThemeId(String themeId) { + this.themeId = themeId; + } + + public CustomDecisionSystemInjectNode(String themeId) { + this.setThemeId(themeId); + } + + public String name() { + return "system"; + } + + @Override + protected Map calculate(DecisionInjectExtraInfoBuilder var1) throws Exception { + HashMap var2 = new HashMap(); + if (!var1.isIgnoreDB()) { + var2.put("adminUser", DecisionService.getInstance().authority().userService().getAdminUserNameList()); + var2.put("manualAuthentication", FSConfig.getInstance().getPassport(ManualOperationType.KEY).markType()); + var2.put("syncAuthentication", FSConfig.getInstance().getPassport(SyncOperationType.KEY).markType()); + var2.put("authConfig", DecisionService.getInstance().authority().authorityService().getAuthorityConfig()); + var2.put("versionInfo", SystemService.getInstance().getSystemVersion()); + var2.putAll(RegisterService.getInstance().getSupportedFunctions()); + } + + var2.put("themeConfig", ConfigService.getInstance().getAllThemes()); + var2.put("styleConfig", ConfigService.getInstance().getStyleConfig()); + var2.put("loginInfoRemind", FSConfig.getInstance().getLoginConfig().getShowLastLoginInfo()); + var2.put("emailAvailable", EmailCenter.isEmailConfigValid()); + var2.put("smsAvailable", SMSService.getInstance().isSMSAvailable()); + var2.put("timeZone", TimeZone.getDefault().getOffset(System.currentTimeMillis())); + var2.put("hyperlink", HyperlinkFactory.getHyperlinks()); + var2.put("authentication", FSConfig.getInstance().getPassport().markType()); + var2.put("syncDataSet", UserDataSetConfig.getInstance().isTurnOn()); + var2.put("weekBegins", ServerPreferenceConfig.getInstance().getFirstDayOfWeek().getConf()); + var2.put("loginTimeout", FSConfig.getInstance().getLoginConfig().getLoginTimeout()); + var2.put("frontSeed", SecurityConfig.getInstance().getFrontSeed()); + var2.put("frontSM4Key", SM4TransmissionEncryption.getInstance().getTransmissionKey()); + var2.put("transmissionEncryption", TransmissionEncryptors.getInstance().getCurrentTransmissionEncryption().getType()); + var2.put("passwordEncryption", IrreversibleEncryptors.getInstance().getCurrentEncryptionMode().getType()); + var2.put("cookiePath", ServerConfig.getInstance().getCookiePath()); + var2.put("cluster", ClusterBridge.isClusterMode()); + + var2.put("syncUserStrategy", UserDataSetConfig.getInstance().getStrategy()); + var2.put("httpOnly", ServerConfig.getInstance().isTokenFromCookie()); + var2.put("runtimeVersion", Version.currVersion().getVersion()); + var2.put("webSocketTokenInHeader", WebSocketConfig.getInstance().isWebSocketTokenInHeader()); + var2.put("jsEngine", JSEngineInfo.getInfoMap()); + var2.put("subThemeConfig", ThemeSubConfigFactory.getConfigById(AppearanceConfig.getInstance().getThemeId())); + var2.put("sidebarOpen", DirectoryConfig.getInstance().isSidebarOpen()); + var2.put("transferred", MigrationContext.getInstance().isAlreadyTransferred()); + var2.put("urlIP", CloudCenter.getInstance().acquireConf("decision.queryip", "")); + var2.put("cloudEnabled", CloudCenterConfig.getInstance().isOnline()); + if (AppearanceConfig.getInstance().isCopyrightInfoDisplay()) { + var2.putAll(LoginService.getInstance().getCopyrightInfo(var1.request())); + } + + // 设置主题 + if (StringKit.isNotBlank(this.getThemeId())) { + var2.put("themeId", this.getThemeId()); + + // 第三方激活(尝试) + boolean themeChanged = false; + List themeList = ConfigService.getInstance().getAllThemes(); + for (ThemeConfigBean bean : themeList) { + // 设置主题 + if (StringKit.equals(bean.getThemeId(), this.getThemeId())) { + bean.setActive(true); + themeChanged = true; + } else { + bean.setActive(false); + } + } + if (themeChanged) { + var2.put("themeConfig", themeList); + } + } + + return var2; + } + + public List brothers() { + return Arrays.asList(DecisionWebsocketInjectNode.KEY); + } +} diff --git a/src/main/java/com/fr/plugin/cpic/web/custom/CustomDecisionUserInjectNode.java b/src/main/java/com/fr/plugin/cpic/web/custom/CustomDecisionUserInjectNode.java new file mode 100644 index 0000000..8a2ec39 --- /dev/null +++ b/src/main/java/com/fr/plugin/cpic/web/custom/CustomDecisionUserInjectNode.java @@ -0,0 +1,88 @@ +package com.fr.plugin.cpic.web.custom; + +import com.fr.decision.config.SystemConfig; +import com.fr.decision.inject.DecisionInjectExtraInfoBuilder; +import com.fr.decision.inject.node.impl.AbstractDecisionInjectNode; +import com.fr.decision.service.DecisionService; +import com.fr.decision.webservice.utils.WebServiceUtils; +import com.fr.decision.webservice.v10.entry.EntryService; +import com.fr.decision.webservice.v10.entry.homepage.HomePageInfo; +import com.fr.decision.webservice.v10.module.ManagerModuleService; +import com.fr.security.ipcheck.IPMatchHandler; +import com.fr.stable.core.UUID; +import com.fr.third.springframework.web.context.request.RequestContextHolder; +import com.fr.third.springframework.web.context.request.ServletRequestAttributes; + +import javax.servlet.http.HttpServletRequest; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class CustomDecisionUserInjectNode extends AbstractDecisionInjectNode { + + private String homepage; + + public String getHomepage() { + return homepage; + } + + public void setHomepage(String homepage) { + this.homepage = homepage; + } + + public CustomDecisionUserInjectNode(String homepage){ + this.setHomepage(homepage); + } + + public String name() { + return "personal"; + } + + @Override + protected Map calculate(DecisionInjectExtraInfoBuilder var1) throws Exception { + HashMap var2 = new HashMap(); + if (var1.user() != null) { + var2.put("username", var1.user().getUserName()); + var2.put("userId", var1.user().getId()); + var2.put("displayName", var1.user().getDisplayName()); + var2.put("userExtraProps", DecisionService.getInstance().authority().userService().getUserExtraProperties(var1.user())); + var2.put("creationType", var1.user().getCreationType().toInteger()); + var2.put("realName", var1.user().getRealName()); + HttpServletRequest var3 = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest(); + if (!var1.isIgnoreDB()) { + var2.put("homepage", EntryService.getInstance().getHomePageUrl(var1.user().getId())); + var2.put("modules", this.checkAdminLoginIp(var3) ? ManagerModuleService.getInstance().getAllDecisionMgrModules(var1.user().getId(), "") : new ArrayList()); + } + + // 数据门户 + List homePageInfoList = new ArrayList<>(); + HomePageInfo homePageInfo = new HomePageInfo(); + homePageInfo.setId(UUID.randomUUID().toString().toLowerCase()); + homePageInfo.setHomePageType(2); + homePageInfo.setText("首页"); + homePageInfo.setPcURL(this.getHomepage()); + homePageInfoList.add(homePageInfo); + var2.put("homepage", homePageInfoList); + + } + + return var2; + } + + private boolean checkAdminLoginIp(HttpServletRequest var1) { + return this.checkAdminLoginIp(WebServiceUtils.getIpInfoFromRequest(var1)); + } + + private boolean checkAdminLoginIp(String var1) { + if (SystemConfig.getInstance().getEnableWhiteVerify()) { + String[] var2 = SystemConfig.getInstance().getWhiteIps(); + if (IPMatchHandler.noneMatch(var1, IPMatchHandler.addLocalIP(var2))) { + return false; + } + } + + return true; + } + +} diff --git a/src/main/resources/com/fr/plugin/cpic/web/html/error.html b/src/main/resources/com/fr/plugin/cpic/web/html/error.html new file mode 100644 index 0000000..f611978 --- /dev/null +++ b/src/main/resources/com/fr/plugin/cpic/web/html/error.html @@ -0,0 +1,84 @@ + + + + + + + 错误 + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/com/fr/plugin/cpic/web/html/home.html b/src/main/resources/com/fr/plugin/cpic/web/html/home.html new file mode 100644 index 0000000..b0bc8ea --- /dev/null +++ b/src/main/resources/com/fr/plugin/cpic/web/html/home.html @@ -0,0 +1,570 @@ + + + + + 门户管理 + + + + + + + + + +
+ 门户管理 +
+ +
+
+
+
+
+
+

门户列表

+
+ + + +
+
+
    +
+
+
+
+
+
+ +
+
+
    +
  • 门户信息
  • +
  • 目录权限
  • +
  • 用户列表
  • +
+
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+

+
+
+
+ +
+ +
+
+ + + + + +
+
+ + +
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/src/main/resources/com/fr/plugin/cpic/web/html/resources/index.html b/src/main/resources/com/fr/plugin/cpic/web/html/resources/index.html new file mode 100644 index 0000000..a12bcf3 --- /dev/null +++ b/src/main/resources/com/fr/plugin/cpic/web/html/resources/index.html @@ -0,0 +1,40 @@ + + + + + + + ${title} + + + ${styleTag} + + +
+ + + + +${scriptTag} + + + + \ No newline at end of file diff --git a/src/main/resources/com/fr/plugin/cpic/web/html/user.html b/src/main/resources/com/fr/plugin/cpic/web/html/user.html new file mode 100644 index 0000000..735d2cd --- /dev/null +++ b/src/main/resources/com/fr/plugin/cpic/web/html/user.html @@ -0,0 +1,664 @@ + + + + + 编辑用户 + + + + + + + + + +
+
+
+
+
+

筛选维度

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

用户列表

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

选中列表

+
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ + + \ No newline at end of file diff --git a/src/main/resources/com/fr/plugin/cpic/web/js/cpic_home.js b/src/main/resources/com/fr/plugin/cpic/web/js/cpic_home.js new file mode 100644 index 0000000..1f0bf58 --- /dev/null +++ b/src/main/resources/com/fr/plugin/cpic/web/js/cpic_home.js @@ -0,0 +1,46 @@ +; + +Dec.Utils = Dec.Utils || {}; +!(function () { + + // 向管理系统节点加入 报表权限审批 + BI.config("dec.provider.management", function (provider) { + provider.inject({ + modules: [ + { + value: "pluginhome", + id: "dec_plugin_home_id", + text: BI.i18nText("门户管理"), + cardType: "dec.plugin.management.home", + cls: "management-plugin-font" + } + ] + }); + }); + + // 组件实现,效果为使用绝对布局组件放置了一个iframe + var HomeWidget = BI.inherit(BI.Widget, { + props: { + baseCls: "dec-management-cpic" + }, + render: function () { + return { + type: "bi.absolute", + items: [ + { + el: { + type: "bi.iframe", + src: Dec.fineServletURL + "/cpic/home" + }, + top: 0, + left: 0, + right: 0, + bottom: 0 + } + ] + }; + } + }); + BI.shortcut("dec.plugin.management.home", HomeWidget); + +}()); \ No newline at end of file diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/css/layui.css b/src/main/resources/com/fr/plugin/cpic/web/layui/css/layui.css new file mode 100644 index 0000000..53a916e --- /dev/null +++ b/src/main/resources/com/fr/plugin/cpic/web/layui/css/layui.css @@ -0,0 +1,5821 @@ +.layui-inline, img { + display: inline-block; + vertical-align: middle +} + +h1, h2, h3, h4, h5, h6 { + font-weight: 400 +} + +a, body { + color: #333 +} + +.layui-edge, .layui-header, .layui-inline, .layui-main { + position: relative +} + +.layui-edge, hr { + height: 0; + overflow: hidden +} + +.layui-layout-body, .layui-side, .layui-side-scroll { + overflow-x: hidden +} + +.layui-edge, .layui-elip, hr { + overflow: hidden +} + +.layui-btn, .layui-edge, .layui-inline, img { + vertical-align: middle +} + +.layui-btn, .layui-disabled, .layui-icon, .layui-unselect { + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none +} + +blockquote, body, button, dd, div, dl, dt, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul { + margin: 0; + padding: 0; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0) +} + +a:active, a:hover { + outline: 0 +} + +img { + border: none +} + +li { + list-style: none +} + +table { + border-collapse: collapse; + border-spacing: 0 +} + +h4, h5, h6 { + font-size: 100% +} + +button, input, optgroup, option, select, textarea { + font-family: inherit; + font-size: inherit; + font-style: inherit; + font-weight: inherit; + outline: 0 +} + +pre { + white-space: pre-wrap; + white-space: -moz-pre-wrap; + white-space: -pre-wrap; + white-space: -o-pre-wrap; + word-wrap: break-word +} + +body { + line-height: 1.6; + color: rgba(0, 0, 0, .85); + font: 14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif +} + +hr { + line-height: 0; + margin: 10px 0; + padding: 0; + border: none !important; + border-bottom: 1px solid #eee !important; + clear: both; + background: 0 0 +} + +a { + text-decoration: none +} + +a:hover { + color: #777 +} + +a cite { + font-style: normal; + *cursor: pointer +} + +.layui-border-box, .layui-border-box * { + box-sizing: border-box +} + +.layui-box, .layui-box * { + box-sizing: content-box +} + +.layui-clear { + clear: both; + *zoom: 1 +} + +.layui-clear:after { + content: '\20'; + clear: both; + *zoom: 1; + display: block; + height: 0 +} + +.layui-inline { + *display: inline; + *zoom: 1 +} + +.layui-btn, .layui-btn-group, .layui-edge { + display: inline-block +} + +.layui-edge { + width: 0; + border-width: 6px; + border-style: dashed; + border-color: transparent +} + +.layui-edge-top { + top: -4px; + border-bottom-color: #999; + border-bottom-style: solid +} + +.layui-edge-right { + border-left-color: #999; + border-left-style: solid +} + +.layui-edge-bottom { + top: 2px; + border-top-color: #999; + border-top-style: solid +} + +.layui-edge-left { + border-right-color: #999; + border-right-style: solid +} + +.layui-elip { + text-overflow: ellipsis; + white-space: nowrap +} + +.layui-disabled, .layui-disabled:hover { + color: #d2d2d2 !important; + cursor: not-allowed !important +} + +.layui-circle { + border-radius: 100% +} + +.layui-show { + display: block !important +} + +.layui-hide { + display: none !important +} + +.layui-show-v { + visibility: visible !important +} + +.layui-hide-v { + visibility: hidden !important +} + +@font-face { + font-family: layui-icon; + src: url(resources?path=com/fr/plugin/cpic/web/layui/font/iconfont.eot); + src: url(resources?path=com/fr/plugin/cpic/web/layui/font/iconfont.eot#iefix) format('embedded-opentype'), url(resources?path=com/fr/plugin/cpic/web/layui/font/iconfont.woff2) format('woff2'), url(resources?path=com/fr/plugin/cpic/web/layui/font/iconfont.woff) format('woff'), url(resources?path=com/fr/plugin/cpic/web/layui/font/iconfont.ttf) format('truetype'), url(resources?path=com/fr/plugin/cpic/web/layui/font/iconfont.svg#layui-icon) format('svg') +} + +.layui-icon { + font-family: layui-icon !important; + font-size: 16px; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale +} + +.layui-icon-reply-fill:before { + content: "\e611" +} + +.layui-icon-set-fill:before { + content: "\e614" +} + +.layui-icon-menu-fill:before { + content: "\e60f" +} + +.layui-icon-search:before { + content: "\e615" +} + +.layui-icon-share:before { + content: "\e641" +} + +.layui-icon-set-sm:before { + content: "\e620" +} + +.layui-icon-engine:before { + content: "\e628" +} + +.layui-icon-close:before { + content: "\1006" +} + +.layui-icon-close-fill:before { + content: "\1007" +} + +.layui-icon-chart-screen:before { + content: "\e629" +} + +.layui-icon-star:before { + content: "\e600" +} + +.layui-icon-circle-dot:before { + content: "\e617" +} + +.layui-icon-chat:before { + content: "\e606" +} + +.layui-icon-release:before { + content: "\e609" +} + +.layui-icon-list:before { + content: "\e60a" +} + +.layui-icon-chart:before { + content: "\e62c" +} + +.layui-icon-ok-circle:before { + content: "\1005" +} + +.layui-icon-layim-theme:before { + content: "\e61b" +} + +.layui-icon-table:before { + content: "\e62d" +} + +.layui-icon-right:before { + content: "\e602" +} + +.layui-icon-left:before { + content: "\e603" +} + +.layui-icon-cart-simple:before { + content: "\e698" +} + +.layui-icon-face-cry:before { + content: "\e69c" +} + +.layui-icon-face-smile:before { + content: "\e6af" +} + +.layui-icon-survey:before { + content: "\e6b2" +} + +.layui-icon-tree:before { + content: "\e62e" +} + +.layui-icon-ie:before { + content: "\e7bb" +} + +.layui-icon-upload-circle:before { + content: "\e62f" +} + +.layui-icon-add-circle:before { + content: "\e61f" +} + +.layui-icon-download-circle:before { + content: "\e601" +} + +.layui-icon-templeate-1:before { + content: "\e630" +} + +.layui-icon-util:before { + content: "\e631" +} + +.layui-icon-face-surprised:before { + content: "\e664" +} + +.layui-icon-edit:before { + content: "\e642" +} + +.layui-icon-speaker:before { + content: "\e645" +} + +.layui-icon-down:before { + content: "\e61a" +} + +.layui-icon-file:before { + content: "\e621" +} + +.layui-icon-layouts:before { + content: "\e632" +} + +.layui-icon-rate-half:before { + content: "\e6c9" +} + +.layui-icon-add-circle-fine:before { + content: "\e608" +} + +.layui-icon-prev-circle:before { + content: "\e633" +} + +.layui-icon-read:before { + content: "\e705" +} + +.layui-icon-404:before { + content: "\e61c" +} + +.layui-icon-carousel:before { + content: "\e634" +} + +.layui-icon-help:before { + content: "\e607" +} + +.layui-icon-code-circle:before { + content: "\e635" +} + +.layui-icon-windows:before { + content: "\e67f" +} + +.layui-icon-water:before { + content: "\e636" +} + +.layui-icon-username:before { + content: "\e66f" +} + +.layui-icon-find-fill:before { + content: "\e670" +} + +.layui-icon-about:before { + content: "\e60b" +} + +.layui-icon-location:before { + content: "\e715" +} + +.layui-icon-up:before { + content: "\e619" +} + +.layui-icon-pause:before { + content: "\e651" +} + +.layui-icon-date:before { + content: "\e637" +} + +.layui-icon-layim-uploadfile:before { + content: "\e61d" +} + +.layui-icon-delete:before { + content: "\e640" +} + +.layui-icon-play:before { + content: "\e652" +} + +.layui-icon-top:before { + content: "\e604" +} + +.layui-icon-firefox:before { + content: "\e686" +} + +.layui-icon-friends:before { + content: "\e612" +} + +.layui-icon-refresh-3:before { + content: "\e9aa" +} + +.layui-icon-ok:before { + content: "\e605" +} + +.layui-icon-layer:before { + content: "\e638" +} + +.layui-icon-face-smile-fine:before { + content: "\e60c" +} + +.layui-icon-dollar:before { + content: "\e659" +} + +.layui-icon-group:before { + content: "\e613" +} + +.layui-icon-layim-download:before { + content: "\e61e" +} + +.layui-icon-picture-fine:before { + content: "\e60d" +} + +.layui-icon-link:before { + content: "\e64c" +} + +.layui-icon-diamond:before { + content: "\e735" +} + +.layui-icon-log:before { + content: "\e60e" +} + +.layui-icon-key:before { + content: "\e683" +} + +.layui-icon-rate-solid:before { + content: "\e67a" +} + +.layui-icon-fonts-del:before { + content: "\e64f" +} + +.layui-icon-unlink:before { + content: "\e64d" +} + +.layui-icon-fonts-clear:before { + content: "\e639" +} + +.layui-icon-triangle-r:before { + content: "\e623" +} + +.layui-icon-circle:before { + content: "\e63f" +} + +.layui-icon-radio:before { + content: "\e643" +} + +.layui-icon-align-center:before { + content: "\e647" +} + +.layui-icon-align-right:before { + content: "\e648" +} + +.layui-icon-align-left:before { + content: "\e649" +} + +.layui-icon-loading-1:before { + content: "\e63e" +} + +.layui-icon-return:before { + content: "\e65c" +} + +.layui-icon-fonts-strong:before { + content: "\e62b" +} + +.layui-icon-upload:before { + content: "\e67c" +} + +.layui-icon-dialogue:before { + content: "\e63a" +} + +.layui-icon-video:before { + content: "\e6ed" +} + +.layui-icon-headset:before { + content: "\e6fc" +} + +.layui-icon-cellphone-fine:before { + content: "\e63b" +} + +.layui-icon-add-1:before { + content: "\e654" +} + +.layui-icon-face-smile-b:before { + content: "\e650" +} + +.layui-icon-fonts-html:before { + content: "\e64b" +} + +.layui-icon-screen-full:before { + content: "\e622" +} + +.layui-icon-form:before { + content: "\e63c" +} + +.layui-icon-cart:before { + content: "\e657" +} + +.layui-icon-camera-fill:before { + content: "\e65d" +} + +.layui-icon-tabs:before { + content: "\e62a" +} + +.layui-icon-heart-fill:before { + content: "\e68f" +} + +.layui-icon-fonts-code:before { + content: "\e64e" +} + +.layui-icon-ios:before { + content: "\e680" +} + +.layui-icon-at:before { + content: "\e687" +} + +.layui-icon-fire:before { + content: "\e756" +} + +.layui-icon-set:before { + content: "\e716" +} + +.layui-icon-fonts-u:before { + content: "\e646" +} + +.layui-icon-triangle-d:before { + content: "\e625" +} + +.layui-icon-tips:before { + content: "\e702" +} + +.layui-icon-picture:before { + content: "\e64a" +} + +.layui-icon-more-vertical:before { + content: "\e671" +} + +.layui-icon-bluetooth:before { + content: "\e689" +} + +.layui-icon-flag:before { + content: "\e66c" +} + +.layui-icon-loading:before { + content: "\e63d" +} + +.layui-icon-fonts-i:before { + content: "\e644" +} + +.layui-icon-refresh-1:before { + content: "\e666" +} + +.layui-icon-rmb:before { + content: "\e65e" +} + +.layui-icon-addition:before { + content: "\e624" +} + +.layui-icon-home:before { + content: "\e68e" +} + +.layui-icon-time:before { + content: "\e68d" +} + +.layui-icon-user:before { + content: "\e770" +} + +.layui-icon-notice:before { + content: "\e667" +} + +.layui-icon-chrome:before { + content: "\e68a" +} + +.layui-icon-edge:before { + content: "\e68b" +} + +.layui-icon-login-weibo:before { + content: "\e675" +} + +.layui-icon-voice:before { + content: "\e688" +} + +.layui-icon-upload-drag:before { + content: "\e681" +} + +.layui-icon-login-qq:before { + content: "\e676" +} + +.layui-icon-snowflake:before { + content: "\e6b1" +} + +.layui-icon-heart:before { + content: "\e68c" +} + +.layui-icon-logout:before { + content: "\e682" +} + +.layui-icon-file-b:before { + content: "\e655" +} + +.layui-icon-template:before { + content: "\e663" +} + +.layui-icon-transfer:before { + content: "\e691" +} + +.layui-icon-auz:before { + content: "\e672" +} + +.layui-icon-console:before { + content: "\e665" +} + +.layui-icon-app:before { + content: "\e653" +} + +.layui-icon-prev:before { + content: "\e65a" +} + +.layui-icon-website:before { + content: "\e7ae" +} + +.layui-icon-next:before { + content: "\e65b" +} + +.layui-icon-component:before { + content: "\e857" +} + +.layui-icon-android:before { + content: "\e684" +} + +.layui-icon-more:before { + content: "\e65f" +} + +.layui-icon-login-wechat:before { + content: "\e677" +} + +.layui-icon-shrink-right:before { + content: "\e668" +} + +.layui-icon-spread-left:before { + content: "\e66b" +} + +.layui-icon-camera:before { + content: "\e660" +} + +.layui-icon-note:before { + content: "\e66e" +} + +.layui-icon-refresh:before { + content: "\e669" +} + +.layui-icon-female:before { + content: "\e661" +} + +.layui-icon-male:before { + content: "\e662" +} + +.layui-icon-screen-restore:before { + content: "\e758" +} + +.layui-icon-password:before { + content: "\e673" +} + +.layui-icon-senior:before { + content: "\e674" +} + +.layui-icon-theme:before { + content: "\e66a" +} + +.layui-icon-tread:before { + content: "\e6c5" +} + +.layui-icon-praise:before { + content: "\e6c6" +} + +.layui-icon-star-fill:before { + content: "\e658" +} + +.layui-icon-rate:before { + content: "\e67b" +} + +.layui-icon-template-1:before { + content: "\e656" +} + +.layui-icon-vercode:before { + content: "\e679" +} + +.layui-icon-service:before { + content: "\e626" +} + +.layui-icon-cellphone:before { + content: "\e678" +} + +.layui-icon-print:before { + content: "\e66d" +} + +.layui-icon-cols:before { + content: "\e610" +} + +.layui-icon-wifi:before { + content: "\e7e0" +} + +.layui-icon-export:before { + content: "\e67d" +} + +.layui-icon-rss:before { + content: "\e808" +} + +.layui-icon-slider:before { + content: "\e714" +} + +.layui-icon-email:before { + content: "\e618" +} + +.layui-icon-subtraction:before { + content: "\e67e" +} + +.layui-icon-mike:before { + content: "\e6dc" +} + +.layui-icon-light:before { + content: "\e748" +} + +.layui-icon-gift:before { + content: "\e627" +} + +.layui-icon-mute:before { + content: "\e685" +} + +.layui-icon-reduce-circle:before { + content: "\e616" +} + +.layui-icon-music:before { + content: "\e690" +} + +.layui-main { + width: 1140px; + margin: 0 auto +} + +.layui-header { + z-index: 1000; + height: 60px +} + +.layui-header a:hover { + transition: all .5s; + -webkit-transition: all .5s +} + +.layui-side { + position: fixed; + left: 0; + top: 0; + bottom: 0; + z-index: 999; + width: 200px +} + +.layui-side-scroll { + position: relative; + width: 220px; + height: 100% +} + +.layui-body { + position: relative; + left: 200px; + right: 0; + top: 0; + bottom: 0; + z-index: 900; + width: auto; + box-sizing: border-box +} + +.layui-layout-admin .layui-header { + position: fixed; + top: 0; + left: 0; + right: 0; + background-color: #23262E +} + +.layui-layout-admin .layui-side { + top: 60px; + width: 200px; + overflow-x: hidden +} + +.layui-layout-admin .layui-body { + position: absolute; + top: 60px; + padding-bottom: 44px +} + +.layui-layout-admin .layui-main { + width: auto; + margin: 0 15px +} + +.layui-layout-admin .layui-footer { + position: fixed; + left: 200px; + right: 0; + bottom: 0; + z-index: 990; + height: 44px; + line-height: 44px; + padding: 0 15px; + box-shadow: -1px 0 4px rgb(0 0 0 / 12%); + background-color: #FAFAFA +} + +.layui-layout-admin .layui-logo { + position: absolute; + left: 0; + top: 0; + width: 200px; + height: 100%; + line-height: 60px; + text-align: center; + color: #009688; + font-size: 16px; + box-shadow: 0 1px 2px 0 rgb(0 0 0 / 15%) +} + +.layui-layout-admin .layui-header .layui-nav { + background: 0 0 +} + +.layui-layout-left { + position: absolute !important; + left: 200px; + top: 0 +} + +.layui-layout-right { + position: absolute !important; + right: 0; + top: 0 +} + +.layui-container { + position: relative; + margin: 0 auto; + padding: 0 15px; + box-sizing: border-box +} + +.layui-fluid { + position: relative; + margin: 0 auto; + padding: 0 15px +} + +.layui-row:after, .layui-row:before { + content: ""; + display: block; + clear: both +} + +.layui-col-lg1, .layui-col-lg10, .layui-col-lg11, .layui-col-lg12, .layui-col-lg2, .layui-col-lg3, .layui-col-lg4, .layui-col-lg5, .layui-col-lg6, .layui-col-lg7, .layui-col-lg8, .layui-col-lg9, .layui-col-md1, .layui-col-md10, .layui-col-md11, .layui-col-md12, .layui-col-md2, .layui-col-md3, .layui-col-md4, .layui-col-md5, .layui-col-md6, .layui-col-md7, .layui-col-md8, .layui-col-md9, .layui-col-sm1, .layui-col-sm10, .layui-col-sm11, .layui-col-sm12, .layui-col-sm2, .layui-col-sm3, .layui-col-sm4, .layui-col-sm5, .layui-col-sm6, .layui-col-sm7, .layui-col-sm8, .layui-col-sm9, .layui-col-xs1, .layui-col-xs10, .layui-col-xs11, .layui-col-xs12, .layui-col-xs2, .layui-col-xs3, .layui-col-xs4, .layui-col-xs5, .layui-col-xs6, .layui-col-xs7, .layui-col-xs8, .layui-col-xs9 { + position: relative; + display: block; + box-sizing: border-box +} + +.layui-col-xs1, .layui-col-xs10, .layui-col-xs11, .layui-col-xs12, .layui-col-xs2, .layui-col-xs3, .layui-col-xs4, .layui-col-xs5, .layui-col-xs6, .layui-col-xs7, .layui-col-xs8, .layui-col-xs9 { + float: left +} + +.layui-col-xs1 { + width: 8.33333333% +} + +.layui-col-xs2 { + width: 16.66666667% +} + +.layui-col-xs3 { + width: 25% +} + +.layui-col-xs4 { + width: 33.33333333% +} + +.layui-col-xs5 { + width: 41.66666667% +} + +.layui-col-xs6 { + width: 50% +} + +.layui-col-xs7 { + width: 58.33333333% +} + +.layui-col-xs8 { + width: 66.66666667% +} + +.layui-col-xs9 { + width: 75% +} + +.layui-col-xs10 { + width: 83.33333333% +} + +.layui-col-xs11 { + width: 91.66666667% +} + +.layui-col-xs12 { + width: 100% +} + +.layui-col-xs-offset1 { + margin-left: 8.33333333% +} + +.layui-col-xs-offset2 { + margin-left: 16.66666667% +} + +.layui-col-xs-offset3 { + margin-left: 25% +} + +.layui-col-xs-offset4 { + margin-left: 33.33333333% +} + +.layui-col-xs-offset5 { + margin-left: 41.66666667% +} + +.layui-col-xs-offset6 { + margin-left: 50% +} + +.layui-col-xs-offset7 { + margin-left: 58.33333333% +} + +.layui-col-xs-offset8 { + margin-left: 66.66666667% +} + +.layui-col-xs-offset9 { + margin-left: 75% +} + +.layui-col-xs-offset10 { + margin-left: 83.33333333% +} + +.layui-col-xs-offset11 { + margin-left: 91.66666667% +} + +.layui-col-xs-offset12 { + margin-left: 100% +} + +@media screen and (max-width: 768px) { + .layui-hide-xs { + display: none !important + } + + .layui-show-xs-block { + display: block !important + } + + .layui-show-xs-inline { + display: inline !important + } + + .layui-show-xs-inline-block { + display: inline-block !important + } +} + +@media screen and (min-width: 768px) { + .layui-container { + width: 750px + } + + .layui-hide-sm { + display: none !important + } + + .layui-show-sm-block { + display: block !important + } + + .layui-show-sm-inline { + display: inline !important + } + + .layui-show-sm-inline-block { + display: inline-block !important + } + + .layui-col-sm1, .layui-col-sm10, .layui-col-sm11, .layui-col-sm12, .layui-col-sm2, .layui-col-sm3, .layui-col-sm4, .layui-col-sm5, .layui-col-sm6, .layui-col-sm7, .layui-col-sm8, .layui-col-sm9 { + float: left + } + + .layui-col-sm1 { + width: 8.33333333% + } + + .layui-col-sm2 { + width: 16.66666667% + } + + .layui-col-sm3 { + width: 25% + } + + .layui-col-sm4 { + width: 33.33333333% + } + + .layui-col-sm5 { + width: 41.66666667% + } + + .layui-col-sm6 { + width: 50% + } + + .layui-col-sm7 { + width: 58.33333333% + } + + .layui-col-sm8 { + width: 66.66666667% + } + + .layui-col-sm9 { + width: 75% + } + + .layui-col-sm10 { + width: 83.33333333% + } + + .layui-col-sm11 { + width: 91.66666667% + } + + .layui-col-sm12 { + width: 100% + } + + .layui-col-sm-offset1 { + margin-left: 8.33333333% + } + + .layui-col-sm-offset2 { + margin-left: 16.66666667% + } + + .layui-col-sm-offset3 { + margin-left: 25% + } + + .layui-col-sm-offset4 { + margin-left: 33.33333333% + } + + .layui-col-sm-offset5 { + margin-left: 41.66666667% + } + + .layui-col-sm-offset6 { + margin-left: 50% + } + + .layui-col-sm-offset7 { + margin-left: 58.33333333% + } + + .layui-col-sm-offset8 { + margin-left: 66.66666667% + } + + .layui-col-sm-offset9 { + margin-left: 75% + } + + .layui-col-sm-offset10 { + margin-left: 83.33333333% + } + + .layui-col-sm-offset11 { + margin-left: 91.66666667% + } + + .layui-col-sm-offset12 { + margin-left: 100% + } +} + +@media screen and (min-width: 992px) { + .layui-container { + width: 970px + } + + .layui-hide-md { + display: none !important + } + + .layui-show-md-block { + display: block !important + } + + .layui-show-md-inline { + display: inline !important + } + + .layui-show-md-inline-block { + display: inline-block !important + } + + .layui-col-md1, .layui-col-md10, .layui-col-md11, .layui-col-md12, .layui-col-md2, .layui-col-md3, .layui-col-md4, .layui-col-md5, .layui-col-md6, .layui-col-md7, .layui-col-md8, .layui-col-md9 { + float: left + } + + .layui-col-md1 { + width: 8.33333333% + } + + .layui-col-md2 { + width: 16.66666667% + } + + .layui-col-md3 { + width: 25% + } + + .layui-col-md4 { + width: 33.33333333% + } + + .layui-col-md5 { + width: 41.66666667% + } + + .layui-col-md6 { + width: 50% + } + + .layui-col-md7 { + width: 58.33333333% + } + + .layui-col-md8 { + width: 66.66666667% + } + + .layui-col-md9 { + width: 75% + } + + .layui-col-md10 { + width: 83.33333333% + } + + .layui-col-md11 { + width: 91.66666667% + } + + .layui-col-md12 { + width: 100% + } + + .layui-col-md-offset1 { + margin-left: 8.33333333% + } + + .layui-col-md-offset2 { + margin-left: 16.66666667% + } + + .layui-col-md-offset3 { + margin-left: 25% + } + + .layui-col-md-offset4 { + margin-left: 33.33333333% + } + + .layui-col-md-offset5 { + margin-left: 41.66666667% + } + + .layui-col-md-offset6 { + margin-left: 50% + } + + .layui-col-md-offset7 { + margin-left: 58.33333333% + } + + .layui-col-md-offset8 { + margin-left: 66.66666667% + } + + .layui-col-md-offset9 { + margin-left: 75% + } + + .layui-col-md-offset10 { + margin-left: 83.33333333% + } + + .layui-col-md-offset11 { + margin-left: 91.66666667% + } + + .layui-col-md-offset12 { + margin-left: 100% + } +} + +@media screen and (min-width: 1200px) { + .layui-container { + width: 1170px + } + + .layui-hide-lg { + display: none !important + } + + .layui-show-lg-block { + display: block !important + } + + .layui-show-lg-inline { + display: inline !important + } + + .layui-show-lg-inline-block { + display: inline-block !important + } + + .layui-col-lg1, .layui-col-lg10, .layui-col-lg11, .layui-col-lg12, .layui-col-lg2, .layui-col-lg3, .layui-col-lg4, .layui-col-lg5, .layui-col-lg6, .layui-col-lg7, .layui-col-lg8, .layui-col-lg9 { + float: left + } + + .layui-col-lg1 { + width: 8.33333333% + } + + .layui-col-lg2 { + width: 16.66666667% + } + + .layui-col-lg3 { + width: 25% + } + + .layui-col-lg4 { + width: 33.33333333% + } + + .layui-col-lg5 { + width: 41.66666667% + } + + .layui-col-lg6 { + width: 50% + } + + .layui-col-lg7 { + width: 58.33333333% + } + + .layui-col-lg8 { + width: 66.66666667% + } + + .layui-col-lg9 { + width: 75% + } + + .layui-col-lg10 { + width: 83.33333333% + } + + .layui-col-lg11 { + width: 91.66666667% + } + + .layui-col-lg12 { + width: 100% + } + + .layui-col-lg-offset1 { + margin-left: 8.33333333% + } + + .layui-col-lg-offset2 { + margin-left: 16.66666667% + } + + .layui-col-lg-offset3 { + margin-left: 25% + } + + .layui-col-lg-offset4 { + margin-left: 33.33333333% + } + + .layui-col-lg-offset5 { + margin-left: 41.66666667% + } + + .layui-col-lg-offset6 { + margin-left: 50% + } + + .layui-col-lg-offset7 { + margin-left: 58.33333333% + } + + .layui-col-lg-offset8 { + margin-left: 66.66666667% + } + + .layui-col-lg-offset9 { + margin-left: 75% + } + + .layui-col-lg-offset10 { + margin-left: 83.33333333% + } + + .layui-col-lg-offset11 { + margin-left: 91.66666667% + } + + .layui-col-lg-offset12 { + margin-left: 100% + } +} + +.layui-col-space1 { + margin: -.5px +} + +.layui-col-space1 > * { + padding: .5px +} + +.layui-col-space2 { + margin: -1px +} + +.layui-col-space2 > * { + padding: 1px +} + +.layui-col-space4 { + margin: -2px +} + +.layui-col-space4 > * { + padding: 2px +} + +.layui-col-space5 { + margin: -2.5px +} + +.layui-col-space5 > * { + padding: 2.5px +} + +.layui-col-space6 { + margin: -3px +} + +.layui-col-space6 > * { + padding: 3px +} + +.layui-col-space8 { + margin: -4px +} + +.layui-col-space8 > * { + padding: 4px +} + +.layui-col-space10 { + margin: -5px +} + +.layui-col-space10 > * { + padding: 5px +} + +.layui-col-space12 { + margin: -6px +} + +.layui-col-space12 > * { + padding: 6px +} + +.layui-col-space14 { + margin: -7px +} + +.layui-col-space14 > * { + padding: 7px +} + +.layui-col-space15 { + margin: -7.5px +} + +.layui-col-space15 > * { + padding: 7.5px +} + +.layui-col-space16 { + margin: -8px +} + +.layui-col-space16 > * { + padding: 8px +} + +.layui-col-space18 { + margin: -9px +} + +.layui-col-space18 > * { + padding: 9px +} + +.layui-col-space20 { + margin: -10px +} + +.layui-col-space20 > * { + padding: 10px +} + +.layui-col-space22 { + margin: -11px +} + +.layui-col-space22 > * { + padding: 11px +} + +.layui-col-space24 { + margin: -12px +} + +.layui-col-space24 > * { + padding: 12px +} + +.layui-col-space25 { + margin: -12.5px +} + +.layui-col-space25 > * { + padding: 12.5px +} + +.layui-col-space26 { + margin: -13px +} + +.layui-col-space26 > * { + padding: 13px +} + +.layui-col-space28 { + margin: -14px +} + +.layui-col-space28 > * { + padding: 14px +} + +.layui-col-space30 { + margin: -15px +} + +.layui-col-space30 > * { + padding: 15px +} + +.layui-btn, .layui-input, .layui-select, .layui-textarea, .layui-upload-button { + outline: 0; + -webkit-appearance: none; + transition: all .3s; + -webkit-transition: all .3s; + box-sizing: border-box +} + +.layui-elem-quote { + margin-bottom: 10px; + padding: 15px; + line-height: 1.6; + border-left: 5px solid #5FB878; + border-radius: 0 2px 2px 0; + background-color: #FAFAFA +} + +.layui-quote-nm { + border-style: solid; + border-width: 1px 1px 1px 5px; + background: 0 0 +} + +.layui-elem-field { + margin-bottom: 10px; + padding: 0; + border-width: 1px; + border-style: solid +} + +.layui-elem-field legend { + margin-left: 20px; + padding: 0 10px; + font-size: 20px; + font-weight: 300 +} + +.layui-field-title { + margin: 10px 0 20px; + border-width: 1px 0 0 +} + +.layui-field-box { + padding: 15px +} + +.layui-field-title .layui-field-box { + padding: 10px 0 +} + +.layui-progress { + position: relative; + height: 6px; + border-radius: 20px; + background-color: #eee +} + +.layui-progress-bar { + position: absolute; + left: 0; + top: 0; + width: 0; + max-width: 100%; + height: 6px; + border-radius: 20px; + text-align: right; + background-color: #5FB878; + transition: all .3s; + -webkit-transition: all .3s +} + +.layui-progress-big, .layui-progress-big .layui-progress-bar { + height: 18px; + line-height: 18px +} + +.layui-progress-text { + position: relative; + top: -20px; + line-height: 18px; + font-size: 12px; + color: #666 +} + +.layui-progress-big .layui-progress-text { + position: static; + padding: 0 10px; + color: #fff +} + +.layui-collapse { + border-width: 1px; + border-style: solid; + border-radius: 2px +} + +.layui-colla-content, .layui-colla-item { + border-top-width: 1px; + border-top-style: solid +} + +.layui-colla-item:first-child { + border-top: none +} + +.layui-colla-title { + position: relative; + height: 42px; + line-height: 42px; + padding: 0 15px 0 35px; + color: #333; + background-color: #FAFAFA; + cursor: pointer; + font-size: 14px; + overflow: hidden +} + +.layui-colla-content { + display: none; + padding: 10px 15px; + line-height: 1.6; + color: #666 +} + +.layui-colla-icon { + position: absolute; + left: 15px; + top: 0; + font-size: 14px +} + +.layui-card-body, .layui-card-header, .layui-form-label, .layui-form-mid, .layui-form-select, .layui-input-block, .layui-input-inline, .layui-panel, .layui-textarea { + position: relative +} + +.layui-card { + margin-bottom: 15px; + border-radius: 2px; + background-color: #fff; + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05) +} + +.layui-form-select dl, .layui-panel { + box-shadow: 1px 1px 4px rgb(0 0 0 / 8%) +} + +.layui-card:last-child { + margin-bottom: 0 +} + +.layui-card-header { + height: 42px; + line-height: 42px; + padding: 0 15px; + border-bottom: 1px solid #f6f6f6; + color: #333; + border-radius: 2px 2px 0 0; + font-size: 14px +} + +.layui-card-body { + padding: 10px 15px; + line-height: 24px +} + +.layui-card-body[pad15] { + padding: 15px +} + +.layui-card-body[pad20] { + padding: 20px +} + +.layui-card-body .layui-table { + margin: 5px 0 +} + +.layui-card .layui-tab { + margin: 0 +} + +.layui-panel { + border-width: 1px; + border-style: solid; + border-radius: 2px; + background-color: #fff; + color: #666 +} + +.layui-bg-black, .layui-bg-blue, .layui-bg-cyan, .layui-bg-green, .layui-bg-orange, .layui-bg-red { + color: #fff !important +} + +.layui-panel-window { + position: relative; + padding: 15px; + border-radius: 0; + border-top: 5px solid #eee; + background-color: #fff +} + +.layui-border, .layui-border-black, .layui-border-blue, .layui-border-cyan, .layui-border-green, .layui-border-orange, .layui-border-red { + border-width: 1px; + border-style: solid +} + +.layui-auxiliar-moving { + position: fixed; + left: 0; + right: 0; + top: 0; + bottom: 0; + width: 100%; + height: 100%; + background: 0 0; + z-index: 9999999999 +} + +.layui-bg-red { + background-color: #FF5722 !important +} + +.layui-bg-orange { + background-color: #FFB800 !important +} + +.layui-bg-green { + background-color: #009688 !important +} + +.layui-bg-cyan { + background-color: #2F4056 !important +} + +.layui-bg-blue { + background-color: #1E9FFF !important +} + +.layui-bg-black { + background-color: #393D49 !important +} + +.layui-bg-gray { + background-color: #ececec !important; + color: #666 !important +} + +.layui-badge-rim, .layui-border, .layui-colla-content, .layui-colla-item, .layui-collapse, .layui-elem-field, .layui-form-pane .layui-form-item[pane], .layui-form-pane .layui-form-label, .layui-input, .layui-layedit, .layui-layedit-tool, .layui-panel, .layui-quote-nm, .layui-select, .layui-tab-bar, .layui-tab-card, .layui-tab-title, .layui-tab-title .layui-this:after, .layui-textarea { + border-color: #eee +} + +.layui-border { + color: #666 !important +} + +.layui-border-red { + border-color: #FF5722 !important; + color: #FF5722 !important +} + +.layui-border-orange { + border-color: #FFB800 !important; + color: #FFB800 !important +} + +.layui-border-green { + border-color: #009688 !important; + color: #009688 !important +} + +.layui-border-cyan { + border-color: #2F4056 !important; + color: #2F4056 !important +} + +.layui-border-blue { + border-color: #1E9FFF !important; + color: #1E9FFF !important +} + +.layui-border-black { + border-color: #393D49 !important; + color: #393D49 !important +} + +.layui-timeline-item:before { + background-color: #eee +} + +.layui-text { + line-height: 1.6; + font-size: 14px; + color: #666 +} + +.layui-text h1, .layui-text h2, .layui-text h3 { + font-weight: 500; + color: #333 +} + +.layui-text h1 { + font-size: 30px +} + +.layui-text h2 { + font-size: 24px +} + +.layui-text h3 { + font-size: 18px +} + +.layui-text a:not(.layui-btn) { + color: #01AAED +} + +.layui-text a:not(.layui-btn):hover { + text-decoration: underline +} + +.layui-text ul { + padding: 5px 0 5px 15px +} + +.layui-text ul li { + margin-top: 5px; + list-style-type: disc +} + +.layui-text em, .layui-word-aux { + color: #999 !important; + padding-left: 5px !important; + padding-right: 5px !important +} + +.layui-text p { + margin: 10px 0 +} + +.layui-text p:first-child { + margin-top: 0 +} + +.layui-font-12 { + font-size: 12px !important +} + +.layui-font-14 { + font-size: 14px !important +} + +.layui-font-16 { + font-size: 16px !important +} + +.layui-font-18 { + font-size: 18px !important +} + +.layui-font-20 { + font-size: 20px !important +} + +.layui-font-red { + color: #FF5722 !important +} + +.layui-font-orange { + color: #FFB800 !important +} + +.layui-font-green { + color: #009688 !important +} + +.layui-font-cyan { + color: #2F4056 !important +} + +.layui-font-blue { + color: #01AAED !important +} + +.layui-font-black { + color: #000 !important +} + +.layui-font-gray { + color: #c2c2c2 !important +} + +.layui-btn { + height: 38px; + line-height: 38px; + border: 1px solid transparent; + padding: 0 18px; + background-color: #009688; + color: #fff; + white-space: nowrap; + text-align: center; + font-size: 14px; + border-radius: 2px; + cursor: pointer +} + +.layui-btn:hover { + opacity: .8; + filter: alpha(opacity=80); + color: #fff +} + +.layui-btn:active { + opacity: 1; + filter: alpha(opacity=100) +} + +.layui-btn + .layui-btn { + margin-left: 10px +} + +.layui-btn-container { + font-size: 0 +} + +.layui-btn-container .layui-btn { + margin-right: 10px; + margin-bottom: 10px +} + +.layui-btn-container .layui-btn + .layui-btn { + margin-left: 0 +} + +.layui-table .layui-btn-container .layui-btn { + margin-bottom: 9px +} + +.layui-btn-radius { + border-radius: 100px +} + +.layui-btn .layui-icon { + padding: 0 2px; + vertical-align: middle \9; + vertical-align: bottom +} + +.layui-btn-primary { + border-color: #d2d2d2; + background: 0 0; + color: #666 +} + +.layui-btn-primary:hover { + border-color: #1E9FFF; + color: #333 +} + +.layui-btn-normal { + background-color: #1E9FFF +} + +.layui-btn-warm { + background-color: #FFB800 +} + +.layui-btn-danger { + background-color: #FF5722 +} + +.layui-btn-checked { + background-color: #5FB878 +} + +.layui-btn-disabled, .layui-btn-disabled:active, .layui-btn-disabled:hover { + border-color: #eee !important; + background-color: #FBFBFB !important; + color: #d2d2d2 !important; + cursor: not-allowed !important; + opacity: 1 +} + +.layui-btn-lg { + height: 44px; + line-height: 44px; + padding: 0 25px; + font-size: 16px +} + +.layui-btn-sm { + height: 30px; + line-height: 30px; + padding: 0 10px; + font-size: 12px +} + +.layui-btn-xs { + height: 22px; + line-height: 22px; + padding: 0 5px; + font-size: 12px +} + +.layui-btn-xs i { + font-size: 12px !important +} + +.layui-btn-group { + vertical-align: middle; + font-size: 0 +} + +.layui-btn-group .layui-btn { + margin-left: 0 !important; + margin-right: 0 !important; + border-left: 1px solid rgba(255, 255, 255, .5); + border-radius: 0 +} + +.layui-btn-group .layui-btn-primary { + border-left: none +} + +.layui-btn-group .layui-btn-primary:hover { + border-color: #d2d2d2; + color: #3296f5; +} + +.layui-btn-group .layui-btn:first-child { + border-left: none; + border-radius: 2px 0 0 2px +} + +.layui-btn-group .layui-btn-primary:first-child { + border-left: 1px solid #d2d2d2 +} + +.layui-btn-group .layui-btn:last-child { + border-radius: 0 2px 2px 0 +} + +.layui-btn-group .layui-btn + .layui-btn { + margin-left: 0 +} + +.layui-btn-group + .layui-btn-group { + margin-left: 10px +} + +.layui-btn-fluid { + width: 100% +} + +.layui-input, .layui-select, .layui-textarea { + height: 38px; + line-height: 1.3; + line-height: 38px \9; + border-width: 1px; + border-style: solid; + background-color: #fff; + color: rgba(0, 0, 0, .85); + border-radius: 2px +} + +.layui-input::-webkit-input-placeholder, .layui-select::-webkit-input-placeholder, .layui-textarea::-webkit-input-placeholder { + line-height: 1.3 +} + +.layui-input, .layui-textarea { + display: block; + width: 100%; + padding-left: 10px +} + +.layui-input:hover, .layui-textarea:hover { + border-color: #eee !important +} + +.layui-input:focus, .layui-textarea:focus { + border-color: #d2d2d2 !important +} + +.layui-textarea { + min-height: 100px; + height: auto; + line-height: 20px; + padding: 6px 10px; + resize: vertical +} + +.layui-select { + padding: 0 10px +} + +.layui-form input[type=checkbox], .layui-form input[type=radio], .layui-form select { + display: none +} + +.layui-form [lay-ignore] { + display: initial +} + +.layui-form-item { + margin-bottom: 15px; + clear: both; + *zoom: 1 +} + +.layui-form-item:after { + content: '\20'; + clear: both; + *zoom: 1; + display: block; + height: 0 +} + +.layui-form-label { + float: left; + display: block; + padding: 9px 15px; + width: 100px; + font-weight: 400; + line-height: 20px; + text-align: right +} + +.layui-form-label-col { + display: block; + float: none; + padding: 9px 0; + line-height: 20px; + text-align: left +} + +.layui-form-item .layui-inline { + margin-bottom: 5px; + margin-right: 10px +} + +.layui-input-block { + margin-left: 130px; + min-height: 36px +} + +.layui-input-inline { + display: inline-block; + vertical-align: middle +} + +.layui-form-item .layui-input-inline { + float: left; + width: 190px; + margin-right: 10px +} + +.layui-form-text .layui-input-inline { + width: auto +} + +.layui-form-mid { + float: left; + display: block; + padding: 9px 0 !important; + line-height: 20px; + margin-right: 10px +} + +.layui-form-danger + .layui-form-select .layui-input, .layui-form-danger:focus { + border-color: #FF5722 !important +} + +.layui-form-select .layui-input { + padding-right: 30px; + cursor: pointer +} + +.layui-form-select .layui-edge { + position: absolute; + right: 10px; + top: 50%; + margin-top: -3px; + cursor: pointer; + border-width: 6px; + border-top-color: #c2c2c2; + border-top-style: solid; + transition: all .3s; + -webkit-transition: all .3s +} + +.layui-form-select dl { + display: none; + position: absolute; + left: 0; + top: 42px; + padding: 5px 0; + z-index: 899; + min-width: 100%; + border: 1px solid #eee; + max-height: 300px; + overflow-y: auto; + background-color: #fff; + border-radius: 2px; + box-sizing: border-box +} + +.layui-form-select dl dd, .layui-form-select dl dt { + padding: 0 10px; + line-height: 36px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis +} + +.layui-form-select dl dt { + font-size: 12px; + color: #999 +} + +.layui-form-select dl dd { + cursor: pointer +} + +.layui-form-select dl dd:hover { + background-color: rgba(50,150,245,0.15) !important; + -webkit-transition: .5s all; + transition: .5s all +} + +.layui-form-select .layui-select-group dd { + padding-left: 20px +} + +.layui-form-select dl dd.layui-select-tips { + padding-left: 10px !important; + color: #999 +} + +.layui-form-select dl dd.layui-this { + background-color: #3296f5; + color: #fff +} + +.layui-form-checkbox, .layui-form-select dl dd.layui-disabled { + background-color: #fff +} + +.layui-form-selected dl { + display: block +} + +.layui-form-checkbox, .layui-form-checkbox *, .layui-form-switch { + display: inline-block; + vertical-align: middle +} + +.layui-form-selected .layui-edge { + margin-top: -9px; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); + margin-top: -3px \9 +} + +:root .layui-form-selected .layui-edge { + margin-top: -9px \0/ IE9 +} + +.layui-form-selectup dl { + top: auto; + bottom: 42px +} + +.layui-select-none { + margin: 5px 0; + text-align: center; + color: #999 +} + +.layui-select-disabled .layui-disabled { + border-color: #eee !important +} + +.layui-select-disabled .layui-edge { + border-top-color: #d2d2d2 +} + +.layui-form-checkbox { + position: relative; + height: 30px; + line-height: 30px; + margin-right: 10px; + padding-right: 30px; + cursor: pointer; + font-size: 0; + -webkit-transition: .1s linear; + transition: .1s linear; + box-sizing: border-box +} + +.layui-form-checkbox span { + padding: 0 10px; + height: 100%; + font-size: 14px; + border-radius: 2px 0 0 2px; + background-color: #d2d2d2; + color: #fff; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis +} + +.layui-form-checkbox:hover span { + background-color: #c2c2c2 +} + +.layui-form-checkbox i { + position: absolute; + right: 0; + top: 0; + width: 30px; + height: 28px; + border: 1px solid #d2d2d2; + border-left: none; + border-radius: 0 2px 2px 0; + color: #fff; + font-size: 20px; + text-align: center +} + +.layui-form-checkbox:hover i { + border-color: #c2c2c2; + color: #c2c2c2 +} + +.layui-form-checked, .layui-form-checked:hover { + border-color: #5FB878 +} + +.layui-form-checked span, .layui-form-checked:hover span { + background-color: #5FB878 +} + +.layui-form-checked i, .layui-form-checked:hover i { + color: #5FB878 +} + +.layui-form-item .layui-form-checkbox { + margin-top: 4px +} + +.layui-form-checkbox[lay-skin=primary] { + height: auto !important; + line-height: normal !important; + min-width: 18px; + min-height: 18px; + border: none !important; + margin-right: 0; + padding-left: 28px; + padding-right: 0; + background: 0 0 +} + +.layui-form-checkbox[lay-skin=primary] span { + padding-left: 0; + padding-right: 15px; + line-height: 18px; + background: 0 0; + color: #666 +} + +.layui-form-checkbox[lay-skin=primary] i { + right: auto; + left: 0; + width: 16px; + height: 16px; + line-height: 16px; + border: 1px solid #d2d2d2; + font-size: 12px; + border-radius: 2px; + background-color: #fff; + -webkit-transition: .1s linear; + transition: .1s linear +} + +.layui-form-checkbox[lay-skin=primary]:hover i { + border-color: #3296f5; + color: #fff +} + +.layui-form-checked[lay-skin=primary] i { + border-color: #3296f5 !important; + background-color: #3296f5; + color: #fff +} + +.layui-checkbox-disabled[lay-skin=primary] span { + background: 0 0 !important; + color: #c2c2c2 !important +} + +.layui-checkbox-disabled[lay-skin=primary]:hover i { + border-color: #d2d2d2 +} + +.layui-form-item .layui-form-checkbox[lay-skin=primary] { + margin-top: 10px +} + +.layui-form-switch { + position: relative; + height: 22px; + line-height: 22px; + min-width: 35px; + padding: 0 5px; + margin-top: 8px; + border: 1px solid #d2d2d2; + border-radius: 20px; + cursor: pointer; + background-color: #fff; + -webkit-transition: .1s linear; + transition: .1s linear +} + +.layui-form-switch i { + position: absolute; + left: 5px; + top: 3px; + width: 16px; + height: 16px; + border-radius: 20px; + background-color: #d2d2d2; + -webkit-transition: .1s linear; + transition: .1s linear +} + +.layui-form-switch em { + position: relative; + top: 0; + width: 25px; + margin-left: 21px; + padding: 0 !important; + text-align: center !important; + color: #999 !important; + font-style: normal !important; + font-size: 12px +} + +.layui-form-onswitch { + border-color: #5FB878; + background-color: #5FB878 +} + +.layui-checkbox-disabled, .layui-checkbox-disabled i { + border-color: #eee !important +} + +.layui-form-onswitch i { + left: 100%; + margin-left: -21px; + background-color: #fff +} + +.layui-form-onswitch em { + margin-left: 5px; + margin-right: 21px; + color: #fff !important +} + +.layui-checkbox-disabled span { + background-color: #eee !important +} + +.layui-checkbox-disabled em { + color: #d2d2d2 !important +} + +.layui-checkbox-disabled:hover i { + color: #fff !important +} + +[lay-radio] { + display: none +} + +.layui-form-radio, .layui-form-radio * { + display: inline-block; + vertical-align: middle +} + +.layui-form-radio { + line-height: 28px; + margin: 6px 10px 0 0; + padding-right: 10px; + cursor: pointer; + font-size: 0 +} + +.layui-form-radio * { + font-size: 14px +} + +.layui-form-radio > i { + margin-right: 8px; + font-size: 22px; + color: #c2c2c2 +} + +.layui-form-radio:hover *, .layui-form-radioed, .layui-form-radioed > i { + color: #3296f5 +} + +.layui-radio-disabled > i { + color: #eee !important +} + +.layui-radio-disabled * { + color: #c2c2c2 !important +} + +.layui-form-pane .layui-form-label { + width: 110px; + padding: 8px 15px; + height: 38px; + line-height: 20px; + border-width: 1px; + border-style: solid; + border-radius: 2px 0 0 2px; + text-align: center; + background-color: #FAFAFA; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + box-sizing: border-box +} + +.layui-form-pane .layui-input-inline { + margin-left: -1px +} + +.layui-form-pane .layui-input-block { + margin-left: 110px; + left: -1px +} + +.layui-form-pane .layui-input { + border-radius: 0 2px 2px 0 +} + +.layui-form-pane .layui-form-text .layui-form-label { + float: none; + width: 100%; + border-radius: 2px; + box-sizing: border-box; + text-align: left +} + +.layui-form-pane .layui-form-text .layui-input-inline { + display: block; + margin: 0; + top: -1px; + clear: both +} + +.layui-form-pane .layui-form-text .layui-input-block { + margin: 0; + left: 0; + top: -1px +} + +.layui-form-pane .layui-form-text .layui-textarea { + min-height: 100px; + border-radius: 0 0 2px 2px +} + +.layui-form-pane .layui-form-checkbox { + margin: 4px 0 4px 10px +} + +.layui-form-pane .layui-form-radio, .layui-form-pane .layui-form-switch { + margin-top: 6px; + margin-left: 10px +} + +.layui-form-pane .layui-form-item[pane] { + position: relative; + border-width: 1px; + border-style: solid +} + +.layui-form-pane .layui-form-item[pane] .layui-form-label { + position: absolute; + left: 0; + top: 0; + height: 100%; + border-width: 0 1px 0 0 +} + +.layui-form-pane .layui-form-item[pane] .layui-input-inline { + margin-left: 110px +} + +@media screen and (max-width: 450px) { + .layui-form-item .layui-form-label { + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap + } + + .layui-form-item .layui-inline { + display: block; + margin-right: 0; + margin-bottom: 20px; + clear: both + } + + .layui-form-item .layui-inline:after { + content: '\20'; + clear: both; + display: block; + height: 0 + } + + .layui-form-item .layui-input-inline { + display: block; + float: none; + left: -3px; + width: auto !important; + margin: 0 0 10px 112px + } + + .layui-form-item .layui-input-inline + .layui-form-mid { + margin-left: 110px; + top: -5px; + padding: 0 + } + + .layui-form-item .layui-form-checkbox { + margin-right: 5px; + margin-bottom: 5px + } +} + +.layui-layedit { + border-width: 1px; + border-style: solid; + border-radius: 2px +} + +.layui-layedit-tool { + padding: 3px 5px; + border-bottom-width: 1px; + border-bottom-style: solid; + font-size: 0 +} + +.layedit-tool-fixed { + position: fixed; + top: 0; + border-top: 1px solid #eee +} + +.layui-layedit-tool .layedit-tool-mid, .layui-layedit-tool .layui-icon { + display: inline-block; + vertical-align: middle; + text-align: center; + font-size: 14px +} + +.layui-layedit-tool .layui-icon { + position: relative; + width: 32px; + height: 30px; + line-height: 30px; + margin: 3px 5px; + color: #777; + cursor: pointer; + border-radius: 2px +} + +.layui-layedit-tool .layui-icon:hover { + color: #393D49 +} + +.layui-layedit-tool .layui-icon:active { + color: #000 +} + +.layui-layedit-tool .layedit-tool-active { + background-color: #eee; + color: #000 +} + +.layui-layedit-tool .layui-disabled, .layui-layedit-tool .layui-disabled:hover { + color: #d2d2d2; + cursor: not-allowed +} + +.layui-layedit-tool .layedit-tool-mid { + width: 1px; + height: 18px; + margin: 0 10px; + background-color: #d2d2d2 +} + +.layedit-tool-html { + width: 50px !important; + font-size: 30px !important +} + +.layedit-tool-b, .layedit-tool-code, .layedit-tool-help { + font-size: 16px !important +} + +.layedit-tool-d, .layedit-tool-face, .layedit-tool-image, .layedit-tool-unlink { + font-size: 18px !important +} + +.layedit-tool-image input { + position: absolute; + font-size: 0; + left: 0; + top: 0; + width: 100%; + height: 100%; + opacity: .01; + filter: Alpha(opacity=1); + cursor: pointer +} + +.layui-layedit-iframe iframe { + display: block; + width: 100% +} + +#LAY_layedit_code { + overflow: hidden +} + +.layui-laypage { + display: inline-block; + *display: inline; + *zoom: 1; + vertical-align: middle; + margin: 10px 0; + font-size: 0 +} + +.layui-laypage > a:first-child, .layui-laypage > a:first-child em { + border-radius: 2px 0 0 2px +} + +.layui-laypage > a:last-child, .layui-laypage > a:last-child em { + border-radius: 0 2px 2px 0 +} + +.layui-laypage > :first-child { + margin-left: 0 !important +} + +.layui-laypage > :last-child { + margin-right: 0 !important +} + +.layui-laypage a, .layui-laypage button, .layui-laypage input, .layui-laypage select, .layui-laypage span { + border: 1px solid #eee +} + +.layui-laypage a, .layui-laypage span { + display: inline-block; + *display: inline; + *zoom: 1; + vertical-align: middle; + padding: 0 15px; + height: 28px; + line-height: 28px; + margin: 0 -1px 5px 0; + background-color: #fff; + color: #333; + font-size: 12px +} + +.layui-flow-more a *, .layui-laypage input, .layui-table-view select[lay-ignore] { + display: inline-block +} + +.layui-laypage a:hover { + color: #009688 +} + +.layui-laypage em { + font-style: normal +} + +.layui-laypage .layui-laypage-spr { + color: #999; + font-weight: 700 +} + +.layui-laypage a { + text-decoration: none +} + +.layui-laypage .layui-laypage-curr { + position: relative +} + +.layui-laypage .layui-laypage-curr em { + position: relative; + color: #fff +} + +.layui-laypage .layui-laypage-curr .layui-laypage-em { + position: absolute; + left: -1px; + top: -1px; + padding: 1px; + width: 100%; + height: 100%; + background-color: #009688 +} + +.layui-laypage-em { + border-radius: 2px +} + +.layui-laypage-next em, .layui-laypage-prev em { + font-family: Sim sun; + font-size: 16px +} + +.layui-laypage .layui-laypage-count, .layui-laypage .layui-laypage-limits, .layui-laypage .layui-laypage-refresh, .layui-laypage .layui-laypage-skip { + margin-left: 10px; + margin-right: 10px; + padding: 0; + border: none +} + +.layui-laypage .layui-laypage-limits, .layui-laypage .layui-laypage-refresh { + vertical-align: top +} + +.layui-laypage .layui-laypage-refresh i { + font-size: 18px; + cursor: pointer +} + +.layui-laypage select { + height: 22px; + padding: 3px; + border-radius: 2px; + cursor: pointer +} + +.layui-laypage .layui-laypage-skip { + height: 30px; + line-height: 30px; + color: #999 +} + +.layui-laypage button, .layui-laypage input { + height: 30px; + line-height: 30px; + border-radius: 2px; + vertical-align: top; + background-color: #fff; + box-sizing: border-box +} + +.layui-laypage input { + width: 40px; + margin: 0 10px; + padding: 0 3px; + text-align: center +} + +.layui-laypage input:focus, .layui-laypage select:focus { + border-color: #009688 !important +} + +.layui-laypage button { + margin-left: 10px; + padding: 0 10px; + cursor: pointer +} + +.layui-table, .layui-table-view { + margin: 10px 0 +} + +.layui-flow-more { + margin: 10px 0; + text-align: center; + color: #999; + font-size: 14px +} + +.layui-flow-more a { + height: 32px; + line-height: 32px +} + +.layui-flow-more a * { + vertical-align: top +} + +.layui-flow-more a cite { + padding: 0 20px; + border-radius: 3px; + background-color: #eee; + color: #333; + font-style: normal +} + +.layui-flow-more a cite:hover { + opacity: .8 +} + +.layui-flow-more a i { + font-size: 30px; + color: #737383 +} + +.layui-table { + width: 100%; + background-color: #fff; + color: #666 +} + +.layui-table tr { + transition: all .3s; + -webkit-transition: all .3s +} + +.layui-table th { + text-align: left; + font-weight: 400 +} + +.layui-table tbody tr:hover, .layui-table thead tr, .layui-table-click, .layui-table-header, .layui-table-hover, .layui-table-mend, .layui-table-patch, .layui-table-tool, .layui-table-total, .layui-table-total tr, .layui-table[lay-even] tr:nth-child(even) { + background-color: #FAFAFA +} + +.layui-table td, .layui-table th, .layui-table-col-set, .layui-table-fixed-r, .layui-table-grid-down, .layui-table-header, .layui-table-page, .layui-table-tips-main, .layui-table-tool, .layui-table-total, .layui-table-view, .layui-table[lay-skin=line], .layui-table[lay-skin=row] { + border-width: 1px; + border-style: solid; + border-color: #eee +} + +.layui-table td, .layui-table th { + position: relative; + padding: 9px 15px; + min-height: 20px; + line-height: 20px; + font-size: 14px +} + +.layui-table[lay-skin=line] td, .layui-table[lay-skin=line] th { + border-width: 0 0 1px +} + +.layui-table[lay-skin=row] td, .layui-table[lay-skin=row] th { + border-width: 0 1px 0 0 +} + +.layui-table[lay-skin=nob] td, .layui-table[lay-skin=nob] th { + border: none +} + +.layui-table img { + max-width: 100px +} + +.layui-table[lay-size=lg] td, .layui-table[lay-size=lg] th { + padding: 15px 30px +} + +.layui-table-view .layui-table[lay-size=lg] .layui-table-cell { + height: 40px; + line-height: 40px +} + +.layui-table[lay-size=sm] td, .layui-table[lay-size=sm] th { + font-size: 12px; + padding: 5px 10px +} + +.layui-table-view .layui-table[lay-size=sm] .layui-table-cell { + height: 20px; + line-height: 20px +} + +.layui-table[lay-data] { + display: none +} + +.layui-table-box { + position: relative; + overflow: hidden +} + +.layui-table-view .layui-table { + position: relative; + width: auto; + margin: 0 +} + +.layui-table-view .layui-table[lay-skin=line] { + border-width: 0 1px 0 0 +} + +.layui-table-view .layui-table[lay-skin=row] { + border-width: 0 0 1px +} + +.layui-table-view .layui-table td, .layui-table-view .layui-table th { + padding: 5px 0; + border-top: none; + border-left: none +} + +.layui-table-view .layui-table th.layui-unselect .layui-table-cell span { + cursor: pointer +} + +.layui-table-view .layui-table td { + cursor: default +} + +.layui-table-view .layui-table td[data-edit=text] { + cursor: text +} + +.layui-table-view .layui-form-checkbox[lay-skin=primary] i { + width: 18px; + height: 18px +} + +.layui-table-view .layui-form-radio { + line-height: 0; + padding: 0 +} + +.layui-table-view .layui-form-radio > i { + margin: 0; + font-size: 20px +} + +.layui-table-init { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + text-align: center; + z-index: 110 +} + +.layui-table-init .layui-icon { + position: absolute; + left: 50%; + top: 50%; + margin: -15px 0 0 -15px; + font-size: 30px; + color: #c2c2c2 +} + +.layui-table-header { + border-width: 0 0 1px; + overflow: hidden +} + +.layui-table-header .layui-table { + margin-bottom: -1px +} + +.layui-table-tool .layui-inline[lay-event] { + position: relative; + width: 26px; + height: 26px; + padding: 5px; + line-height: 16px; + margin-right: 10px; + text-align: center; + color: #333; + border: 1px solid #ccc; + cursor: pointer; + -webkit-transition: .5s all; + transition: .5s all +} + +.layui-table-tool .layui-inline[lay-event]:hover { + border: 1px solid #999 +} + +.layui-table-tool-temp { + padding-right: 120px +} + +.layui-table-tool-self { + position: absolute; + right: 17px; + top: 10px +} + +.layui-table-tool .layui-table-tool-self .layui-inline[lay-event] { + margin: 0 0 0 10px +} + +.layui-table-tool-panel { + position: absolute; + top: 29px; + left: -1px; + padding: 5px 0; + min-width: 150px; + min-height: 40px; + border: 1px solid #d2d2d2; + text-align: left; + overflow-y: auto; + background-color: #fff; + box-shadow: 0 2px 4px rgba(0, 0, 0, .12) +} + +.layui-table-cell, .layui-table-tool-panel li { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap +} + +.layui-table-tool-panel li { + padding: 0 10px; + line-height: 30px; + -webkit-transition: .5s all; + transition: .5s all +} + +.layui-menu li, .layui-menu-body-title a:hover, .layui-menu-body-title > .layui-icon:hover { + transition: all .3s +} + +.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] { + width: 100%; + padding-left: 28px +} + +.layui-table-tool-panel li:hover { + background-color: #F6F6F6 +} + +.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] i { + position: absolute; + left: 0; + top: 0 +} + +.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] span { + padding: 0 +} + +.layui-table-tool .layui-table-tool-self .layui-table-tool-panel { + left: auto; + right: -1px +} + +.layui-table-col-set { + position: absolute; + right: 0; + top: 0; + width: 20px; + height: 100%; + border-width: 0 0 0 1px; + background-color: #fff +} + +.layui-table-sort { + width: 10px; + height: 20px; + margin-left: 5px; + cursor: pointer !important +} + +.layui-table-sort .layui-edge { + position: absolute; + left: 5px; + border-width: 5px +} + +.layui-table-sort .layui-table-sort-asc { + top: 3px; + border-top: none; + border-bottom-style: solid; + border-bottom-color: #b2b2b2 +} + +.layui-table-sort .layui-table-sort-asc:hover { + border-bottom-color: #666 +} + +.layui-table-sort .layui-table-sort-desc { + bottom: 5px; + border-bottom: none; + border-top-style: solid; + border-top-color: #b2b2b2 +} + +.layui-table-sort .layui-table-sort-desc:hover { + border-top-color: #666 +} + +.layui-table-sort[lay-sort=asc] .layui-table-sort-asc { + border-bottom-color: #000 +} + +.layui-table-sort[lay-sort=desc] .layui-table-sort-desc { + border-top-color: #000 +} + +.layui-table-cell { + height: 28px; + line-height: 28px; + padding: 0 15px; + position: relative; + box-sizing: border-box +} + +.layui-table-cell .layui-form-checkbox[lay-skin=primary] { + top: -1px; + padding: 0 +} + +.layui-table-cell .layui-table-link { + color: #01AAED +} + +.laytable-cell-checkbox, .laytable-cell-numbers, .laytable-cell-radio, .laytable-cell-space { + padding: 0; + text-align: center +} + +.layui-table-body { + position: relative; + overflow: auto; + margin-right: -1px; + margin-bottom: -1px +} + +.layui-table-body .layui-none { + line-height: 26px; + padding: 30px 15px; + text-align: center; + color: #999 +} + +.layui-table-fixed { + position: absolute; + left: 0; + top: 0; + z-index: 101 +} + +.layui-table-fixed .layui-table-body { + overflow: hidden +} + +.layui-table-fixed-l { + box-shadow: 1px 0 8px rgba(0, 0, 0, .08) +} + +.layui-table-fixed-r { + left: auto; + right: -1px; + border-width: 0 0 0 1px; + box-shadow: -1px 0 8px rgba(0, 0, 0, .08) +} + +.layui-table-fixed-r .layui-table-header { + position: relative; + overflow: visible +} + +.layui-table-mend { + position: absolute; + right: -49px; + top: 0; + height: 100%; + width: 50px +} + +.layui-table-tool { + position: relative; + z-index: 890; + width: 100%; + min-height: 50px; + line-height: 30px; + padding: 10px 15px; + border-width: 0 0 1px +} + +.layui-table-tool .layui-btn-container { + margin-bottom: -10px +} + +.layui-table-page, .layui-table-total { + border-width: 1px 0 0; + margin-bottom: -1px; + overflow: hidden +} + +.layui-table-page { + position: relative; + width: 100%; + padding: 7px 7px 0; + height: 41px; + font-size: 12px; + white-space: nowrap +} + +.layui-table-page > div { + height: 26px +} + +.layui-table-page .layui-laypage { + margin: 0 +} + +.layui-table-page .layui-laypage a, .layui-table-page .layui-laypage span { + height: 26px; + line-height: 26px; + margin-bottom: 10px; + border: none; + background: 0 0 +} + +.layui-table-page .layui-laypage a, .layui-table-page .layui-laypage span.layui-laypage-curr { + padding: 0 12px +} + +.layui-table-page .layui-laypage span { + margin-left: 0; + padding: 0 +} + +.layui-table-page .layui-laypage .layui-laypage-prev { + margin-left: -7px !important +} + +.layui-table-page .layui-laypage .layui-laypage-curr .layui-laypage-em { + left: 0; + top: 0; + padding: 0 +} + +.layui-table-page .layui-laypage button, .layui-table-page .layui-laypage input { + height: 26px; + line-height: 26px +} + +.layui-table-page .layui-laypage input { + width: 40px +} + +.layui-table-page .layui-laypage button { + padding: 0 10px +} + +.layui-table-page select { + height: 18px +} + +.layui-table-patch .layui-table-cell { + padding: 0; + width: 30px +} + +.layui-table-edit { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + padding: 0 14px 1px; + border-radius: 0; + box-shadow: 1px 1px 20px rgba(0, 0, 0, .15) +} + +.layui-table-edit:focus { + border-color: #5FB878 !important +} + +select.layui-table-edit { + padding: 0 0 0 10px; + border-color: #d2d2d2 +} + +.layui-table-view .layui-form-checkbox, .layui-table-view .layui-form-radio, .layui-table-view .layui-form-switch { + top: 0; + margin: 0; + box-sizing: content-box +} + +.layui-colorpicker-alpha-slider, .layui-colorpicker-side-slider, .layui-menu, .layui-menu *, .layui-nav { + box-sizing: border-box +} + +.layui-table-view .layui-form-checkbox { + top: -1px; + height: 26px; + line-height: 26px +} + +.layui-table-view .layui-form-checkbox i { + height: 26px +} + +.layui-table-grid .layui-table-cell { + overflow: visible +} + +.layui-table-grid-down { + position: absolute; + top: 0; + right: 0; + width: 26px; + height: 100%; + padding: 5px 0; + border-width: 0 0 0 1px; + text-align: center; + background-color: #fff; + color: #999; + cursor: pointer +} + +.layui-table-grid-down .layui-icon { + position: absolute; + top: 50%; + left: 50%; + margin: -8px 0 0 -8px +} + +.layui-table-grid-down:hover { + background-color: #fbfbfb +} + +body .layui-table-tips .layui-layer-content { + background: 0 0; + padding: 0; + box-shadow: 0 1px 6px rgba(0, 0, 0, .12) +} + +.layui-table-tips-main { + margin: -44px 0 0 -1px; + max-height: 150px; + padding: 8px 15px; + font-size: 14px; + overflow-y: scroll; + background-color: #fff; + color: #666 +} + +.layui-table-tips-c { + position: absolute; + right: -3px; + top: -13px; + width: 20px; + height: 20px; + padding: 3px; + cursor: pointer; + background-color: #666; + border-radius: 50%; + color: #fff +} + +.layui-table-tips-c:hover { + background-color: #777 +} + +.layui-table-tips-c:before { + position: relative; + right: -2px +} + +.layui-upload-file { + display: none !important; + opacity: .01; + filter: Alpha(opacity=1) +} + +.layui-upload-drag, .layui-upload-form, .layui-upload-wrap { + display: inline-block +} + +.layui-upload-list { + margin: 10px 0 +} + +.layui-upload-choose { + max-width: 200px; + padding: 0 10px; + color: #999; + font-size: 14px; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap +} + +.layui-upload-drag { + position: relative; + padding: 30px; + border: 1px dashed #e2e2e2; + background-color: #fff; + text-align: center; + cursor: pointer; + color: #999 +} + +.layui-upload-drag .layui-icon { + font-size: 50px; + color: #009688 +} + +.layui-upload-drag[lay-over] { + border-color: #009688 +} + +.layui-upload-iframe { + position: absolute; + width: 0; + height: 0; + border: 0; + visibility: hidden +} + +.layui-upload-wrap { + position: relative; + vertical-align: middle +} + +.layui-upload-wrap .layui-upload-file { + display: block !important; + position: absolute; + left: 0; + top: 0; + z-index: 10; + font-size: 100px; + width: 100%; + height: 100%; + opacity: .01; + filter: Alpha(opacity=1); + cursor: pointer +} + +.layui-btn-container .layui-upload-choose { + padding-left: 0 +} + +.layui-menu { + position: relative; + margin: 5px 0; + background-color: #fff +} + +.layui-menu li, .layui-menu-body-title a { + padding: 5px 15px +} + +.layui-menu li { + position: relative; + margin: 1px 0; + width: calc(100% + 1px); + line-height: 26px; + color: rgba(0, 0, 0, .8); + font-size: 14px; + white-space: nowrap; + cursor: pointer +} + +.layui-menu li:hover { + background-color: rgba(50,150,245,0.15) !important +} + +.layui-menu-item-parent:hover > .layui-menu-body-panel { + display: block; + animation-name: layui-fadein; + animation-duration: .3s; + animation-fill-mode: both; + animation-delay: .2s +} + +.layui-menu-item-group .layui-menu-body-title, .layui-menu-item-parent .layui-menu-body-title { + padding-right: 25px +} + +.layui-menu .layui-menu-item-divider:hover, .layui-menu .layui-menu-item-group:hover, .layui-menu .layui-menu-item-none:hover { + background: 0 0; + cursor: default +} + +.layui-menu .layui-menu-item-group > ul { + margin: 5px 0 -5px +} + +.layui-menu .layui-menu-item-group > .layui-menu-body-title { + color: rgba(0, 0, 0, .35); + user-select: none +} + +.layui-menu .layui-menu-item-none { + color: rgba(0, 0, 0, .35); + cursor: default; + text-align: center +} + +.layui-menu .layui-menu-item-divider { + margin: 5px 0; + padding: 0; + height: 0; + line-height: 0; + border-bottom: 1px solid #eee; + overflow: hidden +} + +.layui-menu .layui-menu-item-down:hover, .layui-menu .layui-menu-item-up:hover { + cursor: pointer +} + +.layui-menu .layui-menu-item-up > .layui-menu-body-title { + color: rgba(0, 0, 0, .8) +} + +.layui-menu .layui-menu-item-up > ul { + visibility: hidden; + height: 0; + overflow: hidden +} + +.layui-menu .layui-menu-item-down:hover > .layui-menu-body-title > .layui-icon, .layui-menu .layui-menu-item-up > .layui-menu-body-title:hover > .layui-icon { + color: rgba(0, 0, 0, 1) +} + +.layui-menu .layui-menu-item-down > ul { + visibility: visible; + height: auto +} + +.layui-breadcrumb, .layui-tree-btnGroup { + visibility: hidden +} + +.layui-menu .layui-menu-item-checked, .layui-menu .layui-menu-item-checked2 { + background-color: rgba(50,150,245,0.15) !important; + color: #3296f5 +} + +.layui-menu .layui-menu-item-checked a, .layui-menu .layui-menu-item-checked2 a { + color: #3296f5 +} + +.layui-menu .layui-menu-item-checked:after { + position: absolute; + right: 0; + top: 0; + bottom: 0; + border-right: 3px solid #3296f5; + content: "" +} + +.layui-menu-body-title { + position: relative; + overflow: hidden; + text-overflow: ellipsis +} + +.layui-menu-body-title a { + display: block; + margin: -5px -15px; + color: rgba(0, 0, 0, .8) +} + +.layui-menu-body-title > .layui-icon { + position: absolute; + right: 0; + top: 0; + font-size: 14px +} + +.layui-menu-body-title > .layui-icon-right { + right: -1px +} + +.layui-menu-body-panel { + display: none; + position: absolute; + top: -7px; + left: 100%; + z-index: 1000; + margin-left: 13px; + padding: 5px 0 +} + +.layui-menu-body-panel:before { + content: ""; + position: absolute; + width: 20px; + left: -16px; + top: 0; + bottom: 0 +} + +.layui-menu-body-panel-left { + left: auto; + right: 100%; + margin: 0 13px +} + +.layui-menu-body-panel-left:before { + left: auto; + right: -16px +} + +.layui-menu-lg li { + line-height: 32px +} + +.layui-menu-lg .layui-menu-body-title a:hover, .layui-menu-lg li:hover { + background: 0 0; + color: #5FB878 +} + +.layui-menu-lg li .layui-menu-body-panel { + margin-left: 14px +} + +.layui-menu-lg li .layui-menu-body-panel-left { + margin: 0 15px +} + +.layui-dropdown { + position: absolute; + left: -999999px; + top: -999999px; + z-index: 66666666; + margin: 5px 0; + min-width: 100px +} + +.layui-dropdown:before { + content: ""; + position: absolute; + width: 100%; + height: 6px; + left: 0; + top: -6px +} + +.layui-nav { + position: relative; + padding: 0 20px; + background-color: #393D49; + color: #fff; + border-radius: 2px; + font-size: 0 +} + +.layui-nav * { + font-size: 14px +} + +.layui-nav .layui-nav-item { + position: relative; + display: inline-block; + *display: inline; + *zoom: 1; + vertical-align: middle; + line-height: 60px +} + +.layui-nav .layui-nav-item a { + display: block; + padding: 0 20px; + color: #fff; + color: rgba(255, 255, 255, .7); + transition: all .3s; + -webkit-transition: all .3s +} + +.layui-nav .layui-this:after, .layui-nav-bar { + content: ""; + position: absolute; + left: 0; + top: 0; + width: 0; + height: 5px; + background-color: #5FB878; + transition: all .2s; + -webkit-transition: all .2s; + pointer-events: none +} + +.layui-nav-bar { + z-index: 1000 +} + +.layui-nav[lay-bar=disabled] .layui-nav-bar { + display: none +} + +.layui-nav .layui-nav-item a:hover, .layui-nav .layui-this a { + color: #fff +} + +.layui-nav .layui-this:after { + top: auto; + bottom: 0; + width: 100% +} + +.layui-nav-img { + width: 30px; + height: 30px; + margin-right: 10px; + border-radius: 50% +} + +.layui-nav .layui-nav-more { + position: absolute; + top: 0; + right: 3px; + left: auto !important; + margin-top: 0; + font-size: 12px; + cursor: pointer; + transition: all .2s; + -webkit-transition: all .2s +} + +.layui-nav .layui-nav-mored, .layui-nav-itemed > a .layui-nav-more { + transform: rotate(180deg) +} + +.layui-nav-child { + display: none; + position: absolute; + left: 0; + top: 65px; + min-width: 100%; + line-height: 36px; + padding: 5px 0; + box-shadow: 0 2px 4px rgba(0, 0, 0, .12); + border: 1px solid #eee; + background-color: #fff; + z-index: 100; + border-radius: 2px; + white-space: nowrap +} + +.layui-nav .layui-nav-child a { + color: #666; + color: rgba(0, 0, 0, .8) +} + +.layui-nav .layui-nav-child a:hover { + background-color: #F6F6F6; + color: rgba(0, 0, 0, .8) +} + +.layui-nav-child dd { + margin: 1px 0; + position: relative +} + +.layui-nav-child dd.layui-this { + background-color: #F6F6F6; + color: #000 +} + +.layui-nav-child dd.layui-this:after { + display: none +} + +.layui-nav-child-r { + left: auto; + right: 0 +} + +.layui-nav-child-c { + text-align: center +} + +.layui-nav-tree { + width: 200px; + padding: 0 +} + +.layui-nav-tree .layui-nav-item { + display: block; + width: 100%; + line-height: 40px +} + +.layui-nav-tree .layui-nav-item a { + position: relative; + height: 40px; + line-height: 40px; + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap +} + +.layui-nav-tree .layui-nav-item > a { + padding-top: 5px; + padding-bottom: 5px +} + +.layui-nav-tree .layui-nav-more { + right: 15px +} + +.layui-nav-tree .layui-nav-item > a .layui-nav-more { + padding: 5px 0 +} + +.layui-nav-tree .layui-nav-bar { + width: 5px; + height: 0; + background-color: #009688 +} + +.layui-side .layui-nav-tree .layui-nav-bar { + width: 2px +} + +.layui-nav-tree .layui-nav-child dd.layui-this, .layui-nav-tree .layui-nav-child dd.layui-this a, .layui-nav-tree .layui-this, .layui-nav-tree .layui-this > a, .layui-nav-tree .layui-this > a:hover { + background-color: #009688; + color: #fff +} + +.layui-nav-tree .layui-this:after { + display: none +} + +.layui-nav-itemed > a, .layui-nav-tree .layui-nav-title a, .layui-nav-tree .layui-nav-title a:hover { + color: #fff !important +} + +.layui-nav-tree .layui-nav-child { + position: relative; + z-index: 0; + top: 0; + border: none; + box-shadow: none +} + +.layui-nav-tree .layui-nav-child dd { + margin: 0 +} + +.layui-nav-tree .layui-nav-child a { + color: #fff; + color: rgba(255, 255, 255, .7) +} + +.layui-nav-tree .layui-nav-child, .layui-nav-tree .layui-nav-child a:hover { + background: 0 0; + color: #fff +} + +.layui-nav-itemed > .layui-nav-child { + display: block; + background-color: rgba(0, 0, 0, .3) !important +} + +.layui-nav-itemed > .layui-nav-child > .layui-this > .layui-nav-child { + display: block +} + +.layui-nav-side { + position: fixed; + top: 0; + bottom: 0; + left: 0; + overflow-x: hidden; + z-index: 999 +} + +.layui-breadcrumb { + font-size: 0 +} + +.layui-breadcrumb > * { + font-size: 14px +} + +.layui-breadcrumb a { + color: #999 !important +} + +.layui-breadcrumb a:hover { + color: #5FB878 !important +} + +.layui-breadcrumb a cite { + color: #666; + font-style: normal +} + +.layui-breadcrumb span[lay-separator] { + margin: 0 10px; + color: #999 +} + +.layui-tab { + margin: 10px 0; + text-align: left !important +} + +.layui-tab[overflow] > .layui-tab-title { + overflow: hidden +} + +.layui-tab-title { + position: relative; + left: 0; + height: 40px; + white-space: nowrap; + font-size: 0; + border-bottom-width: 1px; + border-bottom-style: solid; + transition: all .2s; + -webkit-transition: all .2s +} + +.layui-tab-title li { + display: inline-block; + *display: inline; + *zoom: 1; + vertical-align: middle; + font-size: 14px; + transition: all .2s; + -webkit-transition: all .2s; + position: relative; + line-height: 40px; + min-width: 65px; + padding: 0 15px; + text-align: center; + cursor: pointer +} + +.layui-tab-title li a { + display: block; + padding: 0 15px; + margin: 0 -15px +} + +.layui-tab-title .layui-this { + color: #000 +} + +.layui-tab-title .layui-this:after { + position: absolute; + left: 0; + top: 0; + content: ""; + width: 100%; + height: 41px; + border-width: 1px; + border-style: solid; + border-bottom-color: #fff; + border-radius: 2px 2px 0 0; + box-sizing: border-box; + pointer-events: none +} + +.layui-tab-bar { + position: absolute; + right: 0; + top: 0; + z-index: 10; + width: 30px; + height: 39px; + line-height: 39px; + border-width: 1px; + border-style: solid; + border-radius: 2px; + text-align: center; + background-color: #fff; + cursor: pointer +} + +.layui-tab-bar .layui-icon { + position: relative; + display: inline-block; + top: 3px; + transition: all .3s; + -webkit-transition: all .3s +} + +.layui-tab-item { + display: none +} + +.layui-tab-more { + padding-right: 30px; + height: auto !important; + white-space: normal !important +} + +.layui-tab-more li.layui-this:after { + border-bottom-color: #eee; + border-radius: 2px +} + +.layui-tab-more .layui-tab-bar .layui-icon { + top: -2px; + top: 3px \9; + -webkit-transform: rotate(180deg); + transform: rotate(180deg) +} + +:root .layui-tab-more .layui-tab-bar .layui-icon { + top: -2px \0/ IE9 +} + +.layui-tab-content { + padding: 15px 0 +} + +.layui-tab-title li .layui-tab-close { + position: relative; + display: inline-block; + width: 18px; + height: 18px; + line-height: 20px; + margin-left: 8px; + top: 1px; + text-align: center; + font-size: 14px; + color: #c2c2c2; + transition: all .2s; + -webkit-transition: all .2s +} + +.layui-tab-title li .layui-tab-close:hover { + border-radius: 2px; + background-color: #FF5722; + color: #fff +} + +.layui-tab-brief > .layui-tab-title .layui-this { + color: #3296f5 +} + +.layui-tab-brief > .layui-tab-more li.layui-this:after, .layui-tab-brief > .layui-tab-title .layui-this:after { + border: none; + border-radius: 0; + border-bottom: 2px solid #3296f5 +} + +.layui-tab-brief[overflow] > .layui-tab-title .layui-this:after { + top: -1px +} + +.layui-tab-card { + border-width: 1px; + border-style: solid; + border-radius: 2px; + box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1) +} + +.layui-tab-card > .layui-tab-title { + background-color: #FAFAFA +} + +.layui-tab-card > .layui-tab-title li { + margin-right: -1px; + margin-left: -1px +} + +.layui-tab-card > .layui-tab-title .layui-this { + background-color: #fff +} + +.layui-tab-card > .layui-tab-title .layui-this:after { + border-top: none; + border-width: 1px; + border-bottom-color: #fff +} + +.layui-tab-card > .layui-tab-title .layui-tab-bar { + height: 40px; + line-height: 40px; + border-radius: 0; + border-top: none; + border-right: none +} + +.layui-tab-card > .layui-tab-more .layui-this { + background: 0 0; + color: #5FB878 +} + +.layui-tab-card > .layui-tab-more .layui-this:after { + border: none +} + +.layui-timeline { + padding-left: 5px +} + +.layui-timeline-item { + position: relative; + padding-bottom: 20px +} + +.layui-timeline-axis { + position: absolute; + left: -5px; + top: 0; + z-index: 10; + width: 20px; + height: 20px; + line-height: 20px; + background-color: #fff; + color: #5FB878; + border-radius: 50%; + text-align: center; + cursor: pointer +} + +.layui-timeline-axis:hover { + color: #FF5722 +} + +.layui-timeline-item:before { + content: ""; + position: absolute; + left: 5px; + top: 0; + z-index: 0; + width: 1px; + height: 100% +} + +.layui-timeline-item:first-child:before { + display: block +} + +.layui-timeline-item:last-child:before { + display: none +} + +.layui-timeline-content { + padding-left: 25px +} + +.layui-timeline-title { + position: relative; + margin-bottom: 10px; + line-height: 22px +} + +.layui-badge, .layui-badge-dot, .layui-badge-rim { + position: relative; + display: inline-block; + padding: 0 6px; + font-size: 12px; + text-align: center; + background-color: #FF5722; + color: #fff; + border-radius: 2px +} + +.layui-badge { + height: 18px; + line-height: 18px +} + +.layui-badge-dot { + width: 8px; + height: 8px; + padding: 0; + border-radius: 50% +} + +.layui-badge-rim { + height: 18px; + line-height: 18px; + border-width: 1px; + border-style: solid; + background-color: #fff; + color: #666 +} + +.layui-btn .layui-badge, .layui-btn .layui-badge-dot { + margin-left: 5px +} + +.layui-nav .layui-badge, .layui-nav .layui-badge-dot { + position: absolute; + top: 50%; + margin: -5px 6px 0 +} + +.layui-nav .layui-badge { + margin-top: -10px +} + +.layui-tab-title .layui-badge, .layui-tab-title .layui-badge-dot { + left: 5px; + top: -2px +} + +.layui-carousel { + position: relative; + left: 0; + top: 0; + background-color: #f8f8f8 +} + +.layui-carousel > [carousel-item] { + position: relative; + width: 100%; + height: 100%; + overflow: hidden +} + +.layui-carousel > [carousel-item]:before { + position: absolute; + content: '\e63d'; + left: 50%; + top: 50%; + width: 100px; + line-height: 20px; + margin: -10px 0 0 -50px; + text-align: center; + color: #c2c2c2; + font-family: layui-icon !important; + font-size: 30px; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale +} + +.layui-carousel > [carousel-item] > * { + display: none; + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + background-color: #f8f8f8; + transition-duration: .3s; + -webkit-transition-duration: .3s +} + +.layui-carousel-updown > * { + -webkit-transition: .3s ease-in-out up; + transition: .3s ease-in-out up +} + +.layui-carousel-arrow { + display: none \9; + opacity: 0; + position: absolute; + left: 10px; + top: 50%; + margin-top: -18px; + width: 36px; + height: 36px; + line-height: 36px; + text-align: center; + font-size: 20px; + border: 0; + border-radius: 50%; + background-color: rgba(0, 0, 0, .2); + color: #fff; + -webkit-transition-duration: .3s; + transition-duration: .3s; + cursor: pointer +} + +.layui-carousel-arrow[lay-type=add] { + left: auto !important; + right: 10px +} + +.layui-carousel:hover .layui-carousel-arrow[lay-type=add], .layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add] { + right: 20px +} + +.layui-carousel[lay-arrow=always] .layui-carousel-arrow { + opacity: 1; + left: 20px +} + +.layui-carousel[lay-arrow=none] .layui-carousel-arrow { + display: none +} + +.layui-carousel-arrow:hover, .layui-carousel-ind ul:hover { + background-color: rgba(0, 0, 0, .35) +} + +.layui-carousel:hover .layui-carousel-arrow { + display: block \9; + opacity: 1; + left: 20px +} + +.layui-carousel-ind { + position: relative; + top: -35px; + width: 100%; + line-height: 0 !important; + text-align: center; + font-size: 0 +} + +.layui-carousel[lay-indicator=outside] { + margin-bottom: 30px +} + +.layui-carousel[lay-indicator=outside] .layui-carousel-ind { + top: 10px +} + +.layui-carousel[lay-indicator=outside] .layui-carousel-ind ul { + background-color: rgba(0, 0, 0, .5) +} + +.layui-carousel[lay-indicator=none] .layui-carousel-ind { + display: none +} + +.layui-carousel-ind ul { + display: inline-block; + padding: 5px; + background-color: rgba(0, 0, 0, .2); + border-radius: 10px; + -webkit-transition-duration: .3s; + transition-duration: .3s +} + +.layui-carousel-ind li { + display: inline-block; + width: 10px; + height: 10px; + margin: 0 3px; + font-size: 14px; + background-color: #eee; + background-color: rgba(255, 255, 255, .5); + border-radius: 50%; + cursor: pointer; + -webkit-transition-duration: .3s; + transition-duration: .3s +} + +.layui-carousel-ind li:hover { + background-color: rgba(255, 255, 255, .7) +} + +.layui-carousel-ind li.layui-this { + background-color: #fff +} + +.layui-carousel > [carousel-item] > .layui-carousel-next, .layui-carousel > [carousel-item] > .layui-carousel-prev, .layui-carousel > [carousel-item] > .layui-this { + display: block +} + +.layui-carousel > [carousel-item] > .layui-this { + left: 0 +} + +.layui-carousel > [carousel-item] > .layui-carousel-prev { + left: -100% +} + +.layui-carousel > [carousel-item] > .layui-carousel-next { + left: 100% +} + +.layui-carousel > [carousel-item] > .layui-carousel-next.layui-carousel-left, .layui-carousel > [carousel-item] > .layui-carousel-prev.layui-carousel-right { + left: 0 +} + +.layui-carousel > [carousel-item] > .layui-this.layui-carousel-left { + left: -100% +} + +.layui-carousel > [carousel-item] > .layui-this.layui-carousel-right { + left: 100% +} + +.layui-carousel[lay-anim=updown] .layui-carousel-arrow { + left: 50% !important; + top: 20px; + margin: 0 0 0 -18px +} + +.layui-carousel[lay-anim=updown] > [carousel-item] > *, .layui-carousel[lay-anim=fade] > [carousel-item] > * { + left: 0 !important +} + +.layui-carousel[lay-anim=updown] .layui-carousel-arrow[lay-type=add] { + top: auto !important; + bottom: 20px +} + +.layui-carousel[lay-anim=updown] .layui-carousel-ind { + position: absolute; + top: 50%; + right: 20px; + width: auto; + height: auto +} + +.layui-carousel[lay-anim=updown] .layui-carousel-ind ul { + padding: 3px 5px +} + +.layui-carousel[lay-anim=updown] .layui-carousel-ind li { + display: block; + margin: 6px 0 +} + +.layui-carousel[lay-anim=updown] > [carousel-item] > .layui-this { + top: 0 +} + +.layui-carousel[lay-anim=updown] > [carousel-item] > .layui-carousel-prev { + top: -100% +} + +.layui-carousel[lay-anim=updown] > [carousel-item] > .layui-carousel-next { + top: 100% +} + +.layui-carousel[lay-anim=updown] > [carousel-item] > .layui-carousel-next.layui-carousel-left, .layui-carousel[lay-anim=updown] > [carousel-item] > .layui-carousel-prev.layui-carousel-right { + top: 0 +} + +.layui-carousel[lay-anim=updown] > [carousel-item] > .layui-this.layui-carousel-left { + top: -100% +} + +.layui-carousel[lay-anim=updown] > [carousel-item] > .layui-this.layui-carousel-right { + top: 100% +} + +.layui-carousel[lay-anim=fade] > [carousel-item] > .layui-carousel-next, .layui-carousel[lay-anim=fade] > [carousel-item] > .layui-carousel-prev { + opacity: 0 +} + +.layui-carousel[lay-anim=fade] > [carousel-item] > .layui-carousel-next.layui-carousel-left, .layui-carousel[lay-anim=fade] > [carousel-item] > .layui-carousel-prev.layui-carousel-right { + opacity: 1 +} + +.layui-carousel[lay-anim=fade] > [carousel-item] > .layui-this.layui-carousel-left, .layui-carousel[lay-anim=fade] > [carousel-item] > .layui-this.layui-carousel-right { + opacity: 0 +} + +.layui-fixbar { + position: fixed; + right: 15px; + bottom: 15px; + z-index: 999999 +} + +.layui-fixbar li { + width: 50px; + height: 50px; + line-height: 50px; + margin-bottom: 1px; + text-align: center; + cursor: pointer; + font-size: 30px; + background-color: #9F9F9F; + color: #fff; + border-radius: 2px; + opacity: .95 +} + +.layui-fixbar li:hover { + opacity: .85 +} + +.layui-fixbar li:active { + opacity: 1 +} + +.layui-fixbar .layui-fixbar-top { + display: none; + font-size: 40px +} + +body .layui-util-face { + border: none; + background: 0 0 +} + +body .layui-util-face .layui-layer-content { + padding: 0; + background-color: #fff; + color: #666; + box-shadow: none +} + +.layui-util-face .layui-layer-TipsG { + display: none +} + +.layui-transfer-active, .layui-transfer-box { + display: inline-block; + vertical-align: middle +} + +.layui-util-face ul { + position: relative; + width: 372px; + padding: 10px; + border: 1px solid #D9D9D9; + background-color: #fff; + box-shadow: 0 0 20px rgba(0, 0, 0, .2) +} + +.layui-util-face ul li { + cursor: pointer; + float: left; + border: 1px solid #e8e8e8; + height: 22px; + width: 26px; + overflow: hidden; + margin: -1px 0 0 -1px; + padding: 4px 2px; + text-align: center +} + +.layui-util-face ul li:hover { + position: relative; + z-index: 2; + border: 1px solid #eb7350; + background: #fff9ec +} + +.layui-code { + position: relative; + margin: 10px 0; + padding: 15px; + line-height: 20px; + border: 1px solid #eee; + border-left-width: 6px; + background-color: #FAFAFA; + color: #333; + font-family: Courier New; + font-size: 12px +} + +.layui-transfer-box, .layui-transfer-header, .layui-transfer-search { + border-width: 0; + border-style: solid; + border-color: #eee +} + +.layui-transfer-box { + position: relative; + border-width: 1px; + width: 200px; + height: 360px; + border-radius: 2px; + background-color: #fff +} + +.layui-transfer-box .layui-form-checkbox { + width: 100%; + margin: 0 !important +} + +.layui-transfer-header { + height: 38px; + line-height: 38px; + padding: 0 10px; + border-bottom-width: 1px +} + +.layui-transfer-search { + position: relative; + padding: 10px; + border-bottom-width: 1px +} + +.layui-transfer-search .layui-input { + height: 32px; + padding-left: 30px; + font-size: 12px +} + +.layui-transfer-search .layui-icon-search { + position: absolute; + left: 20px; + top: 50%; + margin-top: -8px; + color: #666 +} + +.layui-transfer-active { + margin: 0 15px +} + +.layui-transfer-active .layui-btn { + display: block; + margin: 0; + padding: 0 15px; + background-color: #5FB878; + border-color: #5FB878; + color: #fff +} + +.layui-transfer-active .layui-btn-disabled { + background-color: #FBFBFB; + border-color: #eee; + color: #d2d2d2 +} + +.layui-transfer-active .layui-btn:first-child { + margin-bottom: 15px +} + +.layui-transfer-active .layui-btn .layui-icon { + margin: 0; + font-size: 14px !important +} + +.layui-transfer-data { + padding: 5px 0; + overflow: auto +} + +.layui-transfer-data li { + height: 32px; + line-height: 32px; + padding: 0 10px +} + +.layui-transfer-data li:hover { + background-color: #F6F6F6; + transition: .5s all +} + +.layui-transfer-data .layui-none { + padding: 15px 10px; + text-align: center; + color: #999 +} + +.layui-rate, .layui-rate * { + display: inline-block; + vertical-align: middle +} + +.layui-rate { + padding: 10px 5px 10px 0; + font-size: 0 +} + +.layui-rate li i.layui-icon { + font-size: 20px; + color: #FFB800; + margin-right: 5px; + transition: all .3s; + -webkit-transition: all .3s +} + +.layui-rate li i:hover { + cursor: pointer; + transform: scale(1.12); + -webkit-transform: scale(1.12) +} + +.layui-rate[readonly] li i:hover { + cursor: default; + transform: scale(1) +} + +.layui-colorpicker { + width: 26px; + height: 26px; + border: 1px solid #eee; + padding: 5px; + border-radius: 2px; + line-height: 24px; + display: inline-block; + cursor: pointer; + transition: all .3s; + -webkit-transition: all .3s +} + +.layui-colorpicker:hover { + border-color: #d2d2d2 +} + +.layui-colorpicker.layui-colorpicker-lg { + width: 34px; + height: 34px; + line-height: 32px +} + +.layui-colorpicker.layui-colorpicker-sm { + width: 24px; + height: 24px; + line-height: 22px +} + +.layui-colorpicker.layui-colorpicker-xs { + width: 22px; + height: 22px; + line-height: 20px +} + +.layui-colorpicker-trigger-bgcolor { + display: block; + background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==); + border-radius: 2px +} + +.layui-colorpicker-trigger-span { + display: block; + height: 100%; + box-sizing: border-box; + border: 1px solid rgba(0, 0, 0, .15); + border-radius: 2px; + text-align: center +} + +.layui-colorpicker-trigger-i { + display: inline-block; + color: #FFF; + font-size: 12px +} + +.layui-colorpicker-trigger-i.layui-icon-close { + color: #999 +} + +.layui-colorpicker-main { + position: absolute; + left: -999999px; + top: -999999px; + z-index: 66666666; + width: 280px; + margin: 5px 0; + padding: 7px; + background: #FFF; + border: 1px solid #d2d2d2; + border-radius: 2px; + box-shadow: 0 2px 4px rgba(0, 0, 0, .12) +} + +.layui-colorpicker-main-wrapper { + height: 180px; + position: relative +} + +.layui-colorpicker-basis { + width: 260px; + height: 100%; + position: relative +} + +.layui-colorpicker-basis-white { + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + background: linear-gradient(90deg, #FFF, hsla(0, 0%, 100%, 0)) +} + +.layui-colorpicker-basis-black { + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + background: linear-gradient(0deg, #000, transparent) +} + +.layui-colorpicker-basis-cursor { + width: 10px; + height: 10px; + border: 1px solid #FFF; + border-radius: 50%; + position: absolute; + top: -3px; + right: -3px; + cursor: pointer +} + +.layui-colorpicker-side { + position: absolute; + top: 0; + right: 0; + width: 12px; + height: 100%; + background: linear-gradient(red, #FF0, #0F0, #0FF, #00F, #F0F, red) +} + +.layui-colorpicker-side-slider { + width: 100%; + height: 5px; + box-shadow: 0 0 1px #888; + background: #FFF; + border-radius: 1px; + border: 1px solid #f0f0f0; + cursor: pointer; + position: absolute; + left: 0 +} + +.layui-colorpicker-main-alpha { + display: none; + height: 12px; + margin-top: 7px; + background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==) +} + +.layui-colorpicker-alpha-bgcolor { + height: 100%; + position: relative +} + +.layui-colorpicker-alpha-slider { + width: 5px; + height: 100%; + box-shadow: 0 0 1px #888; + background: #FFF; + border-radius: 1px; + border: 1px solid #f0f0f0; + cursor: pointer; + position: absolute; + top: 0 +} + +.layui-colorpicker-main-pre { + padding-top: 7px; + font-size: 0 +} + +.layui-colorpicker-pre { + width: 20px; + height: 20px; + border-radius: 2px; + display: inline-block; + margin-left: 6px; + margin-bottom: 7px; + cursor: pointer +} + +.layui-colorpicker-pre:nth-child(11n+1) { + margin-left: 0 +} + +.layui-colorpicker-pre-isalpha { + background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==) +} + +.layui-colorpicker-pre.layui-this { + box-shadow: 0 0 3px 2px rgba(0, 0, 0, .15) +} + +.layui-colorpicker-pre > div { + height: 100%; + border-radius: 2px +} + +.layui-colorpicker-main-input { + text-align: right; + padding-top: 7px +} + +.layui-colorpicker-main-input .layui-btn-container .layui-btn { + margin: 0 0 0 10px +} + +.layui-colorpicker-main-input div.layui-inline { + float: left; + margin-right: 10px; + font-size: 14px +} + +.layui-colorpicker-main-input input.layui-input { + width: 150px; + height: 30px; + color: #666 +} + +.layui-slider { + height: 4px; + background: #eee; + border-radius: 3px; + position: relative; + cursor: pointer +} + +.layui-slider-bar { + border-radius: 3px; + position: absolute; + height: 100% +} + +.layui-slider-step { + position: absolute; + top: 0; + width: 4px; + height: 4px; + border-radius: 50%; + background: #FFF; + -webkit-transform: translateX(-50%); + transform: translateX(-50%) +} + +.layui-slider-wrap { + width: 36px; + height: 36px; + position: absolute; + top: -16px; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + z-index: 10; + text-align: center +} + +.layui-slider-wrap-btn { + width: 12px; + height: 12px; + border-radius: 50%; + background: #FFF; + display: inline-block; + vertical-align: middle; + cursor: pointer; + transition: .3s +} + +.layui-slider-wrap:after { + content: ""; + height: 100%; + display: inline-block; + vertical-align: middle +} + +.layui-slider-wrap-btn.layui-slider-hover, .layui-slider-wrap-btn:hover { + transform: scale(1.2) +} + +.layui-slider-wrap-btn.layui-disabled:hover { + transform: scale(1) !important +} + +.layui-slider-tips { + position: absolute; + top: -42px; + z-index: 66666666; + white-space: nowrap; + display: none; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + color: #FFF; + background: #000; + border-radius: 3px; + height: 25px; + line-height: 25px; + padding: 0 10px +} + +.layui-slider-tips:after { + content: ""; + position: absolute; + bottom: -12px; + left: 50%; + margin-left: -6px; + width: 0; + height: 0; + border-width: 6px; + border-style: solid; + border-color: #000 transparent transparent +} + +.layui-slider-input { + width: 70px; + height: 32px; + border: 1px solid #eee; + border-radius: 3px; + font-size: 16px; + line-height: 32px; + position: absolute; + right: 0; + top: -14px +} + +.layui-slider-input-btn { + position: absolute; + top: 0; + right: 0; + width: 20px; + height: 100%; + border-left: 1px solid #eee +} + +.layui-slider-input-btn i { + cursor: pointer; + position: absolute; + right: 0; + bottom: 0; + width: 20px; + height: 50%; + font-size: 12px; + line-height: 16px; + text-align: center; + color: #999 +} + +.layui-slider-input-btn i:first-child { + top: 0; + border-bottom: 1px solid #eee +} + +.layui-slider-input-txt { + height: 100%; + font-size: 14px +} + +.layui-slider-input-txt input { + height: 100%; + border: none +} + +.layui-slider-input-btn i:hover { + color: #009688 +} + +.layui-slider-vertical { + width: 4px; + margin-left: 33px +} + +.layui-slider-vertical .layui-slider-bar { + width: 4px +} + +.layui-slider-vertical .layui-slider-step { + top: auto; + left: 0; + -webkit-transform: translateY(50%); + transform: translateY(50%) +} + +.layui-slider-vertical .layui-slider-wrap { + top: auto; + left: -16px; + -webkit-transform: translateY(50%); + transform: translateY(50%) +} + +.layui-slider-vertical .layui-slider-tips { + top: auto; + left: 2px +} + +@media \0screen { + .layui-slider-wrap-btn { + margin-left: -20px + } + + .layui-slider-vertical .layui-slider-wrap-btn { + margin-left: 0; + margin-bottom: -20px + } + + .layui-slider-vertical .layui-slider-tips { + margin-left: -8px + } + + .layui-slider > span { + margin-left: 8px + } +} + +.layui-tree { + line-height: 22px +} + +.layui-tree .layui-form-checkbox { + margin: 0 !important +} + +.layui-tree-set { + width: 100%; + position: relative +} + +.layui-tree-pack { + display: none; + padding-left: 20px; + position: relative +} + +.layui-tree-iconClick, .layui-tree-main { + display: inline-block; + vertical-align: middle +} + +.layui-tree-line .layui-tree-pack { + padding-left: 27px +} + +.layui-tree-line .layui-tree-set .layui-tree-set:after { + content: ""; + position: absolute; + top: 14px; + left: -9px; + width: 17px; + height: 0; + border-top: 1px dotted #c0c4cc +} + +.layui-tree-entry { + position: relative; + padding: 3px 0; + height: 20px; + white-space: nowrap +} + +.layui-tree-entry:hover { + background-color: rgba(50,150,245,0.15) !important +} + +.layui-tree-line .layui-tree-entry:hover { + background-color: rgba(0, 0, 0, 0) +} + +.layui-tree-line .layui-tree-entry:hover .layui-tree-txt { + color: #999; + text-decoration: underline; + transition: .3s +} + +.layui-tree-main { + cursor: pointer; + padding-right: 10px +} + +.layui-tree-line .layui-tree-set:before { + content: ""; + position: absolute; + top: 0; + left: -9px; + width: 0; + height: 100%; + border-left: 1px dotted #c0c4cc +} + +.layui-tree-line .layui-tree-set.layui-tree-setLineShort:before { + height: 13px +} + +.layui-tree-line .layui-tree-set.layui-tree-setHide:before { + height: 0 +} + +.layui-tree-iconClick { + position: relative; + height: 20px; + line-height: 20px; + margin: 0 10px; + color: #c0c4cc +} + +.layui-tree-icon { + height: 12px; + line-height: 12px; + width: 12px; + text-align: center; + border: 1px solid #c0c4cc +} + +.layui-tree-iconClick .layui-icon { + font-size: 18px +} + +.layui-tree-icon .layui-icon { + font-size: 12px; + color: #666 +} + +.layui-tree-iconArrow { + padding: 0 5px +} + +.layui-tree-iconArrow:after { + content: ""; + position: absolute; + left: 4px; + top: 3px; + z-index: 100; + width: 0; + height: 0; + border-width: 5px; + border-style: solid; + border-color: transparent transparent transparent #c0c4cc; + transition: .5s +} + +.layui-tree-btnGroup, .layui-tree-editInput { + position: relative; + vertical-align: middle; + display: inline-block +} + +.layui-tree-spread > .layui-tree-entry > .layui-tree-iconClick > .layui-tree-iconArrow:after { + transform: rotate(90deg) translate(3px, 4px) +} + +.layui-tree-txt { + display: inline-block; + vertical-align: middle; + color: #555 +} + +.layui-tree-search { + margin-bottom: 15px; + color: #666 +} + +.layui-tree-btnGroup .layui-icon { + display: inline-block; + vertical-align: middle; + padding: 0 2px; + cursor: pointer +} + +.layui-tree-btnGroup .layui-icon:hover { + color: #999; + transition: .3s +} + +.layui-tree-entry:hover .layui-tree-btnGroup { + visibility: visible +} + +.layui-tree-editInput { + height: 20px; + line-height: 20px; + padding: 0 3px; + border: none; + background-color: rgba(0, 0, 0, .05) +} + +.layui-tree-emptyText { + text-align: center; + color: #999 +} + +.layui-anim { + -webkit-animation-duration: .3s; + -webkit-animation-fill-mode: both; + animation-duration: .3s; + animation-fill-mode: both +} + +.layui-anim.layui-icon { + display: inline-block +} + +.layui-anim-loop { + -webkit-animation-iteration-count: infinite; + animation-iteration-count: infinite +} + +.layui-trans, .layui-trans a { + transition: all .2s; + -webkit-transition: all .2s +} + +@-webkit-keyframes layui-rotate { + from { + -webkit-transform: rotate(0) + } + to { + -webkit-transform: rotate(360deg) + } +} + +@keyframes layui-rotate { + from { + transform: rotate(0) + } + to { + transform: rotate(360deg) + } +} + +.layui-anim-rotate { + -webkit-animation-name: layui-rotate; + animation-name: layui-rotate; + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-timing-function: linear; + animation-timing-function: linear +} + +@-webkit-keyframes layui-up { + from { + -webkit-transform: translate3d(0, 100%, 0); + opacity: .3 + } + to { + -webkit-transform: translate3d(0, 0, 0); + opacity: 1 + } +} + +@keyframes layui-up { + from { + transform: translate3d(0, 100%, 0); + opacity: .3 + } + to { + transform: translate3d(0, 0, 0); + opacity: 1 + } +} + +.layui-anim-up { + -webkit-animation-name: layui-up; + animation-name: layui-up +} + +@-webkit-keyframes layui-upbit { + from { + -webkit-transform: translate3d(0, 15px, 0); + opacity: .3 + } + to { + -webkit-transform: translate3d(0, 0, 0); + opacity: 1 + } +} + +@keyframes layui-upbit { + from { + transform: translate3d(0, 15px, 0); + opacity: .3 + } + to { + transform: translate3d(0, 0, 0); + opacity: 1 + } +} + +.layui-anim-upbit { + -webkit-animation-name: layui-upbit; + animation-name: layui-upbit +} + +@keyframes layui-down { + 0% { + opacity: .3; + transform: translate3d(0, -100%, 0) + } + 100% { + opacity: 1; + transform: translate3d(0, 0, 0) + } +} + +.layui-anim-down { + animation-name: layui-down +} + +@keyframes layui-downbit { + 0% { + opacity: .3; + transform: translate3d(0, -5px, 0) + } + 100% { + opacity: 1; + transform: translate3d(0, 0, 0) + } +} + +.layui-anim-downbit { + animation-name: layui-downbit +} + +@-webkit-keyframes layui-scale { + 0% { + opacity: .3; + -webkit-transform: scale(.5) + } + 100% { + opacity: 1; + -webkit-transform: scale(1) + } +} + +@keyframes layui-scale { + 0% { + opacity: .3; + -ms-transform: scale(.5); + transform: scale(.5) + } + 100% { + opacity: 1; + -ms-transform: scale(1); + transform: scale(1) + } +} + +.layui-anim-scale { + -webkit-animation-name: layui-scale; + animation-name: layui-scale +} + +@-webkit-keyframes layui-scale-spring { + 0% { + opacity: .5; + -webkit-transform: scale(.5) + } + 80% { + opacity: .8; + -webkit-transform: scale(1.1) + } + 100% { + opacity: 1; + -webkit-transform: scale(1) + } +} + +@keyframes layui-scale-spring { + 0% { + opacity: .5; + transform: scale(.5) + } + 80% { + opacity: .8; + transform: scale(1.1) + } + 100% { + opacity: 1; + transform: scale(1) + } +} + +.layui-anim-scaleSpring { + -webkit-animation-name: layui-scale-spring; + animation-name: layui-scale-spring +} + +@keyframes layui-scalesmall { + 0% { + opacity: .3; + transform: scale(1.5) + } + 100% { + opacity: 1; + transform: scale(1) + } +} + +.layui-anim-scalesmall { + animation-name: layui-scalesmall +} + +@keyframes layui-scalesmall-spring { + 0% { + opacity: .3; + transform: scale(1.5) + } + 80% { + opacity: .8; + transform: scale(.9) + } + 100% { + opacity: 1; + transform: scale(1) + } +} + +.layui-anim-scalesmall-spring { + animation-name: layui-scalesmall-spring +} + +@-webkit-keyframes layui-fadein { + 0% { + opacity: 0 + } + 100% { + opacity: 1 + } +} + +@keyframes layui-fadein { + 0% { + opacity: 0 + } + 100% { + opacity: 1 + } +} + +.layui-anim-fadein { + -webkit-animation-name: layui-fadein; + animation-name: layui-fadein +} + +@-webkit-keyframes layui-fadeout { + 0% { + opacity: 1 + } + 100% { + opacity: 0 + } +} + +@keyframes layui-fadeout { + 0% { + opacity: 1 + } + 100% { + opacity: 0 + } +} + +.layui-anim-fadeout { + -webkit-animation-name: layui-fadeout; + animation-name: layui-fadeout +} \ No newline at end of file diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/code.css b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/code.css new file mode 100644 index 0000000..0fee0c5 --- /dev/null +++ b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/code.css @@ -0,0 +1 @@ +html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #eee;border-left-width:6px;background-color:#FAFAFA;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:40px;line-height:40px;border-bottom:1px solid #eee}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 10px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view .layui-code-ol li:first-child{padding-top:10px}.layui-code-view .layui-code-ol li:last-child{padding-bottom:10px}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none}.layui-code-demo .layui-code{visibility:visible!important;margin:-15px;border-top:none;border-right:none;border-bottom:none}.layui-code-demo .layui-tab-content{padding:15px;border-top:none} \ No newline at end of file diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/laydate/default/laydate.css b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/laydate/default/laydate.css new file mode 100644 index 0000000..c08928b --- /dev/null +++ b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/laydate/default/laydate.css @@ -0,0 +1 @@ +.laydate-set-ym,.layui-laydate,.layui-laydate *,.layui-laydate-list{box-sizing:border-box}html #layuicss-laydate{display:none;position:absolute;width:1989px}.layui-laydate *{margin:0;padding:0}.layui-laydate{position:absolute;z-index:66666666;margin:5px 0;border-radius:2px;font-size:14px;-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;animation-name:laydate-downbit}.layui-laydate-main{width:272px}.layui-laydate-content td,.layui-laydate-header *,.layui-laydate-list li{transition-duration:.3s;-webkit-transition-duration:.3s}@keyframes laydate-downbit{0%{opacity:.3;transform:translate3d(0,-5px,0)}100%{opacity:1;transform:translate3d(0,0,0)}}.layui-laydate-static{position:relative;z-index:0;display:inline-block;margin:0;-webkit-animation:none;animation:none}.laydate-ym-show .laydate-next-m,.laydate-ym-show .laydate-prev-m{display:none!important}.laydate-ym-show .laydate-next-y,.laydate-ym-show .laydate-prev-y{display:inline-block!important}.laydate-time-show .laydate-set-ym span[lay-type=month],.laydate-time-show .laydate-set-ym span[lay-type=year],.laydate-time-show .layui-laydate-header .layui-icon,.laydate-ym-show .laydate-set-ym span[lay-type=month]{display:none!important}.layui-laydate-header{position:relative;line-height:30px;padding:10px 70px 5px}.layui-laydate-header *{display:inline-block;vertical-align:bottom}.layui-laydate-header i{position:absolute;top:10px;padding:0 5px;color:#999;font-size:18px;cursor:pointer}.layui-laydate-header i.laydate-prev-y{left:15px}.layui-laydate-header i.laydate-prev-m{left:45px}.layui-laydate-header i.laydate-next-y{right:15px}.layui-laydate-header i.laydate-next-m{right:45px}.laydate-set-ym{width:100%;text-align:center;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.laydate-set-ym span{padding:0 10px;cursor:pointer}.laydate-time-text{cursor:default!important}.layui-laydate-content{position:relative;padding:10px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-laydate-content table{border-collapse:collapse;border-spacing:0}.layui-laydate-content td,.layui-laydate-content th{width:36px;height:30px;padding:5px;text-align:center}.layui-laydate-content td{position:relative;cursor:pointer}.laydate-day-mark{position:absolute;left:0;top:0;width:100%;line-height:30px;font-size:12px;overflow:hidden}.laydate-day-mark::after{position:absolute;content:'';right:2px;top:2px;width:5px;height:5px;border-radius:50%}.layui-laydate-footer{position:relative;height:46px;line-height:26px;padding:10px}.layui-laydate-footer span{display:inline-block;vertical-align:top;height:26px;line-height:24px;padding:0 10px;border:1px solid #C9C9C9;border-radius:2px;background-color:#fff;font-size:12px;cursor:pointer;white-space:nowrap;transition:all .3s}.layui-laydate-list>li,.layui-laydate-range .layui-laydate-main{display:inline-block;vertical-align:middle}.layui-laydate-footer span:hover{color:#5FB878}.layui-laydate-footer span.layui-laydate-preview{cursor:default;border-color:transparent!important}.layui-laydate-footer span.layui-laydate-preview:hover{color:#666}.layui-laydate-footer span:first-child.layui-laydate-preview{padding-left:0}.laydate-footer-btns{position:absolute;right:10px;top:10px}.laydate-footer-btns span{margin:0 0 0 -1px}.layui-laydate-list{position:absolute;left:0;top:0;width:100%;height:100%;padding:10px;background-color:#fff}.layui-laydate-list>li{position:relative;width:33.3%;height:36px;line-height:36px;margin:3px 0;text-align:center;cursor:pointer}.laydate-month-list>li{width:25%;margin:17px 0}.laydate-time-list>li{height:100%;margin:0;line-height:normal;cursor:default}.laydate-time-list p{position:relative;top:-4px;line-height:29px}.laydate-time-list ol{height:181px;overflow:hidden}.laydate-time-list>li:hover ol{overflow-y:auto}.laydate-time-list ol li{width:130%;padding-left:33px;height:30px;line-height:30px;text-align:left;cursor:pointer}.layui-laydate-hint{position:absolute;top:115px;left:50%;width:250px;margin-left:-125px;line-height:20px;padding:15px;text-align:center;font-size:12px}.layui-laydate-range{width:546px}.layui-laydate-range .laydate-main-list-1 .layui-laydate-content,.layui-laydate-range .laydate-main-list-1 .layui-laydate-header{border-left:1px solid #e2e2e2}.layui-laydate,.layui-laydate-hint{border:1px solid #d2d2d2;box-shadow:0 2px 4px rgba(0,0,0,.12);background-color:#fff;color:#666}.layui-laydate-header{border-bottom:1px solid #e2e2e2}.layui-laydate-header i:hover,.layui-laydate-header span:hover{color:#5FB878}.layui-laydate-content{border-top:none 0;border-bottom:none 0}.layui-laydate-content th{font-weight:400;color:#333}.layui-laydate-content td{color:#666}.layui-laydate-content td.laydate-selected{background-color:#B5FFF8}.laydate-selected:hover{background-color:#00F7DE!important}.layui-laydate-content td:hover,.layui-laydate-list li:hover{background-color:#eee;color:#333}.laydate-time-list li ol{margin:0;padding:0;border:1px solid #e2e2e2;border-left-width:0}.laydate-time-list li:first-child ol{border-left-width:1px}.laydate-time-list>li:hover{background:0 0}.layui-laydate-content .laydate-day-next,.layui-laydate-content .laydate-day-prev{color:#d2d2d2}.laydate-selected.laydate-day-next,.laydate-selected.laydate-day-prev{background-color:#f8f8f8!important}.layui-laydate-footer{border-top:1px solid #e2e2e2}.layui-laydate-hint{color:#FF5722}.laydate-day-mark::after{background-color:#5FB878}.layui-laydate-content td.layui-this .laydate-day-mark::after{display:none}.layui-laydate-footer span[lay-type=date]{color:#5FB878}.layui-laydate .layui-this{background-color:#009688!important;color:#fff!important}.layui-laydate .laydate-disabled,.layui-laydate .laydate-disabled:hover{background:0 0!important;color:#d2d2d2!important;cursor:not-allowed!important;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.laydate-theme-molv{border:none}.laydate-theme-molv.layui-laydate-range{width:548px}.laydate-theme-molv .layui-laydate-main{width:274px}.laydate-theme-molv .layui-laydate-header{border:none;background-color:#009688}.laydate-theme-molv .layui-laydate-header i,.laydate-theme-molv .layui-laydate-header span{color:#f6f6f6}.laydate-theme-molv .layui-laydate-header i:hover,.laydate-theme-molv .layui-laydate-header span:hover{color:#fff}.laydate-theme-molv .layui-laydate-content{border:1px solid #e2e2e2;border-top:none;border-bottom:none}.laydate-theme-molv .laydate-main-list-1 .layui-laydate-content{border-left:none}.laydate-theme-grid .laydate-month-list>li,.laydate-theme-grid .laydate-year-list>li,.laydate-theme-grid .layui-laydate-content td,.laydate-theme-grid .layui-laydate-content thead,.laydate-theme-molv .layui-laydate-footer{border:1px solid #e2e2e2}.laydate-theme-grid .laydate-selected,.laydate-theme-grid .laydate-selected:hover{background-color:#f2f2f2!important;color:#009688!important}.laydate-theme-grid .laydate-selected.laydate-day-next,.laydate-theme-grid .laydate-selected.laydate-day-prev{color:#d2d2d2!important}.laydate-theme-grid .laydate-month-list,.laydate-theme-grid .laydate-year-list{margin:1px 0 0 1px}.laydate-theme-grid .laydate-month-list>li,.laydate-theme-grid .laydate-year-list>li{margin:0 -1px -1px 0}.laydate-theme-grid .laydate-year-list>li{height:43px;line-height:43px}.laydate-theme-grid .laydate-month-list>li{height:71px;line-height:71px} \ No newline at end of file diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/icon-ext.png b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/icon-ext.png new file mode 100644 index 0000000..bbbb669 Binary files /dev/null and b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/icon-ext.png differ diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/icon.png b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/icon.png new file mode 100644 index 0000000..3e17da8 Binary files /dev/null and b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/icon.png differ diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/layer.css b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/layer.css new file mode 100644 index 0000000..f6b7923 --- /dev/null +++ b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/layer.css @@ -0,0 +1,914 @@ +.layui-layer-imgbar, .layui-layer-imgtit a, .layui-layer-tab .layui-layer-title span, .layui-layer-title { + text-overflow: ellipsis; + white-space: nowrap +} + +html #layuicss-layer { + display: none; + position: absolute; + width: 1989px +} + +.layui-layer, .layui-layer-shade { + position: fixed; + _position: absolute; + pointer-events: auto +} + +.layui-layer-shade { + top: 0; + left: 0; + width: 100%; + height: 100%; + _height: expression(document.body.offsetHeight+"px") +} + +.layui-layer { + -webkit-overflow-scrolling: touch; + top: 150px; + left: 0; + margin: 0; + padding: 0; + background-color: #fff; + -webkit-background-clip: content; + border-radius: 2px; + box-shadow: 1px 1px 50px rgba(0, 0, 0, .3) +} + +.layui-layer-close { + position: absolute +} + +.layui-layer-content { + position: relative +} + +.layui-layer-border { + border: 1px solid #B2B2B2; + border: 1px solid rgba(0, 0, 0, .1); + box-shadow: 1px 1px 5px rgba(0, 0, 0, .2) +} + +.layui-layer-load { + background: url(resources?path=com/fr/plugin/cpic/web/layui/css/modules/layer/default/loading-1.gif) center center no-repeat #eee +} + +.layui-layer-ico { + background: url(resources?path=com/fr/plugin/cpic/web/layui/css/modules/layer/default/icon.png) no-repeat +} + +.layui-layer-btn a, .layui-layer-dialog .layui-layer-ico, .layui-layer-setwin a { + display: inline-block; + *display: inline; + *zoom: 1; + vertical-align: top +} + +.layui-layer-move { + display: none; + position: fixed; + *position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + cursor: move; + opacity: 0; + filter: alpha(opacity=0); + background-color: #fff; + z-index: 2147483647 +} + +.layui-layer-resize { + position: absolute; + width: 15px; + height: 15px; + right: 0; + bottom: 0; + cursor: se-resize +} + +.layer-anim { + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-duration: .3s; + animation-duration: .3s +} + +@-webkit-keyframes layer-bounceIn { + 0% { + opacity: 0; + -webkit-transform: scale(.5); + transform: scale(.5) + } + 100% { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1) + } +} + +@keyframes layer-bounceIn { + 0% { + opacity: 0; + -webkit-transform: scale(.5); + -ms-transform: scale(.5); + transform: scale(.5) + } + 100% { + opacity: 1; + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1) + } +} + +.layer-anim-00 { + -webkit-animation-name: layer-bounceIn; + animation-name: layer-bounceIn +} + +@-webkit-keyframes layer-zoomInDown { + 0% { + opacity: 0; + -webkit-transform: scale(.1) translateY(-2000px); + transform: scale(.1) translateY(-2000px); + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out + } + 60% { + opacity: 1; + -webkit-transform: scale(.475) translateY(60px); + transform: scale(.475) translateY(60px); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out + } +} + +@keyframes layer-zoomInDown { + 0% { + opacity: 0; + -webkit-transform: scale(.1) translateY(-2000px); + -ms-transform: scale(.1) translateY(-2000px); + transform: scale(.1) translateY(-2000px); + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out + } + 60% { + opacity: 1; + -webkit-transform: scale(.475) translateY(60px); + -ms-transform: scale(.475) translateY(60px); + transform: scale(.475) translateY(60px); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out + } +} + +.layer-anim-01 { + -webkit-animation-name: layer-zoomInDown; + animation-name: layer-zoomInDown +} + +@-webkit-keyframes layer-fadeInUpBig { + 0% { + opacity: 0; + -webkit-transform: translateY(2000px); + transform: translateY(2000px) + } + 100% { + opacity: 1; + -webkit-transform: translateY(0); + transform: translateY(0) + } +} + +@keyframes layer-fadeInUpBig { + 0% { + opacity: 0; + -webkit-transform: translateY(2000px); + -ms-transform: translateY(2000px); + transform: translateY(2000px) + } + 100% { + opacity: 1; + -webkit-transform: translateY(0); + -ms-transform: translateY(0); + transform: translateY(0) + } +} + +.layer-anim-02 { + -webkit-animation-name: layer-fadeInUpBig; + animation-name: layer-fadeInUpBig +} + +@-webkit-keyframes layer-zoomInLeft { + 0% { + opacity: 0; + -webkit-transform: scale(.1) translateX(-2000px); + transform: scale(.1) translateX(-2000px); + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out + } + 60% { + opacity: 1; + -webkit-transform: scale(.475) translateX(48px); + transform: scale(.475) translateX(48px); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out + } +} + +@keyframes layer-zoomInLeft { + 0% { + opacity: 0; + -webkit-transform: scale(.1) translateX(-2000px); + -ms-transform: scale(.1) translateX(-2000px); + transform: scale(.1) translateX(-2000px); + -webkit-animation-timing-function: ease-in-out; + animation-timing-function: ease-in-out + } + 60% { + opacity: 1; + -webkit-transform: scale(.475) translateX(48px); + -ms-transform: scale(.475) translateX(48px); + transform: scale(.475) translateX(48px); + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out + } +} + +.layer-anim-03 { + -webkit-animation-name: layer-zoomInLeft; + animation-name: layer-zoomInLeft +} + +@-webkit-keyframes layer-rollIn { + 0% { + opacity: 0; + -webkit-transform: translateX(-100%) rotate(-120deg); + transform: translateX(-100%) rotate(-120deg) + } + 100% { + opacity: 1; + -webkit-transform: translateX(0) rotate(0); + transform: translateX(0) rotate(0) + } +} + +@keyframes layer-rollIn { + 0% { + opacity: 0; + -webkit-transform: translateX(-100%) rotate(-120deg); + -ms-transform: translateX(-100%) rotate(-120deg); + transform: translateX(-100%) rotate(-120deg) + } + 100% { + opacity: 1; + -webkit-transform: translateX(0) rotate(0); + -ms-transform: translateX(0) rotate(0); + transform: translateX(0) rotate(0) + } +} + +.layer-anim-04 { + -webkit-animation-name: layer-rollIn; + animation-name: layer-rollIn +} + +@keyframes layer-fadeIn { + 0% { + opacity: 0 + } + 100% { + opacity: 1 + } +} + +.layer-anim-05 { + -webkit-animation-name: layer-fadeIn; + animation-name: layer-fadeIn +} + +@-webkit-keyframes layer-shake { + 0%, 100% { + -webkit-transform: translateX(0); + transform: translateX(0) + } + 10%, 30%, 50%, 70%, 90% { + -webkit-transform: translateX(-10px); + transform: translateX(-10px) + } + 20%, 40%, 60%, 80% { + -webkit-transform: translateX(10px); + transform: translateX(10px) + } +} + +@keyframes layer-shake { + 0%, 100% { + -webkit-transform: translateX(0); + -ms-transform: translateX(0); + transform: translateX(0) + } + 10%, 30%, 50%, 70%, 90% { + -webkit-transform: translateX(-10px); + -ms-transform: translateX(-10px); + transform: translateX(-10px) + } + 20%, 40%, 60%, 80% { + -webkit-transform: translateX(10px); + -ms-transform: translateX(10px); + transform: translateX(10px) + } +} + +.layer-anim-06 { + -webkit-animation-name: layer-shake; + animation-name: layer-shake +} + +@-webkit-keyframes fadeIn { + 0% { + opacity: 0 + } + 100% { + opacity: 1 + } +} + +.layui-layer-title { + padding: 0 80px 0 20px; + height: 50px; + line-height: 50px; + border-bottom: 1px solid #F0F0F0; + font-size: 14px; + color: #333; + overflow: hidden; + border-radius: 2px 2px 0 0 +} + +.layui-layer-setwin { + position: absolute; + right: 15px; + *right: 0; + top: 17px; + font-size: 0; + line-height: initial +} + +.layui-layer-setwin a { + position: relative; + width: 16px; + height: 16px; + margin-left: 10px; + font-size: 12px; + _overflow: hidden +} + +.layui-layer-setwin .layui-layer-min cite { + position: absolute; + width: 14px; + height: 2px; + left: 0; + top: 50%; + margin-top: -1px; + background-color: #2E2D3C; + cursor: pointer; + _overflow: hidden +} + +.layui-layer-setwin .layui-layer-min:hover cite { + background-color: #2D93CA +} + +.layui-layer-setwin .layui-layer-max { + background-position: -32px -40px +} + +.layui-layer-setwin .layui-layer-max:hover { + background-position: -16px -40px +} + +.layui-layer-setwin .layui-layer-maxmin { + background-position: -65px -40px +} + +.layui-layer-setwin .layui-layer-maxmin:hover { + background-position: -49px -40px +} + +.layui-layer-setwin .layui-layer-close1 { + background-position: 1px -40px; + cursor: pointer +} + +.layui-layer-setwin .layui-layer-close1:hover { + opacity: .7 +} + +.layui-layer-setwin .layui-layer-close2 { + position: absolute; + right: -28px; + top: -28px; + width: 30px; + height: 30px; + margin-left: 0; + background-position: -149px -31px; + *right: -18px; + _display: none +} + +.layui-layer-setwin .layui-layer-close2:hover { + background-position: -180px -31px +} + +.layui-layer-btn { + text-align: right; + padding: 0 15px 12px; + pointer-events: auto; + user-select: none; + -webkit-user-select: none +} + +.layui-layer-btn a { + height: 28px; + line-height: 28px; + margin: 5px 5px 0; + padding: 0 15px; + border: 1px solid #dedede; + background-color: #fff; + color: #333; + border-radius: 2px; + font-weight: 400; + cursor: pointer; + text-decoration: none +} + +.layui-layer-btn a:hover { + opacity: .9; + text-decoration: none +} + +.layui-layer-btn a:active { + opacity: .8 +} + +.layui-layer-btn .layui-layer-btn0 { + border-color: #1E9FFF; + background-color: #1E9FFF; + color: #fff +} + +.layui-layer-btn-l { + text-align: left +} + +.layui-layer-btn-c { + text-align: center +} + +.layui-layer-dialog { + min-width: 300px +} + +.layui-layer-dialog .layui-layer-content { + position: relative; + padding: 20px; + line-height: 24px; + word-break: break-all; + overflow: hidden; + font-size: 14px; + overflow-x: hidden; + overflow-y: auto +} + +.layui-layer-dialog .layui-layer-content .layui-layer-ico { + position: absolute; + top: 16px; + left: 15px; + _left: -40px; + width: 30px; + height: 30px +} + +.layui-layer-ico1 { + background-position: -30px 0 +} + +.layui-layer-ico2 { + background-position: -60px 0 +} + +.layui-layer-ico3 { + background-position: -90px 0 +} + +.layui-layer-ico4 { + background-position: -120px 0 +} + +.layui-layer-ico5 { + background-position: -150px 0 +} + +.layui-layer-ico6 { + background-position: -180px 0 +} + +.layui-layer-rim { + border: 6px solid #8D8D8D; + border: 6px solid rgba(0, 0, 0, .3); + border-radius: 5px; + box-shadow: none +} + +.layui-layer-msg { + min-width: 180px; + border: 1px solid #D3D4D3; + box-shadow: none +} + +.layui-layer-hui { + min-width: 100px; + background-color: #000; + filter: alpha(opacity=60); + background-color: rgba(0, 0, 0, .6); + color: #fff; + border: none +} + +.layui-layer-hui .layui-layer-content { + padding: 12px 25px; + text-align: center +} + +.layui-layer-dialog .layui-layer-padding { + padding: 20px 20px 20px 55px; + text-align: left +} + +.layui-layer-page .layui-layer-content { + position: relative; + overflow: auto +} + +.layui-layer-iframe .layui-layer-btn, .layui-layer-page .layui-layer-btn { + padding-top: 10px +} + +.layui-layer-nobg { + background: 0 0 +} + +.layui-layer-iframe iframe { + display: block; + width: 100% +} + +.layui-layer-loading { + border-radius: 100%; + background: 0 0; + box-shadow: none; + border: none +} + +.layui-layer-loading .layui-layer-content { + width: 60px; + height: 24px; + background: url(resources?path=com/fr/plugin/cpic/web/layui/css/modules/layer/default/loading-0.gif) no-repeat +} + +.layui-layer-loading .layui-layer-loading1 { + width: 37px; + height: 37px; + background: url(resources?path=com/fr/plugin/cpic/web/layui/css/modules/layer/default/loading-1.gif) no-repeat +} + +.layui-layer-ico16, .layui-layer-loading .layui-layer-loading2 { + width: 32px; + height: 32px; + background: url(resources?path=com/fr/plugin/cpic/web/layui/css/modules/layer/default/loading-2.gif) no-repeat +} + +.layui-layer-tips { + background: 0 0; + box-shadow: none; + border: none +} + +.layui-layer-tips .layui-layer-content { + position: relative; + line-height: 22px; + min-width: 12px; + padding: 8px 15px; + font-size: 12px; + _float: left; + border-radius: 2px; + box-shadow: 1px 1px 3px rgba(0, 0, 0, .2); + background-color: #000; + color: #fff +} + +.layui-layer-tips .layui-layer-close { + right: -2px; + top: -1px +} + +.layui-layer-tips i.layui-layer-TipsG { + position: absolute; + width: 0; + height: 0; + border-width: 8px; + border-color: transparent; + border-style: dashed; + *overflow: hidden +} + +.layui-layer-tips i.layui-layer-TipsB, .layui-layer-tips i.layui-layer-TipsT { + left: 5px; + border-right-style: solid; + border-right-color: #000 +} + +.layui-layer-tips i.layui-layer-TipsT { + bottom: -8px +} + +.layui-layer-tips i.layui-layer-TipsB { + top: -8px +} + +.layui-layer-tips i.layui-layer-TipsL, .layui-layer-tips i.layui-layer-TipsR { + top: 5px; + border-bottom-style: solid; + border-bottom-color: #000 +} + +.layui-layer-tips i.layui-layer-TipsR { + left: -8px +} + +.layui-layer-tips i.layui-layer-TipsL { + right: -8px +} + +.layui-layer-lan[type=dialog] { + min-width: 280px +} + +.layui-layer-lan .layui-layer-title { + background: #4476A7; + color: #fff; + border: none +} + +.layui-layer-lan .layui-layer-btn { + padding: 5px 10px 10px; + text-align: right; + border-top: 1px solid #E9E7E7 +} + +.layui-layer-lan .layui-layer-btn a { + background: #fff; + border-color: #E9E7E7; + color: #333 +} + +.layui-layer-lan .layui-layer-btn .layui-layer-btn1 { + background: #C9C5C5 +} + +.layui-layer-molv .layui-layer-title { + background: #009f95; + color: #fff; + border: none +} + +.layui-layer-molv .layui-layer-btn a { + background: #009f95; + border-color: #009f95 +} + +.layui-layer-molv .layui-layer-btn .layui-layer-btn1 { + background: #92B8B1 +} + +.layui-layer-iconext { + background: url(resources?path=com/fr/plugin/cpic/web/layui/css/modules/layer/default/icon-ext.png) no-repeat +} + +.layui-layer-prompt .layui-layer-input { + display: block; + width: 260px; + height: 36px; + margin: 0 auto; + line-height: 30px; + padding-left: 10px; + border: 1px solid #e6e6e6; + color: #333 +} + +.layui-layer-prompt textarea.layui-layer-input { + width: 300px; + height: 100px; + line-height: 20px; + padding: 6px 10px +} + +.layui-layer-prompt .layui-layer-content { + padding: 20px +} + +.layui-layer-prompt .layui-layer-btn { + padding-top: 0 +} + +.layui-layer-tab { + box-shadow: 1px 1px 50px rgba(0, 0, 0, .4) +} + +.layui-layer-tab .layui-layer-title { + padding-left: 0; + overflow: visible +} + +.layui-layer-tab .layui-layer-title span { + position: relative; + float: left; + min-width: 80px; + max-width: 300px; + padding: 0 20px; + text-align: center; + overflow: hidden; + cursor: pointer +} + +.layui-layer-tab .layui-layer-title span.layui-this { + height: 51px; + border-left: 1px solid #eee; + border-right: 1px solid #eee; + background-color: #fff; + z-index: 10 +} + +.layui-layer-tab .layui-layer-title span:first-child { + border-left: none +} + +.layui-layer-tabmain { + line-height: 24px; + clear: both +} + +.layui-layer-tabmain .layui-layer-tabli { + display: none +} + +.layui-layer-tabmain .layui-layer-tabli.layui-this { + display: block +} + +.layui-layer-photos { + background: 0 0; + box-shadow: none +} + +.layui-layer-photos .layui-layer-content { + overflow: hidden; + text-align: center +} + +.layui-layer-photos .layui-layer-phimg img { + position: relative; + width: 100%; + display: inline-block; + *display: inline; + *zoom: 1; + vertical-align: top +} + +.layui-layer-imgnext, .layui-layer-imgprev { + position: fixed; + top: 50%; + width: 27px; + _width: 44px; + height: 44px; + margin-top: -22px; + outline: 0; + blr: expression(this.onFocus=this.blur()) +} + +.layui-layer-imgprev { + left: 30px; + background-position: -5px -5px; + _background-position: -70px -5px +} + +.layui-layer-imgprev:hover { + background-position: -33px -5px; + _background-position: -120px -5px +} + +.layui-layer-imgnext { + right: 30px; + _right: 8px; + background-position: -5px -50px; + _background-position: -70px -50px +} + +.layui-layer-imgnext:hover { + background-position: -33px -50px; + _background-position: -120px -50px +} + +.layui-layer-imgbar { + position: fixed; + left: 0; + right: 0; + bottom: 0; + width: 100%; + height: 40px; + line-height: 40px; + background-color: #000 \9; + filter: Alpha(opacity=60); + background-color: rgba(2, 0, 0, .35); + color: #fff; + overflow: hidden; + font-size: 0 +} + +.layui-layer-imgtit * { + display: inline-block; + *display: inline; + *zoom: 1; + vertical-align: top; + font-size: 12px +} + +.layui-layer-imgtit a { + max-width: 65%; + overflow: hidden; + color: #fff +} + +.layui-layer-imgtit a:hover { + color: #fff; + text-decoration: underline +} + +.layui-layer-imgtit em { + padding-left: 10px; + font-style: normal +} + +@-webkit-keyframes layer-bounceOut { + 100% { + opacity: 0; + -webkit-transform: scale(.7); + transform: scale(.7) + } + 30% { + -webkit-transform: scale(1.05); + transform: scale(1.05) + } + 0% { + -webkit-transform: scale(1); + transform: scale(1) + } +} + +@keyframes layer-bounceOut { + 100% { + opacity: 0; + -webkit-transform: scale(.7); + -ms-transform: scale(.7); + transform: scale(.7) + } + 30% { + -webkit-transform: scale(1.05); + -ms-transform: scale(1.05); + transform: scale(1.05) + } + 0% { + -webkit-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1) + } +} + +.layer-anim-close { + -webkit-animation-name: layer-bounceOut; + animation-name: layer-bounceOut; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; + -webkit-animation-duration: .2s; + animation-duration: .2s +} + +@media screen and (max-width: 1100px) { + .layui-layer-iframe { + overflow-y: auto; + -webkit-overflow-scrolling: touch + } +} \ No newline at end of file diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/loading-0.gif b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/loading-0.gif new file mode 100644 index 0000000..6f3c953 Binary files /dev/null and b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/loading-0.gif differ diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/loading-1.gif b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/loading-1.gif new file mode 100644 index 0000000..db3a483 Binary files /dev/null and b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/loading-1.gif differ diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/loading-2.gif b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/loading-2.gif new file mode 100644 index 0000000..5bb90fd Binary files /dev/null and b/src/main/resources/com/fr/plugin/cpic/web/layui/css/modules/layer/default/loading-2.gif differ diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.eot b/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.eot new file mode 100644 index 0000000..622d7ec Binary files /dev/null and b/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.eot differ diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.svg b/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.svg new file mode 100644 index 0000000..999ca1f --- /dev/null +++ b/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.svg @@ -0,0 +1,554 @@ + + + + + +Created by iconfont + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.ttf b/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.ttf new file mode 100644 index 0000000..06e30f9 Binary files /dev/null and b/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.ttf differ diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.woff b/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.woff new file mode 100644 index 0000000..66a1783 Binary files /dev/null and b/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.woff differ diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.woff2 b/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.woff2 new file mode 100644 index 0000000..47e9980 Binary files /dev/null and b/src/main/resources/com/fr/plugin/cpic/web/layui/font/iconfont.woff2 differ diff --git a/src/main/resources/com/fr/plugin/cpic/web/layui/jquery-3.6.0.min.js b/src/main/resources/com/fr/plugin/cpic/web/layui/jquery-3.6.0.min.js new file mode 100644 index 0000000..c4c6022 --- /dev/null +++ b/src/main/resources/com/fr/plugin/cpic/web/layui/jquery-3.6.0.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?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)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(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==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===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]||se.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]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(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(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="
",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0 0; o--) if ("interactive" === n[o].readyState) { + t = n[o].src; + break + } + return t || n[r].src + }(); + return n.dir = o.dir || t.substring(0, t.lastIndexOf("/") + 1) + }(), i = function (e, n) { + n = n || "log", t.console && console[n] && console[n]("layui error hint: " + e) + }, u = "undefined" != typeof opera && "[object Opera]" === opera.toString(), l = n.builtin = { + lay: "lay", + layer: "layer", + laydate: "laydate", + laypage: "laypage", + laytpl: "laytpl", + layedit: "layedit", + form: "form", + upload: "upload", + dropdown: "dropdown", + transfer: "transfer", + tree: "tree", + table: "table", + element: "element", + rate: "rate", + colorpicker: "colorpicker", + slider: "slider", + carousel: "carousel", + flow: "flow", + util: "util", + code: "code", + jquery: "jquery", + all: "all", + "layui.all": "layui.all" + }; + r.prototype.cache = n, r.prototype.define = function (t, e) { + var r = this, o = "function" == typeof t, a = function () { + var t = function (t, e) { + layui[t] = e, n.status[t] = !0 + }; + return "function" == typeof e && e(function (r, o) { + t(r, o), n.callback[r] = function () { + e(t) + } + }), this + }; + return o && (e = t, t = []), r.use(t, a, null, "define"), r + }, r.prototype.use = function (r, o, c, s) { + function p(t, e) { + var r = "PLaySTATION 3" === navigator.platform ? /^complete$/ : /^(complete|loaded)$/; + ("load" === t.type || r.test((t.currentTarget || t.srcElement).readyState)) && (n.modules[h] = e, v.removeChild(b), function o() { + return ++m > 1e3 * n.timeout / 4 ? i(h + " is not a valid module", "error") : void (n.status[h] ? f() : setTimeout(o, 4)) + }()) + } + + function f() { + c.push(layui[h]), r.length > 1 ? y.use(r.slice(1), o, c, s) : "function" == typeof o && function () { + return layui.jquery && "function" == typeof layui.jquery && "define" !== s ? layui.jquery(function () { + o.apply(layui, c) + }) : void o.apply(layui, c) + }() + } + + var y = this, d = n.dir = n.dir ? n.dir : a, v = e.getElementsByTagName("head")[0]; + r = function () { + return "string" == typeof r ? [r] : "function" == typeof r ? (o = r, ["all"]) : r + }(), t.jQuery && jQuery.fn.on && (y.each(r, function (t, e) { + "jquery" === e && r.splice(t, 1) + }), layui.jquery = layui.$ = jQuery); + var h = r[0], m = 0; + if (c = c || [], n.host = n.host || (d.match(/\/\/([\s\S]+?)\//) || ["//" + location.host + "/"])[0], 0 === r.length || layui["layui.all"] && l[h]) return f(), y; + var g = (l[h] ? d + "modules/" : /^\{\/\}/.test(y.modules[h]) ? "" : n.base || "") + (y.modules[h] || h) + ".js"; + if (g = g.replace(/^\{\/\}/, ""), !n.modules[h] && layui[h] && (n.modules[h] = g), n.modules[h]) !function S() { + return ++m > 1e3 * n.timeout / 4 ? i(h + " is not a valid module", "error") : void ("string" == typeof n.modules[h] && n.status[h] ? f() : setTimeout(S, 4)) + }(); else { + var b = e.createElement("script"); + b.async = !0, b.charset = "utf-8", b.src = g + function () { + var t = n.version === !0 ? n.v || (new Date).getTime() : n.version || ""; + return t ? "?v=" + t : "" + }(), v.appendChild(b), !b.attachEvent || b.attachEvent.toString && b.attachEvent.toString().indexOf("[native code") < 0 || u ? b.addEventListener("load", function (t) { + p(t, g) + }, !1) : b.attachEvent("onreadystatechange", function (t) { + p(t, g) + }), n.modules[h] = g + } + return y + }, r.prototype.getStyle = function (e, n) { + var r = e.currentStyle ? e.currentStyle : t.getComputedStyle(e, null); + return r[r.getPropertyValue ? "getPropertyValue" : "getAttribute"](n) + }, r.prototype.link = function (t, r, o) { + var a = this, u = e.getElementsByTagName("head")[0], l = e.createElement("link"); + "string" == typeof r && (o = r); + var c = (o || t).replace(/\.|\//g, ""), s = l.id = "layuicss-" + c, p = "creating", f = 0; + return l.rel = "stylesheet", l.href = t + (n.debug ? "?v=" + (new Date).getTime() : ""), l.media = "all", e.getElementById(s) || u.appendChild(l), "function" != typeof r ? a : (function y(o) { + var u = 100, l = e.getElementById(s); + return ++f > 1e3 * n.timeout / u ? i(t + " timeout") : void (1989 === parseInt(a.getStyle(l, "width")) ? (o === p && l.removeAttribute("lay-status"), l.getAttribute("lay-status") === p ? setTimeout(y, u) : r()) : (l.setAttribute("lay-status", p), setTimeout(function () { + y(p) + }, u))) + }(), a) + }, r.prototype.addcss = function (t, e, r) { + return layui.link(n.dir + "css/" + t, e, r) + }, n.callback = {}, r.prototype.factory = function (t) { + if (layui[t]) return "function" == typeof n.callback[t] ? n.callback[t] : null + }, r.prototype.img = function (t, e, n) { + var r = new Image; + return r.src = t, r.complete ? e(r) : (r.onload = function () { + r.onload = null, "function" == typeof e && e(r) + }, void (r.onerror = function (t) { + r.onerror = null, "function" == typeof n && n(t) + })) + }, r.prototype.config = function (t) { + t = t || {}; + for (var e in t) n[e] = t[e]; + return this + }, r.prototype.modules = function () { + var t = {}; + for (var e in l) t[e] = l[e]; + return t + }(), r.prototype.extend = function (t) { + var e = this; + t = t || {}; + for (var n in t) e[n] || e.modules[n] ? i(n + " Module already exists", "error") : e.modules[n] = t[n]; + return e + }, r.prototype.router = function (t) { + var e = this, t = t || location.hash, n = {path: [], search: {}, hash: (t.match(/[^#](#.*$)/) || [])[1] || ""}; + return /^#\//.test(t) ? (t = t.replace(/^#\//, ""), n.href = "/" + t, t = t.replace(/([^#])(#.*$)/, "$1").split("/") || [], e.each(t, function (t, e) { + /^\w+=/.test(e) ? function () { + e = e.split("="), n.search[e[0]] = e[1] + }() : n.path.push(e) + }), n) : n + }, r.prototype.url = function (t) { + var e = this, n = { + pathname: function () { + var e = t ? function () { + var e = (t.match(/\.[^.]+?\/.+/) || [])[0] || ""; + return e.replace(/^[^\/]+/, "").replace(/\?.+/, "") + }() : location.pathname; + return e.replace(/^\//, "").split("/") + }(), search: function () { + var n = {}, r = (t ? function () { + var e = (t.match(/\?.+/) || [])[0] || ""; + return e.replace(/\#.+/, "") + }() : location.search).replace(/^\?+/, "").split("&"); + return e.each(r, function (t, e) { + var r = e.indexOf("="), o = function () { + return r < 0 ? e.substr(0, e.length) : 0 !== r && e.substr(0, r) + }(); + o && (n[o] = r > 0 ? e.substr(r + 1) : null) + }), n + }(), hash: e.router(function () { + return t ? (t.match(/#.+/) || [])[0] || "/" : location.hash + }()) + }; + return n + }, r.prototype.data = function (e, n, r) { + if (e = e || "layui", r = r || localStorage, t.JSON && t.JSON.parse) { + if (null === n) return delete r[e]; + n = "object" == typeof n ? n : {key: n}; + try { + var o = JSON.parse(r[e]) + } catch (a) { + var o = {} + } + return "value" in n && (o[n.key] = n.value), n.remove && delete o[n.key], r[e] = JSON.stringify(o), n.key ? o[n.key] : o + } + }, r.prototype.sessionData = function (t, e) { + return this.data(t, e, sessionStorage) + }, r.prototype.device = function (e) { + var n = navigator.userAgent.toLowerCase(), r = function (t) { + var e = new RegExp(t + "/([^\\s\\_\\-]+)"); + return t = (n.match(e) || [])[1], t || !1 + }, o = { + os: function () { + return /windows/.test(n) ? "windows" : /linux/.test(n) ? "linux" : /iphone|ipod|ipad|ios/.test(n) ? "ios" : /mac/.test(n) ? "mac" : void 0 + }(), ie: function () { + return !!(t.ActiveXObject || "ActiveXObject" in t) && ((n.match(/msie\s(\d+)/) || [])[1] || "11") + }(), weixin: r("micromessenger") + }; + return e && !o[e] && (o[e] = r(e)), o.android = /android/.test(n), o.ios = "ios" === o.os, o.mobile = !(!o.android && !o.ios), o + }, r.prototype.hint = function () { + return {error: i} + }, r.prototype._typeof = function (t) { + return null === t ? String(t) : "object" == typeof t || "function" == typeof t ? function () { + var e = Object.prototype.toString.call(t).match(/\s(.+)\]$/) || [], + n = "Function|Array|Date|RegExp|Object|Error|Symbol"; + return e = e[1] || "Object", new RegExp("\\b(" + n + ")\\b").test(e) ? e.toLowerCase() : "object" + }() : typeof t + }, r.prototype._isArray = function (e) { + var n, r = this, o = r._typeof(e); + return !(!e || "object" != typeof e || e === t) && (n = "length" in e && e.length, "array" === o || 0 === n || "number" == typeof n && n > 0 && n - 1 in e) + }, r.prototype.each = function (t, e) { + var n, r = this, o = function (t, n) { + return e.call(n[t], t, n[t]) + }; + if ("function" != typeof e) return r; + if (t = t || [], r._isArray(t)) for (n = 0; n < t.length && !o(n, t); n++) ; else for (n in t) if (o(n, t)) break; + return r + }, r.prototype.sort = function (t, e, n) { + var r = JSON.parse(JSON.stringify(t || [])); + return e ? (r.sort(function (t, n) { + var r = t[e], o = n[e], a = [!isNaN(r), !isNaN(o)]; + return a[0] && a[1] ? r && !o && 0 !== o ? 1 : !r && 0 !== r && o ? -1 : r - o : a[0] || a[1] ? a[0] || !a[1] ? -1 : !a[0] || a[1] ? 1 : void 0 : r > o ? 1 : r < o ? -1 : 0 + }), n && r.reverse(), r) : r + }, r.prototype.stope = function (e) { + e = e || t.event; + try { + e.stopPropagation() + } catch (n) { + e.cancelBubble = !0 + } + }; + var c = "LAYUI-EVENT-REMOVE"; + r.prototype.onevent = function (t, e, n) { + return "string" != typeof t || "function" != typeof n ? this : r.event(t, e, null, n) + }, r.prototype.event = r.event = function (t, e, r, o) { + var a = this, i = null, u = (e || "").match(/\((.*)\)$/) || [], l = (t + "." + e).replace(u[0], ""), + s = u[1] || "", p = function (t, e) { + var n = e && e.call(a, r); + n === !1 && null === i && (i = !1) + }; + return r === c ? (delete (a.cache.event[l] || {})[s], a) : o ? (n.event[l] = n.event[l] || {}, n.event[l][s] = [o], this) : (layui.each(n.event[l], function (t, e) { + return "{*}" === s ? void layui.each(e, p) : ("" === t && layui.each(e, p), void (s && t === s && layui.each(e, p))) + }), i) + }, r.prototype.on = function (t, e, n) { + var r = this; + return r.onevent.call(r, e, t, n) + }, r.prototype.off = function (t, e) { + var n = this; + return n.event.call(n, e, t, c) + }, t.layui = new r +}(window); +layui.define(function (a) { + var i = layui.cache; + layui.config({dir: i.dir.replace(/lay\/dest\/$/, "")}), a("layui.all", layui.v) +}); +!function (t) { + "use strict"; + var e = "lay", n = t.document, r = function (t) { + return new o(t) + }, o = function (t) { + for (var e = 0, r = "object" == typeof t ? [t] : (this.selector = t, n.querySelectorAll(t || null)); e < r.length; e++) this.push(r[e]) + }; + o.prototype = [], o.prototype.constructor = o, r.extend = function () { + var t = 1, e = arguments, n = function (t, e) { + t = t || ("array" === layui._typeof(e) ? [] : {}); + for (var r in e) t[r] = e[r] && e[r].constructor === Object ? n(t[r], e[r]) : e[r]; + return t + }; + for (e[0] = "object" == typeof e[0] ? e[0] : {}; t < e.length; t++) "object" == typeof e[t] && n(e[0], e[t]); + return e[0] + }, r.v = "1.0.8", r.ie = function () { + var e = navigator.userAgent.toLowerCase(); + return !!(t.ActiveXObject || "ActiveXObject" in t) && ((e.match(/msie\s(\d+)/) || [])[1] || "11") + }(), r.layui = layui || {}, r.getPath = layui.cache.dir, r.stope = layui.stope, r.each = function () { + return layui.each.apply(layui, arguments), this + }, r.digit = function (t, e, n) { + var r = ""; + t = String(t), e = e || 2; + for (var o = t.length; o < e; o++) r += "0"; + return t < Math.pow(10, e) ? r + (0 | t) : t + }, r.elem = function (t, e) { + var o = n.createElement(t); + return r.each(e || {}, function (t, e) { + o.setAttribute(t, e) + }), o + }, r.hasScrollbar = function () { + return n.body.scrollHeight > (t.innerHeight || n.documentElement.clientHeight) + }, r.position = function (e, o, i) { + if (o) { + i = i || {}, e !== n && e !== r("body")[0] || (i.clickType = "right"); + var c = "right" === i.clickType ? function () { + var e = i.e || t.event || {}; + return {left: e.clientX, top: e.clientY, right: e.clientX, bottom: e.clientY} + }() : e.getBoundingClientRect(), u = o.offsetWidth, a = o.offsetHeight, f = function (t) { + return t = t ? "scrollLeft" : "scrollTop", n.body[t] | n.documentElement[t] + }, s = function (t) { + return n.documentElement[t ? "clientWidth" : "clientHeight"] + }, l = 5, h = c.left, p = c.bottom; + "center" === i.align ? h -= (u - e.offsetWidth) / 2 : "right" === i.align && (h = h - u + e.offsetWidth), h + u + l > s("width") && (h = s("width") - u - l), h < l && (h = l), p + a + l > s() && (c.top > a + l ? p = c.top - a - 2 * l : "right" === i.clickType && (p = s() - a - 2 * l, p < 0 && (p = 0))); + var y = i.position; + if (y && (o.style.position = y), o.style.left = h + ("fixed" === y ? 0 : f(1)) + "px", o.style.top = p + ("fixed" === y ? 0 : f()) + "px", !r.hasScrollbar()) { + var d = o.getBoundingClientRect(); + !i.SYSTEM_RELOAD && d.bottom + l > s() && (i.SYSTEM_RELOAD = !0, setTimeout(function () { + r.position(e, o, i) + }, 50)) + } + } + }, r.options = function (t, e) { + var n = r(t), o = e || "lay-options"; + try { + return new Function("return " + (n.attr(o) || "{}"))() + } catch (i) { + return hint.error("parseerror\uff1a" + i, "error"), {} + } + }, r.isTopElem = function (t) { + var e = [n, r("body")[0]], o = !1; + return r.each(e, function (e, n) { + if (n === t) return o = !0 + }), o + }, o.addStr = function (t, e) { + return t = t.replace(/\s+/, " "), e = e.replace(/\s+/, " ").split(" "), r.each(e, function (e, n) { + new RegExp("\\b" + n + "\\b").test(t) || (t = t + " " + n) + }), t.replace(/^\s|\s$/, "") + }, o.removeStr = function (t, e) { + return t = t.replace(/\s+/, " "), e = e.replace(/\s+/, " ").split(" "), r.each(e, function (e, n) { + var r = new RegExp("\\b" + n + "\\b"); + r.test(t) && (t = t.replace(r, "")) + }), t.replace(/\s+/, " ").replace(/^\s|\s$/, "") + }, o.prototype.find = function (t) { + var e = this, n = 0, o = [], i = "object" == typeof t; + return this.each(function (r, c) { + for (var u = i ? c.contains(t) : c.querySelectorAll(t || null); n < u.length; n++) o.push(u[n]); + e.shift() + }), i || (e.selector = (e.selector ? e.selector + " " : "") + t), r.each(o, function (t, n) { + e.push(n) + }), e + }, o.prototype.each = function (t) { + return r.each.call(this, this, t) + }, o.prototype.addClass = function (t, e) { + return this.each(function (n, r) { + r.className = o[e ? "removeStr" : "addStr"](r.className, t) + }) + }, o.prototype.removeClass = function (t) { + return this.addClass(t, !0) + }, o.prototype.hasClass = function (t) { + var e = !1; + return this.each(function (n, r) { + new RegExp("\\b" + t + "\\b").test(r.className) && (e = !0) + }), e + }, o.prototype.css = function (t, e) { + var n = this, o = function (t) { + return isNaN(t) ? t : t + "px" + }; + return "string" == typeof t && void 0 === e ? function () { + if (n.length > 0) return n[0].style[t] + }() : n.each(function (n, i) { + "object" == typeof t ? r.each(t, function (t, e) { + i.style[t] = o(e) + }) : i.style[t] = o(e) + }) + }, o.prototype.width = function (t) { + var e = this; + return void 0 === t ? function () { + if (e.length > 0) return e[0].offsetWidth + }() : e.each(function (n, r) { + e.css("width", t) + }) + }, o.prototype.height = function (t) { + var e = this; + return void 0 === t ? function () { + if (e.length > 0) return e[0].offsetHeight + }() : e.each(function (n, r) { + e.css("height", t) + }) + }, o.prototype.attr = function (t, e) { + var n = this; + return void 0 === e ? function () { + if (n.length > 0) return n[0].getAttribute(t) + }() : n.each(function (n, r) { + r.setAttribute(t, e) + }) + }, o.prototype.removeAttr = function (t) { + return this.each(function (e, n) { + n.removeAttribute(t) + }) + }, o.prototype.html = function (t) { + var e = this; + return void 0 === t ? function () { + if (e.length > 0) return e[0].innerHTML + }() : this.each(function (e, n) { + n.innerHTML = t + }) + }, o.prototype.val = function (t) { + var e = this; + return void 0 === t ? function () { + if (e.length > 0) return e[0].value + }() : this.each(function (e, n) { + n.value = t + }) + }, o.prototype.append = function (t) { + return this.each(function (e, n) { + "object" == typeof t ? n.appendChild(t) : n.innerHTML = n.innerHTML + t + }) + }, o.prototype.remove = function (t) { + return this.each(function (e, n) { + t ? n.removeChild(t) : n.parentNode.removeChild(n) + }) + }, o.prototype.on = function (t, e) { + return this.each(function (n, r) { + r.attachEvent ? r.attachEvent("on" + t, function (t) { + t.target = t.srcElement, e.call(r, t) + }) : r.addEventListener(t, e, !1) + }) + }, o.prototype.off = function (t, e) { + return this.each(function (n, r) { + r.detachEvent ? r.detachEvent("on" + t, e) : r.removeEventListener(t, e, !1) + }) + }, t.lay = r, t.layui && layui.define && layui.define(function (t) { + t(e, r) + }) +}(window, window.document); +layui.define(function (e) { + "use strict"; + var r = {open: "{{", close: "}}"}, c = { + exp: function (e) { + return new RegExp(e, "g") + }, query: function (e, c, t) { + var o = ["#([\\s\\S])+?", "([^{#}])*?"][e || 0]; + return n((c || "") + r.open + o + r.close + (t || "")) + }, escape: function (e) { + return String(e || "").replace(/&(?!#?[a-zA-Z0-9]+;)/g, "&").replace(//g, ">").replace(/'/g, "'").replace(/"/g, """) + }, error: function (e, r) { + var c = "Laytpl Error: "; + return "object" == typeof console && console.error(c + e + "\n" + (r || "")), c + e + } + }, n = c.exp, t = function (e) { + this.tpl = e + }; + t.pt = t.prototype, window.errors = 0, t.pt.parse = function (e, t) { + var o = this, p = e, a = n("^" + r.open + "#", ""), l = n(r.close + "$", ""); + e = e.replace(/\s+|\r|\t|\n/g, " ").replace(n(r.open + "#"), r.open + "# ").replace(n(r.close + "}"), "} " + r.close).replace(/\\/g, "\\\\").replace(n(r.open + "!(.+?)!" + r.close), function (e) { + return e = e.replace(n("^" + r.open + "!"), "").replace(n("!" + r.close), "").replace(n(r.open + "|" + r.close), function (e) { + return e.replace(/(.)/g, "\\$1") + }) + }).replace(/(?="|')/g, "\\").replace(c.query(), function (e) { + return e = e.replace(a, "").replace(l, ""), '";' + e.replace(/\\(.)/g, "$1") + ';view+="' + }).replace(c.query(1), function (e) { + var c = '"+('; + return e.replace(/\s/g, "") === r.open + r.close ? "" : (e = e.replace(n(r.open + "|" + r.close), ""), /^=/.test(e) && (e = e.replace(/^=/, ""), c = '"+_escape_('), c + e.replace(/\\(.)/g, "$1") + ')+"') + }), e = '"use strict";var view = "' + e + '";return view;'; + try { + return o.cache = e = new Function("d, _escape_", e), e(t, c.escape) + } catch (u) { + return delete o.cache, c.error(u, p) + } + }, t.pt.render = function (e, r) { + var n, t = this; + return e ? (n = t.cache ? t.cache(e, c.escape) : t.parse(t.tpl, e), r ? void r(n) : n) : c.error("no data") + }; + var o = function (e) { + return "string" != typeof e ? c.error("Template not found") : new t(e) + }; + o.config = function (e) { + e = e || {}; + for (var c in e) r[c] = e[c] + }, o.v = "1.2.0", e("laytpl", o) +}); +layui.define(function (e) { + "use strict"; + var a = document, t = "getElementById", n = "getElementsByTagName", i = "laypage", r = "layui-disabled", + u = function (e) { + var a = this; + a.config = e || {}, a.config.index = ++s.index, a.render(!0) + }; + u.prototype.type = function () { + var e = this.config; + if ("object" == typeof e.elem) return void 0 === e.elem.length ? 2 : 3 + }, u.prototype.view = function () { + var e = this, a = e.config, t = a.groups = "groups" in a ? 0 | a.groups : 5; + a.layout = "object" == typeof a.layout ? a.layout : ["prev", "page", "next"], a.count = 0 | a.count, a.curr = 0 | a.curr || 1, a.limits = "object" == typeof a.limits ? a.limits : [10, 20, 30, 40, 50], a.limit = 0 | a.limit || 10, a.pages = Math.ceil(a.count / a.limit) || 1, a.curr > a.pages && (a.curr = a.pages), t < 0 ? t = 1 : t > a.pages && (t = a.pages), a.prev = "prev" in a ? a.prev : "上一页", a.next = "next" in a ? a.next : "下一页"; + var n = a.pages > t ? Math.ceil((a.curr + (t > 1 ? 1 : 0)) / (t > 0 ? t : 1)) : 1, i = { + prev: function () { + return a.prev ? '' + a.prev + "" : "" + }(), + page: function () { + var e = []; + if (a.count < 1) return ""; + n > 1 && a.first !== !1 && 0 !== t && e.push('' + (a.first || 1) + ""); + var i = Math.floor((t - 1) / 2), r = n > 1 ? a.curr - i : 1, u = n > 1 ? function () { + var e = a.curr + (t - i - 1); + return e > a.pages ? a.pages : e + }() : t; + for (u - r < t - 1 && (r = u - t + 1), a.first !== !1 && r > 2 && e.push(''); r <= u; r++) r === a.curr ? e.push('" + r + "") : e.push('' + r + ""); + return a.pages > t && a.pages > u && a.last !== !1 && (u + 1 < a.pages && e.push(''), 0 !== t && e.push('' + (a.last || a.pages) + "")), e.join("") + }(), + next: function () { + return a.next ? '' + a.next + "" : "" + }(), + count: '\u5171 ' + a.count + " \u6761", + limit: function () { + var e = ['" + }(), + refresh: ['', '', ""].join(""), + skip: function () { + return ['到第', '', '页', ""].join("") + }() + }; + return ['
', function () { + var e = []; + return layui.each(a.layout, function (a, t) { + i[t] && e.push(i[t]) + }), e.join("") + }(), "
"].join("") + }, u.prototype.jump = function (e, a) { + if (e) { + var t = this, i = t.config, r = e.children, u = e[n]("button")[0], l = e[n]("input")[0], + p = e[n]("select")[0], c = function () { + var e = 0 | l.value.replace(/\s|\D/g, ""); + e && (i.curr = e, t.render()) + }; + if (a) return c(); + for (var o = 0, y = r.length; o < y; o++) "a" === r[o].nodeName.toLowerCase() && s.on(r[o], "click", function () { + var e = 0 | this.getAttribute("data-page"); + e < 1 || e > i.pages || (i.curr = e, t.render()) + }); + p && s.on(p, "change", function () { + var e = this.value; + i.curr * e > i.count && (i.curr = Math.ceil(i.count / e)), i.limit = e, t.render() + }), u && s.on(u, "click", function () { + c() + }) + } + }, u.prototype.skip = function (e) { + if (e) { + var a = this, t = e[n]("input")[0]; + t && s.on(t, "keyup", function (t) { + var n = this.value, i = t.keyCode; + /^(37|38|39|40)$/.test(i) || (/\D/.test(n) && (this.value = n.replace(/\D/, "")), 13 === i && a.jump(e, !0)) + }) + } + }, u.prototype.render = function (e) { + var n = this, i = n.config, r = n.type(), u = n.view(); + 2 === r ? i.elem && (i.elem.innerHTML = u) : 3 === r ? i.elem.html(u) : a[t](i.elem) && (a[t](i.elem).innerHTML = u), i.jump && i.jump(i, e); + var s = a[t]("layui-laypage-" + i.index); + n.jump(s), i.hash && !e && (location.hash = "!" + i.hash + "=" + i.curr), n.skip(s) + }; + var s = { + render: function (e) { + var a = new u(e); + return a.index + }, index: layui.laypage ? layui.laypage.index + 1e4 : 0, on: function (e, a, t) { + return e.attachEvent ? e.attachEvent("on" + a, function (a) { + a.target = a.srcElement, t.call(e, a) + }) : e.addEventListener(a, t, !1), this + } + }; + e(i, s) +}); +!function (e, t) { + "use strict"; + var a = e.layui && layui.define, n = { + getPath: e.lay && lay.getPath ? lay.getPath : "", link: function (t, a, n) { + l.path && e.lay && lay.layui && lay.layui.link(l.path + t, a, n) + } + }, i = e.LAYUI_GLOBAL || {}, l = { + v: "5.3.1", + config: {}, + index: e.laydate && e.laydate.v ? 1e5 : 0, + path: i.laydate_dir || n.getPath, + set: function (e) { + var t = this; + return t.config = lay.extend({}, t.config, e), t + }, + ready: function (e) { + var t = "laydate", + i = "", + // r = (a ? "modules/laydate/" : "theme/") + "default/laydate.css?v=" + l.v + i; + r = (a ? "modules/laydate/" : "theme/") + "default/laydate.css"; + return a ? layui.addcss(r, e, t) : n.link(r, e, t), this + } + }, r = function () { + var e = this, t = e.config, a = t.id; + return r.that[a] = e, { + hint: function (t) { + e.hint.call(e, t) + }, config: e.config + } + }, o = "laydate", s = ".layui-laydate", y = "layui-this", d = "laydate-disabled", m = [100, 2e5], + c = "layui-laydate-static", u = "layui-laydate-list", h = "layui-laydate-hint", f = "layui-laydate-footer", + p = ".laydate-btns-confirm", g = "laydate-time-text", v = "laydate-btns-time", T = "layui-laydate-preview", + D = function (e) { + var t = this; + t.index = ++l.index, t.config = lay.extend({}, t.config, l.config, e), e = t.config, e.id = "id" in e ? e.id : t.index, l.ready(function () { + t.init() + }) + }, w = "yyyy|y|MM|M|dd|d|HH|H|mm|m|ss|s"; + r.formatArr = function (e) { + return (e || "").match(new RegExp(w + "|.", "g")) || [] + }, D.isLeapYear = function (e) { + return e % 4 === 0 && e % 100 !== 0 || e % 400 === 0 + }, D.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: {}, + zIndex: null, + done: null, + change: null + }, D.prototype.lang = function () { + var e = this, t = e.config, a = { + 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 a[t.lang] || a.cn + }, D.prototype.init = function () { + var t = this, a = t.config, n = "static" === a.position, + i = {year: "yyyy", month: "yyyy-MM", date: "yyyy-MM-dd", time: "HH:mm:ss", datetime: "yyyy-MM-dd HH:mm:ss"}; + a.elem = lay(a.elem), a.eventElem = lay(a.eventElem), a.elem[0] && (t.rangeStr = a.range ? "string" == typeof a.range ? a.range : "-" : "", "array" === layui._typeof(a.range) && (t.rangeElem = [lay(a.range[0]), lay(a.range[1])]), i[a.type] || (e.console && console.error && console.error("laydate type error:'" + a.type + "' is not supported"), a.type = "date"), a.format === i.date && (a.format = i[a.type] || i.date), t.format = r.formatArr(a.format), t.EXP_IF = "", t.EXP_SPLIT = "", lay.each(t.format, function (e, a) { + var n = new RegExp(w).test(a) ? "\\d{" + function () { + return new RegExp(w).test(t.format[0 === e ? e + 1 : e - 1] || "") ? /^yyyy|y$/.test(a) ? 4 : a.length : /^yyyy$/.test(a) ? "1,4" : /^y$/.test(a) ? "1,308" : "1,2" + }() + "}" : "\\" + a; + t.EXP_IF = t.EXP_IF + n, t.EXP_SPLIT = t.EXP_SPLIT + "(" + n + ")" + }), t.EXP_IF_ONE = new RegExp("^" + t.EXP_IF + "$"), t.EXP_IF = new RegExp("^" + (a.range ? t.EXP_IF + "\\s\\" + t.rangeStr + "\\s" + t.EXP_IF : t.EXP_IF) + "$"), t.EXP_SPLIT = new RegExp("^" + t.EXP_SPLIT + "$", ""), t.isInput(a.elem[0]) || "focus" === a.trigger && (a.trigger = "click"), a.elem.attr("lay-key") || (a.elem.attr("lay-key", t.index), a.eventElem.attr("lay-key", t.index)), a.mark = lay.extend({}, a.calendar && "cn" === a.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-9-18": "\u56fd\u803b", + "0-10-1": "\u56fd\u5e86", + "0-12-25": "\u5723\u8bde" + } : {}, a.mark), lay.each(["min", "max"], function (e, t) { + var n = [], i = []; + if ("number" == typeof a[t]) { + var l = a[t], r = (new Date).getTime(), o = 864e5, s = new Date(l ? l < o ? r + l * o : l : r); + n = [s.getFullYear(), s.getMonth() + 1, s.getDate()], l < o || (i = [s.getHours(), s.getMinutes(), s.getSeconds()]) + } else n = (a[t].match(/\d+-\d+-\d+/) || [""])[0].split("-"), i = (a[t].match(/\d+:\d+:\d+/) || [""])[0].split(":"); + a[t] = { + year: 0 | n[0] || (new Date).getFullYear(), + month: n[1] ? (0 | n[1]) - 1 : (new Date).getMonth(), + date: 0 | n[2] || (new Date).getDate(), + hours: 0 | i[0], + minutes: 0 | i[1], + seconds: 0 | i[2] + } + }), t.elemID = "layui-laydate" + a.elem.attr("lay-key"), (a.show || n) && t.render(), n || t.events(), a.value && a.isInitValue && ("date" === layui._typeof(a.value) ? t.setValue(t.parse(0, t.systemDate(a.value))) : t.setValue(a.value))) + }, D.prototype.render = function () { + var e = this, a = e.config, n = e.lang(), i = "static" === a.position, r = e.elem = lay.elem("div", { + id: e.elemID, + "class": ["layui-laydate", a.range ? " layui-laydate-range" : "", i ? " " + c : "", a.theme && "default" !== a.theme && !/^#/.test(a.theme) ? " laydate-theme-" + a.theme : ""].join("") + }), o = e.elemMain = [], s = e.elemHeader = [], y = e.elemCont = [], d = e.table = [], + m = e.footer = lay.elem("div", {"class": f}); + if (a.zIndex && (r.style.zIndex = a.zIndex), lay.each(new Array(2), function (e) { + if (!a.range && e > 0) return !0; + var t = lay.elem("div", {"class": "layui-laydate-header"}), i = [function () { + var e = lay.elem("i", {"class": "layui-icon laydate-icon laydate-prev-y"}); + return e.innerHTML = "", e + }(), function () { + var e = lay.elem("i", {"class": "layui-icon laydate-icon laydate-prev-m"}); + return e.innerHTML = "", e + }(), function () { + var e = lay.elem("div", {"class": "laydate-set-ym"}), t = lay.elem("span"), a = lay.elem("span"); + return e.appendChild(t), e.appendChild(a), e + }(), function () { + var e = lay.elem("i", {"class": "layui-icon laydate-icon laydate-next-m"}); + return e.innerHTML = "", e + }(), function () { + var e = lay.elem("i", {"class": "layui-icon laydate-icon laydate-next-y"}); + return e.innerHTML = "", e + }()], l = lay.elem("div", {"class": "layui-laydate-content"}), r = lay.elem("table"), m = lay.elem("thead"), + c = lay.elem("tr"); + lay.each(i, function (e, a) { + t.appendChild(a) + }), m.appendChild(c), lay.each(new Array(6), function (e) { + var t = r.insertRow(0); + lay.each(new Array(7), function (a) { + if (0 === e) { + var i = lay.elem("th"); + i.innerHTML = n.weeks[a], c.appendChild(i) + } + t.insertCell(a) + }) + }), r.insertBefore(m, r.children[0]), l.appendChild(r), o[e] = lay.elem("div", {"class": "layui-laydate-main laydate-main-list-" + e}), o[e].appendChild(t), o[e].appendChild(l), s.push(i), y.push(l), d.push(r) + }), lay(m).html(function () { + var e = [], t = []; + return "datetime" === a.type && e.push('' + n.timeTips + ""), (a.range || "datetime" !== a.type) && e.push(''), lay.each(a.btns, function (e, l) { + var r = n.tools[l] || "btn"; + a.range && "now" === l || (i && "clear" === l && (r = "cn" === a.lang ? "\u91cd\u7f6e" : "Reset"), t.push('' + r + "")) + }), e.push('"), e.join("") + }()), lay.each(o, function (e, t) { + r.appendChild(t) + }), a.showBottom && r.appendChild(m), /^#/.test(a.theme)) { + var u = lay.elem("style"), + h = ["#{{id}} .layui-laydate-header{background-color:{{theme}};}", "#{{id}} .layui-this{background-color:{{theme}} !important;}"].join("").replace(/{{id}}/g, e.elemID).replace(/{{theme}}/g, a.theme); + "styleSheet" in u ? (u.setAttribute("type", "text/css"), u.styleSheet.cssText = h) : u.innerHTML = h, lay(r).addClass("laydate-theme-molv"), r.appendChild(u) + } + l.thisId = a.id, e.remove(D.thisElemDate), i ? a.elem.append(r) : (t.body.appendChild(r), e.position()), e.checkDate().calendar(null, 0, "init"), e.changeEvent(), D.thisElemDate = e.elemID, "function" == typeof a.ready && a.ready(lay.extend({}, a.dateTime, {month: a.dateTime.month + 1})), e.preview() + }, D.prototype.remove = function (e) { + var t = this, a = (t.config, lay("#" + (e || t.elemID))); + return a[0] ? (a.hasClass(c) || t.checkDate(function () { + a.remove() + }), t) : t + }, D.prototype.position = function () { + var e = this, t = e.config; + return lay.position(e.bindElem || t.elem[0], e.elem, {position: t.position}), e + }, D.prototype.hint = function (e) { + var t = this, a = (t.config, lay.elem("div", {"class": h})); + t.elem && (a.innerHTML = e || "", lay(t.elem).find("." + h).remove(), t.elem.appendChild(a), clearTimeout(t.hinTimer), t.hinTimer = setTimeout(function () { + lay(t.elem).find("." + h).remove() + }, 3e3)) + }, D.prototype.getAsYM = function (e, t, a) { + return a ? t-- : t++, t < 0 && (t = 11, e--), t > 11 && (t = 0, e++), [e, t] + }, D.prototype.systemDate = function (e) { + var t = e || new Date; + return { + year: t.getFullYear(), + month: t.getMonth(), + date: t.getDate(), + hours: e ? e.getHours() : 0, + minutes: e ? e.getMinutes() : 0, + seconds: e ? e.getSeconds() : 0 + } + }, D.prototype.checkDate = function (e) { + var t, a, n = this, i = (new Date, n.config), r = n.lang(), o = i.dateTime = i.dateTime || n.systemDate(), + s = n.bindElem || i.elem[0], y = (n.isInput(s) ? "val" : "html", function () { + if (n.rangeElem) { + var e = [n.rangeElem[0].val(), n.rangeElem[1].val()]; + if (e[0] && e[1]) return e.join(" " + n.rangeStr + " ") + } + return n.isInput(s) ? s.value : "static" === i.position ? "" : lay(s).attr("lay-date") + }()), d = function (e) { + e.year > m[1] && (e.year = m[1], a = !0), e.month > 11 && (e.month = 11, a = !0), e.hours > 23 && (e.hours = 0, a = !0), e.minutes > 59 && (e.minutes = 0, e.hours++, a = !0), e.seconds > 59 && (e.seconds = 0, e.minutes++, a = !0), t = l.getEndDate(e.month + 1, e.year), e.date > t && (e.date = t, a = !0) + }, c = function (e, t, l) { + var r = ["startTime", "endTime"]; + t = (t.match(n.EXP_SPLIT) || []).slice(1), l = l || 0, i.range && (n[r[l]] = n[r[l]] || {}), lay.each(n.format, function (o, s) { + var y = parseFloat(t[o]); + t[o].length < s.length && (a = !0), /yyyy|y/.test(s) ? (y < m[0] && (y = m[0], a = !0), e.year = y) : /MM|M/.test(s) ? (y < 1 && (y = 1, a = !0), e.month = y - 1) : /dd|d/.test(s) ? (y < 1 && (y = 1, a = !0), e.date = y) : /HH|H/.test(s) ? (y < 1 && (y = 0, a = !0), e.hours = y, i.range && (n[r[l]].hours = y)) : /mm|m/.test(s) ? (y < 1 && (y = 0, a = !0), e.minutes = y, i.range && (n[r[l]].minutes = y)) : /ss|s/.test(s) && (y < 1 && (y = 0, a = !0), e.seconds = y, i.range && (n[r[l]].seconds = y)) + }), d(e) + }; + if ("limit" === e) return d(o), n; + y = y || i.value, "string" == typeof y && (y = y.replace(/\s+/g, " ").replace(/^\s|\s$/g, "")); + var u = function () { + i.range && (n.endDate = n.endDate || lay.extend({}, i.dateTime, function () { + var e = {}, t = i.dateTime, a = n.getAsYM(t.year, t.month); + return "year" === i.type ? e.year = t.year + 1 : "time" !== i.type && (e.year = a[0], e.month = a[1]), "datetime" !== i.type && "time" !== i.type || (e.hours = 23, e.minutes = e.seconds = 59), e + }())) + }; + u(), "string" == typeof y && y ? n.EXP_IF.test(y) ? i.range ? (y = y.split(" " + n.rangeStr + " "), lay.each([i.dateTime, n.endDate], function (e, t) { + c(t, y[e], e) + })) : c(o, y) : (n.hint(r.formatError[0] + (i.range ? i.format + " " + n.rangeStr + " " + i.format : i.format) + r.formatError[1]), a = !0) : y && "date" === layui._typeof(y) ? i.dateTime = n.systemDate(y) : (i.dateTime = n.systemDate(), delete n.startTime, delete n.endDate, u(), delete n.endTime), function () { + if (n.rangeElem) { + var e = [n.rangeElem[0].val(), n.rangeElem[1].val()], t = [i.dateTime, n.endDate]; + lay.each(e, function (e, a) { + n.EXP_IF_ONE.test(a) && c(t[e], a, e) + }) + } + }(), d(o), i.range && d(n.endDate), a && y && n.setValue(i.range ? n.endDate ? n.parse() : "" : n.parse()); + var h = function (e) { + return n.newDate(e).getTime() + }; + return (h(o) > h(i.max) || h(o) < h(i.min)) && (o = i.dateTime = lay.extend({}, i.min)), i.range && (h(n.endDate) < h(i.min) || h(n.endDate) > h(i.max)) && (n.endDate = lay.extend({}, i.max)), e && e(), n + }, D.prototype.mark = function (e, t) { + var a, n = this, i = n.config; + return lay.each(i.mark, function (e, n) { + var i = e.split("-"); + i[0] != t[0] && 0 != i[0] || i[1] != t[1] && 0 != i[1] || i[2] != t[2] || (a = n || t[2]) + }), a && e.html('' + a + ""), n + }, D.prototype.limit = function (e, t, a, n) { + var i, l = this, r = l.config, o = {}, s = r[a > 41 ? "endDate" : "dateTime"], y = lay.extend({}, s, t || {}); + return lay.each({now: y, min: r.min, max: r.max}, function (e, t) { + o[e] = l.newDate(lay.extend({year: t.year, month: t.month, date: t.date}, function () { + var e = {}; + return lay.each(n, function (a, n) { + e[n] = t[n] + }), e + }())).getTime() + }), i = o.now < o.min || o.now > o.max, e && e[i ? "addClass" : "removeClass"](d), i + }, D.prototype.thisDateTime = function (e) { + var t = this, a = t.config; + return e ? t.endDate : a.dateTime + }, D.prototype.calendar = function (e, t, a) { + var n, i, r, o = this, s = o.config, t = t ? 1 : 0, d = e || o.thisDateTime(t), c = new Date, u = o.lang(), + h = "date" !== s.type && "datetime" !== s.type, f = lay(o.table[t]).find("td"), + g = lay(o.elemHeader[t][2]).find("span"); + return d.year < m[0] && (d.year = m[0], o.hint(u.invalidDate)), d.year > m[1] && (d.year = m[1], o.hint(u.invalidDate)), o.firstDate || (o.firstDate = lay.extend({}, d)), c.setFullYear(d.year, d.month, 1), n = c.getDay(), i = l.getEndDate(d.month || 12, d.year), r = l.getEndDate(d.month + 1, d.year), lay.each(f, function (e, t) { + var a = [d.year, d.month], l = 0; + t = lay(t), t.removeAttr("class"), e < n ? (l = i - n + e, t.addClass("laydate-day-prev"), a = o.getAsYM(d.year, d.month, "sub")) : e >= n && e < r + n ? (l = e - n, l + 1 === d.date && t.addClass(y)) : (l = e - r - n, t.addClass("laydate-day-next"), a = o.getAsYM(d.year, d.month)), a[1]++, a[2] = l + 1, t.attr("lay-ymd", a.join("-")).html(a[2]), o.mark(t, a).limit(t, { + year: a[0], + month: a[1] - 1, + date: a[2] + }, e) + }), lay(g[0]).attr("lay-ym", d.year + "-" + (d.month + 1)), lay(g[1]).attr("lay-ym", d.year + "-" + (d.month + 1)), "cn" === s.lang ? (lay(g[0]).attr("lay-type", "year").html(d.year + " \u5e74"), lay(g[1]).attr("lay-type", "month").html(d.month + 1 + " \u6708")) : (lay(g[0]).attr("lay-type", "month").html(u.month[d.month]), lay(g[1]).attr("lay-type", "year").html(d.year)), h && (s.range ? e && (o.listYM = [[s.dateTime.year, s.dateTime.month + 1], [o.endDate.year, o.endDate.month + 1]], o.list(s.type, 0).list(s.type, 1), "time" === s.type ? o.setBtnStatus("\u65f6\u95f4", lay.extend({}, o.systemDate(), o.startTime), lay.extend({}, o.systemDate(), o.endTime)) : o.setBtnStatus(!0)) : (o.listYM = [[d.year, d.month + 1]], o.list(s.type, 0))), s.range && "init" === a && !e && o.calendar(o.endDate, 1), s.range || o.limit(lay(o.footer).find(p), null, 0, ["hours", "minutes", "seconds"]), o.setBtnStatus(), o + }, D.prototype.list = function (e, t) { + var a = this, n = a.config, i = n.dateTime, l = a.lang(), + r = n.range && "date" !== n.type && "datetime" !== n.type, o = lay.elem("ul", { + "class": u + " " + { + year: "laydate-year-list", + month: "laydate-month-list", + time: "laydate-time-list" + }[e] + }), s = a.elemHeader[t], m = lay(s[2]).find("span"), c = a.elemCont[t || 0], h = lay(c).find("." + u)[0], + f = "cn" === n.lang, T = f ? "\u5e74" : "", D = a.listYM[t] || {}, w = ["hours", "minutes", "seconds"], + x = ["startTime", "endTime"][t]; + if (D[0] < 1 && (D[0] = 1), "year" === e) { + var M, E = M = D[0] - 7; + E < 1 && (E = M = 1), lay.each(new Array(15), function (e) { + var i = lay.elem("li", {"lay-ym": M}), l = {year: M}; + M == D[0] && lay(i).addClass(y), i.innerHTML = M + T, o.appendChild(i), M < a.firstDate.year ? (l.month = n.min.month, l.date = n.min.date) : M >= a.firstDate.year && (l.month = n.max.month, l.date = n.max.date), a.limit(lay(i), l, t), M++ + }), lay(m[f ? 0 : 1]).attr("lay-ym", M - 8 + "-" + D[1]).html(E + T + " - " + (M - 1 + T)) + } else if ("month" === e) lay.each(new Array(12), function (e) { + var i = lay.elem("li", {"lay-ym": e}), r = {year: D[0], month: e}; + e + 1 == D[1] && lay(i).addClass(y), i.innerHTML = l.month[e] + (f ? "\u6708" : ""), o.appendChild(i), D[0] < a.firstDate.year ? r.date = n.min.date : D[0] >= a.firstDate.year && (r.date = n.max.date), a.limit(lay(i), r, t) + }), lay(m[f ? 0 : 1]).attr("lay-ym", D[0] + "-" + D[1]).html(D[0] + T); else if ("time" === e) { + var C = function () { + lay(o).find("ol").each(function (e, n) { + lay(n).find("li").each(function (n, i) { + a.limit(lay(i), [{hours: n}, {hours: a[x].hours, minutes: n}, { + hours: a[x].hours, + minutes: a[x].minutes, + seconds: n + }][e], t, [["hours"], ["hours", "minutes"], ["hours", "minutes", "seconds"]][e]) + }) + }), n.range || a.limit(lay(a.footer).find(p), a[x], 0, ["hours", "minutes", "seconds"]) + }; + n.range ? a[x] || (a[x] = "startTime" === x ? i : a.endDate) : a[x] = i, lay.each([24, 60, 60], function (e, t) { + var n = lay.elem("li"), i = ["

" + l.time[e] + "

    "]; + lay.each(new Array(t), function (t) { + i.push("" + lay.digit(t, 2) + "") + }), n.innerHTML = i.join("") + "
", o.appendChild(n) + }), C() + } + if (h && c.removeChild(h), c.appendChild(o), "year" === e || "month" === e) lay(a.elemMain[t]).addClass("laydate-ym-show"), lay(o).find("li").on("click", function () { + var l = 0 | lay(this).attr("lay-ym"); + if (!lay(this).hasClass(d)) { + 0 === t ? (i[e] = l, a.limit(lay(a.footer).find(p), null, 0)) : a.endDate[e] = l; + var s = "year" === n.type || "month" === n.type; + s ? (lay(o).find("." + y).removeClass(y), lay(this).addClass(y), "month" === n.type && "year" === e && (a.listYM[t][0] = l, r && ((t ? a.endDate : i).year = l), a.list("month", t))) : (a.checkDate("limit").calendar(null, t), a.closeList()), a.setBtnStatus(), n.range || ("month" === n.type && "month" === e || "year" === n.type && "year" === e) && a.setValue(a.parse()).remove().done(), a.done(null, "change"), lay(a.footer).find("." + v).removeClass(d) + } + }); else { + var I = lay.elem("span", {"class": g}), k = function () { + lay(o).find("ol").each(function (e) { + var t = this, n = lay(t).find("li"); + t.scrollTop = 30 * (a[x][w[e]] - 2), t.scrollTop <= 0 && n.each(function (e, a) { + if (!lay(this).hasClass(d)) return t.scrollTop = 30 * (e - 2), !0 + }) + }) + }, b = lay(s[2]).find("." + g); + k(), I.innerHTML = n.range ? [l.startTime, l.endTime][t] : l.timeTips, lay(a.elemMain[t]).addClass("laydate-time-show"), b[0] && b.remove(), s[2].appendChild(I), lay(o).find("ol").each(function (e) { + var t = this; + lay(t).find("li").on("click", function () { + var l = 0 | this.innerHTML; + lay(this).hasClass(d) || (n.range ? a[x][w[e]] = l : i[w[e]] = l, lay(t).find("." + y).removeClass(y), lay(this).addClass(y), C(), k(), (a.endDate || "time" === n.type) && a.done(null, "change"), a.setBtnStatus()) + }) + }) + } + return a + }, D.prototype.listYM = [], D.prototype.closeList = function () { + var e = this; + e.config; + lay.each(e.elemCont, function (t, a) { + lay(this).find("." + u).remove(), lay(e.elemMain[t]).removeClass("laydate-ym-show laydate-time-show") + }), lay(e.elem).find("." + g).remove() + }, D.prototype.setBtnStatus = function (e, t, a) { + var n, i = this, l = i.config, r = i.lang(), o = lay(i.footer).find(p); + l.range && "time" !== l.type && (t = t || l.dateTime, a = a || i.endDate, n = i.newDate(t).getTime() > i.newDate(a).getTime(), i.limit(null, t) || i.limit(null, a) ? o.addClass(d) : o[n ? "addClass" : "removeClass"](d), e && n && i.hint("string" == typeof e ? r.timeout.replace(/\u65e5\u671f/g, e) : r.timeout)) + }, D.prototype.parse = function (e, t) { + var a = this, n = a.config, + i = t || ("end" == e ? lay.extend({}, a.endDate, a.endTime) : n.range ? lay.extend({}, n.dateTime, a.startTime) : n.dateTime), + r = l.parse(i, a.format, 1); + return n.range && void 0 === e ? r + " " + a.rangeStr + " " + a.parse("end") : r + }, D.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) + }, D.prototype.setValue = function (e) { + var t = this, a = t.config, n = t.bindElem || a.elem[0]; + return "static" === a.position ? t : (e = e || "", t.isInput(n) ? lay(n).val(e) : t.rangeElem ? (t.rangeElem[0].val(e ? t.parse("start") : ""), t.rangeElem[1].val(e ? t.parse("end") : "")) : (0 === lay(n).find("*").length && lay(n).html(e), lay(n).attr("lay-date", e)), t) + }, D.prototype.preview = function () { + var e = this, t = e.config; + if (t.isPreview) { + var a = lay(e.elem).find("." + T), n = t.range ? e.endDate ? e.parse() : "" : e.parse(); + a.html(n).css({color: "#5FB878"}), setTimeout(function () { + a.css({color: "#666"}) + }, 300) + } + }, D.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 + }, D.prototype.choose = function (e, t) { + var a = this, n = a.config, i = a.thisDateTime(t), l = (lay(a.elem).find("td"), e.attr("lay-ymd").split("-")); + l = { + year: 0 | l[0], + month: (0 | l[1]) - 1, + date: 0 | l[2] + }, e.hasClass(d) || (lay.extend(i, l), n.range ? (lay.each(["startTime", "endTime"], function (e, t) { + a[t] = a[t] || {hours: 0, minutes: 0, seconds: 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")) + }, D.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(d) || (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(d)) return a.hint("time" === n.type ? i.timeout.replace(/\u65e5\u671f/g, "\u65f6\u95f4") : i.timeout) + } else if (lay(e).hasClass(d)) return a.hint(i.invalidDate); + a.done(), a.setValue(a.parse()).remove() + } + }; + o[t] && o[t]() + }, D.prototype.change = function (e) { + var t = this, a = t.config, n = t.thisDateTime(e), i = a.range && ("year" === a.type || "month" === a.type), + l = t.elemCont[e || 0], r = t.listYM[e], o = function (o) { + var s = lay(l).find(".laydate-year-list")[0], y = lay(l).find(".laydate-month-list")[0]; + return s && (r[0] = o ? r[0] - 15 : r[0] + 15, t.list("year", e)), y && (o ? r[0]-- : r[0]++, t.list("month", e)), (s || y) && (lay.extend(n, {year: r[0]}), i && (n.year = r[0]), a.range || t.done(null, "change"), a.range || t.limit(lay(t.footer).find(p), {year: r[0]})), t.setBtnStatus(), s || y + }; + return { + prevYear: function () { + o("sub") || (n.year--, t.checkDate("limit").calendar(null, e), t.done(null, "change")) + }, prevMonth: function () { + var a = t.getAsYM(n.year, n.month, "sub"); + lay.extend(n, {year: a[0], month: a[1]}), t.checkDate("limit").calendar(null, e), t.done(null, "change") + }, nextMonth: function () { + var a = t.getAsYM(n.year, n.month); + lay.extend(n, {year: a[0], month: a[1]}), t.checkDate("limit").calendar(null, e), t.done(null, "change") + }, nextYear: function () { + o() || (n.year++, t.checkDate("limit").calendar(null, e), t.done(null, "change")) + } + } + }, D.prototype.changeEvent = function () { + var e = this; + e.config; + lay(e.elem).on("click", function (e) { + lay.stope(e) + }).on("mousedown", function (e) { + lay.stope(e) + }), lay.each(e.elemHeader, function (t, a) { + lay(a[0]).on("click", function (a) { + e.change(t).prevYear() + }), lay(a[1]).on("click", function (a) { + e.change(t).prevMonth() + }), lay(a[2]).find("span").on("click", function (a) { + var n = lay(this), i = n.attr("lay-ym"), l = n.attr("lay-type"); + i && (i = i.split("-"), e.listYM[t] = [0 | i[0], 0 | i[1]], e.list(l, t), lay(e.footer).find("." + v).addClass(d)) + }), lay(a[3]).on("click", function (a) { + e.change(t).nextMonth() + }), lay(a[4]).on("click", function (a) { + e.change(t).nextYear() + }) + }), lay.each(e.table, function (t, a) { + var n = lay(a).find("td"); + n.on("click", function () { + e.choose(lay(this), t) + }) + }), lay(e.footer).find("span").on("click", function () { + var t = lay(this).attr("lay-type"); + e.tool(this, t) + }) + }, D.prototype.isInput = function (e) { + return /input|textarea/.test(e.tagName.toLocaleLowerCase()) + }, D.prototype.events = function () { + var e = this, t = e.config, a = function (a, n) { + a.on(t.trigger, function () { + n && (e.bindElem = this), e.render() + }) + }; + t.elem[0] && !t.elem[0].eventHandler && (a(t.elem, "bind"), a(t.eventElem), t.elem[0].eventHandler = !0) + }, r.that = {}, r.getThis = function (e) { + var t = r.that[e]; + return !t && a && layui.hint().error(e ? o + " instance with ID '" + e + "' not found" : "ID argument required"), t + }, n.run = function (a) { + a(t).on("mousedown", function (e) { + if (l.thisId) { + var t = r.getThis(l.thisId); + if (t) { + var n = t.config; + e.target !== n.elem[0] && e.target !== n.eventElem[0] && e.target !== a(n.closeStop)[0] && t.remove() + } + } + }).on("keydown", function (e) { + if (l.thisId) { + var t = r.getThis(l.thisId); + t && 13 === e.keyCode && a("#" + t.elemID)[0] && t.elemID === D.thisElemDate && (e.preventDefault(), a(t.footer).find(p)[0].click()) + } + }), a(e).on("resize", function () { + if (l.thisId) { + var e = r.getThis(l.thisId); + if (e) return !(!e.elem || !a(s)[0]) && void e.position() + } + }) + }, l.render = function (e) { + var t = new D(e); + return r.call(t) + }, l.parse = function (e, t, a) { + return e = e || {}, "string" == typeof t && (t = r.formatArr(t)), t = (t || []).concat(), lay.each(t, function (n, i) { + /yyyy|y/.test(i) ? t[n] = lay.digit(e.year, i.length) : /MM|M/.test(i) ? t[n] = lay.digit(e.month + (a || 0), i.length) : /dd|d/.test(i) ? t[n] = lay.digit(e.date, i.length) : /HH|H/.test(i) ? t[n] = lay.digit(e.hours, i.length) : /mm|m/.test(i) ? t[n] = lay.digit(e.minutes, i.length) : /ss|s/.test(i) && (t[n] = lay.digit(e.seconds, i.length)) + }), t.join("") + }, l.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() + }, a ? (l.ready(), layui.define("lay", function (e) { + l.path = layui.cache.dir, n.run(lay), e(o, l) + })) : "function" == typeof define && define.amd ? define(function () { + return n.run(lay), l + }) : function () { + l.ready(), n.run(e.lay), e.laydate = l + }() +}(window, window.document); +!function (e, t) { + "object" == typeof module && "object" == typeof module.exports ? module.exports = e.document ? t(e, !0) : function (e) { + if (!e.document) throw new Error("jQuery requires a window with a document"); + return t(e) + } : t(e) +}("undefined" != typeof window ? window : this, function (e, t) { + function n(e) { + var t = !!e && "length" in e && e.length, n = pe.type(e); + return "function" !== n && !pe.isWindow(e) && ("array" === n || 0 === t || "number" == typeof t && t > 0 && t - 1 in e) + } + + function r(e, t, n) { + if (pe.isFunction(t)) return pe.grep(e, function (e, r) { + return !!t.call(e, r, e) !== n + }); + if (t.nodeType) return pe.grep(e, function (e) { + return e === t !== n + }); + if ("string" == typeof t) { + if (Ce.test(t)) return pe.filter(t, e, n); + t = pe.filter(t, e) + } + return pe.grep(e, function (e) { + return pe.inArray(e, t) > -1 !== n + }) + } + + function i(e, t) { + do e = e[t]; while (e && 1 !== e.nodeType); + return e + } + + function o(e) { + var t = {}; + return pe.each(e.match(De) || [], function (e, n) { + t[n] = !0 + }), t + } + + function a() { + re.addEventListener ? (re.removeEventListener("DOMContentLoaded", s), e.removeEventListener("load", s)) : (re.detachEvent("onreadystatechange", s), e.detachEvent("onload", s)) + } + + function s() { + (re.addEventListener || "load" === e.event.type || "complete" === re.readyState) && (a(), pe.ready()) + } + + function u(e, t, n) { + if (void 0 === n && 1 === e.nodeType) { + var r = "data-" + t.replace(_e, "-$1").toLowerCase(); + if (n = e.getAttribute(r), "string" == typeof n) { + try { + n = "true" === n || "false" !== n && ("null" === n ? null : +n + "" === n ? +n : qe.test(n) ? pe.parseJSON(n) : n) + } catch (i) { + } + pe.data(e, t, n) + } else n = void 0 + } + return n + } + + function l(e) { + var t; + for (t in e) if (("data" !== t || !pe.isEmptyObject(e[t])) && "toJSON" !== t) return !1; + return !0 + } + + function c(e, t, n, r) { + if (He(e)) { + var i, o, a = pe.expando, s = e.nodeType, u = s ? pe.cache : e, l = s ? e[a] : e[a] && a; + if (l && u[l] && (r || u[l].data) || void 0 !== n || "string" != typeof t) return l || (l = s ? e[a] = ne.pop() || pe.guid++ : a), u[l] || (u[l] = s ? {} : {toJSON: pe.noop}), "object" != typeof t && "function" != typeof t || (r ? u[l] = pe.extend(u[l], t) : u[l].data = pe.extend(u[l].data, t)), o = u[l], r || (o.data || (o.data = {}), o = o.data), void 0 !== n && (o[pe.camelCase(t)] = n), "string" == typeof t ? (i = o[t], null == i && (i = o[pe.camelCase(t)])) : i = o, i + } + } + + function f(e, t, n) { + if (He(e)) { + var r, i, o = e.nodeType, a = o ? pe.cache : e, s = o ? e[pe.expando] : pe.expando; + if (a[s]) { + if (t && (r = n ? a[s] : a[s].data)) { + pe.isArray(t) ? t = t.concat(pe.map(t, pe.camelCase)) : t in r ? t = [t] : (t = pe.camelCase(t), t = t in r ? [t] : t.split(" ")), i = t.length; + for (; i--;) delete r[t[i]]; + if (n ? !l(r) : !pe.isEmptyObject(r)) return + } + (n || (delete a[s].data, l(a[s]))) && (o ? pe.cleanData([e], !0) : fe.deleteExpando || a != a.window ? delete a[s] : a[s] = void 0) + } + } + } + + function d(e, t, n, r) { + var i, o = 1, a = 20, s = r ? function () { + return r.cur() + } : function () { + return pe.css(e, t, "") + }, u = s(), l = n && n[3] || (pe.cssNumber[t] ? "" : "px"), + c = (pe.cssNumber[t] || "px" !== l && +u) && Me.exec(pe.css(e, t)); + if (c && c[3] !== l) { + l = l || c[3], n = n || [], c = +u || 1; + do o = o || ".5", c /= o, pe.style(e, t, c + l); while (o !== (o = s() / u) && 1 !== o && --a) + } + return n && (c = +c || +u || 0, i = n[1] ? c + (n[1] + 1) * n[2] : +n[2], r && (r.unit = l, r.start = c, r.end = i)), i + } + + function p(e) { + var t = ze.split("|"), n = e.createDocumentFragment(); + if (n.createElement) for (; t.length;) n.createElement(t.pop()); + return n + } + + function h(e, t) { + var n, r, i = 0, + o = "undefined" != typeof e.getElementsByTagName ? e.getElementsByTagName(t || "*") : "undefined" != typeof e.querySelectorAll ? e.querySelectorAll(t || "*") : void 0; + if (!o) for (o = [], n = e.childNodes || e; null != (r = n[i]); i++) !t || pe.nodeName(r, t) ? o.push(r) : pe.merge(o, h(r, t)); + return void 0 === t || t && pe.nodeName(e, t) ? pe.merge([e], o) : o + } + + function g(e, t) { + for (var n, r = 0; null != (n = e[r]); r++) pe._data(n, "globalEval", !t || pe._data(t[r], "globalEval")) + } + + function m(e) { + Be.test(e.type) && (e.defaultChecked = e.checked) + } + + function y(e, t, n, r, i) { + for (var o, a, s, u, l, c, f, d = e.length, y = p(t), v = [], x = 0; x < d; x++) if (a = e[x], a || 0 === a) if ("object" === pe.type(a)) pe.merge(v, a.nodeType ? [a] : a); else if (Ue.test(a)) { + for (u = u || y.appendChild(t.createElement("div")), l = (We.exec(a) || ["", ""])[1].toLowerCase(), f = Xe[l] || Xe._default, u.innerHTML = f[1] + pe.htmlPrefilter(a) + f[2], o = f[0]; o--;) u = u.lastChild; + if (!fe.leadingWhitespace && $e.test(a) && v.push(t.createTextNode($e.exec(a)[0])), !fe.tbody) for (a = "table" !== l || Ve.test(a) ? "" !== f[1] || Ve.test(a) ? 0 : u : u.firstChild, o = a && a.childNodes.length; o--;) pe.nodeName(c = a.childNodes[o], "tbody") && !c.childNodes.length && a.removeChild(c); + for (pe.merge(v, u.childNodes), u.textContent = ""; u.firstChild;) u.removeChild(u.firstChild); + u = y.lastChild + } else v.push(t.createTextNode(a)); + for (u && y.removeChild(u), fe.appendChecked || pe.grep(h(v, "input"), m), x = 0; a = v[x++];) if (r && pe.inArray(a, r) > -1) i && i.push(a); else if (s = pe.contains(a.ownerDocument, a), u = h(y.appendChild(a), "script"), s && g(u), n) for (o = 0; a = u[o++];) Ie.test(a.type || "") && n.push(a); + return u = null, y + } + + function v() { + return !0 + } + + function x() { + return !1 + } + + function b() { + try { + return re.activeElement + } catch (e) { + } + } + + function w(e, t, n, r, i, o) { + var a, s; + if ("object" == typeof t) { + "string" != typeof n && (r = r || n, n = void 0); + for (s in t) w(e, s, n, r, t[s], o); + return e + } + if (null == r && null == i ? (i = n, r = n = void 0) : null == i && ("string" == typeof n ? (i = r, r = void 0) : (i = r, r = n, n = void 0)), i === !1) i = x; else if (!i) return e; + return 1 === o && (a = i, i = function (e) { + return pe().off(e), a.apply(this, arguments) + }, i.guid = a.guid || (a.guid = pe.guid++)), e.each(function () { + pe.event.add(this, t, i, r, n) + }) + } + + function T(e, t) { + return pe.nodeName(e, "table") && pe.nodeName(11 !== t.nodeType ? t : t.firstChild, "tr") ? e.getElementsByTagName("tbody")[0] || e.appendChild(e.ownerDocument.createElement("tbody")) : e + } + + function C(e) { + return e.type = (null !== pe.find.attr(e, "type")) + "/" + e.type, e + } + + function E(e) { + var t = it.exec(e.type); + return t ? e.type = t[1] : e.removeAttribute("type"), e + } + + function N(e, t) { + if (1 === t.nodeType && pe.hasData(e)) { + var n, r, i, o = pe._data(e), a = pe._data(t, o), s = o.events; + if (s) { + delete a.handle, a.events = {}; + for (n in s) for (r = 0, i = s[n].length; r < i; r++) pe.event.add(t, n, s[n][r]) + } + a.data && (a.data = pe.extend({}, a.data)) + } + } + + function k(e, t) { + var n, r, i; + if (1 === t.nodeType) { + if (n = t.nodeName.toLowerCase(), !fe.noCloneEvent && t[pe.expando]) { + i = pe._data(t); + for (r in i.events) pe.removeEvent(t, r, i.handle); + t.removeAttribute(pe.expando) + } + "script" === n && t.text !== e.text ? (C(t).text = e.text, E(t)) : "object" === n ? (t.parentNode && (t.outerHTML = e.outerHTML), fe.html5Clone && e.innerHTML && !pe.trim(t.innerHTML) && (t.innerHTML = e.innerHTML)) : "input" === n && Be.test(e.type) ? (t.defaultChecked = t.checked = e.checked, t.value !== e.value && (t.value = e.value)) : "option" === n ? t.defaultSelected = t.selected = e.defaultSelected : "input" !== n && "textarea" !== n || (t.defaultValue = e.defaultValue) + } + } + + function S(e, t, n, r) { + t = oe.apply([], t); + var i, o, a, s, u, l, c = 0, f = e.length, d = f - 1, p = t[0], g = pe.isFunction(p); + if (g || f > 1 && "string" == typeof p && !fe.checkClone && rt.test(p)) return e.each(function (i) { + var o = e.eq(i); + g && (t[0] = p.call(this, i, o.html())), S(o, t, n, r) + }); + if (f && (l = y(t, e[0].ownerDocument, !1, e, r), i = l.firstChild, 1 === l.childNodes.length && (l = i), i || r)) { + for (s = pe.map(h(l, "script"), C), a = s.length; c < f; c++) o = l, c !== d && (o = pe.clone(o, !0, !0), a && pe.merge(s, h(o, "script"))), n.call(e[c], o, c); + if (a) for (u = s[s.length - 1].ownerDocument, pe.map(s, E), c = 0; c < a; c++) o = s[c], Ie.test(o.type || "") && !pe._data(o, "globalEval") && pe.contains(u, o) && (o.src ? pe._evalUrl && pe._evalUrl(o.src) : pe.globalEval((o.text || o.textContent || o.innerHTML || "").replace(ot, ""))); + l = i = null + } + return e + } + + function A(e, t, n) { + for (var r, i = t ? pe.filter(t, e) : e, o = 0; null != (r = i[o]); o++) n || 1 !== r.nodeType || pe.cleanData(h(r)), r.parentNode && (n && pe.contains(r.ownerDocument, r) && g(h(r, "script")), r.parentNode.removeChild(r)); + return e + } + + function D(e, t) { + var n = pe(t.createElement(e)).appendTo(t.body), r = pe.css(n[0], "display"); + return n.detach(), r + } + + function j(e) { + var t = re, n = lt[e]; + return n || (n = D(e, t), "none" !== n && n || (ut = (ut || pe("'; + break; + case 3: + delete t.title, delete t.closeBtn, t.icon === -1 && 0 === t.icon, r.closeAll("loading"); + break; + case 4: + f || (t.content = [t.content, "body"]), t.follow = t.content[1], t.content = t.content[0] + '', delete t.title, t.tips = "object" == typeof t.tips ? t.tips : [t.tips, !0], t.tipsMore || r.closeAll("tips") + } + if (e.vessel(f, function (n, r, u) { + c.append(n[0]), f ? function () { + 2 == t.type || 4 == t.type ? function () { + i("body").append(n[1]) + }() : function () { + s.parents("." + l[0])[0] || (s.data("display", s.css("display")).show().addClass("layui-layer-wrap").wrap(n[1]), i("#" + l[0] + a).find("." + l[5]).before(r)) + }() + }() : c.append(n[1]), i("#" + l.MOVE)[0] || c.append(o.moveElem = u), e.layero = i("#" + l[0] + a), e.shadeo = i("#" + l.SHADE + a), t.scrollbar || l.html.css("overflow", "hidden").attr("layer-full", a) + }).auto(a), e.shadeo.css({ + "background-color": t.shade[1] || "#000", + opacity: t.shade[0] || t.shade + }), 2 == t.type && 6 == r.ie && e.layero.find("iframe").attr("src", s[0]), 4 == t.type ? e.tips() : function () { + e.offset(), parseInt(o.getStyle(document.getElementById(l.MOVE), "z-index")) || function () { + e.layero.css("visibility", "hidden"), r.ready(function () { + e.offset(), e.layero.css("visibility", "visible") + }) + }() + }(), t.fixed && n.on("resize", function () { + e.offset(), (/^\d+%$/.test(t.area[0]) || /^\d+%$/.test(t.area[1])) && e.auto(a), 4 == t.type && e.tips() + }), t.time <= 0 || setTimeout(function () { + r.close(e.index) + }, t.time), e.move().callback(), l.anim[t.anim]) { + var u = "layer-anim " + l.anim[t.anim]; + e.layero.addClass(u).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend", function () { + i(this).removeClass(u) + }) + } + t.isOutAnim && e.layero.data("isOutAnim", !0) + } + }, s.pt.auto = function (e) { + var t = this, a = t.config, o = i("#" + l[0] + e); + "" === a.area[0] && a.maxWidth > 0 && (r.ie && r.ie < 8 && a.btn && o.width(o.innerWidth()), o.outerWidth() > a.maxWidth && o.width(a.maxWidth)); + var s = [o.innerWidth(), o.innerHeight()], f = o.find(l[1]).outerHeight() || 0, + c = o.find("." + l[6]).outerHeight() || 0, u = function (e) { + e = o.find(e), e.height(s[1] - f - c - 2 * (0 | parseFloat(e.css("padding-top")))) + }; + switch (a.type) { + case 2: + u("iframe"); + break; + default: + "" === a.area[1] ? a.maxHeight > 0 && o.outerHeight() > a.maxHeight ? (s[1] = a.maxHeight, u("." + l[5])) : a.fixed && s[1] >= n.height() && (s[1] = n.height(), u("." + l[5])) : u("." + l[5]) + } + return t + }, s.pt.offset = function () { + var e = this, t = e.config, i = e.layero, a = [i.outerWidth(), i.outerHeight()], + o = "object" == typeof t.offset; + e.offsetTop = (n.height() - a[1]) / 2, e.offsetLeft = (n.width() - a[0]) / 2, o ? (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 = n.width() - a[0] : "b" === t.offset ? e.offsetTop = n.height() - a[1] : "l" === t.offset ? e.offsetLeft = 0 : "lt" === t.offset ? (e.offsetTop = 0, e.offsetLeft = 0) : "lb" === t.offset ? (e.offsetTop = n.height() - a[1], e.offsetLeft = 0) : "rt" === t.offset ? (e.offsetTop = 0, e.offsetLeft = n.width() - a[0]) : "rb" === t.offset ? (e.offsetTop = n.height() - a[1], e.offsetLeft = n.width() - a[0]) : e.offsetTop = t.offset), t.fixed || (e.offsetTop = /%$/.test(e.offsetTop) ? n.height() * parseFloat(e.offsetTop) / 100 : parseFloat(e.offsetTop), e.offsetLeft = /%$/.test(e.offsetLeft) ? n.width() * parseFloat(e.offsetLeft) / 100 : parseFloat(e.offsetLeft), e.offsetTop += n.scrollTop(), e.offsetLeft += n.scrollLeft()), i.attr("minLeft") && (e.offsetTop = n.height() - (i.find(l[1]).outerHeight() || 0), e.offsetLeft = i.css("left")), i.css({ + top: e.offsetTop, + left: e.offsetLeft + }) + }, s.pt.tips = function () { + var e = this, t = e.config, a = e.layero, o = [a.outerWidth(), a.outerHeight()], r = i(t.follow); + r[0] || (r = i("body")); + var s = {width: r.outerWidth(), height: r.outerHeight(), top: r.offset().top, left: r.offset().left}, + f = a.find(".layui-layer-TipsG"), c = t.tips[0]; + t.tips[1] || f.remove(), s.autoLeft = function () { + s.left + o[0] - n.width() > 0 ? (s.tipLeft = s.left + s.width - o[0], f.css({ + right: 12, + left: "auto" + })) : s.tipLeft = s.left + }, s.where = [function () { + s.autoLeft(), s.tipTop = s.top - o[1] - 10, f.removeClass("layui-layer-TipsB").addClass("layui-layer-TipsT").css("border-right-color", t.tips[1]) + }, function () { + s.tipLeft = s.left + s.width + 10, s.tipTop = s.top, f.removeClass("layui-layer-TipsL").addClass("layui-layer-TipsR").css("border-bottom-color", t.tips[1]) + }, function () { + s.autoLeft(), s.tipTop = s.top + s.height + 10, f.removeClass("layui-layer-TipsT").addClass("layui-layer-TipsB").css("border-right-color", t.tips[1]) + }, function () { + s.tipLeft = s.left - o[0] - 10, s.tipTop = s.top, f.removeClass("layui-layer-TipsR").addClass("layui-layer-TipsL").css("border-bottom-color", t.tips[1]) + }], s.where[c - 1](), 1 === c ? s.top - (n.scrollTop() + o[1] + 16) < 0 && s.where[2]() : 2 === c ? n.width() - (s.left + s.width + o[0] + 16) > 0 || s.where[3]() : 3 === c ? s.top - n.scrollTop() + s.height + o[1] + 16 - n.height() > 0 && s.where[0]() : 4 === c && o[0] + 16 - s.left > 0 && s.where[1](), a.find("." + l[5]).css({ + "background-color": t.tips[1], + "padding-right": t.closeBtn ? "30px" : "" + }), a.css({left: s.tipLeft - (t.fixed ? n.scrollLeft() : 0), top: s.tipTop - (t.fixed ? n.scrollTop() : 0)}) + }, s.pt.move = function () { + var e = this, t = e.config, a = i(document), s = e.layero, l = s.find(t.move), + f = s.find(".layui-layer-resize"), c = {}; + return t.move && l.css("cursor", "move"), l.on("mousedown", function (e) { + e.preventDefault(), t.move && (c.moveStart = !0, c.offset = [e.clientX - parseFloat(s.css("left")), e.clientY - parseFloat(s.css("top"))], o.moveElem.css("cursor", "move").show()) + }), f.on("mousedown", function (e) { + e.preventDefault(), c.resizeStart = !0, c.offset = [e.clientX, e.clientY], c.area = [s.outerWidth(), s.outerHeight()], o.moveElem.css("cursor", "se-resize").show() + }), a.on("mousemove", function (i) { + if (c.moveStart) { + var a = i.clientX - c.offset[0], o = i.clientY - c.offset[1], l = "fixed" === s.css("position"); + if (i.preventDefault(), c.stX = l ? 0 : n.scrollLeft(), c.stY = l ? 0 : n.scrollTop(), !t.moveOut) { + var f = n.width() - s.outerWidth() + c.stX, u = n.height() - s.outerHeight() + c.stY; + a < c.stX && (a = c.stX), a > f && (a = f), o < c.stY && (o = c.stY), o > u && (o = u) + } + s.css({left: a, top: o}) + } + if (t.resize && c.resizeStart) { + var a = i.clientX - c.offset[0], o = i.clientY - c.offset[1]; + i.preventDefault(), r.style(e.index, { + width: c.area[0] + a, + height: c.area[1] + o + }), c.isResize = !0, t.resizing && t.resizing(s) + } + }).on("mouseup", function (e) { + c.moveStart && (delete c.moveStart, o.moveElem.hide(), t.moveEnd && t.moveEnd(s)), c.resizeStart && (delete c.resizeStart, o.moveElem.hide()) + }), e + }, s.pt.callback = function () { + function e() { + var e = a.cancel && a.cancel(t.index, n); + e === !1 || r.close(t.index) + } + + var t = this, n = t.layero, a = t.config; + t.openLayer(), a.success && (2 == a.type ? n.find("iframe").on("load", function () { + a.success(n, t.index, t) + }) : a.success(n, t.index, t)), 6 == r.ie && t.IE6(n), n.find("." + l[6]).children("a").on("click", function () { + var e = i(this).index(); + if (0 === e) a.yes ? a.yes(t.index, n) : a.btn1 ? a.btn1(t.index, n) : r.close(t.index); else { + var o = a["btn" + (e + 1)] && a["btn" + (e + 1)](t.index, n); + o === !1 || r.close(t.index) + } + }), n.find("." + l[7]).on("click", e), a.shadeClose && t.shadeo.on("click", function () { + r.close(t.index) + }), n.find(".layui-layer-min").on("click", function () { + var e = a.min && a.min(n, t.index); + e === !1 || r.min(t.index, a) + }), n.find(".layui-layer-max").on("click", function () { + i(this).hasClass("layui-layer-maxmin") ? (r.restore(t.index), a.restore && a.restore(n, t.index)) : (r.full(t.index, a), setTimeout(function () { + a.full && a.full(n, t.index) + }, 100)) + }), a.end && (o.end[t.index] = a.end) + }, o.reselect = function () { + i.each(i("select"), function (e, t) { + var n = i(this); + n.parents("." + l[0])[0] || 1 == n.attr("layer") && i("." + l[0]).length < 1 && n.removeAttr("layer").show(), n = null + }) + }, s.pt.IE6 = function (e) { + i("select").each(function (e, t) { + var n = i(this); + n.parents("." + l[0])[0] || "none" === n.css("display") || n.attr({layer: "1"}).hide(), n = null + }) + }, s.pt.openLayer = function () { + var e = this; + r.zIndex = e.config.zIndex, r.setTop = function (e) { + var t = function () { + r.zIndex++, e.css("z-index", r.zIndex + 1) + }; + return r.zIndex = parseInt(e[0].style.zIndex), e.on("mousedown", t), r.zIndex + } + }, o.record = function (e) { + var t = [e.width(), e.height(), e.position().top, e.position().left + parseFloat(e.css("margin-left"))]; + e.find(".layui-layer-max").addClass("layui-layer-maxmin"), e.attr({area: t}) + }, o.rescollbar = function (e) { + l.html.attr("layer-full") == e && (l.html[0].style.removeProperty ? l.html[0].style.removeProperty("overflow") : l.html[0].style.removeAttribute("overflow"), l.html.removeAttr("layer-full")) + }, e.layer = r, r.getChildFrame = function (e, t) { + return t = t || i("." + l[4]).attr("times"), i("#" + l[0] + t).find("iframe").contents().find(e) + }, r.getFrameIndex = function (e) { + return i("#" + e).parents("." + l[4]).attr("times") + }, r.iframeAuto = function (e) { + if (e) { + var t = r.getChildFrame("html", e).outerHeight(), n = i("#" + l[0] + e), + a = n.find(l[1]).outerHeight() || 0, o = n.find("." + l[6]).outerHeight() || 0; + n.css({height: t + a + o}), n.find("iframe").css({height: t}) + } + }, r.iframeSrc = function (e, t) { + i("#" + l[0] + e).find("iframe").attr("src", t) + }, r.style = function (e, t, n) { + var a = i("#" + l[0] + e), r = a.find(".layui-layer-content"), s = a.attr("type"), + f = a.find(l[1]).outerHeight() || 0, c = a.find("." + l[6]).outerHeight() || 0; + a.attr("minLeft"); + s !== o.type[3] && s !== o.type[4] && (n || (parseFloat(t.width) <= 260 && (t.width = 260), parseFloat(t.height) - f - c <= 64 && (t.height = 64 + f + c)), a.css(t), c = a.find("." + l[6]).outerHeight(), s === o.type[2] ? a.find("iframe").css({height: parseFloat(t.height) - f - c}) : r.css({height: parseFloat(t.height) - f - c - parseFloat(r.css("padding-top")) - parseFloat(r.css("padding-bottom"))})) + }, r.min = function (e, t) { + t = t || {}; + var a = i("#" + l[0] + e), s = i("#" + l.SHADE + e), f = a.find(l[1]).outerHeight() || 0, + c = a.attr("minLeft") || 181 * o.minIndex + "px", u = a.css("position"), + d = {width: 180, height: f, position: "fixed", overflow: "hidden"}; + o.record(a), o.minLeft[0] && (c = o.minLeft[0], o.minLeft.shift()), t.minStack && (d.left = c, d.top = n.height() - f, a.attr("minLeft") || o.minIndex++, a.attr("minLeft", c)), a.attr("position", u), r.style(e, d, !0), a.find(".layui-layer-min").hide(), "page" === a.attr("type") && a.find(l[4]).hide(), o.rescollbar(e), s.hide() + }, r.restore = function (e) { + var t = i("#" + l[0] + e), n = i("#" + l.SHADE + e), a = t.attr("area").split(","); + t.attr("type"); + r.style(e, { + width: parseFloat(a[0]), + height: parseFloat(a[1]), + top: parseFloat(a[2]), + left: parseFloat(a[3]), + position: t.attr("position"), + overflow: "visible" + }, !0), t.find(".layui-layer-max").removeClass("layui-layer-maxmin"), t.find(".layui-layer-min").show(), "page" === t.attr("type") && t.find(l[4]).show(), o.rescollbar(e), n.show() + }, r.full = function (e) { + var t, a = i("#" + l[0] + e); + o.record(a), l.html.attr("layer-full") || l.html.css("overflow", "hidden").attr("layer-full", e), clearTimeout(t), t = setTimeout(function () { + var t = "fixed" === a.css("position"); + r.style(e, { + top: t ? 0 : n.scrollTop(), + left: t ? 0 : n.scrollLeft(), + width: n.width(), + height: n.height() + }, !0), a.find(".layui-layer-min").hide() + }, 100) + }, r.title = function (e, t) { + var n = i("#" + l[0] + (t || r.index)).find(l[1]); + n.html(e) + }, r.close = function (e, t) { + var n = i("#" + l[0] + e), a = n.attr("type"), s = "layer-anim-close"; + if (n[0]) { + var f = "layui-layer-wrap", c = function () { + if (a === o.type[1] && "object" === n.attr("conType")) { + n.children(":not(." + l[5] + ")").remove(); + for (var r = n.find("." + f), s = 0; s < 2; s++) r.unwrap(); + r.css("display", r.data("display")).removeClass(f) + } else { + if (a === o.type[2]) try { + var c = i("#" + l[4] + e)[0]; + c.contentWindow.document.write(""), c.contentWindow.close(), n.find("." + l[5])[0].removeChild(c) + } catch (u) { + } + n[0].innerHTML = "", n.remove() + } + "function" == typeof o.end[e] && o.end[e](), delete o.end[e], "function" == typeof t && t() + }; + n.data("isOutAnim") && n.addClass("layer-anim " + s), i("#layui-layer-moves, #" + l.SHADE + e).remove(), 6 == r.ie && o.reselect(), o.rescollbar(e), n.attr("minLeft") && (o.minIndex--, o.minLeft.push(n.attr("minLeft"))), r.ie && r.ie < 10 || !n.data("isOutAnim") ? c() : setTimeout(function () { + c() + }, 200) + } + }, r.closeAll = function (e, t) { + "function" == typeof e && (t = e, e = null); + var n = i("." + l[0]); + i.each(n, function (a) { + var o = i(this), s = e ? o.attr("type") === e : 1; + s && r.close(o.attr("times"), a === n.length - 1 ? t : null), s = null + }), 0 === n.length && "function" == typeof t && t() + }; + var f = r.cache || {}, c = function (e) { + return f.skin ? " " + f.skin + " " + f.skin + "-" + e : "" + }; + r.prompt = function (e, t) { + var a = ""; + if (e = e || {}, "function" == typeof e && (t = e), e.area) { + var o = e.area; + a = 'style="width: ' + o[0] + "; height: " + o[1] + ';"', delete e.area + } + var s, l = 2 == e.formType ? '" : function () { + return '' + }(), f = e.success; + return delete e.success, r.open(i.extend({ + type: 1, + btn: ["确定", "取消"], + content: l, + skin: "layui-layer-prompt" + c("prompt"), + maxWidth: n.width(), + success: function (t) { + s = t.find(".layui-layer-input"), s.val(e.value || "").focus(), "function" == typeof f && f(t) + }, + resize: !1, + yes: function (i) { + var n = s.val(); + "" === n ? s.focus() : n.length > (e.maxlength || 500) ? r.tips("最多输入" + (e.maxlength || 500) + "个字数", s, {tips: 1}) : t && t(n, i, s) + } + }, e)) + }, r.tab = function (e) { + e = e || {}; + var t = e.tab || {}, n = "layui-this", a = e.success; + return delete e.success, r.open(i.extend({ + type: 1, + skin: "layui-layer-tab" + c("tab"), + resize: !1, + title: function () { + var e = t.length, i = 1, a = ""; + if (e > 0) for (a = '' + t[0].title + ""; i < e; i++) a += "" + t[i].title + ""; + return a + }(), + content: '
    ' + function () { + var e = t.length, i = 1, a = ""; + if (e > 0) for (a = '
  • ' + (t[0].content || "no content") + "
  • "; i < e; i++) a += '
  • ' + (t[i].content || "no content") + "
  • "; + return a + }() + "
", + success: function (t) { + var o = t.find(".layui-layer-title").children(), r = t.find(".layui-layer-tabmain").children(); + o.on("mousedown", function (t) { + t.stopPropagation ? t.stopPropagation() : t.cancelBubble = !0; + var a = i(this), o = a.index(); + a.addClass(n).siblings().removeClass(n), r.eq(o).show().siblings().hide(), "function" == typeof e.change && e.change(o) + }), "function" == typeof a && a(t) + } + }, e)) + }, r.photos = function (t, n, a) { + function o(e, t, i) { + var n = new Image; + return n.src = e, n.complete ? t(n) : (n.onload = function () { + n.onload = null, t(n) + }, void (n.onerror = function (e) { + n.onerror = null, i(e) + })) + } + + var s = {}; + if (t = t || {}, t.photos) { + var l = !("string" == typeof t.photos || t.photos instanceof i), f = l ? t.photos : {}, u = f.data || [], + d = f.start || 0; + s.imgIndex = (0 | d) + 1, t.img = t.img || "img"; + var y = t.success; + if (delete t.success, l) { + if (0 === u.length) return r.msg("没有图片") + } else { + var p = i(t.photos), h = function () { + u = [], p.find(t.img).each(function (e) { + var t = i(this); + t.attr("layer-index", e), u.push({ + alt: t.attr("alt"), + pid: t.attr("layer-pid"), + src: t.attr("layer-src") || t.attr("src"), + thumb: t.attr("src") + }) + }) + }; + if (h(), 0 === u.length) return; + if (n || p.on("click", t.img, function () { + h(); + var e = i(this), n = e.attr("layer-index"); + r.photos(i.extend(t, {photos: {start: n, data: u, tab: t.tab}, full: t.full}), !0) + }), !n) return + } + s.imgprev = function (e) { + s.imgIndex--, s.imgIndex < 1 && (s.imgIndex = u.length), s.tabimg(e) + }, s.imgnext = function (e, t) { + s.imgIndex++, s.imgIndex > u.length && (s.imgIndex = 1, t) || s.tabimg(e) + }, s.keyup = function (e) { + if (!s.end) { + var t = e.keyCode; + e.preventDefault(), 37 === t ? s.imgprev(!0) : 39 === t ? s.imgnext(!0) : 27 === t && r.close(s.index) + } + }, s.tabimg = function (e) { + if (!(u.length <= 1)) return f.start = s.imgIndex - 1, r.close(s.index), r.photos(t, !0, e) + }, s.event = function () { + s.bigimg.find(".layui-layer-imgprev").on("click", function (e) { + e.preventDefault(), s.imgprev(!0) + }), s.bigimg.find(".layui-layer-imgnext").on("click", function (e) { + e.preventDefault(), s.imgnext(!0) + }), i(document).on("keyup", s.keyup) + }, s.loadi = r.load(1, {shade: !("shade" in t) && .9, scrollbar: !1}), o(u[d].src, function (n) { + r.close(s.loadi), a && (t.anim = -1), s.index = r.open(i.extend({ + type: 1, + id: "layui-layer-photos", + area: function () { + var a = [n.width, n.height], o = [i(e).width() - 100, i(e).height() - 100]; + if (!t.full && (a[0] > o[0] || a[1] > o[1])) { + var r = [a[0] / o[0], a[1] / o[1]]; + r[0] > r[1] ? (a[0] = a[0] / r[0], a[1] = a[1] / r[0]) : r[0] < r[1] && (a[0] = a[0] / r[1], a[1] = a[1] / r[1]) + } + return [a[0] + "px", a[1] + "px"] + }(), + title: !1, + shade: .9, + shadeClose: !0, + closeBtn: !1, + move: ".layui-layer-phimg img", + moveType: 1, + scrollbar: !1, + moveOut: !0, + anim: 5, + isOutAnim: !1, + skin: "layui-layer-photos" + c("photos"), + content: '
' + (u[d].alt || ' + function () { + return u.length > 1 ? '
' + (u[d].alt || "") + "" + s.imgIndex + " / " + u.length + "
" : "" + }() + "
", + success: function (e, i) { + s.bigimg = e.find(".layui-layer-phimg"), s.imgsee = e.find(".layui-layer-imgbar"), s.event(e), t.tab && t.tab(u[d], e), "function" == typeof y && y(e) + }, + end: function () { + s.end = !0, i(document).off("keyup", s.keyup) + } + }, t)) + }, function () { + r.close(s.loadi), r.msg("当前图片地址异常
是否继续查看下一张?", { + time: 3e4, + btn: ["下一张", "不看了"], + yes: function () { + u.length > 1 && s.imgnext(!0, !0) + } + }) + }) + } + }, o.run = function (t) { + i = t, n = i(e), l.html = i("html"), r.open = function (e) { + var t = new s(e); + return t.index + } + }, e.layui && layui.define ? (r.ready(), layui.define("jquery", function (t) { + r.path = layui.cache.dir, o.run(layui.$), e.layer = r, t("layer", r) + })) : "function" == typeof define && define.amd ? define(["jquery"], function () { + return o.run(e.jQuery), r + }) : function () { + r.ready(), o.run(e.jQuery) + }() +}(window); +layui.define("jquery", function (e) { + "use strict"; + var t = layui.$, i = layui.hint(), n = { + fixbar: function (e) { + var i, n, r = "layui-fixbar", a = "layui-fixbar-top", o = t(document), l = t("body"); + e = t.extend({showHeight: 200}, e), e.bar1 = e.bar1 === !0 ? "" : e.bar1, e.bar2 = e.bar2 === !0 ? "" : e.bar2, e.bgcolor = e.bgcolor ? "background-color:" + e.bgcolor : ""; + var c = [e.bar1, e.bar2, ""], + g = t(['
    ', e.bar1 ? '
  • ' + c[0] + "
  • " : "", e.bar2 ? '
  • ' + c[1] + "
  • " : "", '
  • ' + c[2] + "
  • ", "
"].join("")), + u = g.find("." + a), s = function () { + var t = o.scrollTop(); + t >= e.showHeight ? i || (u.show(), i = 1) : i && (u.hide(), i = 0) + }; + t("." + r)[0] || ("object" == typeof e.css && g.css(e.css), l.append(g), s(), g.find("li").on("click", function () { + var i = t(this), n = i.attr("lay-type"); + "top" === n && t("html,body").animate({scrollTop: 0}, 200), e.click && e.click.call(this, n) + }), o.on("scroll", function () { + clearTimeout(n), n = setTimeout(function () { + s() + }, 100) + })) + }, countdown: function (e, t, i) { + var n = this, r = "function" == typeof t, a = new Date(e).getTime(), + o = new Date(!t || r ? (new Date).getTime() : t).getTime(), l = a - o, + c = [Math.floor(l / 864e5), Math.floor(l / 36e5) % 24, Math.floor(l / 6e4) % 60, Math.floor(l / 1e3) % 60]; + r && (i = t); + var g = setTimeout(function () { + n.countdown(e, o + 1e3, i) + }, 1e3); + return i && i(l > 0 ? c : [0, 0, 0, 0], t, g), l <= 0 && clearTimeout(g), g + }, timeAgo: function (e, t) { + var i = this, n = [[], []], r = (new Date).getTime() - new Date(e).getTime(); + return r > 26784e5 ? (r = new Date(e), n[0][0] = i.digit(r.getFullYear(), 4), n[0][1] = i.digit(r.getMonth() + 1), n[0][2] = i.digit(r.getDate()), t || (n[1][0] = i.digit(r.getHours()), n[1][1] = i.digit(r.getMinutes()), n[1][2] = i.digit(r.getSeconds())), n[0].join("-") + " " + n[1].join(":")) : r >= 864e5 ? (r / 1e3 / 60 / 60 / 24 | 0) + "\u5929\u524d" : r >= 36e5 ? (r / 1e3 / 60 / 60 | 0) + "\u5c0f\u65f6\u524d" : r >= 18e4 ? (r / 1e3 / 60 | 0) + "\u5206\u949f\u524d" : r < 0 ? "\u672a\u6765" : "\u521a\u521a" + }, digit: function (e, t) { + var i = ""; + e = String(e), t = t || 2; + for (var n = e.length; n < t; n++) i += "0"; + return e < Math.pow(10, t) ? i + (0 | e) : e + }, toDateString: function (e, t) { + if (null === e || "" === e) return ""; + var n = this, r = new Date(function () { + if (e) return isNaN(e) ? e : "string" == typeof e ? parseInt(e) : e + }() || new Date), a = [n.digit(r.getFullYear(), 4), n.digit(r.getMonth() + 1), n.digit(r.getDate())], + o = [n.digit(r.getHours()), n.digit(r.getMinutes()), n.digit(r.getSeconds())]; + return r.getDate() ? (t = t || "yyyy-MM-dd HH:mm:ss", t.replace(/yyyy/g, a[0]).replace(/MM/g, a[1]).replace(/dd/g, a[2]).replace(/HH/g, o[0]).replace(/mm/g, o[1]).replace(/ss/g, o[2])) : (i.error('Invalid Msec for "util.toDateString(Msec)"'), "") + }, escape: function (e) { + return String(e || "").replace(/&(?!#?[a-zA-Z0-9]+;)/g, "&").replace(//g, ">").replace(/'/g, "'").replace(/"/g, """) + }, unescape: function (e) { + return String(e || "").replace(/\&/g, "&").replace(/\</g, "<").replace(/\>/g, ">").replace(/\'/, "'").replace(/\"/, '"') + }, toVisibleArea: function (e) { + if (e = t.extend({margin: 160, duration: 200, type: "y"}, e), e.scrollElem[0] && e.thisElem[0]) { + var i = e.scrollElem, n = e.thisElem, r = "y" === e.type, a = r ? "scrollTop" : "scrollLeft", + o = r ? "top" : "left", l = i[a](), c = i[r ? "height" : "width"](), g = i.offset()[o], + u = n.offset()[o] - g, s = {}; + (u > c - e.margin || u < e.margin) && (s[a] = u - c / 2 + l, i.animate(s, e.duration)) + } + }, event: function (e, i, r) { + var a = t("body"); + return r = r || "click", i = n.event[e] = t.extend(!0, n.event[e], i) || {}, n.event.UTIL_EVENT_CALLBACK = n.event.UTIL_EVENT_CALLBACK || {}, a.off(r, "*[" + e + "]", n.event.UTIL_EVENT_CALLBACK[e]), n.event.UTIL_EVENT_CALLBACK[e] = function () { + var n = t(this), r = n.attr(e); + "function" == typeof i[r] && i[r].call(this, n) + }, a.on(r, "*[" + e + "]", n.event.UTIL_EVENT_CALLBACK[e]), i + } + }; + e("util", n) +}); +layui.define("jquery", function (t) { + "use strict"; + var i = layui.$, a = (layui.hint(), layui.device()), e = "element", l = "layui-this", n = "layui-show", + s = function () { + this.config = {} + }; + s.prototype.set = function (t) { + var a = this; + return i.extend(!0, a.config, t), a + }, s.prototype.on = function (t, i) { + return layui.onevent.call(this, e, t, i) + }, s.prototype.tabAdd = function (t, a) { + var e = ".layui-tab-title", l = i(".layui-tab[lay-filter=" + t + "]"), n = l.children(e), + s = n.children(".layui-tab-bar"), o = l.children(".layui-tab-content"), r = " 0 && t.unshift(""), t.join(" ") + }() + ">" + (a.title || "unnaming") + ""; + return s[0] ? s.before(r) : n.append(r), o.append('
' + (a.content || "") + "
"), b.hideTabMore(!0), b.tabAuto(), this + }, s.prototype.tabDelete = function (t, a) { + var e = ".layui-tab-title", l = i(".layui-tab[lay-filter=" + t + "]"), n = l.children(e), + s = n.find('>li[lay-id="' + a + '"]'); + return b.tabDelete(null, s), this + }, s.prototype.tabChange = function (t, a) { + var e = ".layui-tab-title", l = i(".layui-tab[lay-filter=" + t + "]"), n = l.children(e), + s = n.find('>li[lay-id="' + a + '"]'); + return b.tabClick.call(s[0], null, null, s), this + }, s.prototype.tab = function (t) { + t = t || {}, m.on("click", t.headerElem, function (a) { + var e = i(this).index(); + b.tabClick.call(this, a, e, null, t) + }) + }, s.prototype.progress = function (t, a) { + var e = "layui-progress", l = i("." + e + "[lay-filter=" + t + "]"), n = l.find("." + e + "-bar"), + s = n.find("." + e + "-text"); + return n.css("width", a).attr("lay-percent", a), s.text(a), this + }; + var o = ".layui-nav", r = "layui-nav-item", c = "layui-nav-bar", u = "layui-nav-tree", y = "layui-nav-child", + d = "layui-nav-child-c", f = "layui-nav-more", h = "layui-icon-down", p = "layui-anim layui-anim-upbit", b = { + tabClick: function (t, a, s, o) { + o = o || {}; + var r = s || i(this), a = a || r.parent().children("li").index(r), + c = o.headerElem ? r.parent() : r.parents(".layui-tab").eq(0), + u = o.bodyElem ? i(o.bodyElem) : c.children(".layui-tab-content").children(".layui-tab-item"), + y = r.find("a"), d = "javascript:;" !== y.attr("href") && "_blank" === y.attr("target"), + f = "string" == typeof r.attr("lay-unselect"), h = c.attr("lay-filter"); + d || f || (r.addClass(l).siblings().removeClass(l), u.eq(a).addClass(n).siblings().removeClass(n)), layui.event.call(this, e, "tab(" + h + ")", { + elem: c, + index: a + }) + }, tabDelete: function (t, a) { + var n = a || i(this).parent(), s = n.index(), o = n.parents(".layui-tab").eq(0), + r = o.children(".layui-tab-content").children(".layui-tab-item"), c = o.attr("lay-filter"); + n.hasClass(l) && (n.next()[0] ? b.tabClick.call(n.next()[0], null, s + 1) : n.prev()[0] && b.tabClick.call(n.prev()[0], null, s - 1)), n.remove(), r.eq(s).remove(), setTimeout(function () { + b.tabAuto() + }, 50), layui.event.call(this, e, "tabDelete(" + c + ")", {elem: o, index: s}) + }, tabAuto: function () { + var t = "layui-tab-more", e = "layui-tab-bar", l = "layui-tab-close", n = this; + i(".layui-tab").each(function () { + var s = i(this), o = s.children(".layui-tab-title"), + r = (s.children(".layui-tab-content").children(".layui-tab-item"), 'lay-stope="tabmore"'), + c = i(''); + if (n === window && 8 != a.ie && b.hideTabMore(!0), s.attr("lay-allowClose") && o.find("li").each(function () { + var t = i(this); + if (!t.find("." + l)[0]) { + var a = i(''); + a.on("click", b.tabDelete), t.append(a) + } + }), "string" != typeof s.attr("lay-unauto")) if (o.prop("scrollWidth") > o.outerWidth() + 1) { + if (o.find("." + e)[0]) return; + o.append(c), s.attr("overflow", ""), c.on("click", function (i) { + o[this.title ? "removeClass" : "addClass"](t), this.title = this.title ? "" : "\u6536\u7f29" + }) + } else o.find("." + e).remove(), s.removeAttr("overflow") + }) + }, hideTabMore: function (t) { + var a = i(".layui-tab-title"); + t !== !0 && "tabmore" === i(t.target).attr("lay-stope") || (a.removeClass("layui-tab-more"), a.find(".layui-tab-bar").attr("title", "")) + }, clickThis: function () { + var t = i(this), a = t.parents(o), n = a.attr("lay-filter"), s = t.parent(), c = t.siblings("." + y), + d = "string" == typeof s.attr("lay-unselect"); + "javascript:;" !== t.attr("href") && "_blank" === t.attr("target") || d || c[0] || (a.find("." + l).removeClass(l), s.addClass(l)), a.hasClass(u) && (c.removeClass(p), c[0] && (s["none" === c.css("display") ? "addClass" : "removeClass"](r + "ed"), "all" === a.attr("lay-shrink") && s.siblings().removeClass(r + "ed"))), layui.event.call(this, e, "nav(" + n + ")", t) + }, collapse: function () { + var t = i(this), a = t.find(".layui-colla-icon"), l = t.siblings(".layui-colla-content"), + s = t.parents(".layui-collapse").eq(0), o = s.attr("lay-filter"), r = "none" === l.css("display"); + if ("string" == typeof s.attr("lay-accordion")) { + var c = s.children(".layui-colla-item").children("." + n); + c.siblings(".layui-colla-title").children(".layui-colla-icon").html(""), c.removeClass(n) + } + l[r ? "addClass" : "removeClass"](n), a.html(r ? "" : ""), layui.event.call(this, e, "collapse(" + o + ")", { + title: t, + content: l, + show: r + }) + } + }; + s.prototype.init = function (t, e) { + var l = function () { + return e ? '[lay-filter="' + e + '"]' : "" + }(), s = { + tab: function () { + b.tabAuto.call({}) + }, nav: function () { + var t = 200, e = {}, s = {}, v = {}, m = "layui-nav-title", C = function (l, o, r) { + var c = i(this), h = c.find("." + y); + if (o.hasClass(u)) { + if (!h[0]) { + var b = c.children("." + m); + l.css({ + top: c.offset().top - o.offset().top, + height: (b[0] ? b : c).outerHeight(), + opacity: 1 + }) + } + } else h.addClass(p), h.hasClass(d) && h.css({left: -(h.outerWidth() - c.width()) / 2}), h[0] ? l.css({ + left: l.position().left + l.width() / 2, + width: 0, + opacity: 0 + }) : l.css({ + left: c.position().left + parseFloat(c.css("marginLeft")), + top: c.position().top + c.height() - l.height() + }), e[r] = setTimeout(function () { + l.css({width: h[0] ? 0 : c.width(), opacity: h[0] ? 0 : 1}) + }, a.ie && a.ie < 10 ? 0 : t), clearTimeout(v[r]), "block" === h.css("display") && clearTimeout(s[r]), s[r] = setTimeout(function () { + h.addClass(n), c.find("." + f).addClass(f + "d") + }, 300) + }; + i(o + l).each(function (a) { + var l = i(this), o = i(''), d = l.find("." + r); + l.find("." + c)[0] || (l.append(o), (l.hasClass(u) ? d.find("dd,>." + m) : d).on("mouseenter", function () { + C.call(this, o, l, a) + }).on("mouseleave", function () { + l.hasClass(u) ? o.css({ + height: 0, + opacity: 0 + }) : (clearTimeout(s[a]), s[a] = setTimeout(function () { + l.find("." + y).removeClass(n), l.find("." + f).removeClass(f + "d") + }, 300)) + }), l.on("mouseleave", function () { + clearTimeout(e[a]), v[a] = setTimeout(function () { + l.hasClass(u) || o.css({width: 0, left: o.position().left + o.width() / 2, opacity: 0}) + }, t) + })), d.find("a").each(function () { + var t = i(this), a = (t.parent(), t.siblings("." + y)); + a[0] && !t.children("." + f)[0] && t.append(''), t.off("click", b.clickThis).on("click", b.clickThis) + }) + }) + }, breadcrumb: function () { + var t = ".layui-breadcrumb"; + i(t + l).each(function () { + var t = i(this), a = "lay-separator", e = t.attr(a) || "/", l = t.find("a"); + l.next("span[" + a + "]")[0] || (l.each(function (t) { + t !== l.length - 1 && i(this).after("" + e + "") + }), t.css("visibility", "visible")) + }) + }, progress: function () { + var t = "layui-progress"; + i("." + t + l).each(function () { + var a = i(this), e = a.find(".layui-progress-bar"), l = e.attr("lay-percent"); + e.css("width", function () { + return /^.+\/.+$/.test(l) ? 100 * new Function("return " + l)() + "%" : l + }()), a.attr("lay-showPercent") && setTimeout(function () { + e.html('' + l + "") + }, 350) + }) + }, collapse: function () { + var t = "layui-collapse"; + i("." + t + l).each(function () { + var t = i(this).find(".layui-colla-item"); + t.each(function () { + var t = i(this), a = t.find(".layui-colla-title"), e = t.find(".layui-colla-content"), + l = "none" === e.css("display"); + a.find(".layui-colla-icon").remove(), a.append('' + (l ? "" : "") + ""), a.off("click", b.collapse).on("click", b.collapse) + }) + }) + } + }; + return s[t] ? s[t]() : layui.each(s, function (t, i) { + i() + }) + }, s.prototype.render = s.prototype.init; + var v = new s, m = i(document); + i(function () { + v.render() + }); + var C = ".layui-tab-title li"; + m.on("click", C, b.tabClick), m.on("click", b.hideTabMore), i(window).on("resize", b.tabAuto), t(e, v) +}); +layui.define("layer", function (e) { + "use strict"; + var t = layui.$, i = layui.layer, n = layui.hint(), o = layui.device(), a = { + config: {}, set: function (e) { + var i = this; + return i.config = t.extend({}, i.config, e), i + }, on: function (e, t) { + return layui.onevent.call(this, r, e, t) + } + }, l = function () { + var e = this; + return { + upload: function (t) { + e.upload.call(e, t) + }, reload: function (t) { + e.reload.call(e, t) + }, config: e.config + } + }, r = "upload", u = "layui-upload-file", c = "layui-upload-form", f = "layui-upload-iframe", + s = "layui-upload-choose", p = function (e) { + var i = this; + i.config = t.extend({}, i.config, a.config, e), i.render() + }; + p.prototype.config = { + accept: "images", + exts: "", + auto: !0, + bindAction: "", + url: "", + field: "file", + acceptMime: "", + method: "post", + data: {}, + drag: !0, + size: 0, + number: 0, + multiple: !1 + }, p.prototype.render = function (e) { + var i = this, e = i.config; + e.elem = t(e.elem), e.bindAction = t(e.bindAction), i.file(), i.events() + }, p.prototype.file = function () { + var e = this, i = e.config, + n = e.elemFile = t(['"].join("")), + a = i.elem.next(); + (a.hasClass(u) || a.hasClass(c)) && a.remove(), o.ie && o.ie < 10 && i.elem.wrap('
'), e.isFile() ? (e.elemFile = i.elem, i.field = i.elem[0].name) : i.elem.after(n), o.ie && o.ie < 10 && e.initIE() + }, p.prototype.initIE = function () { + var e = this, i = e.config, + n = t(''), + o = t(['
', ""].join("")); + t("#" + f)[0] || t("body").append(n), i.elem.next().hasClass(c) || (e.elemFile.wrap(o), i.elem.next("." + c).append(function () { + var e = []; + return layui.each(i.data, function (t, i) { + i = "function" == typeof i ? i() : i, e.push('') + }), e.join("") + }())) + }, p.prototype.msg = function (e) { + return i.msg(e, {icon: 2, shift: 6}) + }, p.prototype.isFile = function () { + var e = this.config.elem[0]; + if (e) return "input" === e.tagName.toLocaleLowerCase() && "file" === e.type + }, p.prototype.preview = function (e) { + var t = this; + window.FileReader && layui.each(t.chooseFiles, function (t, i) { + var n = new FileReader; + n.readAsDataURL(i), n.onload = function () { + e && e(t, i, this.result) + } + }) + }, p.prototype.upload = function (e, i) { + var n, a = this, l = a.config, r = a.elemFile[0], u = function () { + var i = 0, n = 0, o = e || a.files || a.chooseFiles || r.files, u = function () { + l.multiple && i + n === a.fileLength && "function" == typeof l.allDone && l.allDone({ + total: a.fileLength, + successful: i, + aborted: n + }) + }; + layui.each(o, function (e, o) { + var r = new FormData; + r.append(l.field, o), layui.each(l.data, function (e, t) { + t = "function" == typeof t ? t() : t, r.append(e, t) + }); + var c = { + url: l.url, + type: "post", + data: r, + contentType: !1, + processData: !1, + dataType: "json", + headers: l.headers || {}, + success: function (t) { + i++, d(e, t), u() + }, + error: function () { + n++, a.msg("\u8bf7\u6c42\u4e0a\u4f20\u63a5\u53e3\u51fa\u73b0\u5f02\u5e38"), m(e), u() + } + }; + "function" == typeof l.progress && (c.xhr = function () { + var i = t.ajaxSettings.xhr(); + return i.upload.addEventListener("progress", function (t) { + if (t.lengthComputable) { + var i = Math.floor(t.loaded / t.total * 100); + l.progress(i, l.item ? l.item[0] : l.elem[0], t, e) + } + }), i + }), t.ajax(c) + }) + }, c = function () { + var e = t("#" + f); + a.elemFile.parent().submit(), clearInterval(p.timer), p.timer = setInterval(function () { + var t, i = e.contents().find("body"); + try { + t = i.text() + } catch (n) { + a.msg("\u83b7\u53d6\u4e0a\u4f20\u540e\u7684\u54cd\u5e94\u4fe1\u606f\u51fa\u73b0\u5f02\u5e38"), clearInterval(p.timer), m() + } + t && (clearInterval(p.timer), i.html(""), d(0, t)) + }, 30) + }, d = function (e, t) { + if (a.elemFile.next("." + s).remove(), r.value = "", "object" != typeof t) try { + t = JSON.parse(t) + } catch (i) { + return t = {}, a.msg("\u8bf7\u5bf9\u4e0a\u4f20\u63a5\u53e3\u8fd4\u56de\u6709\u6548JSON") + } + "function" == typeof l.done && l.done(t, e || 0, function (e) { + a.upload(e) + }) + }, m = function (e) { + l.auto && (r.value = ""), "function" == typeof l.error && l.error(e || 0, function (e) { + a.upload(e) + }) + }, h = l.exts, v = function () { + var t = []; + return layui.each(e || a.chooseFiles, function (e, i) { + t.push(i.name) + }), t + }(), g = { + preview: function (e) { + a.preview(e) + }, upload: function (e, t) { + var i = {}; + i[e] = t, a.upload(i) + }, pushFile: function () { + return a.files = a.files || {}, layui.each(a.chooseFiles, function (e, t) { + a.files[e] = t + }), a.files + }, resetFile: function (e, t, i) { + var n = new File([t], i); + a.files = a.files || {}, a.files[e] = n + } + }, y = function () { + if (!(("choose" === i || l.auto) && (l.choose && l.choose(g), "choose" === i) || l.before && l.before(g) === !1)) return o.ie ? o.ie > 9 ? u() : c() : void u() + }; + if (v = 0 === v.length ? r.value.match(/[^\/\\]+\..+/g) || [] || "" : v, 0 !== v.length) { + switch (l.accept) { + case"file": + if (h && !RegExp("\\w\\.(" + h + ")$", "i").test(escape(v))) return a.msg("\u9009\u62e9\u7684\u6587\u4ef6\u4e2d\u5305\u542b\u4e0d\u652f\u6301\u7684\u683c\u5f0f"), r.value = ""; + break; + case"video": + if (!RegExp("\\w\\.(" + (h || "avi|mp4|wma|rmvb|rm|flash|3gp|flv") + ")$", "i").test(escape(v))) return a.msg("\u9009\u62e9\u7684\u89c6\u9891\u4e2d\u5305\u542b\u4e0d\u652f\u6301\u7684\u683c\u5f0f"), r.value = ""; + break; + case"audio": + if (!RegExp("\\w\\.(" + (h || "mp3|wav|mid") + ")$", "i").test(escape(v))) return a.msg("\u9009\u62e9\u7684\u97f3\u9891\u4e2d\u5305\u542b\u4e0d\u652f\u6301\u7684\u683c\u5f0f"), r.value = ""; + break; + default: + if (layui.each(v, function (e, t) { + RegExp("\\w\\.(" + (h || "jpg|png|gif|bmp|jpeg$") + ")", "i").test(escape(t)) || (n = !0) + }), n) return a.msg("\u9009\u62e9\u7684\u56fe\u7247\u4e2d\u5305\u542b\u4e0d\u652f\u6301\u7684\u683c\u5f0f"), r.value = "" + } + if (a.fileLength = function () { + var t = 0, i = e || a.files || a.chooseFiles || r.files; + return layui.each(i, function () { + t++ + }), t + }(), l.number && a.fileLength > l.number) return a.msg("\u540c\u65f6\u6700\u591a\u53ea\u80fd\u4e0a\u4f20\u7684\u6570\u91cf\u4e3a\uff1a" + l.number); + if (l.size > 0 && !(o.ie && o.ie < 10)) { + var F; + if (layui.each(a.chooseFiles, function (e, t) { + if (t.size > 1024 * l.size) { + var i = l.size / 1024; + i = i >= 1 ? i.toFixed(2) + "MB" : l.size + "KB", r.value = "", F = i + } + }), F) return a.msg("\u6587\u4ef6\u4e0d\u80fd\u8d85\u8fc7" + F) + } + y() + } + }, p.prototype.reload = function (e) { + e = e || {}, delete e.elem, delete e.bindAction; + var i = this, e = i.config = t.extend({}, i.config, a.config, e), n = e.elem.next(); + n.attr({name: e.name, accept: e.acceptMime, multiple: e.multiple}) + }, p.prototype.events = function () { + var e = this, i = e.config, a = function (t) { + e.chooseFiles = {}, layui.each(t, function (t, i) { + var n = (new Date).getTime(); + e.chooseFiles[n + "-" + t] = i + }) + }, l = function (t, n) { + var o = e.elemFile, + a = (i.item ? i.item : i.elem, t.length > 1 ? t.length + "\u4e2a\u6587\u4ef6" : (t[0] || {}).name || o[0].value.match(/[^\/\\]+\..+/g) || [] || ""); + o.next().hasClass(s) && o.next().remove(), e.upload(null, "choose"), e.isFile() || i.choose || o.after('' + a + "") + }; + i.elem.off("upload.start").on("upload.start", function () { + var o = t(this), a = o.attr("lay-data"); + if (a) try { + a = new Function("return " + a)(), e.config = t.extend({}, i, a) + } catch (l) { + n.error("Upload element property lay-data configuration item has a syntax error: " + a) + } + e.config.item = o, e.elemFile[0].click() + }), o.ie && o.ie < 10 || i.elem.off("upload.over").on("upload.over", function () { + var e = t(this); + e.attr("lay-over", "") + }).off("upload.leave").on("upload.leave", function () { + var e = t(this); + e.removeAttr("lay-over") + }).off("upload.drop").on("upload.drop", function (n, o) { + var r = t(this), u = o.originalEvent.dataTransfer.files || []; + r.removeAttr("lay-over"), a(u), i.auto ? e.upload(u) : l(u) + }), e.elemFile.off("upload.change").on("upload.change", function () { + var t = this.files || []; + a(t), i.auto ? e.upload() : l(t) + }), i.bindAction.off("upload.action").on("upload.action", function () { + e.upload() + }), i.elem.data("haveEvents") || (e.elemFile.on("change", function () { + t(this).trigger("upload.change") + }), i.elem.on("click", function () { + e.isFile() || t(this).trigger("upload.start") + }), i.drag && i.elem.on("dragover", function (e) { + e.preventDefault(), t(this).trigger("upload.over") + }).on("dragleave", function (e) { + t(this).trigger("upload.leave") + }).on("drop", function (e) { + e.preventDefault(), t(this).trigger("upload.drop", e) + }), i.bindAction.on("click", function () { + t(this).trigger("upload.action") + }), i.elem.data("haveEvents", !0)) + }, a.render = function (e) { + var t = new p(e); + return l.call(t) + }, e(r, a) +}); +layui.define(["jquery", "laytpl", "lay"], function (e) { + "use strict"; + var i = layui.$, n = layui.laytpl, t = layui.hint(), a = layui.device(), l = a.mobile ? "click" : "mousedown", + r = "dropdown", o = "layui_" + r + "_index", u = { + config: {}, index: layui[r] ? layui[r].index + 1e4 : 0, set: function (e) { + var n = this; + return n.config = i.extend({}, n.config, e), n + }, on: function (e, i) { + return layui.onevent.call(this, r, e, i) + } + }, d = function () { + var e = this, i = e.config, n = i.id; + return d.that[n] = e, { + config: i, reload: function (i) { + e.reload.call(e, i) + } + } + }, s = "layui-dropdown", m = "layui-menu-item-up", c = "layui-menu-item-down", p = "layui-menu-body-title", + y = "layui-menu-item-group", f = "layui-menu-item-parent", v = "layui-menu-item-divider", + g = "layui-menu-item-checked", h = "layui-menu-item-checked2", w = "layui-menu-body-panel", + C = "layui-menu-body-panel-left", V = "." + y + ">." + p, k = function (e) { + var n = this; + n.index = ++u.index, n.config = i.extend({}, n.config, u.config, e), n.init() + }; + k.prototype.config = { + trigger: "click", + content: "", + className: "", + style: "", + show: !1, + isAllowSpread: !0, + isSpreadItem: !0, + data: [], + delay: 300 + }, k.prototype.reload = function (e) { + var n = this; + n.config = i.extend({}, n.config, e), n.init(!0) + }, k.prototype.init = function (e) { + var n = this, t = n.config, a = t.elem = i(t.elem); + if (a.length > 1) return layui.each(a, function () { + u.render(i.extend({}, t, {elem: this})) + }), n; + if (!e && a[0] && a.data(o)) { + var l = d.getThis(a.data(o)); + if (!l) return; + return l.reload(t) + } + t.id = "id" in t ? t.id : n.index, t.show && n.render(e), n.events() + }, k.prototype.render = function (e) { + var t = this, a = t.config, r = i("body"), s = function () { + var e = i('
    '); + return a.data.length > 0 ? m(e, a.data) : e.html('
  • no menu
  • '), e + }, m = function (e, t) { + return layui.each(t, function (t, l) { + var r = l.child && l.child.length > 0, o = "isSpreadItem" in l ? l.isSpreadItem : a.isSpreadItem, + u = l.templet ? n(l.templet).render(l) : a.templet ? n(a.templet).render(l) : l.title, + d = function () { + return r && (l.type = l.type || "parent"), l.type ? { + group: "group", + parent: "parent", + "-": "-" + }[l.type] || "parent" : "" + }(); + if ("-" === d || l.title || l.id || r) { + var s = i(["", function () { + var e = "href" in l ? '' + u + "" : u; + return r ? '
    ' + e + function () { + return "parent" === d ? '' : "group" === d && a.isAllowSpread ? '' : "" + }() + "
    " : '
    ' + e + "
    " + }(), ""].join("")); + if (s.data("item", l), r) { + var c = i('
    '), y = i("
      "); + "parent" === d ? (c.append(m(y, l.child)), s.append(c)) : s.append(m(y, l.child)) + } + e.append(s) + } + }), e + }, + c = ['
      ', "
      "].join(""); + ("contextmenu" === a.trigger || lay.isTopElem(a.elem[0])) && (e = !0), !e && a.elem.data(o + "_opened") || (t.elemView = i(c), t.elemView.append(a.content || s()), a.className && t.elemView.addClass(a.className), a.style && t.elemView.attr("style", a.style), u.thisId = a.id, t.remove(), r.append(t.elemView), a.elem.data(o + "_opened", !0), t.position(), d.prevElem = t.elemView, d.prevElem.data("prevElem", a.elem), t.elemView.find(".layui-menu").on(l, function (e) { + layui.stope(e) + }), t.elemView.find(".layui-menu li").on("click", function (e) { + var n = i(this), l = n.data("item") || {}, r = l.child && l.child.length > 0; + r || "-" === l.type || (t.remove(), "function" == typeof a.click && a.click(l, n)) + }), t.elemView.find(V).on("click", function (e) { + var n = i(this), t = n.parent(), l = t.data("item") || {}; + "group" === l.type && a.isAllowSpread && d.spread(t) + }), "mouseenter" === a.trigger && t.elemView.on("mouseenter", function () { + clearTimeout(d.timer) + }).on("mouseleave", function () { + t.delayRemove() + })) + }, k.prototype.position = function (e) { + var i = this, n = i.config; + lay.position(n.elem[0], i.elemView[0], { + position: n.position, + e: i.e, + clickType: "contextmenu" === n.trigger ? "right" : null, + align: n.align || null + }) + }, k.prototype.remove = function () { + var e = this, i = (e.config, d.prevElem); + i && (i.data("prevElem") && i.data("prevElem").data(o + "_opened", !1), i.remove()) + }, k.prototype.delayRemove = function () { + var e = this, i = e.config; + clearTimeout(d.timer), d.timer = setTimeout(function () { + e.remove() + }, i.delay) + }, k.prototype.events = function () { + var e = this, i = e.config; + "hover" === i.trigger && (i.trigger = "mouseenter"), e.prevElem && e.prevElem.off(i.trigger, e.prevElemCallback), e.prevElem = i.elem, e.prevElemCallback = function (n) { + clearTimeout(d.timer), e.e = n, e.render(), n.preventDefault(), "function" == typeof i.ready && i.ready(e.elemView, i.elem, e.e.target) + }, i.elem.on(i.trigger, e.prevElemCallback), "mouseenter" === i.trigger && i.elem.on("mouseleave", function () { + e.delayRemove() + }) + }, d.that = {}, d.getThis = function (e) { + var i = d.that[e]; + return i || t.error(e ? r + " instance with ID '" + e + "' not found" : "ID argument required"), i + }, d.spread = function (e) { + var i = e.children("." + p).find(".layui-icon"); + e.hasClass(m) ? (e.removeClass(m).addClass(c), i.removeClass("layui-icon-down").addClass("layui-icon-up")) : (e.removeClass(c).addClass(m), i.removeClass("layui-icon-up").addClass("layui-icon-down")) + }, !function () { + var e = i(window), n = i(document); + e.on("resize", function () { + if (u.thisId) { + var e = d.getThis(u.thisId); + if (e) { + if (!e.elemView[0] || !i("." + s)[0]) return !1; + var n = e.config; + "contextmenu" === n.trigger ? e.remove() : e.position() + } + } + }), n.on(l, function (e) { + if (u.thisId) { + var i = d.getThis(u.thisId); + if (i) { + var n = i.config; + !lay.isTopElem(n.elem[0]) && "contextmenu" !== n.trigger && (e.target === n.elem[0] || n.elem.find(e.target)[0] || e.target === i.elemView[0] || i.elemView && i.elemView.find(e.target)[0]) || i.remove() + } + } + }); + var t = ".layui-menu:not(.layui-dropdown-menu) li"; + n.on("click", t, function (e) { + var n = i(this), t = n.parents(".layui-menu").eq(0), a = n.hasClass(y) || n.hasClass(f), + l = t.attr("lay-filter") || t.attr("id"), o = lay.options(this); + n.hasClass(v) || a || (t.find("." + g).removeClass(g), t.find("." + h).removeClass(h), n.addClass(g), n.parents("." + f).addClass(h), layui.event.call(this, r, "click(" + l + ")", o)) + }), n.on("click", t + V, function (e) { + var n = i(this), t = n.parents("." + y + ":eq(0)"), a = lay.options(t[0]); + "isAllowSpread" in a && !a.isAllowSpread || d.spread(t) + }); + var a = ".layui-menu ." + f; + n.on("mouseenter", a, function (n) { + var t = i(this), a = t.find("." + w); + if (a[0]) { + var l = a[0].getBoundingClientRect(); + l.right > e.width() && (a.addClass(C), l = a[0].getBoundingClientRect(), l.left < 0 && a.removeClass(C)), l.bottom > e.height() && a.eq(0).css("margin-top", -(l.bottom - e.height())) + } + }).on("mouseleave", a, function (e) { + var n = i(this), t = n.children("." + w); + t.removeClass(C), t.css("margin-top", 0) + }) + }(), u.reload = function (e, i) { + var n = d.getThis(e); + return n ? (n.reload(i), d.call(n)) : this + }, u.render = function (e) { + var i = new k(e); + return d.call(i) + }, e(r, u) +}); +layui.define("jquery", function (e) { + "use strict"; + var i = layui.jquery, t = { + config: {}, index: layui.slider ? layui.slider.index + 1e4 : 0, set: function (e) { + var t = this; + return t.config = i.extend({}, t.config, e), t + }, on: function (e, i) { + return layui.onevent.call(this, n, e, i) + } + }, a = function () { + var e = this, i = e.config; + return { + setValue: function (t, a) { + return i.value = t, e.slide("set", t, a || 0) + }, config: i + } + }, n = "slider", l = "layui-disabled", s = "layui-slider", r = "layui-slider-bar", o = "layui-slider-wrap", + u = "layui-slider-wrap-btn", d = "layui-slider-tips", v = "layui-slider-input", c = "layui-slider-input-txt", + p = "layui-slider-input-btn", m = "layui-slider-hover", f = function (e) { + var a = this; + a.index = ++t.index, a.config = i.extend({}, a.config, t.config, e), a.render() + }; + f.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" + }, f.prototype.render = function () { + var e = this, t = e.config; + if (t.step < 1 && (t.step = 1), t.max < t.min && (t.max = t.min + t.step), t.range) { + t.value = "object" == typeof t.value ? t.value : [t.min, t.value]; + var a = Math.min(t.value[0], t.value[1]), n = Math.max(t.value[0], t.value[1]); + t.value[0] = a > t.min ? a : t.min, t.value[1] = n > t.min ? n : t.min, t.value[0] = t.value[0] > t.max ? t.max : t.value[0], t.value[1] = t.value[1] > t.max ? t.max : t.value[1]; + var r = Math.floor((t.value[0] - t.min) / (t.max - t.min) * 100), + v = Math.floor((t.value[1] - t.min) / (t.max - t.min) * 100), p = v - r + "%"; + r += "%", v += "%" + } else { + "object" == typeof t.value && (t.value = Math.min.apply(null, t.value)), t.value < t.min && (t.value = t.min), t.value > t.max && (t.value = t.max); + var p = Math.floor((t.value - t.min) / (t.max - t.min) * 100) + "%" + } + var m = t.disabled ? "#c2c2c2" : t.theme, + f = '
      ' + (t.tips ? '
      ' : "") + '
      ' + (t.range ? '
      ' : "") + "
      ", + h = i(t.elem), y = h.next("." + s); + if (y[0] && y.remove(), e.elemTemp = i(f), t.range ? (e.elemTemp.find("." + o).eq(0).data("value", t.value[0]), e.elemTemp.find("." + o).eq(1).data("value", t.value[1])) : e.elemTemp.find("." + o).data("value", t.value), h.html(e.elemTemp), "vertical" === t.type && e.elemTemp.height(t.height + "px"), t.showstep) { + for (var g = (t.max - t.min) / t.step, b = "", x = 1; x < g + 1; x++) { + var T = 100 * x / g; + T < 100 && (b += '
      ') + } + e.elemTemp.append(b) + } + if (t.input && !t.range) { + var w = i('
      '); + h.css("position", "relative"), h.append(w), h.find("." + c).children("input").val(t.value), "vertical" === t.type ? w.css({ + left: 0, + top: -48 + }) : e.elemTemp.css("margin-right", w.outerWidth() + 15) + } + t.disabled ? (e.elemTemp.addClass(l), e.elemTemp.find("." + u).addClass(l)) : e.slide(), e.elemTemp.find("." + u).on("mouseover", function () { + var a = "vertical" === t.type ? t.height : e.elemTemp[0].offsetWidth, n = e.elemTemp.find("." + o), + l = "vertical" === t.type ? a - i(this).parent()[0].offsetTop - n.height() : i(this).parent()[0].offsetLeft, + s = l / a * 100, r = i(this).parent().data("value"), u = t.setTips ? t.setTips(r) : r; + e.elemTemp.find("." + d).html(u), "vertical" === t.type ? e.elemTemp.find("." + d).css({ + bottom: s + "%", + "margin-bottom": "20px", + display: "inline-block" + }) : e.elemTemp.find("." + d).css({left: s + "%", display: "inline-block"}) + }).on("mouseout", function () { + e.elemTemp.find("." + d).css("display", "none") + }) + }, f.prototype.slide = function (e, t, a) { + var n = this, l = n.config, s = n.elemTemp, f = function () { + return "vertical" === l.type ? l.height : s[0].offsetWidth + }, h = s.find("." + o), y = s.next("." + v), g = y.children("." + c).children("input").val(), + b = 100 / ((l.max - l.min) / Math.ceil(l.step)), x = function (e, i) { + e = Math.ceil(e) * b > 100 ? Math.ceil(e) * b : Math.round(e) * b, e = e > 100 ? 100 : e, h.eq(i).css("vertical" === l.type ? "bottom" : "left", e + "%"); + var t = T(h[0].offsetLeft), a = l.range ? T(h[1].offsetLeft) : 0; + "vertical" === l.type ? (s.find("." + d).css({ + bottom: e + "%", + "margin-bottom": "20px" + }), t = T(f() - h[0].offsetTop - h.height()), a = l.range ? T(f() - h[1].offsetTop - h.height()) : 0) : s.find("." + d).css("left", e + "%"), t = t > 100 ? 100 : t, a = a > 100 ? 100 : a; + var n = Math.min(t, a), o = Math.abs(t - a); + "vertical" === l.type ? s.find("." + r).css({ + height: o + "%", + bottom: n + "%" + }) : s.find("." + r).css({width: o + "%", left: n + "%"}); + var u = l.min + Math.round((l.max - l.min) * e / 100); + if (g = u, y.children("." + c).children("input").val(g), h.eq(i).data("value", u), s.find("." + d).html(l.setTips ? l.setTips(u) : u), l.range) { + var v = [h.eq(0).data("value"), h.eq(1).data("value")]; + v[0] > v[1] && v.reverse() + } + l.change && l.change(l.range ? v : u) + }, T = function (e) { + var i = e / f() * 100 / b, t = Math.round(i) * b; + return e == f() && (t = Math.ceil(i) * b), t + }, w = i(['
      f() && (r = f()); + var o = r / f() * 100 / b; + x(o, e), t.addClass(m), s.find("." + d).show(), i.preventDefault() + }, o = function () { + t.removeClass(m), s.find("." + d).hide() + }; + M(r, o) + }) + }), s.on("click", function (e) { + var t = i("." + u); + if (!t.is(event.target) && 0 === t.has(event.target).length && t.length) { + var a, + n = "vertical" === l.type ? f() - e.clientY + i(this).offset().top : e.clientX - i(this).offset().left; + n < 0 && (n = 0), n > f() && (n = f()); + var s = n / f() * 100 / b; + a = l.range ? "vertical" === l.type ? Math.abs(n - parseInt(i(h[0]).css("bottom"))) > Math.abs(n - parseInt(i(h[1]).css("bottom"))) ? 1 : 0 : Math.abs(n - h[0].offsetLeft) > Math.abs(n - h[1].offsetLeft) ? 1 : 0 : 0, x(s, a), e.preventDefault() + } + }), y.children("." + p).children("i").each(function (e) { + i(this).on("click", function () { + g = y.children("." + c).children("input").val(), g = 1 == e ? g - l.step < l.min ? l.min : Number(g) - l.step : Number(g) + l.step > l.max ? l.max : Number(g) + l.step; + var i = (g - l.min) / (l.max - l.min) * 100 / b; + x(i, 0) + }) + }); + var q = function () { + var e = this.value; + e = isNaN(e) ? 0 : e, e = e < l.min ? l.min : e, e = e > l.max ? l.max : e, this.value = e; + var i = (e - l.min) / (l.max - l.min) * 100 / b; + x(i, 0) + }; + y.children("." + c).children("input").on("keydown", function (e) { + 13 === e.keyCode && (e.preventDefault(), q.call(this)) + }).on("change", q) + }, f.prototype.events = function () { + var e = this; + e.config + }, t.render = function (e) { + var i = new f(e); + return a.call(i) + }, e(n, t) +}); +layui.define(["jquery", "lay"], function (e) { + "use strict"; + var i = layui.jquery, r = layui.lay, o = layui.device(), n = o.mobile ? "click" : "mousedown", l = { + config: {}, index: layui.colorpicker ? layui.colorpicker.index + 1e4 : 0, set: function (e) { + var r = this; + return r.config = i.extend({}, r.config, e), r + }, on: function (e, i) { + return layui.onevent.call(this, "colorpicker", e, i) + } + }, t = function () { + var e = this, i = e.config; + return {config: i} + }, c = "colorpicker", a = "layui-show", s = "layui-colorpicker", f = ".layui-colorpicker-main", + d = "layui-icon-down", u = "layui-icon-close", p = "layui-colorpicker-trigger-span", + g = "layui-colorpicker-trigger-i", v = "layui-colorpicker-side", h = "layui-colorpicker-side-slider", + b = "layui-colorpicker-basis", k = "layui-colorpicker-alpha-bgcolor", y = "layui-colorpicker-alpha-slider", + m = "layui-colorpicker-basis-cursor", x = "layui-colorpicker-main-input", P = function (e) { + var i = {h: 0, s: 0, b: 0}, r = Math.min(e.r, e.g, e.b), o = Math.max(e.r, e.g, e.b), n = o - r; + return i.b = o, i.s = 0 != o ? 255 * n / o : 0, 0 != i.s ? e.r == o ? i.h = (e.g - e.b) / n : e.g == o ? i.h = 2 + (e.b - e.r) / n : i.h = 4 + (e.r - e.g) / n : i.h = -1, o == r && (i.h = 0), i.h *= 60, i.h < 0 && (i.h += 360), i.s *= 100 / 255, i.b *= 100 / 255, i + }, C = function (e) { + var e = e.indexOf("#") > -1 ? e.substring(1) : e; + if (3 == e.length) { + var i = e.split(""); + e = i[0] + i[0] + i[1] + i[1] + i[2] + i[2] + } + e = parseInt(e, 16); + var r = {r: e >> 16, g: (65280 & e) >> 8, b: 255 & e}; + return P(r) + }, B = function (e) { + var i = {}, r = e.h, o = 255 * e.s / 100, n = 255 * e.b / 100; + if (0 == o) i.r = i.g = i.b = n; else { + var l = n, t = (255 - o) * n / 255, c = (l - t) * (r % 60) / 60; + 360 == r && (r = 0), r < 60 ? (i.r = l, i.b = t, i.g = t + c) : r < 120 ? (i.g = l, i.b = t, i.r = l - c) : r < 180 ? (i.g = l, i.r = t, i.b = t + c) : r < 240 ? (i.b = l, i.r = t, i.g = l - c) : r < 300 ? (i.b = l, i.g = t, i.r = t + c) : r < 360 ? (i.r = l, i.g = t, i.b = l - c) : (i.r = 0, i.g = 0, i.b = 0) + } + return {r: Math.round(i.r), g: Math.round(i.g), b: Math.round(i.b)} + }, w = function (e) { + var r = B(e), o = [r.r.toString(16), r.g.toString(16), r.b.toString(16)]; + return i.each(o, function (e, i) { + 1 == i.length && (o[e] = "0" + i) + }), o.join("") + }, D = function (e) { + var i = /[0-9]{1,3}/g, r = e.match(i) || []; + return {r: r[0], g: r[1], b: r[2]} + }, j = i(window), E = i(document), F = function (e) { + var r = this; + r.index = ++l.index, r.config = i.extend({}, r.config, l.config, e), r.render() + }; + F.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)"] + }, F.prototype.render = function () { + var e = this, r = e.config, + o = i(['
      ', "", ' 3 && (r.alpha && "rgb" == r.format || (e = "#" + w(P(D(r.color))))), "background: " + e) : e + }() + '">', '', "", "", "
      "].join("")), + n = i(r.elem); + r.size && o.addClass("layui-colorpicker-" + r.size), n.addClass("layui-inline").html(e.elemColorBox = o), e.color = e.elemColorBox.find("." + p)[0].style.background, e.events() + }, F.prototype.renderPicker = function () { + var e = this, r = e.config, o = e.elemColorBox[0], + n = e.elemPicker = i(['
      ', '
      ', '
      ', '
      ', '
      ', '
      ', "
      ", '
      ', '
      ', "
      ", "
      ", '
      ', '
      ', '
      ', "
      ", "
      ", function () { + if (r.predefine) { + var e = ['
      ']; + return layui.each(r.colors, function (i, r) { + e.push(['
      ', '
      ', "
      "].join("")) + }), e.push("
      "), e.join("") + } + return "" + }(), '
      ', '
      ', '', "
      ", '
      ', '', '', "", "
      "].join("")); + e.elemColorBox.find("." + p)[0]; + i(f)[0] && i(f).data("index") == e.index ? e.removePicker(F.thisElemInd) : (e.removePicker(F.thisElemInd), i("body").append(n)), F.thisElemInd = e.index, F.thisColor = o.style.background, e.position(), e.pickerEvents() + }, F.prototype.removePicker = function (e) { + var r = this; + r.config; + return i("#layui-colorpicker" + (e || r.index)).remove(), r + }, F.prototype.position = function () { + var e = this, i = e.config; + return r.position(e.bindElem || e.elemColorBox[0], e.elemPicker[0], {position: i.position, align: "center"}), e + }, F.prototype.val = function () { + var e = this, i = (e.config, e.elemColorBox.find("." + p)), r = e.elemPicker.find("." + x), o = i[0], + n = o.style.backgroundColor; + if (n) { + var l = P(D(n)), t = i.attr("lay-type"); + if (e.select(l.h, l.s, l.b), "torgb" === t && r.find("input").val(n), "rgba" === t) { + var c = D(n); + if (3 == (n.match(/[0-9]{1,3}/g) || []).length) r.find("input").val("rgba(" + c.r + ", " + c.g + ", " + c.b + ", 1)"), e.elemPicker.find("." + y).css("left", 280); else { + r.find("input").val(n); + var a = 280 * n.slice(n.lastIndexOf(",") + 1, n.length - 1); + e.elemPicker.find("." + y).css("left", a) + } + e.elemPicker.find("." + k)[0].style.background = "linear-gradient(to right, rgba(" + c.r + ", " + c.g + ", " + c.b + ", 0), rgb(" + c.r + ", " + c.g + ", " + c.b + "))" + } + } else e.select(0, 100, 100), r.find("input").val(""), e.elemPicker.find("." + k)[0].style.background = "", e.elemPicker.find("." + y).css("left", 280) + }, F.prototype.side = function () { + var e = this, r = e.config, o = e.elemColorBox.find("." + p), n = o.attr("lay-type"), + l = e.elemPicker.find("." + v), t = e.elemPicker.find("." + h), c = e.elemPicker.find("." + b), + a = e.elemPicker.find("." + m), s = e.elemPicker.find("." + k), f = e.elemPicker.find("." + y), + C = t[0].offsetTop / 180 * 360, w = 100 - (a[0].offsetTop + 3) / 180 * 100, + E = (a[0].offsetLeft + 3) / 260 * 100, F = Math.round(f[0].offsetLeft / 280 * 100) / 100, + H = e.elemColorBox.find("." + g), M = e.elemPicker.find(".layui-colorpicker-pre").children("div"), + Y = function (i, l, t, c) { + e.select(i, l, t); + var a = B({h: i, s: l, b: t}); + if (H.addClass(d).removeClass(u), o[0].style.background = "rgb(" + a.r + ", " + a.g + ", " + a.b + ")", "torgb" === n && e.elemPicker.find("." + x).find("input").val("rgb(" + a.r + ", " + a.g + ", " + a.b + ")"), "rgba" === n) { + var p = 0; + p = 280 * c, f.css("left", p), e.elemPicker.find("." + x).find("input").val("rgba(" + a.r + ", " + a.g + ", " + a.b + ", " + c + ")"), o[0].style.background = "rgba(" + a.r + ", " + a.g + ", " + a.b + ", " + c + ")", s[0].style.background = "linear-gradient(to right, rgba(" + a.r + ", " + a.g + ", " + a.b + ", 0), rgb(" + a.r + ", " + a.g + ", " + a.b + "))" + } + r.change && r.change(e.elemPicker.find("." + x).find("input").val()) + }, I = i(['
      '].join("")), + L = function (e) { + i("#LAY-colorpicker-moving")[0] || i("body").append(I), I.on("mousemove", e), I.on("mouseup", function () { + I.remove() + }).on("mouseleave", function () { + I.remove() + }) + }; + t.on("mousedown", function (e) { + var i = this.offsetTop, r = e.clientY, o = function (e) { + var o = i + (e.clientY - r), n = l[0].offsetHeight; + o < 0 && (o = 0), o > n && (o = n); + var t = o / 180 * 360; + C = t, Y(t, E, w, F), e.preventDefault() + }; + L(o), e.preventDefault() + }), l.on("click", function (e) { + var r = e.clientY - i(this).offset().top; + r < 0 && (r = 0), r > this.offsetHeight && (r = this.offsetHeight); + var o = r / 180 * 360; + C = o, Y(o, E, w, F), e.preventDefault() + }), a.on("mousedown", function (e) { + var i = this.offsetTop, r = this.offsetLeft, o = e.clientY, n = e.clientX, l = function (e) { + var l = i + (e.clientY - o), t = r + (e.clientX - n), a = c[0].offsetHeight - 3, + s = c[0].offsetWidth - 3; + l < -3 && (l = -3), l > a && (l = a), t < -3 && (t = -3), t > s && (t = s); + var f = (t + 3) / 260 * 100, d = 100 - (l + 3) / 180 * 100; + w = d, E = f, Y(C, f, d, F), e.preventDefault() + }; + layui.stope(e), L(l), e.preventDefault() + }), c.on("mousedown", function (e) { + var r = e.clientY - i(this).offset().top - 3 + j.scrollTop(), + o = e.clientX - i(this).offset().left - 3 + j.scrollLeft(); + r < -3 && (r = -3), r > this.offsetHeight - 3 && (r = this.offsetHeight - 3), o < -3 && (o = -3), o > this.offsetWidth - 3 && (o = this.offsetWidth - 3); + var n = (o + 3) / 260 * 100, l = 100 - (r + 3) / 180 * 100; + w = l, E = n, Y(C, n, l, F), layui.stope(e), e.preventDefault(), a.trigger(e, "mousedown") + }), f.on("mousedown", function (e) { + var i = this.offsetLeft, r = e.clientX, o = function (e) { + var o = i + (e.clientX - r), n = s[0].offsetWidth; + o < 0 && (o = 0), o > n && (o = n); + var l = Math.round(o / 280 * 100) / 100; + F = l, Y(C, E, w, l), e.preventDefault() + }; + L(o), e.preventDefault() + }), s.on("click", function (e) { + var r = e.clientX - i(this).offset().left; + r < 0 && (r = 0), r > this.offsetWidth && (r = this.offsetWidth); + var o = Math.round(r / 280 * 100) / 100; + F = o, Y(C, E, w, o), e.preventDefault() + }), M.each(function () { + i(this).on("click", function () { + i(this).parent(".layui-colorpicker-pre").addClass("selected").siblings().removeClass("selected"); + var e, r = this.style.backgroundColor, o = P(D(r)), n = r.slice(r.lastIndexOf(",") + 1, r.length - 1); + C = o.h, E = o.s, w = o.b, 3 == (r.match(/[0-9]{1,3}/g) || []).length && (n = 1), F = n, e = 280 * n, Y(o.h, o.s, o.b, n) + }) + }) + }, F.prototype.select = function (e, i, r, o) { + var n = this, l = (n.config, w({h: e, s: 100, b: 100})), t = w({h: e, s: i, b: r}), c = e / 360 * 180, + a = 180 - r / 100 * 180 - 3, s = i / 100 * 260 - 3; + n.elemPicker.find("." + h).css("top", c), n.elemPicker.find("." + b)[0].style.background = "#" + l, n.elemPicker.find("." + m).css({ + top: a, + left: s + }), "change" !== o && n.elemPicker.find("." + x).find("input").val("#" + t) + }, F.prototype.pickerEvents = function () { + var e = this, r = e.config, o = e.elemColorBox.find("." + p), n = e.elemPicker.find("." + x + " input"), l = { + clear: function (i) { + o[0].style.background = "", e.elemColorBox.find("." + g).removeClass(d).addClass(u), e.color = "", r.done && r.done(""), e.removePicker() + }, confirm: function (i, l) { + var t = n.val(), c = t, a = {}; + if (t.indexOf(",") > -1) { + if (a = P(D(t)), e.select(a.h, a.s, a.b), o[0].style.background = c = "#" + w(a), (t.match(/[0-9]{1,3}/g) || []).length > 3 && "rgba" === o.attr("lay-type")) { + var s = 280 * t.slice(t.lastIndexOf(",") + 1, t.length - 1); + e.elemPicker.find("." + y).css("left", s), o[0].style.background = t, c = t + } + } else a = C(t), o[0].style.background = c = "#" + w(a), e.elemColorBox.find("." + g).removeClass(u).addClass(d); + return "change" === l ? (e.select(a.h, a.s, a.b, l), void (r.change && r.change(c))) : (e.color = t, r.done && r.done(t), void e.removePicker()) + } + }; + e.elemPicker.on("click", "*[colorpicker-events]", function () { + var e = i(this), r = e.attr("colorpicker-events"); + l[r] && l[r].call(this, e) + }), n.on("keyup", function (e) { + var r = i(this); + l.confirm.call(this, r, 13 === e.keyCode ? null : "change") + }) + }, F.prototype.events = function () { + var e = this, r = e.config, o = e.elemColorBox.find("." + p); + e.elemColorBox.on("click", function () { + e.renderPicker(), i(f)[0] && (e.val(), e.side()) + }), r.elem[0] && !e.elemColorBox[0].eventHandler && (E.on(n, function (r) { + if (!i(r.target).hasClass(s) && !i(r.target).parents("." + s)[0] && !i(r.target).hasClass(f.replace(/\./g, "")) && !i(r.target).parents(f)[0] && e.elemPicker) { + if (e.color) { + var n = P(D(e.color)); + e.select(n.h, n.s, n.b) + } else e.elemColorBox.find("." + g).removeClass(d).addClass(u); + o[0].style.background = e.color || "", e.removePicker() + } + }), j.on("resize", function () { + return !(!e.elemPicker || !i(f)[0]) && void e.position() + }), e.elemColorBox[0].eventHandler = !0) + }, l.render = function (e) { + var i = new F(e); + return t.call(i) + }, e(c, l) +}); +layui.define("layer", function (e) { + "use strict"; + var t = layui.$, i = layui.layer, a = layui.hint(), n = layui.device(), l = "form", r = ".layui-form", + o = "layui-this", s = "layui-hide", c = "layui-disabled", u = 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 + } + }; + u.prototype.set = function (e) { + var i = this; + return t.extend(!0, i.config, e), i + }, u.prototype.verify = function (e) { + var i = this; + return t.extend(!0, i.config.verify, e), i + }, u.prototype.on = function (e, t) { + return layui.onevent.call(this, l, e, t) + }, u.prototype.val = function (e, i) { + var a = this, n = t(r + '[lay-filter="' + e + '"]'); + return n.each(function (e, a) { + var n = t(this); + layui.each(i, function (e, t) { + var i, a = n.find('[name="' + e + '"]'); + a[0] && (i = a[0].type, "checkbox" === i ? a[0].checked = t : "radio" === i ? a.each(function () { + this.value == t && (this.checked = !0) + }) : a.val(t)) + }) + }), f.render(null, e), a.getValue(e) + }, u.prototype.getValue = function (e, i) { + i = i || t(r + '[lay-filter="' + e + '"]').eq(0); + var a = {}, n = {}, l = i.find("input,select,textarea"); + return layui.each(l, function (e, i) { + var l; + t(this); + if (i.name = (i.name || "").replace(/^\s*|\s*&/, ""), i.name) { + if (/^.*\[\]$/.test(i.name)) { + var r = i.name.match(/^(.*)\[\]$/g)[0]; + a[r] = 0 | a[r], l = i.name.replace(/^(.*)\[\]$/, "$1[" + a[r]++ + "]") + } + /^checkbox|radio$/.test(i.type) && !i.checked || (n[l || i.name] = i.value) + } + }), n + }, u.prototype.render = function (e, i) { + var n = this, u = n.config, d = t(r + function () { + return i ? '[lay-filter="' + i + '"]' : "" + }()), f = { + input: function () { + var e = d.find("input,textarea"); + u.autocomplete && e.attr("autocomplete", u.autocomplete) + }, select: function () { + var e, i = "\u8bf7\u9009\u62e9", a = "layui-form-select", n = "layui-select-title", + r = "layui-select-none", u = "", f = d.find("select"), v = function (i, l) { + t(i.target).parent().hasClass(n) && !l || (t("." + a).removeClass(a + "ed " + a + "up"), e && u && e.val(u)), e = null + }, y = function (i, d, f) { + var y, p = t(this), m = i.find("." + n), g = m.find("input"), k = i.find("dl"), + x = k.children("dd"), b = this.selectedIndex; + if (!d) { + var C = function () { + var e = i.offset().top + i.outerHeight() + 5 - h.scrollTop(), t = k.outerHeight(); + b = p[0].selectedIndex, i.addClass(a + "ed"), x.removeClass(s), y = null, x.eq(b).addClass(o).siblings().removeClass(o), e + t > h.height() && e >= t && i.addClass(a + "up"), T() + }, w = function (e) { + i.removeClass(a + "ed " + a + "up"), g.blur(), y = null, e || $(g.val(), function (e) { + var i = p[0].selectedIndex; + e && (u = t(p[0].options[i]).html(), 0 === i && u === g.attr("placeholder") && (u = ""), g.val(u || "")) + }) + }, T = function () { + var e = k.children("dd." + o); + if (e[0]) { + var t = e.position().top, i = k.height(), a = e.height(); + t > i && k.scrollTop(t + k.scrollTop() - i + a - 5), t < 0 && k.scrollTop(t + k.scrollTop() - 5) + } + }; + m.on("click", function (e) { + i.hasClass(a + "ed") ? w() : (v(e, !0), C()), k.find("." + r).remove() + }), m.find(".layui-edge").on("click", function () { + g.focus() + }), g.on("keyup", function (e) { + var t = e.keyCode; + 9 === t && C() + }).on("keydown", function (e) { + var t = e.keyCode; + 9 === t && w(); + var i = function (t, a) { + var n, l; + e.preventDefault(); + var r = function () { + var e = k.children("dd." + o); + if (k.children("dd." + s)[0] && "next" === t) { + var i = k.children("dd:not(." + s + ",." + c + ")"), n = i.eq(0).index(); + if (n >= 0 && n < e.index() && !i.hasClass(o)) return i.eq(0).prev()[0] ? i.eq(0).prev() : k.children(":last") + } + return a && a[0] ? a : y && y[0] ? y : e + }(); + return l = r[t](), n = r[t]("dd:not(." + s + ")"), l[0] ? (y = r[t](), n[0] && !n.hasClass(c) || !y[0] ? (n.addClass(o).siblings().removeClass(o), void T()) : i(t, y)) : y = null + }; + 38 === t && i("prev"), 40 === t && i("next"), 13 === t && (e.preventDefault(), k.children("dd." + o).trigger("click")) + }); + var $ = function (e, i, a) { + var n = 0; + layui.each(x, function () { + var i = t(this), l = i.text(), r = l.indexOf(e) === -1; + ("" === e || "blur" === a ? e !== l : r) && n++, "keyup" === a && i[r ? "addClass" : "removeClass"](s) + }); + var l = n === x.length; + return i(l), l + }, q = function (e) { + var t = this.value, i = e.keyCode; + return 9 !== i && 13 !== i && 37 !== i && 38 !== i && 39 !== i && 40 !== i && ($(t, function (e) { + e ? k.find("." + r)[0] || k.append('

      \u65e0\u5339\u914d\u9879

      ') : k.find("." + r).remove() + }, "keyup"), "" === t && k.find("." + r).remove(), void T()) + }; + f && g.on("keyup", q).on("blur", function (i) { + var a = p[0].selectedIndex; + e = g, u = t(p[0].options[a]).html(), 0 === a && u === g.attr("placeholder") && (u = ""), setTimeout(function () { + $(g.val(), function (e) { + u || g.val("") + }, "blur") + }, 200) + }), x.on("click", function () { + var e = t(this), a = e.attr("lay-value"), n = p.attr("lay-filter"); + return !e.hasClass(c) && (e.hasClass("layui-select-tips") ? g.val("") : (g.val(e.text()), e.addClass(o)), e.siblings().removeClass(o), p.val(a).removeClass("layui-form-danger"), layui.event.call(this, l, "select(" + n + ")", { + elem: p[0], + value: a, + othis: i + }), w(!0), !1) + }), i.find("dl>dt").on("click", function (e) { + return !1 + }), t(document).off("click", v).on("click", v) + } + }; + f.each(function (e, l) { + var r = t(this), s = r.next("." + a), u = this.disabled, d = l.value, + f = t(l.options[l.selectedIndex]), v = l.options[0]; + if ("string" == typeof r.attr("lay-ignore")) return r.show(); + var h = "string" == typeof r.attr("lay-search"), p = v ? v.value ? i : v.innerHTML || i : i, + m = t(['
      ', '
      ', '', '
      ', '
      ', function (e) { + var a = []; + return layui.each(e, function (e, n) { + 0 !== e || n.value ? "optgroup" === n.tagName.toLowerCase() ? a.push("
      " + n.label + "
      ") : a.push('
      ' + t.trim(n.innerHTML) + "
      ") : a.push('
      ' + t.trim(n.innerHTML || i) + "
      ") + }), 0 === a.length && a.push('
      \u6ca1\u6709\u9009\u9879
      '), a.join("") + }(r.find("*")) + "
      ", "
      "].join("")); + s[0] && s.remove(), r.after(m), y.call(this, m, u, h) + }) + }, checkbox: function () { + var e = { + checkbox: ["layui-form-checkbox", "layui-form-checked", "checkbox"], + _switch: ["layui-form-switch", "layui-form-onswitch", "switch"] + }, i = d.find("input[type=checkbox]"), a = function (e, i) { + var a = t(this); + e.on("click", function () { + var t = a.attr("lay-filter"), n = (a.attr("lay-text") || "").split("|"); + a[0].disabled || (a[0].checked ? (a[0].checked = !1, e.removeClass(i[1]).find("em").text(n[1])) : (a[0].checked = !0, e.addClass(i[1]).find("em").text(n[0])), layui.event.call(a[0], l, i[2] + "(" + t + ")", { + elem: a[0], + value: a[0].value, + othis: e + })) + }) + }; + i.each(function (i, n) { + var l = t(this), r = l.attr("lay-skin"), o = (l.attr("lay-text") || "").split("|"), + s = this.disabled; + "switch" === r && (r = "_" + r); + var u = e[r] || e.checkbox; + if ("string" == typeof l.attr("lay-ignore")) return l.show(); + var d = l.next("." + u[0]), + f = t(['
      ", function () { + var e = n.title.replace(/\s/g, ""), t = { + checkbox: [e ? "" + n.title + "" : "", ''].join(""), + _switch: "" + ((n.checked ? o[0] : o[1]) || "") + "" + }; + return t[r] || t.checkbox + }(), "
      "].join("")); + d[0] && d.remove(), l.after(f), a.call(this, f, u) + }) + }, radio: function () { + var e = "layui-form-radio", i = ["", ""], a = d.find("input[type=radio]"), + n = function (a) { + var n = t(this), o = "layui-anim-scaleSpring"; + a.on("click", function () { + var s = n[0].name, c = n.parents(r), u = n.attr("lay-filter"), + d = c.find("input[name=" + s.replace(/(\.|#|\[|\])/g, "\\$1") + "]"); + n[0].disabled || (layui.each(d, function () { + var a = t(this).next("." + e); + this.checked = !1, a.removeClass(e + "ed"), a.find(".layui-icon").removeClass(o).html(i[1]) + }), n[0].checked = !0, a.addClass(e + "ed"), a.find(".layui-icon").addClass(o).html(i[0]), layui.event.call(n[0], l, "radio(" + u + ")", { + elem: n[0], + value: n[0].value, + othis: a + })) + }) + }; + a.each(function (a, l) { + var r = t(this), o = r.next("." + e), s = this.disabled; + if ("string" == typeof r.attr("lay-ignore")) return r.show(); + o[0] && o.remove(); + var u = t(['
      ', '' + i[l.checked ? 0 : 1] + "", "
      " + function () { + var e = l.title || ""; + return "string" == typeof r.next().attr("lay-radio") && (e = r.next().html()), e + }() + "
      ", "
      "].join("")); + r.after(u), n.call(this, u) + }) + } + }; + return e ? f[e] ? f[e]() : a.error('\u4e0d\u652f\u6301\u7684 "' + e + '" \u8868\u5355\u6e32\u67d3') : layui.each(f, function (e, t) { + t() + }), n + }; + var d = function () { + var e = null, a = f.config.verify, o = "layui-form-danger", s = {}, c = t(this), u = c.parents(r).eq(0), + d = u.find("*[lay-verify]"), h = c.parents("form")[0], y = c.attr("lay-filter"); + return layui.each(d, function (l, r) { + var s = t(this), c = s.attr("lay-verify").split("|"), u = s.attr("lay-verType"), d = s.val(); + if (s.removeClass(o), layui.each(c, function (t, l) { + var c, f = "", h = "function" == typeof a[l]; + if (a[l]) { + var c = h ? f = a[l](d, r) : !a[l][0].test(d), + y = "select" === r.tagName.toLowerCase() || /^checkbox|radio$/.test(r.type); + if (f = f || a[l][1], "required" === l && (f = s.attr("lay-reqText") || f), c) return "tips" === u ? i.tips(f, function () { + return "string" != typeof s.attr("lay-ignore") && y ? s.next() : s + }(), {tips: 1}) : "alert" === u ? i.alert(f, { + title: "\u63d0\u793a", + shadeClose: !0 + }) : /\bstring|number\b/.test(typeof f) && i.msg(f, { + icon: 5, + shift: 6 + }), n.mobile ? v.scrollTop(function () { + try { + return (y ? s.next() : s).offset().top - 15 + } catch (e) { + return 0 + } + }()) : setTimeout(function () { + (y ? s.next().find("input") : r).focus() + }, 7), s.addClass(o), e = !0 + } + }), e) return e + }), !e && (s = f.getValue(null, u), layui.event.call(this, l, "submit(" + y + ")", { + elem: this, + form: h, + field: s + })) + }, f = new u, v = t(document), h = t(window); + t(function () { + f.render() + }), v.on("reset", r, function () { + var e = t(this).attr("lay-filter"); + setTimeout(function () { + f.render(null, e) + }, 50) + }), v.on("submit", r, d).on("click", "*[lay-submit]", d), e(l, f) +}); +layui.define("form", function (e) { + "use strict"; + var i = layui.$, a = layui.form, n = layui.layer, t = "tree", r = { + config: {}, index: layui[t] ? layui[t].index + 1e4 : 0, set: function (e) { + var a = this; + return a.config = i.extend({}, a.config, e), a + }, on: function (e, i) { + return layui.onevent.call(this, t, e, i) + } + }, l = function () { + var e = this, i = e.config, a = i.id || e.index; + return l.that[a] = e, l.config[a] = i, { + config: i, reload: function (i) { + e.reload.call(e, i) + }, getChecked: function () { + return e.getChecked.call(e) + }, setChecked: function (i) { + return e.setChecked.call(e, i) + } + } + }, c = "layui-hide", d = "layui-disabled", s = "layui-tree-set", o = "layui-tree-iconClick", + h = "layui-icon-addition", u = "layui-icon-subtraction", p = "layui-tree-entry", f = "layui-tree-main", + y = "layui-tree-txt", v = "layui-tree-pack", C = "layui-tree-spread", k = "layui-tree-setLineShort", + m = "layui-tree-showLine", x = "layui-tree-lineExtend", b = function (e) { + var a = this; + a.index = ++r.index, a.config = i.extend({}, a.config, r.config, e), a.render() + }; + b.prototype.config = { + data: [], + showCheckbox: !1, + showLine: !0, + accordion: !1, + onlyIconControl: !1, + isJump: !1, + edit: !1, + text: {defaultNodeName: "\u672a\u547d\u540d", none: "\u65e0\u6570\u636e"} + }, b.prototype.reload = function (e) { + var a = this; + layui.each(e, function (e, i) { + "array" === layui._typeof(i) && delete a.config[e] + }), a.config = i.extend(!0, {}, a.config, e), a.render() + }, b.prototype.render = function () { + var e = this, a = e.config; + e.checkids = []; + var n = i('
      '); + e.tree(n); + var t = a.elem = i(a.elem); + if (t[0]) { + if (e.key = a.id || e.index, e.elem = n, e.elemNone = i('
      ' + a.text.none + "
      "), t.html(e.elem), 0 == e.elem.find(".layui-tree-set").length) return e.elem.append(e.elemNone); + a.showCheckbox && e.renderForm("checkbox"), e.elem.find(".layui-tree-set").each(function () { + var e = i(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(k), e.next()[0] || e.parents(".layui-tree-set").eq(0).next()[0] || e.addClass(k) + }), e.events() + } + }, b.prototype.renderForm = function (e) { + a.render(e, "LAY-tree-" + this.index) + }, b.prototype.tree = function (e, a) { + var n = this, t = n.config, r = a || t.data; + layui.each(r, function (a, r) { + var l = r.children && r.children.length > 0, + o = i('
      "), + h = i(['
      ', '
      ', '
      ', function () { + return t.showLine ? l ? '' : '' : '' + }(), function () { + return t.showCheckbox ? '' : "" + }(), function () { + return t.isJump && r.href ? '' + (r.title || r.label || t.text.defaultNodeName) + "" : '' + (r.title || r.label || t.text.defaultNodeName) + "" + }(), "
      ", function () { + if (!t.edit) return ""; + var e = { + add: '', + update: '', + del: '' + }, i = ['
      ']; + return t.edit === !0 && (t.edit = ["update", "del"]), "object" == typeof t.edit ? (layui.each(t.edit, function (a, n) { + i.push(e[n] || "") + }), i.join("") + "
      ") : void 0 + }(), "
      "].join("")); + l && (h.append(o), n.tree(o, r.children)), e.append(h), h.prev("." + s)[0] && h.prev().children(".layui-tree-pack").addClass("layui-tree-showLine"), l || h.parent(".layui-tree-pack").addClass("layui-tree-lineExtend"), n.spread(h, r), t.showCheckbox && (r.checked && n.checkids.push(r.id), n.checkClick(h, r)), t.edit && n.operate(h, r) + }) + }, b.prototype.spread = function (e, a) { + var n = this, t = n.config, r = e.children("." + p), l = r.children("." + f), c = r.find("." + o), + k = r.find("." + y), m = t.onlyIconControl ? c : l, x = ""; + m.on("click", function (i) { + var a = e.children("." + v), + n = m.children(".layui-icon")[0] ? m.children(".layui-icon") : m.find(".layui-tree-icon").children(".layui-icon"); + if (a[0]) { + if (e.hasClass(C)) e.removeClass(C), a.slideUp(200), n.removeClass(u).addClass(h); else if (e.addClass(C), a.slideDown(200), n.addClass(u).removeClass(h), t.accordion) { + var r = e.siblings("." + s); + r.removeClass(C), r.children("." + v).slideUp(200), r.find(".layui-tree-icon").children(".layui-icon").removeClass(u).addClass(h) + } + } else x = "normal" + }), k.on("click", function () { + var n = i(this); + n.hasClass(d) || (x = e.hasClass(C) ? t.onlyIconControl ? "open" : "close" : t.onlyIconControl ? "close" : "open", t.click && t.click({ + elem: e, + state: x, + data: a + })) + }) + }, b.prototype.setCheckbox = function (e, i, a) { + var n = this, t = (n.config, a.prop("checked")); + if (!a.prop("disabled")) { + if ("object" == typeof i.children || e.find("." + v)[0]) { + var r = e.find("." + v).find('input[same="layuiTreeCheck"]'); + r.each(function () { + this.disabled || (this.checked = t) + }) + } + var l = function (e) { + if (e.parents("." + s)[0]) { + var i, a = e.parent("." + v), n = a.parent(), r = a.prev().find('input[same="layuiTreeCheck"]'); + t ? r.prop("checked", t) : (a.find('input[same="layuiTreeCheck"]').each(function () { + this.checked && (i = !0) + }), i || r.prop("checked", !1)), l(n) + } + }; + l(e), n.renderForm("checkbox") + } + }, b.prototype.checkClick = function (e, a) { + var n = this, t = n.config, r = e.children("." + p), l = r.children("." + f); + l.on("click", 'input[same="layuiTreeCheck"]+', function (r) { + layui.stope(r); + var l = i(this).prev(), c = l.prop("checked"); + l.prop("disabled") || (n.setCheckbox(e, a, l), t.oncheck && t.oncheck({elem: e, checked: c, data: a})) + }) + }, b.prototype.operate = function (e, a) { + var t = this, r = t.config, l = e.children("." + p), d = l.children("." + f); + l.children(".layui-tree-btnGroup").on("click", ".layui-icon", function (l) { + layui.stope(l); + var f = i(this).data("type"), b = e.children("." + v), g = {data: a, type: f, elem: e}; + if ("add" == f) { + b[0] || (r.showLine ? (d.find("." + o).addClass("layui-tree-icon"), d.find("." + o).children(".layui-icon").addClass(h).removeClass("layui-icon-file")) : d.find(".layui-tree-iconArrow").removeClass(c), e.append('
      ')); + var w = r.operate && r.operate(g), N = {}; + if (N.title = r.text.defaultNodeName, N.id = w, t.tree(e.children("." + v), [N]), r.showLine) if (b[0]) b.hasClass(x) || b.addClass(x), e.find("." + v).each(function () { + i(this).children("." + s).last().addClass(k) + }), b.children("." + s).last().prev().hasClass(k) ? b.children("." + s).last().prev().removeClass(k) : b.children("." + s).last().removeClass(k), !e.parent("." + v)[0] && e.next()[0] && b.children("." + s).last().removeClass(k); else { + var T = e.siblings("." + s), L = 1, I = e.parent("." + v); + layui.each(T, function (e, a) { + i(a).children("." + v)[0] || (L = 0) + }), 1 == L ? (T.children("." + v).addClass(m), T.children("." + v).children("." + s).removeClass(k), e.children("." + v).addClass(m), I.removeClass(x), I.children("." + s).last().children("." + v).children("." + s).last().addClass(k)) : e.children("." + v).children("." + s).addClass(k) + } + if (!r.showCheckbox) return; + if (d.find('input[same="layuiTreeCheck"]')[0].checked) { + var A = e.children("." + v).children("." + s).last(); + A.find('input[same="layuiTreeCheck"]')[0].checked = !0 + } + t.renderForm("checkbox") + } else if ("update" == f) { + var F = d.children("." + y).html(); + d.children("." + y).html(""), d.append(''), d.children(".layui-tree-editInput").val(F).focus(); + var j = function (e) { + var i = e.val().trim(); + i = i ? i : r.text.defaultNodeName, e.remove(), d.children("." + y).html(i), g.data.title = i, r.operate && r.operate(g) + }; + d.children(".layui-tree-editInput").blur(function () { + j(i(this)) + }), d.children(".layui-tree-editInput").on("keydown", function (e) { + 13 === e.keyCode && (e.preventDefault(), j(i(this))) + }) + } else n.confirm('\u786e\u8ba4\u5220\u9664\u8be5\u8282\u70b9 "' + (a.title || "") + '" \u5417\uff1f', function (a) { + if (r.operate && r.operate(g), g.status = "remove", n.close(a), !e.prev("." + s)[0] && !e.next("." + s)[0] && !e.parent("." + v)[0]) return e.remove(), void t.elem.append(t.elemNone); + if (e.siblings("." + s).children("." + p)[0]) { + if (r.showCheckbox) { + var l = function (e) { + if (e.parents("." + s)[0]) { + var a = e.siblings("." + s).children("." + p), n = e.parent("." + v).prev(), + r = n.find('input[same="layuiTreeCheck"]')[0], c = 1, d = 0; + 0 == r.checked && (a.each(function (e, a) { + var n = i(a).find('input[same="layuiTreeCheck"]')[0]; + 0 != n.checked || n.disabled || (c = 0), n.disabled || (d = 1) + }), 1 == c && 1 == d && (r.checked = !0, t.renderForm("checkbox"), l(n.parent("." + s)))) + } + }; + l(e) + } + if (r.showLine) { + var d = e.siblings("." + s), h = 1, f = e.parent("." + v); + layui.each(d, function (e, a) { + i(a).children("." + v)[0] || (h = 0) + }), 1 == h ? (b[0] || (f.removeClass(x), d.children("." + v).addClass(m), d.children("." + v).children("." + s).removeClass(k)), e.next()[0] ? f.children("." + s).last().children("." + v).children("." + s).last().addClass(k) : e.prev().children("." + v).children("." + s).last().addClass(k), e.next()[0] || e.parents("." + s)[1] || e.parents("." + s).eq(0).next()[0] || e.prev("." + s).addClass(k)) : !e.next()[0] && e.hasClass(k) && e.prev().addClass(k) + } + } else { + var y = e.parent("." + v).prev(); + if (r.showLine) { + y.find("." + o).removeClass("layui-tree-icon"), y.find("." + o).children(".layui-icon").removeClass(u).addClass("layui-icon-file"); + var w = y.parents("." + v).eq(0); + w.addClass(x), w.children("." + s).each(function () { + i(this).children("." + v).children("." + s).last().addClass(k) + }) + } else y.find(".layui-tree-iconArrow").addClass(c); + e.parents("." + s).eq(0).removeClass(C), e.parent("." + v).remove() + } + e.remove() + }) + }) + }, b.prototype.events = function () { + var e = this, a = e.config; + e.elem.find(".layui-tree-checkedFirst"); + e.setChecked(e.checkids), e.elem.find(".layui-tree-search").on("keyup", function () { + var n = i(this), t = n.val(), r = n.nextAll(), l = []; + r.find("." + y).each(function () { + var e = i(this).parents("." + p); + if (i(this).html().indexOf(t) != -1) { + l.push(i(this).parent()); + var a = function (e) { + e.addClass("layui-tree-searchShow"), e.parent("." + v)[0] && a(e.parent("." + v).parent("." + s)) + }; + a(e.parent("." + s)) + } + }), r.find("." + p).each(function () { + var e = i(this).parent("." + s); + e.hasClass("layui-tree-searchShow") || e.addClass(c) + }), 0 == r.find(".layui-tree-searchShow").length && e.elem.append(e.elemNone), a.onsearch && a.onsearch({elem: l}) + }), e.elem.find(".layui-tree-search").on("keydown", function () { + i(this).nextAll().find("." + p).each(function () { + var e = i(this).parent("." + s); + e.removeClass("layui-tree-searchShow " + c) + }), i(".layui-tree-emptyText")[0] && i(".layui-tree-emptyText").remove() + }) + }, b.prototype.getChecked = function () { + var e = this, a = e.config, n = [], t = []; + e.elem.find(".layui-form-checked").each(function () { + n.push(i(this).prev()[0].value) + }); + var r = function (e, a) { + layui.each(e, function (e, t) { + layui.each(n, function (e, n) { + if (t.id == n) { + var l = i.extend({}, t); + return delete l.children, a.push(l), t.children && (l.children = [], r(t.children, l.children)), !0 + } + }) + }) + }; + return r(i.extend({}, a.data), t), t + }, b.prototype.setChecked = function (e) { + var a = this; + a.config; + a.elem.find("." + s).each(function (a, n) { + var t = i(this).data("id"), r = i(n).children("." + p).find('input[same="layuiTreeCheck"]'), l = r.next(); + if ("number" == typeof e) { + if (t == e) return r[0].checked || l.click(), !1 + } else "object" == typeof e && layui.each(e, function (e, i) { + if (i == t && !r[0].checked) return l.click(), !0 + }) + }) + }, l.that = {}, l.config = {}, r.reload = function (e, i) { + var a = l.that[e]; + return a.reload(i), l.call(a) + }, r.getChecked = function (e) { + var i = l.that[e]; + return i.getChecked() + }, r.setChecked = function (e, i) { + var a = l.that[e]; + return a.setChecked(i) + }, r.render = function (e) { + var i = new b(e); + return l.call(i) + }, e(t, r) +}); +layui.define(["laytpl", "form"], function (e) { + "use strict"; + var a = layui.$, t = layui.laytpl, i = layui.form, n = "transfer", l = { + config: {}, index: layui[n] ? layui[n].index + 1e4 : 0, set: function (e) { + var t = this; + return t.config = a.extend({}, t.config, e), t + }, on: function (e, a) { + return layui.onevent.call(this, n, e, a) + } + }, r = function () { + var e = this, a = e.config, t = a.id || e.index; + return r.that[t] = e, r.config[t] = a, { + config: a, reload: function (a) { + e.reload.call(e, a) + }, getData: function () { + return e.getData.call(e) + } + } + }, c = "layui-hide", o = "layui-btn-disabled", d = "layui-none", s = "layui-transfer-box", + u = "layui-transfer-header", h = "layui-transfer-search", f = "layui-transfer-active", + y = "layui-transfer-data", p = function (e) { + return e = e || {}, ['
      ', '
      ', '", "
      ", "{{# if(d.data.showSearch){ }}", '", "{{# } }}", '
        ', "
        "].join("") + }, v = ['
        ', p({ + index: 0, + checkAllName: "layTransferLeftCheckAll" + }), '
        ', '", '", "
        ", p({ + index: 1, + checkAllName: "layTransferRightCheckAll" + }), "
        "].join(""), x = function (e) { + var t = this; + t.index = ++l.index, t.config = a.extend({}, t.config, l.config, e), t.render() + }; + x.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"} + }, x.prototype.reload = function (e) { + var t = this; + t.config = a.extend({}, t.config, e), t.render() + }, x.prototype.render = function () { + var e = this, i = e.config, n = e.elem = a(t(v).render({data: i, index: e.index})), l = i.elem = a(i.elem); + l[0] && (i.data = i.data || [], i.value = i.value || [], e.key = i.id || e.index, l.html(e.elem), e.layBox = e.elem.find("." + s), e.layHeader = e.elem.find("." + u), e.laySearch = e.elem.find("." + h), e.layData = n.find("." + y), e.layBtn = n.find("." + f + " .layui-btn"), e.layBox.css({ + width: i.width, + height: i.height + }), e.layData.css({ + height: function () { + return i.height - e.layHeader.outerHeight() - e.laySearch.outerHeight() - 2 + }() + }), e.renderData(), e.events()) + }, x.prototype.renderData = function () { + var e = this, a = (e.config, [{checkName: "layTransferLeftCheck", views: []}, { + checkName: "layTransferRightCheck", + views: [] + }]); + e.parseData(function (e) { + var t = e.selected ? 1 : 0, + i = ["
      • ", '', "
      • "].join(""); + a[t].views.push(i), delete e.selected + }), e.layData.eq(0).html(a[0].views.join("")), e.layData.eq(1).html(a[1].views.join("")), e.renderCheckBtn() + }, x.prototype.renderForm = function (e) { + i.render(e, "LAY-transfer-" + this.index) + }, x.prototype.renderCheckBtn = function (e) { + var t = this, i = t.config; + e = e || {}, t.layBox.each(function (n) { + var l = a(this), r = l.find("." + y), d = l.find("." + u).find('input[type="checkbox"]'), + s = r.find('input[type="checkbox"]'), h = 0, f = !1; + if (s.each(function () { + var e = a(this).data("hide"); + (this.checked || this.disabled || e) && h++, this.checked && !e && (f = !0) + }), d.prop("checked", f && h === s.length), t.layBtn.eq(n)[f ? "removeClass" : "addClass"](o), !e.stopNone) { + var p = r.children("li:not(." + c + ")").length; + t.noneView(r, p ? "" : i.text.none) + } + }), t.renderForm("checkbox") + }, x.prototype.noneView = function (e, t) { + var i = a('

        ' + (t || "") + "

        "); + e.find("." + d)[0] && e.find("." + d).remove(), t.replace(/\s/g, "") && e.append(i) + }, x.prototype.setValue = function () { + var e = this, t = e.config, i = []; + return e.layBox.eq(1).find("." + y + ' input[type="checkbox"]').each(function () { + var e = a(this).data("hide"); + e || i.push(this.value) + }), t.value = i, e + }, x.prototype.parseData = function (e) { + var t = this, i = t.config, n = []; + return layui.each(i.data, function (t, l) { + l = ("function" == typeof i.parseData ? i.parseData(l) : l) || l, n.push(l = a.extend({}, l)), layui.each(i.value, function (e, a) { + a == l.value && (l.selected = !0) + }), e && e(l) + }), i.data = n, t + }, x.prototype.getData = function (e) { + var a = this, t = a.config, i = []; + return a.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 + }, x.prototype.events = function () { + var e = this, t = e.config; + e.elem.on("click", 'input[lay-filter="layTransferCheckbox"]+', function () { + var t = a(this).prev(), i = t[0].checked, n = t.parents("." + s).eq(0).find("." + y); + t[0].disabled || ("all" === t.attr("lay-type") && n.find('input[type="checkbox"]').each(function () { + this.disabled || (this.checked = i) + }), e.renderCheckBtn({stopNone: !0})) + }), e.layBtn.on("click", function () { + var i = a(this), n = i.data("index"), l = e.layBox.eq(n), r = []; + if (!i.hasClass(o)) { + e.layBox.eq(n).each(function (t) { + var i = a(this), n = i.find("." + y); + n.children("li").each(function () { + var t = a(this), i = t.find('input[type="checkbox"]'), n = i.data("hide"); + i[0].checked && !n && (i[0].checked = !1, l.siblings("." + s).find("." + y).append(t.clone()), t.remove(), r.push(i[0].value)), e.setValue() + }) + }), e.renderCheckBtn(); + var c = l.siblings("." + s).find("." + h + " input"); + "" === c.val() || c.trigger("keyup"), t.onchange && t.onchange(e.getData(r), n) + } + }), e.laySearch.find("input").on("keyup", function () { + var i = this.value, n = a(this).parents("." + h).eq(0).siblings("." + y), l = n.children("li"); + l.each(function () { + var e = a(this), t = e.find('input[type="checkbox"]'), n = t[0].title.indexOf(i) !== -1; + e[n ? "removeClass" : "addClass"](c), t.data("hide", !n) + }), e.renderCheckBtn(); + var r = l.length === n.children("li." + c).length; + e.noneView(n, r ? t.text.searchNone : "") + }) + }, r.that = {}, r.config = {}, l.reload = function (e, a) { + var t = r.that[e]; + return t.reload(a), r.call(t) + }, l.getData = function (e) { + var a = r.that[e]; + return a.getData() + }, l.render = function (e) { + var a = new x(e); + return r.call(a) + }, e(n, l) +}); +layui.define(["laytpl", "laypage", "layer", "form", "util"], function (e) { + "use strict"; + var t = layui.$, i = layui.laytpl, a = layui.laypage, l = layui.layer, n = layui.form, o = layui.util, + r = layui.hint(), c = layui.device(), d = { + config: {checkName: "LAY_CHECKED", indexName: "LAY_TABLE_INDEX"}, + cache: {}, + index: layui.table ? layui.table.index + 1e4 : 0, + set: function (e) { + var i = this; + return i.config = t.extend({}, i.config, e), i + }, + on: function (e, t) { + return layui.onevent.call(this, h, e, t) + } + }, s = function () { + var e = this, t = e.config, i = t.id || t.index; + return i && (s.that[i] = e, s.config[i] = t), { + config: t, reload: function (t, i) { + e.reload.call(e, t, i) + }, setColsWidth: function () { + e.setColsWidth.call(e) + }, resize: function () { + e.resize.call(e) + } + } + }, u = function (e) { + var t = s.config[e]; + return t || r.error(e ? "The table instance with ID '" + e + "' not found" : "ID argument required"), t || null + }, y = function (e, a, l, n) { + var r = this.config || {}; + r.escape && (a = o.escape(a)); + var c = e.templet ? function () { + return "function" == typeof e.templet ? e.templet(l) : i(t(e.templet).html() || String(a)).render(l) + }() : a; + return n ? t("
        " + c + "
        ").text() : c + }, h = "table", f = ".layui-table", p = "layui-hide", v = "layui-none", m = "layui-table-view", + g = ".layui-table-tool", b = ".layui-table-box", x = ".layui-table-init", k = ".layui-table-header", + C = ".layui-table-body", w = ".layui-table-main", T = ".layui-table-fixed", N = ".layui-table-fixed-l", + L = ".layui-table-fixed-r", _ = ".layui-table-total", S = ".layui-table-page", A = ".layui-table-sort", + R = "layui-table-edit", W = "layui-table-hover", z = function (e) { + var t = '{{#if(item2.colspan){}} colspan="{{item2.colspan}}"{{#} if(item2.rowspan){}} rowspan="{{item2.rowspan}}"{{#}}}'; + return e = e || {}, ['
        ', "", "{{# 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; } }}', function () { + return 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("") + }, + E = ['', "", "
        "].join(""), + j = ['
        ', "{{# if(d.data.toolbar){ }}", '
        ', '
        ', '
        ', "
        ", "{{# } }}", '
        ', "{{# if(d.data.loading){ }}", '
        ', '', "
        ", "{{# } }}", "{{# var left, right; }}", '
        ', z(), "
        ", '
        ', E, "
        ", "{{# if(left){ }}", '
        ', '
        ', z({fixed: !0}), "
        ", '
        ', E, "
        ", "
        ", "{{# }; }}", "{{# if(right){ }}", '
        ', '
        ', z({fixed: "right"}), '
        ', "
        ", '
        ', E, "
        ", "
        ", "{{# }; }}", "
        ", "{{# if(d.data.totalRow){ }}", '
        ', '', '', "
        ", "
        ", "{{# } }}", "{{# if(d.data.page){ }}", '
        ', '
        ', "
        ", "{{# } }}", "", "
        "].join(""), + F = t(window), I = t(document), H = function (e) { + var i = this; + i.index = ++d.index, i.config = t.extend({}, i.config, d.config, e), i.render() + }; + H.prototype.config = { + limit: 10, + loading: !0, + cellMinWidth: 60, + defaultToolbar: ["filter", "exports", "print"], + autoSort: !0, + text: {none: "\u65e0\u6570\u636e"} + }, H.prototype.render = function () { + var e = this, a = e.config; + if (a.elem = t(a.elem), a.where = a.where || {}, a.id = a.id || a.elem.attr("id") || e.index, a.request = t.extend({ + pageName: "page", + limitName: "limit" + }, a.request), a.response = t.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, e.page = a.page.curr = a.page.curr || 1, delete a.page.elem, delete a.page.jump), !a.elem[0]) return e; + a.height && /^full-\d+$/.test(a.height) && (e.fullHeightGap = a.height.split("-")[1], a.height = F.height() - e.fullHeightGap), e.setInit(); + var l = a.elem, n = l.next("." + m), o = e.elem = t(i(j).render({VIEW_CLASS: m, data: a, index: e.index})); + if (a.index = e.index, e.key = a.id || a.index, n[0] && n.remove(), l.after(o), e.layTool = o.find(g), e.layBox = o.find(b), e.layHeader = o.find(k), e.layMain = o.find(w), e.layBody = o.find(C), e.layFixed = o.find(T), e.layFixLeft = o.find(N), e.layFixRight = o.find(L), e.layTotal = o.find(_), e.layPage = o.find(S), e.renderToolbar(), e.fullSize(), a.cols.length > 1) { + var r = e.layFixed.find(k).find("th"); + r.height(e.layHeader.height() - 1 - parseFloat(r.css("padding-top")) - parseFloat(r.css("padding-bottom"))) + } + e.pullData(e.page), e.events() + }, H.prototype.initOpts = function (e) { + var t = this, i = (t.config, {checkbox: 48, radio: 48, space: 15, numbers: 40}); + e.checkbox && (e.type = "checkbox"), e.space && (e.type = "space"), e.type || (e.type = "normal"), "normal" !== e.type && (e.unresize = !0, e.width = e.width || i[e.type]) + }, H.prototype.setInit = function (e) { + var t = this, i = t.config; + return i.clientWidth = i.width || function () { + var e = function (t) { + var a, l; + t = t || i.elem.parent(), a = t.width(); + try { + l = "none" === t.css("display") + } catch (n) { + } + return !t[0] || a && !l ? a : e(t.parent()) + }; + return e() + }(), "width" === e ? i.clientWidth : void layui.each(i.cols, function (e, a) { + layui.each(a, function (l, n) { + if (!n) return void a.splice(l, 1); + if (n.key = e + "-" + l, n.hide = n.hide || !1, n.colGroup || n.colspan > 1) { + var o = 0; + layui.each(i.cols[e + 1], function (t, i) { + i.HAS_PARENT || o > 1 && o == n.colspan || (i.HAS_PARENT = !0, i.parentKey = e + "-" + l, o += parseInt(i.colspan > 1 ? i.colspan : 1)) + }), n.colGroup = !0 + } + t.initOpts(n) + }) + }) + }, H.prototype.renderToolbar = function () { + var e = this, a = e.config, + l = ['
        ', '
        ', '
        '].join(""), + n = e.layTool.find(".layui-table-tool-temp"); + if ("default" === a.toolbar) n.html(l); else if ("string" == typeof a.toolbar) { + var o = t(a.toolbar).html() || ""; + o && n.html(i(o).render(a)) + } + var r = { + 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"} + }, c = []; + "object" == typeof a.defaultToolbar && layui.each(a.defaultToolbar, function (e, t) { + var i = "string" == typeof t ? r[t] : t; + i && c.push('
        ') + }), e.layTool.find(".layui-table-tool-self").html(c.join("")) + }, H.prototype.setParentCol = function (e, t) { + var i = this, a = i.config, l = i.layHeader.find('th[data-key="' + a.index + "-" + t + '"]'), + n = parseInt(l.attr("colspan")) || 0; + if (l[0]) { + var o = t.split("-"), r = a.cols[o[0]][o[1]]; + e ? n-- : n++, l.attr("colspan", n), l[n < 1 ? "addClass" : "removeClass"](p), r.colspan = n, r.hide = n < 1; + var c = l.data("parentkey"); + c && i.setParentCol(e, c) + } + }, H.prototype.setColsPatch = function () { + var e = this, t = e.config; + layui.each(t.cols, function (t, i) { + layui.each(i, function (t, i) { + i.hide && e.setParentCol(i.hide, i.parentKey) + }) + }) + }, H.prototype.setColsWidth = function () { + var e = this, t = e.config, i = 0, a = 0, l = 0, n = 0, o = e.setInit("width"); + e.eachCols(function (e, t) { + t.hide || i++ + }), o = o - function () { + return "line" === t.skin || "nob" === t.skin ? 2 : i + 1 + }() - e.getScrollWidth(e.layMain[0]) - 1; + var r = function (e) { + layui.each(t.cols, function (i, r) { + layui.each(r, function (i, c) { + var d = 0, s = c.minWidth || t.cellMinWidth; + return c ? void (c.colGroup || c.hide || (e ? l && l < s && (a--, d = s) : (d = c.width || 0, /\d+%$/.test(d) ? (d = Math.floor(parseFloat(d) / 100 * o), d < s && (d = s)) : d || (c.width = d = 0, a++)), c.hide && (d = 0), n += d)) : void r.splice(i, 1) + }) + }), o > n && a && (l = (o - n) / a) + }; + r(), r(!0), e.autoColNums = a, e.eachCols(function (i, a) { + var n = a.minWidth || t.cellMinWidth; + a.colGroup || a.hide || (0 === a.width ? e.getCssRule(t.index + "-" + a.key, function (e) { + e.style.width = Math.floor(l >= n ? l : n) + "px" + }) : /\d+%$/.test(a.width) && e.getCssRule(t.index + "-" + a.key, function (e) { + e.style.width = Math.floor(parseFloat(a.width) / 100 * o) + "px" + })) + }); + var c = e.layMain.width() - e.getScrollWidth(e.layMain[0]) - e.layMain.children("table").outerWidth(); + if (e.autoColNums && c >= -i && c <= i) { + var d = function (t) { + var i; + return t = t || e.layHeader.eq(0).find("thead th:last-child"), i = t.data("field"), !i && t.prev()[0] ? d(t.prev()) : t + }, s = d(), u = s.data("key"); + e.getCssRule(u, function (t) { + var i = t.style.width || s.outerWidth(); + t.style.width = parseFloat(i) + c + "px", e.layMain.height() - e.layMain.prop("clientHeight") > 0 && (t.style.width = parseFloat(t.style.width) - 1 + "px") + }) + } + e.loading(!0) + }, H.prototype.resize = function () { + var e = this; + e.fullSize(), e.setColsWidth(), e.scrollPatch() + }, H.prototype.reload = function (e, i) { + var a = this; + e = e || {}, delete a.haveInit, layui.each(e, function (e, t) { + "array" === layui._typeof(t) && delete a.config[e] + }), a.config = t.extend(i, {}, a.config, e), a.render() + }, H.prototype.errorView = function (e) { + var i = this, a = i.layMain.find("." + v), l = t('
        ' + (e || "Error") + "
        "); + a[0] && (i.layNone.remove(), a.remove()), i.layFixed.addClass(p), i.layMain.find("tbody").html(""), i.layMain.append(i.layNone = l), d.cache[i.key] = [] + }, H.prototype.page = 1, H.prototype.pullData = function (e) { + var i = this, a = i.config, l = a.request, n = a.response, o = function () { + "object" == typeof a.initSort && i.sort(a.initSort.field, a.initSort.type) + }; + if (i.startTime = (new Date).getTime(), a.url) { + var r = {}; + r[l.pageName] = e, r[l.limitName] = a.limit; + var c = t.extend(r, a.where); + a.contentType && 0 == a.contentType.indexOf("application/json") && (c = JSON.stringify(c)), i.loading(), t.ajax({ + type: a.method || "get", + url: a.url, + contentType: a.contentType, + data: c, + dataType: "json", + headers: a.headers || {}, + success: function (t) { + "function" == typeof a.parseData && (t = a.parseData(t) || t), t[n.statusName] != n.statusCode ? (i.renderForm(), i.errorView(t[n.msgName] || '\u8fd4\u56de\u7684\u6570\u636e\u4e0d\u7b26\u5408\u89c4\u8303\uff0c\u6b63\u786e\u7684\u6210\u529f\u72b6\u6001\u7801\u5e94\u4e3a\uff1a"' + n.statusName + '": ' + n.statusCode)) : (i.renderData(t, e, t[n.countName]), o(), a.time = (new Date).getTime() - i.startTime + " ms"), i.setColsWidth(), "function" == typeof a.done && a.done(t, e, t[n.countName]) + }, + error: function (e, t) { + i.errorView("\u8bf7\u6c42\u5f02\u5e38\uff0c\u9519\u8bef\u63d0\u793a\uff1a" + t), i.renderForm(), i.setColsWidth(), "function" == typeof a.error && a.error(e, t) + } + }) + } else if ("array" === layui._typeof(a.data)) { + var d = {}, s = e * a.limit - a.limit; + d[n.dataName] = a.data.concat().splice(s, a.limit), d[n.countName] = a.data.length, "object" == typeof a.totalRow && (d[n.totalRowName] = t.extend({}, a.totalRow)), i.renderData(d, e, d[n.countName]), o(), i.setColsWidth(), "function" == typeof a.done && a.done(d, e, d[n.countName]) + } + }, H.prototype.eachCols = function (e) { + var t = this; + return d.eachCols(null, e, t.config.cols), t + }, H.prototype.renderData = function (e, n, o, r) { + var c = this, s = c.config, u = e[s.response.dataName] || [], h = e[s.response.totalRowName], f = [], m = [], + g = [], b = function () { + var e; + return !r && c.sortKey ? c.sort(c.sortKey.field, c.sortKey.sort, !0) : (layui.each(u, function (a, l) { + var o = [], u = [], h = [], v = a + s.limit * (n - 1) + 1; + "array" === layui._typeof(l) && 0 === l.length || (r || (l[d.config.indexName] = a), c.eachCols(function (n, r) { + var f = r.field || n, m = s.index + "-" + r.key, g = l[f]; + if (void 0 !== g && null !== g || (g = ""), !r.colGroup) { + var b = ['', '
        ' + function () { + var n = t.extend(!0, {LAY_INDEX: v, LAY_COL: r}, l), o = d.config.checkName; + switch (r.type) { + case"checkbox": + return '"; + case"radio": + return n[o] && (e = a), ''; + case"numbers": + return v + } + return r.toolbar ? i(t(r.toolbar).html() || "").render(n) : y.call(c, r, g, n) + }(), "
        "].join(""); + o.push(b), r.fixed && "right" !== r.fixed && u.push(b), "right" === r.fixed && h.push(b) + } + }), f.push('' + o.join("") + ""), m.push('' + u.join("") + ""), g.push('' + h.join("") + "")) + }), c.layBody.scrollTop(0), c.layMain.find("." + v).remove(), c.layMain.find("tbody").html(f.join("")), c.layFixLeft.find("tbody").html(m.join("")), c.layFixRight.find("tbody").html(g.join("")), c.renderForm(), "number" == typeof e && c.setThisRowChecked(e), c.syncCheckAll(), c.haveInit ? c.scrollPatch() : setTimeout(function () { + c.scrollPatch() + }, 50), c.haveInit = !0, l.close(c.tipsIndex), s.HAS_SET_COLS_PATCH || c.setColsPatch(), void (s.HAS_SET_COLS_PATCH = !0)) + }; + return d.cache[c.key] = u, c.layPage[0 == o || 0 === u.length && 1 == n ? "addClass" : "removeClass"](p), 0 === u.length ? (c.renderForm(), c.errorView(s.text.none)) : (c.layFixed.removeClass(p), r ? b() : (b(), c.renderTotal(u, h), void (s.page && (s.page = t.extend({ + elem: "layui-table-page" + s.index, + count: o, + limit: s.limit, + limits: s.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 || (c.page = e.curr, s.limit = e.limit, c.pullData(e.curr)) + } + }, s.page), s.page.count = o, a.render(s.page))))) + }, H.prototype.renderTotal = function (e, a) { + var l = this, n = l.config, o = {}; + if (n.totalRow) { + layui.each(e, function (e, t) { + "array" === layui._typeof(t) && 0 === t.length || l.eachCols(function (e, i) { + var a = i.field || e, l = t[a]; + i.totalRow && (o[a] = (o[a] || 0) + (parseFloat(l) || 0)) + }) + }), l.dataTotal = {}; + var r = []; + l.eachCols(function (e, c) { + var d = c.field || e, s = function () { + var e, t = c.totalRowText || "", i = parseFloat(o[d]).toFixed(2), n = {}; + return n[d] = i, e = c.totalRow ? y.call(l, c, i, n) || t : t, a ? a[c.field] || e : e + }(), u = ['', '
        ' + function () { + var e = c.totalRow || n.totalRow; + return "string" == typeof e ? i(e).render(t.extend({TOTAL_NUMS: s}, c)) : s + }(), "
        "].join(""); + c.field && (l.dataTotal[d] = s), r.push(u) + }), l.layTotal.find("tbody").html("" + r.join("") + "") + } + }, H.prototype.getColElem = function (e, t) { + var i = this, a = i.config; + return e.eq(0).find(".laytable-cell-" + (a.index + "-" + t) + ":eq(0)") + }, H.prototype.renderForm = function (e) { + n.render(e, "LAY-table-" + this.index) + }, H.prototype.setThisRowChecked = function (e) { + var t = this, i = (t.config, "layui-table-click"), a = t.layBody.find('tr[data-index="' + e + '"]'); + a.addClass(i).siblings("tr").removeClass(i) + }, H.prototype.sort = function (e, i, a, l) { + var n, o, c = this, s = {}, u = c.config, y = u.elem.attr("lay-filter"), f = d.cache[c.key]; + "string" == typeof e && (n = e, c.layHeader.find("th").each(function (i, a) { + var l = t(this), o = l.data("field"); + if (o === e) return e = l, n = o, !1 + })); + try { + var n = n || e.data("field"), p = e.data("key"); + if (c.sortKey && !a && n === c.sortKey.field && i === c.sortKey.sort) return; + var v = c.layHeader.find("th .laytable-cell-" + p).find(A); + c.layHeader.find("th").find(A).removeAttr("lay-sort"), v.attr("lay-sort", i || null), c.layFixed.find("th") + } catch (m) { + r.error("Table modules: sort field '" + n + "' not matched") + } + c.sortKey = { + field: n, + sort: i + }, u.autoSort && ("asc" === i ? o = layui.sort(f, n) : "desc" === i ? o = layui.sort(f, n, !0) : (o = layui.sort(f, d.config.indexName), delete c.sortKey)), s[u.response.dataName] = o || f, c.renderData(s, c.page, c.count, !0), l && layui.event.call(e, h, "sort(" + y + ")", { + field: n, + type: i + }) + }, H.prototype.loading = function (e) { + var i = this, a = i.config; + a.loading && (e ? (i.layInit && i.layInit.remove(), delete i.layInit, i.layBox.find(x).remove()) : (i.layInit = t(['
        ', '', "
        "].join("")), i.layBox.append(i.layInit))) + }, H.prototype.setCheckData = function (e, t) { + var i = this, a = i.config, l = d.cache[i.key]; + l[e] && "array" !== layui._typeof(l[e]) && (l[e][a.checkName] = t) + }, H.prototype.syncCheckAll = function () { + var e = this, t = e.config, i = e.layHeader.find('input[name="layTableCheckbox"]'), a = function (i) { + return e.eachCols(function (e, a) { + "checkbox" === a.type && (a[t.checkName] = i) + }), i + }; + i[0] && (d.checkStatus(e.key).isAll ? (i[0].checked || (i.prop("checked", !0), e.renderForm("checkbox")), a(!0)) : (i[0].checked && (i.prop("checked", !1), e.renderForm("checkbox")), a(!1))) + }, H.prototype.getCssRule = function (e, t) { + var i = this, a = i.elem.find("style")[0], l = a.sheet || a.styleSheet || {}, n = l.cssRules || l.rules; + layui.each(n, function (i, a) { + if (a.selectorText === ".laytable-cell-" + e) return t(a), !0 + }) + }, H.prototype.fullSize = function () { + var e, t = this, i = t.config, a = i.height; + t.fullHeightGap && (a = F.height() - t.fullHeightGap, a < 135 && (a = 135), t.elem.css("height", a)), a && (e = parseFloat(a) - (t.layHeader.outerHeight() || 38), i.toolbar && (e -= t.layTool.outerHeight() || 50), i.totalRow && (e -= t.layTotal.outerHeight() || 40), i.page && (e -= t.layPage.outerHeight() || 41), t.layMain.css("height", e - 2)) + }, H.prototype.getScrollWidth = function (e) { + var t = 0; + return e ? t = e.offsetWidth - e.clientWidth : (e = document.createElement("div"), e.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 + }, H.prototype.scrollPatch = function () { + var e = this, i = e.layMain.children("table"), a = e.layMain.width() - e.layMain.prop("clientWidth"), + l = e.layMain.height() - e.layMain.prop("clientHeight"), + n = (e.getScrollWidth(e.layMain[0]), i.outerWidth() - e.layMain.width()), o = function (e) { + if (a && l) { + if (e = e.eq(0), !e.find(".layui-table-patch")[0]) { + var i = t('
        '); + i.find("div").css({width: a}), e.find("tr").append(i) + } + } else e.find(".layui-table-patch").remove() + }; + o(e.layHeader), o(e.layTotal); + var r = e.layMain.height(), c = r - l; + e.layFixed.find(C).css("height", i.height() >= c ? c : "auto"), e.layFixRight[n > 0 ? "removeClass" : "addClass"](p), e.layFixRight.css("right", a - 1) + }, H.prototype.events = function () { + var e, i = this, a = i.config, o = t("body"), r = {}, s = i.layHeader.find("th"), u = ".layui-table-cell", + f = a.elem.attr("lay-filter"); + i.layTool.on("click", "*[lay-event]", function (e) { + var o = t(this), r = o.attr("lay-event"), s = function (e) { + var l = t(e.list), n = t('
          '); + n.html(l), a.height && n.css("max-height", a.height - (i.layTool.outerHeight() || 50)), o.find(".layui-table-tool-panel")[0] || o.append(n), i.renderForm(), n.on("click", function (e) { + layui.stope(e) + }), e.done && e.done(n, l) + }; + switch (layui.stope(e), I.trigger("table.tool.panel.remove"), l.close(i.tipsIndex), r) { + case"LAYTABLE_COLS": + s({ + list: function () { + var e = []; + return i.eachCols(function (t, i) { + i.field && "normal" == i.type && e.push('
        • ') + }), e.join("") + }(), done: function () { + n.on("checkbox(LAY_TABLE_TOOL_COLS)", function (e) { + var l = t(e.elem), n = this.checked, o = l.data("key"), r = l.data("parentkey"); + layui.each(a.cols, function (e, t) { + layui.each(t, function (t, l) { + if (e + "-" + t === o) { + var c = l.hide; + l.hide = !n, i.elem.find('*[data-key="' + a.index + "-" + o + '"]')[n ? "removeClass" : "addClass"](p), c != l.hide && i.setParentCol(!n, r), i.resize() + } + }) + }) + }) + } + }); + break; + case"LAYTABLE_EXPORT": + c.ie ? l.tips("\u5bfc\u51fa\u529f\u80fd\u4e0d\u652f\u6301 IE\uff0c\u8bf7\u7528 Chrome \u7b49\u9ad8\u7ea7\u6d4f\u89c8\u5668\u5bfc\u51fa", this, {tips: 3}) : s({ + list: function () { + return ['
        • \u5bfc\u51fa\u5230 Csv \u6587\u4ef6
        • ', '
        • \u5bfc\u51fa\u5230 Excel \u6587\u4ef6
        • '].join("") + }(), done: function (e, l) { + l.on("click", function () { + var e = t(this).data("type"); + d.exportFile.call(i, a.id, null, e) + }) + } + }); + break; + case"LAYTABLE_PRINT": + var u = window.open("\u6253\u5370\u7a97\u53e3", "_blank"), + y = [""].join(""), + v = t(i.layHeader.html()); + v.append(i.layMain.find("table").html()), v.append(i.layTotal.find("table").html()), v.find("th.layui-table-patch").remove(), v.find(".layui-table-col-special").remove(), u.document.write(y + v.prop("outerHTML")), u.document.close(), u.print(), u.close() + } + layui.event.call(this, h, "toolbar(" + f + ")", t.extend({event: r, config: a}, {})) + }), s.on("mousemove", function (e) { + var i = t(this), a = i.offset().left, l = e.clientX - a; + i.data("unresize") || r.resizeStart || (r.allowResize = i.width() - l <= 10, o.css("cursor", r.allowResize ? "col-resize" : "")) + }).on("mouseleave", function () { + t(this); + r.resizeStart || o.css("cursor", "") + }).on("mousedown", function (e) { + var l = t(this); + if (r.allowResize) { + var n = l.data("key"); + e.preventDefault(), r.resizeStart = !0, r.offset = [e.clientX, e.clientY], i.getCssRule(n, function (e) { + var t = e.style.width || l.outerWidth(); + r.rule = e, r.ruleWidth = parseFloat(t), r.minWidth = l.data("minwidth") || a.cellMinWidth + }) + } + }), I.on("mousemove", function (t) { + if (r.resizeStart) { + if (t.preventDefault(), r.rule) { + var a = r.ruleWidth + t.clientX - r.offset[0]; + a < r.minWidth && (a = r.minWidth), r.rule.style.width = a + "px", l.close(i.tipsIndex) + } + e = 1 + } + }).on("mouseup", function (t) { + r.resizeStart && (r = {}, o.css("cursor", ""), i.scrollPatch()), 2 === e && (e = null) + }), s.on("click", function (a) { + var l, n = t(this), o = n.find(A), r = o.attr("lay-sort"); + return o[0] && 1 !== e ? (l = "asc" === r ? "desc" : "desc" === r ? null : "asc", void i.sort(n, l, null, !0)) : e = 2 + }).find(A + " .layui-edge ").on("click", function (e) { + var a = t(this), l = a.index(), n = a.parents("th").eq(0).data("field"); + layui.stope(e), 0 === l ? i.sort(n, "asc", null, !0) : i.sort(n, "desc", null, !0) + }); + var v = function (e) { + var a = t(this), l = a.parents("tr").eq(0).data("index"), n = i.layBody.find('tr[data-index="' + l + '"]'), + o = d.cache[i.key] || []; + return o = o[l] || {}, t.extend({ + tr: n, data: d.clearCacheKey(o), del: function () { + d.cache[i.key][l] = [], n.remove(), i.scrollPatch() + }, update: function (e) { + e = e || {}, layui.each(e, function (e, t) { + if (e in o) { + var a, l = n.children('td[data-field="' + e + '"]'); + o[e] = t, i.eachCols(function (t, i) { + i.field == e && i.templet && (a = i.templet) + }), l.children(u).html(y.call(i, {templet: a}, t, o)), l.data("content", t) + } + }) + } + }, e) + }; + i.elem.on("click", 'input[name="layTableCheckbox"]+', function () { + var e = t(this).prev(), a = i.layBody.find('input[name="layTableCheckbox"]'), + l = e.parents("tr").eq(0).data("index"), n = e[0].checked, + o = "layTableAllChoose" === e.attr("lay-filter"); + o ? (a.each(function (e, t) { + t.checked = n, i.setCheckData(e, n) + }), i.syncCheckAll(), i.renderForm("checkbox")) : (i.setCheckData(l, n), i.syncCheckAll()), layui.event.call(e[0], h, "checkbox(" + f + ")", v.call(e[0], { + checked: n, + type: o ? "all" : "one" + })) + }), i.elem.on("click", 'input[lay-type="layTableRadio"]+', function () { + var e = t(this).prev(), l = e[0].checked, n = d.cache[i.key], o = e.parents("tr").eq(0).data("index"); + layui.each(n, function (e, t) { + o === e ? t[a.checkName] = !0 : delete t[a.checkName] + }), i.setThisRowChecked(o), layui.event.call(this, h, "radio(" + f + ")", v.call(this, {checked: l})) + }), i.layBody.on("mouseenter", "tr", function () { + var e = t(this), a = e.index(); + e.data("off") || i.layBody.find("tr:eq(" + a + ")").addClass(W) + }).on("mouseleave", "tr", function () { + var e = t(this), a = e.index(); + e.data("off") || i.layBody.find("tr:eq(" + a + ")").removeClass(W) + }).on("click", "tr", function () { + m.call(this, "row") + }).on("dblclick", "tr", function () { + m.call(this, "rowDouble") + }); + var m = function (e) { + var i = t(this); + i.data("off") || layui.event.call(this, h, e + "(" + f + ")", v.call(i.children("td")[0])) + }; + i.layBody.on("change", "." + R, function () { + var e = t(this), a = this.value, l = e.parent().data("field"), n = e.parents("tr").eq(0).data("index"), + o = d.cache[i.key][n]; + o[l] = a, layui.event.call(this, h, "edit(" + f + ")", v.call(this, {value: a, field: l})) + }).on("blur", "." + R, function () { + var e, a = t(this), l = this, n = a.parent().data("field"), o = a.parents("tr").eq(0).data("index"), + r = d.cache[i.key][o]; + i.eachCols(function (t, i) { + i.field == n && i.templet && (e = i.templet) + }), a.siblings(u).html(function (t) { + return y.call(i, {templet: e}, t, r) + }(l.value)), a.parent().data("content", l.value), a.remove() + }), i.layBody.on("click", "td", function (e) { + var i = t(this), a = (i.data("field"), i.data("edit")), l = i.children(u); + if (!i.data("off") && a) { + var n = t(''); + return n[0].value = i.data("content") || l.text(), i.find("." + R)[0] || i.append(n), n.focus(), void layui.stope(e) + } + }).on("mouseenter", "td", function () { + b.call(this) + }).on("mouseleave", "td", function () { + b.call(this, "hide") + }); + var g = "layui-table-grid-down", b = function (e) { + var i = t(this), a = i.children(u); + if (!i.data("off")) if (e) i.find(".layui-table-grid-down").remove(); else if (a.prop("scrollWidth") > a.outerWidth()) { + if (a.find("." + g)[0]) return; + i.append('
          ') + } + }; + i.layBody.on("click", "." + g, function (e) { + var n = t(this), o = n.parent(), r = o.children(u); + i.tipsIndex = l.tips(['
          ', r.html(), "
          ", ''].join(""), r[0], { + tips: [3, ""], + time: -1, + anim: -1, + maxWidth: c.ios || c.android ? 300 : i.elem.width() / 2, + isOutAnim: !1, + skin: "layui-table-tips", + success: function (e, t) { + e.find(".layui-table-tips-c").on("click", function () { + l.close(t) + }) + } + }), layui.stope(e) + }), i.layBody.on("click", "*[lay-event]", function () { + var e = t(this), a = e.parents("tr").eq(0).data("index"); + layui.event.call(this, h, "tool(" + f + ")", v.call(this, {event: e.attr("lay-event")})), i.setThisRowChecked(a) + }), i.layMain.on("scroll", function () { + var e = t(this), a = e.scrollLeft(), n = e.scrollTop(); + i.layHeader.scrollLeft(a), i.layTotal.scrollLeft(a), i.layFixed.find(C).scrollTop(n), l.close(i.tipsIndex) + }), F.on("resize", function () { + i.resize() + }) + }, function () { + I.on("click", function () { + I.trigger("table.remove.tool.panel") + }), I.on("table.remove.tool.panel", function () { + t(".layui-table-tool-panel").remove() + }) + }(), d.init = function (e, i) { + i = i || {}; + var a = this, l = t(e ? 'table[lay-filter="' + e + '"]' : f + "[lay-data]"), + n = "Table element property lay-data configuration item has a syntax error: "; + return l.each(function () { + var a = t(this), l = a.attr("lay-data"); + try { + l = new Function("return " + l)() + } catch (o) { + r.error(n + l, "error") + } + var c = [], s = t.extend({ + elem: this, + cols: [], + data: [], + skin: a.attr("lay-skin"), + size: a.attr("lay-size"), + even: "string" == typeof a.attr("lay-even") + }, d.config, i, l); + e && a.hide(), a.find("thead>tr").each(function (e) { + s.cols[e] = [], t(this).children().each(function (i) { + var a = t(this), l = a.attr("lay-data"); + try { + l = new Function("return " + l)() + } catch (o) { + return r.error(n + l) + } + var d = t.extend({ + title: a.text(), + colspan: a.attr("colspan") || 0, + rowspan: a.attr("rowspan") || 0 + }, l); + d.colspan < 2 && c.push(d), s.cols[e].push(d) + }) + }), a.find("tbody>tr").each(function (e) { + var i = t(this), a = {}; + i.children("td").each(function (e, i) { + var l = t(this), n = l.data("field"); + if (n) return a[n] = l.html() + }), layui.each(c, function (e, t) { + var l = i.children("td").eq(e); + a[t.field] = l.html() + }), s.data[e] = a + }), d.render(s) + }), a + }, s.that = {}, s.config = {}, d.eachCols = function (e, i, a) { + var l = s.config[e] || {}, n = [], o = 0; + a = t.extend(!0, [], a || l.cols), layui.each(a, function (e, t) { + layui.each(t, function (t, i) { + if (i.colGroup) { + var l = 0; + o++, i.CHILD_COLS = [], layui.each(a[e + 1], function (e, t) { + t.PARENT_COL_INDEX || l > 1 && l == i.colspan || (t.PARENT_COL_INDEX = o, i.CHILD_COLS.push(t), l += parseInt(t.colspan > 1 ? t.colspan : 1)) + }) + } + i.PARENT_COL_INDEX || n.push(i) + }) + }); + var r = function (e) { + layui.each(e || n, function (e, t) { + return t.CHILD_COLS ? r(t.CHILD_COLS) : void ("function" == typeof i && i(e, t)) + }) + }; + r() + }, d.checkStatus = function (e) { + var t = 0, i = 0, a = [], l = d.cache[e] || []; + return layui.each(l, function (e, l) { + return "array" === layui._typeof(l) ? void i++ : void (l[d.config.checkName] && (t++, a.push(d.clearCacheKey(l)))) + }), {data: a, isAll: !!l.length && t === l.length - i} + }, d.getData = function (e) { + var t = [], i = d.cache[e] || []; + return layui.each(i, function (e, i) { + "array" !== layui._typeof(i) && t.push(d.clearCacheKey(i)) + }), t + }, d.exportFile = function (e, t, i) { + var a = this; + t = t || d.clearCacheKey(d.cache[e]), i = i || "csv"; + var l = s.that[e], n = s.config[e] || {}, o = {csv: "text/csv", xls: "application/vnd.ms-excel"}[i], + u = document.createElement("a"); + return c.ie ? r.error("IE_NOT_SUPPORT_EXPORTS") : (u.href = "data:" + o + ";charset=utf-8,\ufeff" + encodeURIComponent(function () { + var i = [], n = [], o = []; + return layui.each(t, function (t, a) { + var o = []; + "object" == typeof e ? (layui.each(e, function (e, a) { + 0 == t && i.push(a || "") + }), layui.each(d.clearCacheKey(a), function (e, t) { + o.push('"' + (t || "") + '"') + })) : d.eachCols(e, function (e, n) { + if (n.field && "normal" == n.type && !n.hide) { + var r = a[n.field]; + void 0 !== r && null !== r || (r = ""), 0 == t && i.push(n.title || ""), o.push('"' + y.call(l, n, r, a, "text") + '"') + } + }), n.push(o.join(",")) + }), layui.each(a.dataTotal, function (e, t) { + o.push(t) + }), i.join(",") + "\r\n" + n.join("\r\n") + "\r\n" + o.join(",") + }()), u.download = (n.title || "table_" + (n.index || "")) + "." + i, document.body.appendChild(u), u.click(), void document.body.removeChild(u)) + }, d.resize = function (e) { + if (e) { + var t = u(e); + if (!t) return; + s.that[e].resize() + } else layui.each(s.that, function () { + this.resize() + }) + }, d.reload = function (e, t, i) { + var a = u(e); + if (a) { + var l = s.that[e]; + return l.reload(t, i), s.call(l) + } + }, d.render = function (e) { + var t = new H(e); + return s.call(t) + }, d.clearCacheKey = function (e) { + return e = t.extend({}, e), delete e[d.config.checkName], delete e[d.config.indexName], e + }, t(function () { + d.init() + }), e(h, d) +}); +layui.define("jquery", function (e) { + "use strict"; + var i = layui.$, n = (layui.hint(), layui.device(), { + config: {}, set: function (e) { + var n = this; + return n.config = i.extend({}, n.config, e), n + }, on: function (e, i) { + return layui.onevent.call(this, t, e, i) + } + }), t = "carousel", a = "layui-this", l = ">*[carousel-item]>*", o = "layui-carousel-left", + r = "layui-carousel-right", d = "layui-carousel-prev", s = "layui-carousel-next", u = "layui-carousel-arrow", + c = "layui-carousel-ind", m = function (e) { + var t = this; + t.config = i.extend({}, t.config, n.config, e), t.render() + }; + m.prototype.config = { + width: "600px", + height: "280px", + full: !1, + arrow: "hover", + indicator: "inside", + autoplay: !0, + interval: 3e3, + anim: "", + trigger: "click", + index: 0 + }, m.prototype.render = function () { + var e = this, n = e.config; + n.elem = i(n.elem), n.elem[0] && (e.elemItem = n.elem.find(l), n.index < 0 && (n.index = 0), n.index >= e.elemItem.length && (n.index = e.elemItem.length - 1), n.interval < 800 && (n.interval = 800), n.full ? n.elem.css({ + position: "fixed", + width: "100%", + height: "100%", + zIndex: 9999 + }) : n.elem.css({ + width: n.width, + height: n.height + }), n.elem.attr("lay-anim", n.anim), e.elemItem.eq(n.index).addClass(a), e.elemItem.length <= 1 || (e.indicator(), e.arrow(), e.autoplay(), e.events())) + }, m.prototype.reload = function (e) { + var n = this; + clearInterval(n.timer), n.config = i.extend({}, n.config, e), n.render() + }, m.prototype.prevIndex = function () { + var e = this, i = e.config, n = i.index - 1; + return n < 0 && (n = e.elemItem.length - 1), n + }, m.prototype.nextIndex = function () { + var e = this, i = e.config, n = i.index + 1; + return n >= e.elemItem.length && (n = 0), n + }, m.prototype.addIndex = function (e) { + var i = this, n = i.config; + e = e || 1, n.index = n.index + e, n.index >= i.elemItem.length && (n.index = 0) + }, m.prototype.subIndex = function (e) { + var i = this, n = i.config; + e = e || 1, n.index = n.index - e, n.index < 0 && (n.index = i.elemItem.length - 1) + }, m.prototype.autoplay = function () { + var e = this, i = e.config; + i.autoplay && (clearInterval(e.timer), e.timer = setInterval(function () { + e.slide() + }, i.interval)) + }, m.prototype.arrow = function () { + var e = this, n = e.config, + t = i(['", '"].join("")); + n.elem.attr("lay-arrow", n.arrow), n.elem.find("." + u)[0] && n.elem.find("." + u).remove(), n.elem.append(t), t.on("click", function () { + var n = i(this), t = n.attr("lay-type"); + e.slide(t) + }) + }, m.prototype.indicator = function () { + var e = this, n = e.config, t = e.elemInd = i(['
            ', function () { + var i = []; + return layui.each(e.elemItem, function (e) { + i.push("") + }), i.join("") + }(), "
          "].join("")); + n.elem.attr("lay-indicator", n.indicator), n.elem.find("." + c)[0] && n.elem.find("." + c).remove(), n.elem.append(t), "updown" === n.anim && t.css("margin-top", -(t.height() / 2)), t.find("li").on("hover" === n.trigger ? "mouseover" : n.trigger, function () { + var t = i(this), a = t.index(); + a > n.index ? e.slide("add", a - n.index) : a < n.index && e.slide("sub", n.index - a) + }) + }, m.prototype.slide = function (e, i) { + var n = this, l = n.elemItem, u = n.config, c = u.index, m = u.elem.attr("lay-filter"); + n.haveSlide || ("sub" === e ? (n.subIndex(i), l.eq(u.index).addClass(d), setTimeout(function () { + l.eq(c).addClass(r), l.eq(u.index).addClass(r) + }, 50)) : (n.addIndex(i), l.eq(u.index).addClass(s), setTimeout(function () { + l.eq(c).addClass(o), l.eq(u.index).addClass(o) + }, 50)), setTimeout(function () { + l.removeClass(a + " " + d + " " + s + " " + o + " " + r), l.eq(u.index).addClass(a), n.haveSlide = !1 + }, 300), n.elemInd.find("li").eq(u.index).addClass(a).siblings().removeClass(a), n.haveSlide = !0, layui.event.call(this, t, "change(" + m + ")", { + index: u.index, + prevIndex: c, + item: l.eq(u.index) + })) + }, m.prototype.events = function () { + var e = this, i = e.config; + i.elem.data("haveEvents") || (i.elem.on("mouseenter", function () { + clearInterval(e.timer) + }).on("mouseleave", function () { + e.autoplay() + }), i.elem.data("haveEvents", !0)) + }, n.render = function (e) { + var i = new m(e); + return i + }, e(t, n) +}); +layui.define("jquery", function (e) { + "use strict"; + var a = layui.jquery, l = { + config: {}, index: layui.rate ? layui.rate.index + 1e4 : 0, set: function (e) { + var l = this; + return l.config = a.extend({}, l.config, e), l + }, on: function (e, a) { + return layui.onevent.call(this, n, e, a) + } + }, i = function () { + var e = this, a = e.config; + return { + setvalue: function (a) { + e.setvalue.call(e, a) + }, config: a + } + }, n = "rate", t = "layui-rate", o = "layui-icon-rate", u = "layui-icon-rate-solid", s = "layui-icon-rate-half", + r = "layui-icon-rate-solid layui-icon-rate-half", c = "layui-icon-rate-solid layui-icon-rate", + f = "layui-icon-rate layui-icon-rate-half", v = function (e) { + var i = this; + i.index = ++l.index, i.config = a.extend({}, i.config, l.config, e), i.render() + }; + v.prototype.config = { + length: 5, + text: !1, + readonly: !1, + half: !1, + value: 0, + theme: "" + }, v.prototype.render = function () { + var e = this, l = e.config, i = l.theme ? 'style="color: ' + l.theme + ';"' : ""; + l.elem = a(l.elem), l.value > l.length && (l.value = l.length), parseInt(l.value) !== l.value && (l.half || (l.value = Math.ceil(l.value) - l.value < .5 ? Math.ceil(l.value) : Math.floor(l.value))); + for (var n = '
            ", s = 1; s <= l.length; s++) { + var r = '
          • "; + l.half && parseInt(l.value) !== l.value && s == Math.ceil(l.value) ? n = n + '
          • " : n += r + } + n += "
          " + (l.text ? '' + l.value + "\u661f" : "") + ""; + var c = l.elem, f = c.next("." + t); + f[0] && f.remove(), e.elemTemp = a(n), l.span = e.elemTemp.next("span"), l.setText && l.setText(l.value), c.html(e.elemTemp), c.addClass("layui-inline"), l.readonly || e.action() + }, v.prototype.setvalue = function (e) { + var a = this, l = a.config; + l.value = e, a.render() + }, v.prototype.action = function () { + var e = this, l = e.config, i = e.elemTemp, n = i.find("i").width(); + i.children("li").each(function (e) { + var t = e + 1, v = a(this); + v.on("click", function (e) { + if (l.value = t, l.half) { + var o = e.pageX - a(this).offset().left; + o <= n / 2 && (l.value = l.value - .5) + } + l.text && i.next("span").text(l.value + "\u661f"), l.choose && l.choose(l.value), l.setText && l.setText(l.value) + }), v.on("mousemove", function (e) { + if (i.find("i").each(function () { + a(this).addClass(o).removeClass(r) + }), i.find("i:lt(" + t + ")").each(function () { + a(this).addClass(u).removeClass(f) + }), l.half) { + var c = e.pageX - a(this).offset().left; + c <= n / 2 && v.children("i").addClass(s).removeClass(u) + } + }), v.on("mouseleave", function () { + i.find("i").each(function () { + a(this).addClass(o).removeClass(r) + }), i.find("i:lt(" + Math.floor(l.value) + ")").each(function () { + a(this).addClass(u).removeClass(f) + }), l.half && parseInt(l.value) !== l.value && i.children("li:eq(" + Math.floor(l.value) + ")").children("i").addClass(s).removeClass(c) + }) + }) + }, v.prototype.events = function () { + var e = this; + e.config + }, l.render = function (e) { + var a = new v(e); + return i.call(a) + }, e(n, l) +}); +layui.define("jquery", function (e) { + "use strict"; + var l = layui.$, o = function (e) { + }, t = ''; + o.prototype.load = function (e) { + var o, i, n, r, a = this, c = 0; + e = e || {}; + var m = l(e.elem); + if (m[0]) { + var f = l(e.scrollElem || document), u = e.mb || 50, s = !("isAuto" in e) || e.isAuto, + y = e.end || "\u6ca1\u6709\u66f4\u591a\u4e86", v = e.scrollElem && e.scrollElem !== document, + d = "\u52a0\u8f7d\u66f4\u591a", + h = l('"); + m.find(".layui-flow-more")[0] || m.append(h); + var p = function (e, t) { + e = l(e), h.before(e), t = 0 == t || null, t ? h.html(y) : h.find("a").html(d), i = t, o = null, n && n() + }, g = function () { + o = !0, h.find("a").html(t), "function" == typeof e.done && e.done(++c, p) + }; + if (g(), h.find("a").on("click", function () { + l(this); + i || o || g() + }), e.isLazyimg) var n = a.lazyimg({elem: e.elem + " img", scrollElem: e.scrollElem}); + return s ? (f.on("scroll", function () { + var e = l(this), t = e.scrollTop(); + r && clearTimeout(r), !i && m.width() && (r = setTimeout(function () { + var i = v ? e.height() : l(window).height(), + n = v ? e.prop("scrollHeight") : document.documentElement.scrollHeight; + n - t - i <= u && (o || g()) + }, 100)) + }), a) : a + } + }, o.prototype.lazyimg = function (e) { + var o, t = this, i = 0; + e = e || {}; + var n = l(e.scrollElem || document), r = e.elem || "img", a = e.scrollElem && e.scrollElem !== document, + c = function (e, l) { + var o = n.scrollTop(), r = o + l, c = a ? function () { + return e.offset().top - n.offset().top + o + }() : e.offset().top; + if (c >= o && c <= r && e.attr("lay-src")) { + var f = e.attr("lay-src"); + layui.img(f, function () { + var l = t.lazyimg.elem.eq(i); + e.attr("src", f).removeAttr("lay-src"), l[0] && m(l), i++ + }, function () { + t.lazyimg.elem.eq(i); + e.removeAttr("lay-src") + }) + } + }, m = function (e, o) { + var m = a ? (o || n).height() : l(window).height(), f = n.scrollTop(), u = f + m; + if (t.lazyimg.elem = l(r), e) c(e, m); else for (var s = 0; s < t.lazyimg.elem.length; s++) { + var y = t.lazyimg.elem.eq(s), v = a ? function () { + return y.offset().top - n.offset().top + f + }() : y.offset().top; + if (c(y, m), i = s, v > u) break + } + }; + if (m(), !o) { + var f; + n.on("scroll", function () { + var e = l(this); + f && clearTimeout(f), f = setTimeout(function () { + m(null, e) + }, 50) + }), o = !0 + } + return m + }, e("flow", new o) +}); +layui.define(["layer", "form"], function (t) { + "use strict"; + var e = layui.$, i = layui.layer, a = layui.form, l = (layui.hint(), layui.device()), n = "layedit", + o = "layui-show", r = "layui-disabled", c = function () { + var t = this; + t.index = 0, t.config = { + tool: ["strong", "italic", "underline", "del", "|", "left", "center", "right", "|", "link", "unlink", "face", "image"], + hideTool: [], + height: 280 + } + }; + c.prototype.set = function (t) { + var i = this; + return e.extend(!0, i.config, t), i + }, c.prototype.on = function (t, e) { + return layui.onevent(n, t, e) + }, c.prototype.build = function (t, i) { + i = i || {}; + var a = this, n = a.config, r = "layui-layedit", c = e("string" == typeof t ? "#" + t : t), + u = "LAY_layedit_" + ++a.index, d = c.next("." + r), y = e.extend({}, n, i), f = function () { + var t = [], e = {}; + return layui.each(y.hideTool, function (t, i) { + e[i] = !0 + }), layui.each(y.tool, function (i, a) { + C[a] && !e[a] && t.push(C[a]) + }), t.join("") + }(), + m = e(['
          ', '
          ' + f + "
          ", '
          ', '', "
          ", "
          "].join("")); + return l.ie && l.ie < 8 ? c.removeClass("layui-hide").addClass(o) : (d[0] && d.remove(), s.call(a, m, c[0], y), c.addClass("layui-hide").after(m), a.index) + }, c.prototype.getContent = function (t) { + var e = u(t); + if (e[0]) return d(e[0].document.body.innerHTML) + }, c.prototype.getText = function (t) { + var i = u(t); + if (i[0]) return e(i[0].document.body).text() + }, c.prototype.setContent = function (t, i, a) { + var l = u(t); + l[0] && (a ? e(l[0].document.body).append(i) : e(l[0].document.body).html(i), layedit.sync(t)) + }, c.prototype.sync = function (t) { + var i = u(t); + if (i[0]) { + var a = e("#" + i[1].attr("textarea")); + a.val(d(i[0].document.body.innerHTML)) + } + }, c.prototype.getSelection = function (t) { + var e = u(t); + if (e[0]) { + var i = m(e[0].document); + return document.selection ? i.text : i.toString() + } + }; + var s = function (t, i, a) { + var l = this, n = t.find("iframe"); + n.css({height: a.height}).on("load", function () { + var o = n.contents(), r = n.prop("contentWindow"), c = o.find("head"), + s = e([""].join("")), + u = o.find("body"); + c.append(s), u.attr("contenteditable", "true").css({"min-height": a.height}).html(i.value || ""), y.apply(l, [r, n, i, a]), g.call(l, r, t, a) + }) + }, u = function (t) { + var i = e("#LAY_layedit_" + t), a = i.prop("contentWindow"); + return [a, i] + }, d = function (t) { + return 8 == l.ie && (t = t.replace(/<.+>/g, function (t) { + return t.toLowerCase() + })), t + }, y = function (t, a, n, o) { + var r = t.document, c = e(r.body); + c.on("keydown", function (t) { + var e = t.keyCode; + if (13 === e) { + var a = m(r), l = p(a), n = l.parentNode; + if ("pre" === n.tagName.toLowerCase()) { + if (t.shiftKey) return; + return i.msg("\u8bf7\u6682\u65f6\u7528shift+enter"), !1 + } + r.execCommand("formatBlock", !1, "

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

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

          "), setTimeout(function () { + o.focus() + }, 10)) : c[a] && c[a].call(this, u), h.call(t, s, i) + } + }, d = /image/; + s.find(">i").on("mousedown", function () { + var t = e(this), i = t.attr("layedit-event"); + d.test(i) || u.call(this) + }).on("click", function () { + var t = e(this), i = t.attr("layedit-event"); + d.test(i) && u.call(this) + }), o.on("click", function () { + h.call(t, s), i.close(x.index) + }) + }, b = function (t, e) { + var l = this, n = i.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, n) { + var o = "submit(layedit-link-yes)"; + a.render("radio"), t.find(".layui-btn-primary").on("click", function () { + i.close(n), l.focus() + }), a.on(o, function (t) { + i.close(b.index), e && e(t.field) + }) + } + }); + b.index = n + }, x = function (t) { + var a = function () { + var t = ["[\u5fae\u7b11]", "[\u563b\u563b]", "[\u54c8\u54c8]", "[\u53ef\u7231]", "[\u53ef\u601c]", "[\u6316\u9f3b]", "[\u5403\u60ca]", "[\u5bb3\u7f9e]", "[\u6324\u773c]", "[\u95ed\u5634]", "[\u9119\u89c6]", "[\u7231\u4f60]", "[\u6cea]", "[\u5077\u7b11]", "[\u4eb2\u4eb2]", "[\u751f\u75c5]", "[\u592a\u5f00\u5fc3]", "[\u767d\u773c]", "[\u53f3\u54fc\u54fc]", "[\u5de6\u54fc\u54fc]", "[\u5618]", "[\u8870]", "[\u59d4\u5c48]", "[\u5410]", "[\u54c8\u6b20]", "[\u62b1\u62b1]", "[\u6012]", "[\u7591\u95ee]", "[\u998b\u5634]", "[\u62dc\u62dc]", "[\u601d\u8003]", "[\u6c57]", "[\u56f0]", "[\u7761]", "[\u94b1]", "[\u5931\u671b]", "[\u9177]", "[\u8272]", "[\u54fc]", "[\u9f13\u638c]", "[\u6655]", "[\u60b2\u4f24]", "[\u6293\u72c2]", "[\u9ed1\u7ebf]", "[\u9634\u9669]", "[\u6012\u9a82]", "[\u4e92\u7c89]", "[\u5fc3]", "[\u4f24\u5fc3]", "[\u732a\u5934]", "[\u718a\u732b]", "[\u5154\u5b50]", "[ok]", "[\u8036]", "[good]", "[NO]", "[\u8d5e]", "[\u6765]", "[\u5f31]", "[\u8349\u6ce5\u9a6c]", "[\u795e\u9a6c]", "[\u56e7]", "[\u6d6e\u4e91]", "[\u7ed9\u529b]", "[\u56f4\u89c2]", "[\u5a01\u6b66]", "[\u5965\u7279\u66fc]", "[\u793c\u7269]", "[\u949f]", "[\u8bdd\u7b52]", "[\u8721\u70db]", "[\u86cb\u7cd5]"], + e = {}; + return layui.each(t, function (t, i) { + e[i] = layui.cache.dir + "images/face/" + t + ".gif" + }), e + }(); + return x.hide = x.hide || function (t) { + "face" !== e(t.target).attr("layedit-event") && i.close(x.index) + }, x.index = i.tips(function () { + var t = []; + return layui.each(a, function (e, i) { + t.push('
        • ' + e + '
        • ') + }), '
            ' + t.join("") + "
          " + }(), this, { + tips: 1, time: 0, skin: "layui-box layui-util-face", maxWidth: 500, success: function (l, n) { + l.css({marginTop: -4, marginLeft: -10}).find(".layui-clear>li").on("click", function () { + t && t({src: a[this.title], alt: this.title}), i.close(n) + }), e(document).off("click", x.hide).on("click", x.hide) + } + }) + }, k = function (t) { + var e = this, l = i.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 (l, n) { + var o = "submit(layedit-code-yes)"; + a.render("select"), l.find(".layui-btn-primary").on("click", function () { + i.close(n), e.focus() + }), a.on(o, function (e) { + i.close(k.index), t && t(e.field) + }) + } + }); + k.index = l + }, C = { + html: '', + strong: '', + italic: '', + underline: '', + del: '', + "|": '', + left: '', + center: '', + right: '', + link: '', + unlink: '', + face: '', + image: '', + code: '', + help: '' + }, L = new c; + t(n, L) +}); +layui.define("jquery", function (a) { + "use strict"; + var e = layui.$; + a("code", function (a) { + var l = []; + a = a || {}, a.elem = e(a.elem || ".layui-code"), a.lang = "lang" in a ? a.lang : "code", a.elem.each(function () { + l.push(this) + }), layui.each(l.reverse(), function (l, i) { + var t = e(i), c = t.html(); + (t.attr("lay-encode") || a.encode) && (c = c.replace(/&(?!#?[a-zA-Z0-9]+;)/g, "&").replace(//g, ">").replace(/'/g, "'").replace(/"/g, """)), t.html('
          1. ' + c.replace(/[\r\t\n]+/g, "
          2. ") + "
          "), t.find(">.layui-code-h3")[0] || t.prepend('

          ' + (t.attr("lay-title") || a.title || "</>") + '' + (t.attr("lay-lang") || a.lang || "") + "

          "); + var n = t.find(">.layui-code-ol"); + t.addClass("layui-box layui-code-view"), (t.attr("lay-skin") || a.skin) && t.addClass("layui-code-" + (t.attr("lay-skin") || a.skin)), (n.find("li").length / 100 | 0) > 0 && n.css("margin-left", (n.find("li").length / 100 | 0) + "px"), (t.attr("lay-height") || a.height) && n.css("max-height", t.attr("lay-height") || a.height) + }) + }) +}).addcss("modules/code.css", "skincodecss"); \ No newline at end of file