diff --git a/warehousing-system/project/pom.xml b/warehousing-system/project/pom.xml index d957d41c..cd33aa58 100644 --- a/warehousing-system/project/pom.xml +++ b/warehousing-system/project/pom.xml @@ -8,326 +8,11 @@ 1.0-SNAPSHOT wh-manage - wh-common wh-manage-xxs pom - - - 1.8 - - UTF-8 - - UTF-8 - 1.8 - 1.8 - - - - 2.2.9.RELEASE - - Hoxton.SR6 - - 2.2.1.RELEASE - - - 1.3.0 - - - - 2.5 - 1.14 - - 1.9.3 - - 2.6.2 - - - 3.4.0 - - 1.2.73 - - 0.9.1 - - - - 2.9.2 - 2.0.5 - - - 3.17 - - 2.3.2 - - 1.19 - - 1.7 - - - - 5.4.0 - 6.0.20.Final - 1.18.12 - 3.1.0 - 3.10.1 - 2.2.9.RELEASE - 1.8.1 - 4.1.2 - 6.5.0 - - - - - - - - - - - org.springframework.boot - spring-boot-dependencies - ${spring-boot.version} - pom - import - - - - org.springframework.cloud - spring-cloud-dependencies - ${spring-cloud.version} - pom - import - - - - com.alibaba.cloud - spring-cloud-alibaba-dependencies - ${spring-cloud-alibaba.version} - pom - import - - - - com.alibaba.nacos - nacos-client - ${nacos.version} - - - - org.springframework.boot - spring-boot-starter-data-redis - ${redis.version} - - - io.lettuce - lettuce-core - - - - - - com.auth0 - java-jwt - ${java-jwt.version} - - - - redis.clients - jedis - ${jedis.version} - - - - commons-io - commons-io - ${commons.io.version} - - - commons-codec - commons-codec - ${commons-codec.version} - - - - commons-beanutils - commons-beanutils - ${commons.beanutils.version} - - - - org.apache.commons - commons-pool2 - ${common-pool.version} - - - com.baomidou - mybatis-plus-boot-starter - ${mybatis-plus.version} - - - com.baomidou - mybatis-plus-annotation - ${mybatis-plus.version} - - - - com.alibaba - fastjson - ${fastjson.version} - - - - io.jsonwebtoken - jjwt - ${jjwt.version} - - - - - io.springfox - springfox-swagger2 - ${swagger.fox.version} - - - io.springfox - springfox-swagger-ui - ${swagger.fox.version} - - - com.github.xiaoymin - knife4j-dependencies - ${knife4j-Swagger} - pom - import - - - - - org.apache.poi - poi-ooxml - ${poi.version} - - - - com.github.penggle - kaptcha - ${kaptcha.version} - - - - - - - - - - org.apache.velocity - velocity - ${velocity.version} - - - - - cn.hutool - hutool-all - ${hutool.version} - - - - cn.hutool - hutool-core - ${hutool.version} - - - - cn.hutool - hutool-http - ${hutool.version} - - - - cn.hutool - hutool-crypto - ${hutool.version} - - - - cn.hutool - hutool-cache - ${hutool.version} - - - - - cn.hutool - hutool-setting - ${hutool.version} - - - - cn.hutool - hutool-extra - ${hutool.version} - - - - - cn.hutool - hutool-log - ${hutool.version} - - - org.hibernate.validator - hibernate-validator - ${hibernate-validator.version} - compile - - - - org.apache.poi - poi - ${poi.version} - - - - org.flowable - flowable-engine - ${flowable.version} - compile - - - - org.flowable - flowable-spring-boot-starter-basic - ${flowable.version} - - - org.mybatis - mybatis - - - - - - \ No newline at end of file diff --git a/warehousing-system/project/wh-common/pom.xml b/warehousing-system/project/wh-common/pom.xml deleted file mode 100644 index 931bec7d..00000000 --- a/warehousing-system/project/wh-common/pom.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - wh - com.wh - 1.0-SNAPSHOT - - 4.0.0 - 1.0 - com.wh - wh-common - - - com.yxt - yxt-common-core - 0.0.1 - - - org.projectlombok - lombok - true - 1.18.20 - - - io.springfox - springfox-swagger2 - 2.9.2 - - - io.springfox - springfox-swagger-ui - 2.9.2 - - - - \ No newline at end of file diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/ProjectInformationVo.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/ProjectInformationVo.java deleted file mode 100644 index 3759a9f2..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/ProjectInformationVo.java +++ /dev/null @@ -1,18 +0,0 @@ -package com.wh.pojo.sysuser; - -import com.yxt.common.core.vo.Vo; -import io.swagger.annotations.ApiModel; -import lombok.Data; - - -/** - * @author wangpengfei - * @date 2023/4/25 9:29 - */ -@ApiModel(value = "项目信息 视图数据对象", description = "项目信息 视图数据对象") -@Data -public class ProjectInformationVo implements Vo { - private String sid; - //项目名称 - private String entryName; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUser.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUser.java deleted file mode 100644 index 8aca9ab1..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUser.java +++ /dev/null @@ -1,77 +0,0 @@ -package com.wh.pojo.sysuser; - -import com.baomidou.mybatisplus.annotation.TableField; -import com.baomidou.mybatisplus.annotation.TableName; -import com.fasterxml.jackson.annotation.JsonFormat; -import com.yxt.common.core.domain.BaseEntity; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -import java.util.Date; -import java.util.List; - -/** - * Project: anrui_portal(门户建设)
- * File: SysUser.java
- * Class: SysUser
- * Description: 用户表.
- * Copyright: Copyright (c) 2011
- * Company: https://gitee.com/liuzp315
- * Makedate: 2021-08-03 00:24:30
- * - * @author liupopo - * @version 1.0 - * @since 1.0 - */ -@ApiModel(value = "用户表", description = "用户表") -@TableName("sys_user") -@Data -public class SysUser extends BaseEntity { - private static final long serialVersionUID = 1L; - - - @ApiModelProperty("登录名,登录名不能相同") - private String userName; - - @ApiModelProperty("密码(加密或签名后)") - private String password; - - @ApiModelProperty("密码修改时限") - private String pwdDayslimit; - - @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") - @ApiModelProperty("最后一次密码修改时间") - private Date pwdModifyTime; - - @ApiModelProperty("在线状态(0为离线、1为在线)") - private Integer onlineState; - - @ApiModelProperty("用户登录时随机生成身份验证字符串") - private String token; - - @ApiModelProperty("是否是管理员:1管理员,2一般用户,0是超级管理员,3尚无单位人员") - private String isAdmin; - - @ApiModelProperty("手机登录唯一标识,手机与用户绑定字段") - private String appId; - - @ApiModelProperty("关联的人员sid") - private String staffSid; - - @ApiModelProperty("手机号") - private String mobile; - - @ApiModelProperty("用户类型:1员工、2客户、3供应商") - private Integer userType; - - @ApiModelProperty("用户头像") - private String headImage; - private String openId; - private String appletOpenid; - @TableField(exist = false) - private List roleNames; - private String unionid; - //d订阅状态 - private String subscriptionStatus; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserDto.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserDto.java deleted file mode 100644 index 427ed1ff..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserDto.java +++ /dev/null @@ -1,42 +0,0 @@ -package com.wh.pojo.sysuser; - - -import com.yxt.common.core.dto.Dto; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -/** - * Project: anrui_portal(门户建设)
- * File: SysUserDto.java
- * Class: SysUserDto
- * Description: 用户表 数据传输对象.
- * Copyright: Copyright (c) 2011
- * Company: https://gitee.com/liuzp315
- * Makedate: 2021-08-03 00:24:30
- * - * @author liupopo - * @version 1.0 - * @since 1.0 - */ -@ApiModel(value = "用户表 数据传输对象", description = "用户表 数据传输对象") -@Data -public class SysUserDto implements Dto { - @ApiModelProperty("手机号") - private String mobile; - @ApiModelProperty("用户类型:1员工、2客户、3供应商") - private Integer userType; - @ApiModelProperty(value = "姓名", required = true) - //@NotBlank(message = "姓名不能为空") - private String name; - @ApiModelProperty(value = "验证码", required = true) - //@NotBlank(message = "验证码不能为空") - private String verificationCode; - @ApiModelProperty(value = "部门sid") - private String deptSid; - @ApiModelProperty(value = "岗位sid") - private String postSid; - private String bankMessageSid; - private String openid; - private String sid; -} \ No newline at end of file diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserInfoVo.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserInfoVo.java deleted file mode 100644 index 17098e45..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserInfoVo.java +++ /dev/null @@ -1,30 +0,0 @@ -package com.wh.pojo.sysuser; - -import com.yxt.common.core.vo.Vo; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -/** - * @Author dimengzhe - * @Date 2022/2/9 9:12 - * @Description 用户组织信息 - */ -@Data -public class SysUserInfoVo implements Vo { - - private static final long serialVersionUID = 7931121025686046432L; - @ApiModelProperty("关联的员工sid") - private String staffSid; - - @ApiModelProperty("关联的员工名称") - private String staffName; - - @ApiModelProperty("员工的组织sid(多个时为第一个)") - private String orgSid; - - @ApiModelProperty("员工的组织名称(多个时为第一个)") - private String orgName; - - @ApiModelProperty("员工的组织部门编码") - private String orgCode; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserListVo.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserListVo.java deleted file mode 100644 index 10a1e5a7..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserListVo.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.wh.pojo.sysuser; - -import com.yxt.common.core.vo.Vo; -import lombok.Data; - -/** - * @Author dimengzhe - * @Date 2022/9/14 15:36 - * @Description - */ -@Data -public class SysUserListVo implements Vo { - private static final long serialVersionUID = -3047907553025391436L; - - private String name; - - private String sid; - -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserQuery.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserQuery.java deleted file mode 100644 index f0ad61e7..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserQuery.java +++ /dev/null @@ -1,51 +0,0 @@ -package com.wh.pojo.sysuser; - - -import com.yxt.common.core.query.Query; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -/** - * Project: anrui_portal(门户建设)
- * File: SysUserQuery.java
- * Class: SysUserQuery
- * Description: 用户表 查询条件.
- * Copyright: Copyright (c) 2011
- * Company: https://gitee.com/liuzp315
- * Makedate: 2021-08-03 00:24:30
- * - * @author liupopo - * @version 1.0 - * @since 1.0 - */ -@ApiModel(value = "用户表 查询条件", description = "用户表 查询条件") -@Data -public class SysUserQuery implements Query { - - - @ApiModelProperty("角色sid") - private String roleSid; - @ApiModelProperty("用户名称") - private String userName; - @ApiModelProperty("姓名") - private String name; - @ApiModelProperty("部门名称") - private String orgName; - - @ApiModelProperty("密码(加密或签名后)") - private String password; - - @ApiModelProperty("用户登录时随机生成身份验证字符串") - private String token; - @ApiModelProperty("用户登录时随机生成的验证码字符串") - private String verifyCode; - private String uuid; - - @ApiModelProperty("手机登录唯一标识,手机与用户绑定字段") - private String appId; - @ApiModelProperty("手机登录类型:1、密码登录2、验证码登录") - private String type; - @ApiModelProperty(value = "是否是测试",example = "false") - private Boolean isTest; -} \ No newline at end of file diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserUpdate.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserUpdate.java deleted file mode 100644 index 11f650db..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserUpdate.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.wh.pojo.sysuser; - -import lombok.Data; - -/** - * @author feikefei - * @create 2023-08-18-17:19 - */ -@Data -public class SysUserUpdate { - private String original; - private String password; - private String confirmPassword; - private String userSid; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserVo.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserVo.java deleted file mode 100644 index a7ccf9a9..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/SysUserVo.java +++ /dev/null @@ -1,94 +0,0 @@ -package com.wh.pojo.sysuser; - - -import com.fasterxml.jackson.annotation.JsonProperty; -import com.yxt.common.core.vo.Vo; -import io.swagger.annotations.ApiModel; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; -import lombok.NoArgsConstructor; - -import java.util.ArrayList; -import java.util.List; - -/** - * Project: anrui_portal(门户建设)
- * File: SysUserVo.java
- * Class: SysUserVo
- * Description: 用户表 视图数据对象.
- * Copyright: Copyright (c) 2011
- * Company: https://gitee.com/liuzp315
- * Makedate: 2021-08-03 00:24:30
- * - * @author liupopo - * @version 1.0 - * @since 1.0 - */ -@ApiModel(value = "用户表 视图数据对象", description = "用户表 视图数据对象") -@Data -@NoArgsConstructor -public class SysUserVo implements Vo { - private static final long serialVersionUID = 2415131854581950721L; - @ApiModelProperty("部门sid") - private String departmentSid; - @ApiModelProperty("部门名称") - private String departmentName; - @ApiModelProperty("上级部门名称-本级部门名称 岗位名称") - @JsonProperty("pNameAndDepartmentNameAndPostName") - private String pNameAndDepartmentNameAndPostName; - @ApiModelProperty("岗位名称") - private String postName; - @ApiModelProperty("岗位Sid") - private String postSid; - @ApiModelProperty("单位sid") - private String organizationSid; - @ApiModelProperty("单位名称") - private String organizationName; - @ApiModelProperty("用户姓名") - private String name; - @ApiModelProperty("登录名,登录名不能相同") - private String userName; - - @ApiModelProperty("id") - private Integer id; - @ApiModelProperty("用户sid") - private String sid; - @ApiModelProperty("是否是管理员:1管理员,2一般用户,0是超级管理员,3尚无单位人员") - private String isAdmin; - @ApiModelProperty("角色名称") - private String roleName; - - @ApiModelProperty("关联的人员sid") - private String staffSid; - - @ApiModelProperty("手机号") - private String mobile; - @ApiModelProperty(value = "禁用状态") - private String isEnable; - - @ApiModelProperty("用户类型:1员工、2客户、3供应商") - private String userType; - @ApiModelProperty("用户类型:1、2、3") - private String userTypeKey; - @ApiModelProperty("用户头像") - private String headImage; - @ApiModelProperty("组织名称") - private String orgNamePath; - @ApiModelProperty("组织sid") - private String orgSidPath; - @ApiModelProperty(value = "token") - private String token; - @ApiModelProperty(value = "角色sids") - private List roleSids = new ArrayList<>(); - - private String defaultOrgPath; - private String defaultOrgPathName; - - @ApiModelProperty("是否需要更换密码") - private Boolean needResetPsd; - @ApiModelProperty("工号") - private String jobNumber; - private String openid; - @ApiModelProperty("项目sid集合") - private List projectSidList; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/UserQuery.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/UserQuery.java deleted file mode 100644 index 8e1d4419..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/UserQuery.java +++ /dev/null @@ -1,21 +0,0 @@ -package com.wh.pojo.sysuser; - -import com.yxt.common.core.query.Query; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -/** - * @Author dimengzhe - * @Date 2022/6/21 8:47 - * @Description - */ -@Data -public class UserQuery implements Query { - - private static final long serialVersionUID = -3979717077029562761L; - @ApiModelProperty(value = "角色sid必传项") - private String roleSid; - @ApiModelProperty(value = "用户部门sid路径是必传项") - private String orgSidPath; - -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/UserRoleQuery.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/UserRoleQuery.java deleted file mode 100644 index 5ca2fef3..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/UserRoleQuery.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.wh.pojo.sysuser; - -import com.yxt.common.core.query.Query; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -/** - * @Author dimengzhe - * @Date 2022/8/25 8:38 - * @Description - */ -@Data -public class UserRoleQuery implements Query { - private static final long serialVersionUID = 1913450300189800653L; - - @ApiModelProperty("角色sid") - private String roleSid; - private String orgSid; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/app/AppMySysUserInfo.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/app/AppMySysUserInfo.java deleted file mode 100644 index 1597df85..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/app/AppMySysUserInfo.java +++ /dev/null @@ -1,28 +0,0 @@ -package com.wh.pojo.sysuser.app; - -import com.yxt.common.core.vo.Vo; -import io.swagger.annotations.ApiModelProperty; -import io.swagger.annotations.ApiOperation; -import lombok.Data; - -/** - * @Description - * @Author liuguohui - * @Date 2021/9/14 - */ -@ApiOperation(value = "App我的信息") -@Data -public class AppMySysUserInfo implements Vo { - - @ApiModelProperty("id") - private String id; - @ApiModelProperty("用户姓名") - private String name; - @ApiModelProperty("用户头像") - private String headImage; - - @ApiModelProperty("职位") - private String position; - @ApiModelProperty("部门") - private String department; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/app/AppUserOrgInfoVo.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/app/AppUserOrgInfoVo.java deleted file mode 100644 index 286d87df..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/app/AppUserOrgInfoVo.java +++ /dev/null @@ -1,34 +0,0 @@ -package com.wh.pojo.sysuser.app; - -import com.yxt.common.core.vo.Vo; -import io.swagger.annotations.ApiModelProperty; -import io.swagger.annotations.ApiOperation; -import lombok.Data; - -/** - * @Description - * @Author liuguohui - * @Date 2021/12/17 - */ -@ApiOperation("用户组织信息") -@Data -public class AppUserOrgInfoVo implements Vo { - - @ApiModelProperty("关联的员工sid") - private String staffSid; - - @ApiModelProperty("关联的员工名称") - private String staffName; - - @ApiModelProperty("员工的组织sid(多个时为第一个)") - private String orgSid; - - @ApiModelProperty("员工的组织名称(多个时为第一个)") - private String orgName; - - @ApiModelProperty("员工的组织部门编码") - private String orgCode; - - @ApiModelProperty("部门路径") - private String orgSidPath; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/app/MyInfoQuery.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/app/MyInfoQuery.java deleted file mode 100644 index d990df2c..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/app/MyInfoQuery.java +++ /dev/null @@ -1,19 +0,0 @@ -package com.wh.pojo.sysuser.app; - -import com.yxt.common.core.query.Query; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -/** - * @Author dimengzhe - * @Date 2022/10/22 15:24 - * @Description - */ -@Data -public class MyInfoQuery implements Query { - private static final long serialVersionUID = -4771501933318214145L; - @ApiModelProperty("用户sid") - private String userSid; - @ApiModelProperty("组织机构sid") - private String orgPath; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/app/OrgList.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/app/OrgList.java deleted file mode 100644 index 01e62aa2..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/app/OrgList.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.wh.pojo.sysuser.app; - -import com.yxt.common.core.vo.Vo; -import lombok.Data; - -/** - * @Author dimengzhe - * @Date 2022/9/21 9:26 - * @Description - */ -@Data -public class OrgList implements Vo { - private static final long serialVersionUID = -2867882982421321776L; - - private String orgName; - private String orgPath; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/SmsVerifyCodeQuery.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/SmsVerifyCodeQuery.java deleted file mode 100644 index ea2b4bf4..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/SmsVerifyCodeQuery.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.wh.pojo.sysuser.wx; - -import com.yxt.common.core.query.Query; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -@Data -public class SmsVerifyCodeQuery implements Query { - @ApiModelProperty("手机号码") - private String mobile; - @ApiModelProperty("手机验证码") - private String code; - @ApiModelProperty("调用定位") - String callLocation; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/SysUserLoginVo.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/SysUserLoginVo.java deleted file mode 100644 index c7b91b55..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/SysUserLoginVo.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.wh.pojo.sysuser.wx; - -import com.yxt.common.core.vo.Vo; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -@Data -public class SysUserLoginVo implements Vo { - @ApiModelProperty(value = "用户Sid") - private String sysUserSid; - @ApiModelProperty(value = "用户登录时随机生成身份验证字符串") - private String token; - @ApiModelProperty(value = "是否登陆") - private Boolean isLogin; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/SysUserWxBindMobileDto.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/SysUserWxBindMobileDto.java deleted file mode 100644 index b3d0b0b7..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/SysUserWxBindMobileDto.java +++ /dev/null @@ -1,18 +0,0 @@ -package com.wh.pojo.sysuser.wx; - -import com.yxt.common.core.dto.Dto; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -@Data -public class SysUserWxBindMobileDto implements Dto { - @ApiModelProperty(value = "用户登陆授权Sid") - private String sysUserWxAuthSid; - @ApiModelProperty(value = "手机号") - private String mobile; - @ApiModelProperty(value = "验证码") - private String code; - //微信id - private String openid; - private String unionid; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxHomePageVo.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxHomePageVo.java deleted file mode 100644 index 939464a2..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxHomePageVo.java +++ /dev/null @@ -1,27 +0,0 @@ -package com.wh.pojo.sysuser.wx; - -import com.yxt.common.core.vo.Vo; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -/** - * @author dimengzhe - * @date 2021/10/12 10:53 - * @description - */ -@Data -public class WxHomePageVo implements Vo { - private static final long serialVersionUID = 2116719971434282451L; - @ApiModelProperty(value = "头像") - private String headImage; - - @ApiModelProperty(value = "提醒") - private String message; - - @ApiModelProperty(value = "身份证有效期") - private String idTerm; - @ApiModelProperty(value = "是否有提示") - private Boolean isHave; - @ApiModelProperty(value = "客户sid") - private String staffSid; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxMySysUserInfoVo.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxMySysUserInfoVo.java deleted file mode 100644 index 15aa1331..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxMySysUserInfoVo.java +++ /dev/null @@ -1,23 +0,0 @@ -package com.wh.pojo.sysuser.wx; - -import com.yxt.common.core.utils.desensitized.Sensitive; -import com.yxt.common.core.utils.desensitized.SensitiveTypeEnum; -import com.yxt.common.core.vo.Vo; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -/** - * @author dimengzhe - * @date 2021/10/6 9:12 - * @description 客户端我的页面 - */ -@Data -public class WxMySysUserInfoVo implements Vo { - private static final long serialVersionUID = 6495105262502269503L; - - @ApiModelProperty(value = "姓名") - @Sensitive(type = SensitiveTypeEnum.CHINESE_NAME) - private String name; - @ApiModelProperty(value = "头像") - private String headImage; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxSysUserDto.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxSysUserDto.java deleted file mode 100644 index 5acbbd28..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxSysUserDto.java +++ /dev/null @@ -1,33 +0,0 @@ -package com.wh.pojo.sysuser.wx; - -import com.yxt.common.core.dto.Dto; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -import javax.validation.constraints.NotBlank; -import javax.validation.constraints.Pattern; - -/** - * @author dimengzhe - * @date 2021/10/5 13:31 - * @description - */ -@Data -public class WxSysUserDto implements Dto { - private static final long serialVersionUID = -3446342255009165324L; - - @ApiModelProperty(value = "手机号", required = true) - @NotBlank(message = "手机号不能为空") - @Pattern(regexp = "^((13[0-9])|(14[5,7])|(15[0-3,5-9])|(17[0,3,5-8])|(18[0-9])|166|198|199|(147))\\d{8}$", message = "手机号码格式不正确") - private String mobile; - @ApiModelProperty(value = "验证码", required = true) - @NotBlank(message = "验证码不能为空") - private String verificationCode; - @ApiModelProperty(value = "姓名", required = true) - @NotBlank(message = "姓名不能为空") - private String name; - @ApiModelProperty(value = "身份证号", required = true) - @NotBlank(message = "身份证号不能为空") - private String idNo; - -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxSysUserLoginQuery.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxSysUserLoginQuery.java deleted file mode 100644 index 92ab5b5b..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxSysUserLoginQuery.java +++ /dev/null @@ -1,29 +0,0 @@ -package com.wh.pojo.sysuser.wx; - -import com.yxt.common.core.query.Query; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -import javax.validation.constraints.NotBlank; - -/** - * @author dimengzhe - * @date 2021/10/6 14:31 - * @description - */ -@Data -public class WxSysUserLoginQuery implements Query { - private static final long serialVersionUID = -3754864114501469472L; - @ApiModelProperty(value = "用户名或手机号", required = true) - @NotBlank(message = "用户名不能为空") - private String userName; - @ApiModelProperty(value = "手机登录类型:1、密码登录,2、验证码登录", required = true) - @NotBlank(message = "手机登录类型不能为空") - private String type; - - @ApiModelProperty(value = "密码") - private String password; - - @ApiModelProperty(value = "验证码") - private String verifyCode; -} diff --git a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxSysUserVo.java b/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxSysUserVo.java deleted file mode 100644 index aae56693..00000000 --- a/warehousing-system/project/wh-common/src/main/java/com/wh/pojo/sysuser/wx/WxSysUserVo.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.wh.pojo.sysuser.wx; - -import com.yxt.common.core.vo.Vo; -import io.swagger.annotations.ApiModelProperty; -import lombok.Data; - -/** - * @author dimengzhe - * @date 2021/10/6 14:52 - * @description - */ -@Data -public class WxSysUserVo implements Vo { - private static final long serialVersionUID = 1700823767702299465L; - /*若为员工,则为人员sid。若为客户,则为客户sid。若为供应厂商,则为供应厂商的sid*/ - @ApiModelProperty(value = "关联的客户sid") - private String staffSid; - - @ApiModelProperty(value = "手机号") - private String mobile; - - @ApiModelProperty(value = "用户类型:1员工、2客户、3供应商") - private String userType; - - @ApiModelProperty(value = "用户sid") - private String userSid; - - @ApiModelProperty(value = "登录名,登录名不能相同") - private String userName; - @ApiModelProperty(value = "用户姓名") - private String name; - - @ApiModelProperty(value = "token") - private String token; - - @ApiModelProperty(value = "未读数量",example = "1") - private String num; -} diff --git a/warehousing-system/project/wh-manage-xxs/pom.xml b/warehousing-system/project/wh-manage-xxs/pom.xml index b933677b..1d6ab21f 100644 --- a/warehousing-system/project/wh-manage-xxs/pom.xml +++ b/warehousing-system/project/wh-manage-xxs/pom.xml @@ -2,22 +2,306 @@ - - wh - com.wh - 1.0-SNAPSHOT - - 4.0.0 + com.wh + 1.0 wh-manage-xxs + 4.0.0 + + + + + 1.8 + + UTF-8 + + UTF-8 + 1.8 + 1.8 + + + + 2.2.9.RELEASE + + Hoxton.SR6 + + 2.2.1.RELEASE + + + 1.3.0 + + + + 2.5 + 1.14 + + 1.9.3 + + 2.6.2 + + + 3.4.0 + + 1.2.73 + + 0.9.1 + + + + 2.9.2 + 2.0.5 + + + 3.17 + + 2.3.2 + + 1.19 + + 1.7 + + + + 5.4.0 + 6.0.20.Final + 1.18.12 + 3.1.0 + 3.10.1 + 2.2.9.RELEASE + 1.8.1 + 4.1.2 + + + + + + + + + org.springframework.boot + spring-boot-dependencies + ${spring-boot.version} + pom + import + + + + org.springframework.cloud + spring-cloud-dependencies + ${spring-cloud.version} + pom + import + + + + com.alibaba.cloud + spring-cloud-alibaba-dependencies + ${spring-cloud-alibaba.version} + pom + import + + + + com.alibaba.nacos + nacos-client + ${nacos.version} + + + + org.springframework.boot + spring-boot-starter-data-redis + ${redis.version} + + + io.lettuce + lettuce-core + + + + + + com.auth0 + java-jwt + ${java-jwt.version} + + + + redis.clients + jedis + ${jedis.version} + + + + commons-io + commons-io + ${commons.io.version} + + + commons-codec + commons-codec + ${commons-codec.version} + + + + commons-beanutils + commons-beanutils + ${commons.beanutils.version} + + + + org.apache.commons + commons-pool2 + ${common-pool.version} + + + com.baomidou + mybatis-plus-boot-starter + ${mybatis-plus.version} + + + com.baomidou + mybatis-plus-annotation + ${mybatis-plus.version} + + + + com.alibaba + fastjson + ${fastjson.version} + + + + io.jsonwebtoken + jjwt + ${jjwt.version} + + + + io.springfox + springfox-swagger2 + ${swagger.fox.version} + + + io.springfox + springfox-swagger-ui + ${swagger.fox.version} + + + com.github.xiaoymin + knife4j-dependencies + ${knife4j-Swagger} + pom + import + + + + + org.apache.poi + poi-ooxml + ${poi.version} + + + + com.github.penggle + kaptcha + ${kaptcha.version} + + + + + + + + + + org.apache.velocity + velocity + ${velocity.version} + + + + + cn.hutool + hutool-all + ${hutool.version} + + + + cn.hutool + hutool-core + ${hutool.version} + + + + cn.hutool + hutool-http + ${hutool.version} + + + + cn.hutool + hutool-crypto + ${hutool.version} + + + + cn.hutool + hutool-cache + ${hutool.version} + + + + + cn.hutool + hutool-setting + ${hutool.version} + + + + cn.hutool + hutool-extra + ${hutool.version} + + + + + cn.hutool + hutool-log + ${hutool.version} + + + org.hibernate.validator + hibernate-validator + ${hibernate-validator.version} + compile + + + + org.apache.poi + poi + ${poi.version} + + + - - - - - org.jetbrains annotations @@ -33,24 +317,14 @@ org.springframework.boot spring-boot-starter-cache - - org.springframework.cloud - spring-cloud-starter-openfeign - - - - + + + + + + - - com.yxt - yxt-common-base - 0.0.1 - - - - - org.projectlombok @@ -102,7 +376,7 @@ - wm-manager + wm-manage-xxs org.springframework.boot diff --git a/warehousing-system/project/wh-manage-xxs/src/main/java/com/wh/service/entinfo/EntInfoService.java b/warehousing-system/project/wh-manage-xxs/src/main/java/com/wh/service/entinfo/EntInfoService.java index fda1afc0..a132f574 100644 --- a/warehousing-system/project/wh-manage-xxs/src/main/java/com/wh/service/entinfo/EntInfoService.java +++ b/warehousing-system/project/wh-manage-xxs/src/main/java/com/wh/service/entinfo/EntInfoService.java @@ -30,19 +30,13 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.wh.mapper.entinfo.EntInfoMapper; import com.wh.pojo.entinfo.*; +import com.yxt.common.base.service.MybatisBaseService; +import com.yxt.common.base.utils.PagerUtil; import com.yxt.common.core.query.PagerQuery; -import com.yxt.common.core.result.ResultBean; import com.yxt.common.core.vo.PagerVo; import org.apache.commons.lang3.StringUtils; -import com.yxt.common.base.service.MybatisBaseService; -import com.yxt.common.base.utils.PagerUtil; - -import org.springframework.cloud.openfeign.FeignClient; import org.springframework.stereotype.Service; -import javax.annotation.Resource; -import java.util.List; - /** * Project: warehouse(仓储)
* File: EntInfoService.java
diff --git a/warehousing-system/project/wh-manage-xxs/src/main/resources/application-devv.yml b/warehousing-system/project/wh-manage-xxs/src/main/resources/application-devv.yml index 4a4292aa..2452c5ad 100644 --- a/warehousing-system/project/wh-manage-xxs/src/main/resources/application-devv.yml +++ b/warehousing-system/project/wh-manage-xxs/src/main/resources/application-devv.yml @@ -1,14 +1,9 @@ spring: resources: static-locations: file:D://supervise - cloud: - nacos: - discovery: - server-addr: 127.0.0.1:8848 datasource: url: jdbc:mysql://127.0.0.1:3306/warehouse2?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true username: root - #password: 1LAiGz$t1*Iw password: root redis: database: 3 # Redis数据库索引(默认为0) @@ -19,6 +14,6 @@ spring: max-idle: 8 #连接池中的最大空闲连接 max-wait: -1 # 连接池最大阻塞等待时间(使用负值表示没有限制) min-idle: 0 # 连接池中的最小空闲连接 - password: 123456 + password: port: 6379 timeout: 0 # 连接超时时间(毫秒) \ No newline at end of file diff --git a/warehousing-system/project/wh-manage-xxs/src/main/resources/application-pro.yml b/warehousing-system/project/wh-manage-xxs/src/main/resources/application-pro.yml index 6c9039d5..d0d738c1 100644 --- a/warehousing-system/project/wh-manage-xxs/src/main/resources/application-pro.yml +++ b/warehousing-system/project/wh-manage-xxs/src/main/resources/application-pro.yml @@ -1,15 +1,10 @@ spring: resources: static-locations: file:D://supervise - cloud: - nacos: - discovery: - server-addr: 127.0.0.1:8848 datasource: - url: jdbc:mysql://127.0.0.1:3306/warehouse2?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true + url: jdbc:mysql://127.0.0.1:3306/warehouse_xxs?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true username: root password: 1LAiGz$t1*Iw - #password: root redis: database: 3 # Redis数据库索引(默认为0) diff --git a/warehousing-system/project/wh-manage-xxs/src/main/resources/application-test.yml b/warehousing-system/project/wh-manage-xxs/src/main/resources/application-test.yml index 2bf78373..aeb9593c 100644 --- a/warehousing-system/project/wh-manage-xxs/src/main/resources/application-test.yml +++ b/warehousing-system/project/wh-manage-xxs/src/main/resources/application-test.yml @@ -1,12 +1,10 @@ spring: resources: static-locations: file:D://supervise - datasource: url: jdbc:mysql://39.104.100.138:3306/warehouse_xxs?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&autoReconnect=true&allowMultiQueries=true username: root password: yxt_mysql_138 - #password: root redis: database: 3 # Redis数据库索引(默认为0) diff --git a/warehousing-system/project/wh-manage-xxs/src/main/resources/application.yml b/warehousing-system/project/wh-manage-xxs/src/main/resources/application.yml index c4144f07..1aa701f3 100644 --- a/warehousing-system/project/wh-manage-xxs/src/main/resources/application.yml +++ b/warehousing-system/project/wh-manage-xxs/src/main/resources/application.yml @@ -1,5 +1,5 @@ server: - port: 9050 + port: 9051 servlet: context-path: / multipart: @@ -8,10 +8,11 @@ server: max-request-size: 200MB spring: application: - name: supervise-wm + name: supervise-wm-xxs profiles: - active: test - #active: pro + active: devv +# active: test +# active: pro messages: basename: i18n/messages diff --git a/warehousing-system/project/wh-manage-xxs/src/main/resources/logback-spring.xml b/warehousing-system/project/wh-manage-xxs/src/main/resources/logback-spring.xml index 62a203f2..975587f4 100644 --- a/warehousing-system/project/wh-manage-xxs/src/main/resources/logback-spring.xml +++ b/warehousing-system/project/wh-manage-xxs/src/main/resources/logback-spring.xml @@ -1,7 +1,7 @@ - + diff --git a/warehousing-system/project_web_ui - xxs/.editorconfig b/warehousing-system/project_web_ui-xxs/.editorconfig similarity index 100% rename from warehousing-system/project_web_ui - xxs/.editorconfig rename to warehousing-system/project_web_ui-xxs/.editorconfig diff --git a/warehousing-system/project_web_ui - xxs/.env.development b/warehousing-system/project_web_ui-xxs/.env.development similarity index 100% rename from warehousing-system/project_web_ui - xxs/.env.development rename to warehousing-system/project_web_ui-xxs/.env.development diff --git a/warehousing-system/project_web_ui - xxs/.env.production b/warehousing-system/project_web_ui-xxs/.env.production similarity index 100% rename from warehousing-system/project_web_ui - xxs/.env.production rename to warehousing-system/project_web_ui-xxs/.env.production diff --git a/warehousing-system/project_web_ui - xxs/.env.staging b/warehousing-system/project_web_ui-xxs/.env.staging similarity index 100% rename from warehousing-system/project_web_ui - xxs/.env.staging rename to warehousing-system/project_web_ui-xxs/.env.staging diff --git a/warehousing-system/project_web_ui - xxs/.eslintignore b/warehousing-system/project_web_ui-xxs/.eslintignore similarity index 100% rename from warehousing-system/project_web_ui - xxs/.eslintignore rename to warehousing-system/project_web_ui-xxs/.eslintignore diff --git a/warehousing-system/project_web_ui - xxs/.eslintrc.js b/warehousing-system/project_web_ui-xxs/.eslintrc.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/.eslintrc.js rename to warehousing-system/project_web_ui-xxs/.eslintrc.js diff --git a/warehousing-system/project_web_ui - xxs/.gitignore b/warehousing-system/project_web_ui-xxs/.gitignore similarity index 100% rename from warehousing-system/project_web_ui - xxs/.gitignore rename to warehousing-system/project_web_ui-xxs/.gitignore diff --git a/warehousing-system/project_web_ui - xxs/.travis.yml b/warehousing-system/project_web_ui-xxs/.travis.yml similarity index 100% rename from warehousing-system/project_web_ui - xxs/.travis.yml rename to warehousing-system/project_web_ui-xxs/.travis.yml diff --git a/warehousing-system/project_web_ui - xxs/LICENSE b/warehousing-system/project_web_ui-xxs/LICENSE similarity index 100% rename from warehousing-system/project_web_ui - xxs/LICENSE rename to warehousing-system/project_web_ui-xxs/LICENSE diff --git a/warehousing-system/project_web_ui - xxs/README-zh.md b/warehousing-system/project_web_ui-xxs/README-zh.md similarity index 100% rename from warehousing-system/project_web_ui - xxs/README-zh.md rename to warehousing-system/project_web_ui-xxs/README-zh.md diff --git a/warehousing-system/project_web_ui - xxs/README.md b/warehousing-system/project_web_ui-xxs/README.md similarity index 100% rename from warehousing-system/project_web_ui - xxs/README.md rename to warehousing-system/project_web_ui-xxs/README.md diff --git a/warehousing-system/project_web_ui - xxs/babel.config.js b/warehousing-system/project_web_ui-xxs/babel.config.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/babel.config.js rename to warehousing-system/project_web_ui-xxs/babel.config.js diff --git a/warehousing-system/project_web_ui - xxs/jest.config.js b/warehousing-system/project_web_ui-xxs/jest.config.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/jest.config.js rename to warehousing-system/project_web_ui-xxs/jest.config.js diff --git a/warehousing-system/project_web_ui - xxs/jsconfig.json b/warehousing-system/project_web_ui-xxs/jsconfig.json similarity index 100% rename from warehousing-system/project_web_ui - xxs/jsconfig.json rename to warehousing-system/project_web_ui-xxs/jsconfig.json diff --git a/warehousing-system/project_web_ui - xxs/mock/index.js b/warehousing-system/project_web_ui-xxs/mock/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/mock/index.js rename to warehousing-system/project_web_ui-xxs/mock/index.js diff --git a/warehousing-system/project_web_ui - xxs/mock/mock-server.js b/warehousing-system/project_web_ui-xxs/mock/mock-server.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/mock/mock-server.js rename to warehousing-system/project_web_ui-xxs/mock/mock-server.js diff --git a/warehousing-system/project_web_ui - xxs/mock/table.js b/warehousing-system/project_web_ui-xxs/mock/table.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/mock/table.js rename to warehousing-system/project_web_ui-xxs/mock/table.js diff --git a/warehousing-system/project_web_ui - xxs/mock/user.js b/warehousing-system/project_web_ui-xxs/mock/user.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/mock/user.js rename to warehousing-system/project_web_ui-xxs/mock/user.js diff --git a/warehousing-system/project_web_ui - xxs/mock/utils.js b/warehousing-system/project_web_ui-xxs/mock/utils.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/mock/utils.js rename to warehousing-system/project_web_ui-xxs/mock/utils.js diff --git a/warehousing-system/project_web_ui - xxs/package.json b/warehousing-system/project_web_ui-xxs/package.json similarity index 100% rename from warehousing-system/project_web_ui - xxs/package.json rename to warehousing-system/project_web_ui-xxs/package.json diff --git a/warehousing-system/project_web_ui - xxs/pnpm-lock.yaml b/warehousing-system/project_web_ui-xxs/pnpm-lock.yaml similarity index 100% rename from warehousing-system/project_web_ui - xxs/pnpm-lock.yaml rename to warehousing-system/project_web_ui-xxs/pnpm-lock.yaml diff --git a/warehousing-system/project_web_ui - xxs/postcss.config.js b/warehousing-system/project_web_ui-xxs/postcss.config.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/postcss.config.js rename to warehousing-system/project_web_ui-xxs/postcss.config.js diff --git a/warehousing-system/project_web_ui - xxs/public/favicon.ico b/warehousing-system/project_web_ui-xxs/public/favicon.ico similarity index 100% rename from warehousing-system/project_web_ui - xxs/public/favicon.ico rename to warehousing-system/project_web_ui-xxs/public/favicon.ico diff --git a/warehousing-system/project_web_ui - xxs/public/faviconhr.ico b/warehousing-system/project_web_ui-xxs/public/faviconhr.ico similarity index 100% rename from warehousing-system/project_web_ui - xxs/public/faviconhr.ico rename to warehousing-system/project_web_ui-xxs/public/faviconhr.ico diff --git a/warehousing-system/project_web_ui - xxs/public/image/liuchengtu.jpg b/warehousing-system/project_web_ui-xxs/public/image/liuchengtu.jpg similarity index 100% rename from warehousing-system/project_web_ui - xxs/public/image/liuchengtu.jpg rename to warehousing-system/project_web_ui-xxs/public/image/liuchengtu.jpg diff --git a/warehousing-system/project_web_ui - xxs/public/index.html b/warehousing-system/project_web_ui-xxs/public/index.html similarity index 100% rename from warehousing-system/project_web_ui - xxs/public/index.html rename to warehousing-system/project_web_ui-xxs/public/index.html diff --git a/warehousing-system/project_web_ui - xxs/src/App.vue b/warehousing-system/project_web_ui-xxs/src/App.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/App.vue rename to warehousing-system/project_web_ui-xxs/src/App.vue diff --git a/warehousing-system/project_web_ui - xxs/src/api/Common/Upload.js b/warehousing-system/project_web_ui-xxs/src/api/Common/Upload.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/Common/Upload.js rename to warehousing-system/project_web_ui-xxs/src/api/Common/Upload.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/Common/areaPicker.js b/warehousing-system/project_web_ui-xxs/src/api/Common/areaPicker.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/Common/areaPicker.js rename to warehousing-system/project_web_ui-xxs/src/api/Common/areaPicker.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/Common/permission.js b/warehousing-system/project_web_ui-xxs/src/api/Common/permission.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/Common/permission.js rename to warehousing-system/project_web_ui-xxs/src/api/Common/permission.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/Risk/index.js b/warehousing-system/project_web_ui-xxs/src/api/Risk/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/Risk/index.js rename to warehousing-system/project_web_ui-xxs/src/api/Risk/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/Risk/riskIndex.js b/warehousing-system/project_web_ui-xxs/src/api/Risk/riskIndex.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/Risk/riskIndex.js rename to warehousing-system/project_web_ui-xxs/src/api/Risk/riskIndex.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/User/login.js b/warehousing-system/project_web_ui-xxs/src/api/User/login.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/User/login.js rename to warehousing-system/project_web_ui-xxs/src/api/User/login.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/User/user.js b/warehousing-system/project_web_ui-xxs/src/api/User/user.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/User/user.js rename to warehousing-system/project_web_ui-xxs/src/api/User/user.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/flow/cunfangdidianbiangeng.js b/warehousing-system/project_web_ui-xxs/src/api/flow/cunfangdidianbiangeng.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/flow/cunfangdidianbiangeng.js rename to warehousing-system/project_web_ui-xxs/src/api/flow/cunfangdidianbiangeng.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/flow/flowable.js b/warehousing-system/project_web_ui-xxs/src/api/flow/flowable.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/flow/flowable.js rename to warehousing-system/project_web_ui-xxs/src/api/flow/flowable.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/flow/tiaochekaipiaoshenqing.js b/warehousing-system/project_web_ui-xxs/src/api/flow/tiaochekaipiaoshenqing.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/flow/tiaochekaipiaoshenqing.js rename to warehousing-system/project_web_ui-xxs/src/api/flow/tiaochekaipiaoshenqing.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/flow/tiaozhangshenqing.js b/warehousing-system/project_web_ui-xxs/src/api/flow/tiaozhangshenqing.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/flow/tiaozhangshenqing.js rename to warehousing-system/project_web_ui-xxs/src/api/flow/tiaozhangshenqing.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/flow/todo.js b/warehousing-system/project_web_ui-xxs/src/api/flow/todo.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/flow/todo.js rename to warehousing-system/project_web_ui-xxs/src/api/flow/todo.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/flow/vehicleReturn.js b/warehousing-system/project_web_ui-xxs/src/api/flow/vehicleReturn.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/flow/vehicleReturn.js rename to warehousing-system/project_web_ui-xxs/src/api/flow/vehicleReturn.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/Role/role.js b/warehousing-system/project_web_ui-xxs/src/api/system/Role/role.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/Role/role.js rename to warehousing-system/project_web_ui-xxs/src/api/system/Role/role.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/Role/roleManage.js b/warehousing-system/project_web_ui-xxs/src/api/system/Role/roleManage.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/Role/roleManage.js rename to warehousing-system/project_web_ui-xxs/src/api/system/Role/roleManage.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/basefkManage/index.js b/warehousing-system/project_web_ui-xxs/src/api/system/basefkManage/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/basefkManage/index.js rename to warehousing-system/project_web_ui-xxs/src/api/system/basefkManage/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/dataDict/dataDict.js b/warehousing-system/project_web_ui-xxs/src/api/system/dataDict/dataDict.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/dataDict/dataDict.js rename to warehousing-system/project_web_ui-xxs/src/api/system/dataDict/dataDict.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/departments/departments.js b/warehousing-system/project_web_ui-xxs/src/api/system/departments/departments.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/departments/departments.js rename to warehousing-system/project_web_ui-xxs/src/api/system/departments/departments.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/dictType/dictCommon.js b/warehousing-system/project_web_ui-xxs/src/api/system/dictType/dictCommon.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/dictType/dictCommon.js rename to warehousing-system/project_web_ui-xxs/src/api/system/dictType/dictCommon.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/dictType/index.js b/warehousing-system/project_web_ui-xxs/src/api/system/dictType/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/dictType/index.js rename to warehousing-system/project_web_ui-xxs/src/api/system/dictType/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/functional/functional.js b/warehousing-system/project_web_ui-xxs/src/api/system/functional/functional.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/functional/functional.js rename to warehousing-system/project_web_ui-xxs/src/api/system/functional/functional.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/log/index.js b/warehousing-system/project_web_ui-xxs/src/api/system/log/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/log/index.js rename to warehousing-system/project_web_ui-xxs/src/api/system/log/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/menu/index.js b/warehousing-system/project_web_ui-xxs/src/api/system/menu/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/menu/index.js rename to warehousing-system/project_web_ui-xxs/src/api/system/menu/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/organization/organization.js b/warehousing-system/project_web_ui-xxs/src/api/system/organization/organization.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/organization/organization.js rename to warehousing-system/project_web_ui-xxs/src/api/system/organization/organization.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/postManage/index.js b/warehousing-system/project_web_ui-xxs/src/api/system/postManage/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/postManage/index.js rename to warehousing-system/project_web_ui-xxs/src/api/system/postManage/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/roleAdminister/index.js b/warehousing-system/project_web_ui-xxs/src/api/system/roleAdminister/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/roleAdminister/index.js rename to warehousing-system/project_web_ui-xxs/src/api/system/roleAdminister/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/roleAdminister/rolemenus.js b/warehousing-system/project_web_ui-xxs/src/api/system/roleAdminister/rolemenus.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/roleAdminister/rolemenus.js rename to warehousing-system/project_web_ui-xxs/src/api/system/roleAdminister/rolemenus.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/roleMenus/index.js b/warehousing-system/project_web_ui-xxs/src/api/system/roleMenus/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/roleMenus/index.js rename to warehousing-system/project_web_ui-xxs/src/api/system/roleMenus/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/sources/index.js b/warehousing-system/project_web_ui-xxs/src/api/system/sources/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/sources/index.js rename to warehousing-system/project_web_ui-xxs/src/api/system/sources/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/user/Auser.js b/warehousing-system/project_web_ui-xxs/src/api/system/user/Auser.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/user/Auser.js rename to warehousing-system/project_web_ui-xxs/src/api/system/user/Auser.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/user/login.js b/warehousing-system/project_web_ui-xxs/src/api/system/user/login.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/user/login.js rename to warehousing-system/project_web_ui-xxs/src/api/system/user/login.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/user/user.js b/warehousing-system/project_web_ui-xxs/src/api/system/user/user.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/user/user.js rename to warehousing-system/project_web_ui-xxs/src/api/system/user/user.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/userAdminister/client.js b/warehousing-system/project_web_ui-xxs/src/api/system/userAdminister/client.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/userAdminister/client.js rename to warehousing-system/project_web_ui-xxs/src/api/system/userAdminister/client.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/userAdminister/index.js b/warehousing-system/project_web_ui-xxs/src/api/system/userAdminister/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/userAdminister/index.js rename to warehousing-system/project_web_ui-xxs/src/api/system/userAdminister/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/system/userManage/index.js b/warehousing-system/project_web_ui-xxs/src/api/system/userManage/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/system/userManage/index.js rename to warehousing-system/project_web_ui-xxs/src/api/system/userManage/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/api/user.js b/warehousing-system/project_web_ui-xxs/src/api/user.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/api/user.js rename to warehousing-system/project_web_ui-xxs/src/api/user.js diff --git a/warehousing-system/project_web_ui - xxs/src/assets/404_images/404.png b/warehousing-system/project_web_ui-xxs/src/assets/404_images/404.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/404_images/404.png rename to warehousing-system/project_web_ui-xxs/src/assets/404_images/404.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/404_images/404_cloud.png b/warehousing-system/project_web_ui-xxs/src/assets/404_images/404_cloud.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/404_images/404_cloud.png rename to warehousing-system/project_web_ui-xxs/src/assets/404_images/404_cloud.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/anrui.png b/warehousing-system/project_web_ui-xxs/src/assets/home/anrui.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/anrui.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/anrui.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/bIcon1.png b/warehousing-system/project_web_ui-xxs/src/assets/home/bIcon1.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/bIcon1.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/bIcon1.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/bIcon2.png b/warehousing-system/project_web_ui-xxs/src/assets/home/bIcon2.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/bIcon2.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/bIcon2.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/bIcon3.png b/warehousing-system/project_web_ui-xxs/src/assets/home/bIcon3.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/bIcon3.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/bIcon3.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/bIcon4.png b/warehousing-system/project_web_ui-xxs/src/assets/home/bIcon4.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/bIcon4.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/bIcon4.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/bIcon5.png b/warehousing-system/project_web_ui-xxs/src/assets/home/bIcon5.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/bIcon5.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/bIcon5.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/bIcon6.png b/warehousing-system/project_web_ui-xxs/src/assets/home/bIcon6.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/bIcon6.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/bIcon6.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/bIcon7.png b/warehousing-system/project_web_ui-xxs/src/assets/home/bIcon7.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/bIcon7.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/bIcon7.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/bIcon8.png b/warehousing-system/project_web_ui-xxs/src/assets/home/bIcon8.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/bIcon8.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/bIcon8.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/bottomBg.png b/warehousing-system/project_web_ui-xxs/src/assets/home/bottomBg.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/bottomBg.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/bottomBg.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/line.png b/warehousing-system/project_web_ui-xxs/src/assets/home/line.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/line.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/line.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/ltBg.png b/warehousing-system/project_web_ui-xxs/src/assets/home/ltBg.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/ltBg.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/ltBg.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/ltIcon1.png b/warehousing-system/project_web_ui-xxs/src/assets/home/ltIcon1.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/ltIcon1.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/ltIcon1.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/ltIcon2.png b/warehousing-system/project_web_ui-xxs/src/assets/home/ltIcon2.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/ltIcon2.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/ltIcon2.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/ltIcon3.png b/warehousing-system/project_web_ui-xxs/src/assets/home/ltIcon3.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/ltIcon3.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/ltIcon3.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/ltIcon4.png b/warehousing-system/project_web_ui-xxs/src/assets/home/ltIcon4.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/ltIcon4.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/ltIcon4.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/notice.png b/warehousing-system/project_web_ui-xxs/src/assets/home/notice.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/notice.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/notice.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/home/rtBg.png b/warehousing-system/project_web_ui-xxs/src/assets/home/rtBg.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/home/rtBg.png rename to warehousing-system/project_web_ui-xxs/src/assets/home/rtBg.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/arrow.png b/warehousing-system/project_web_ui-xxs/src/assets/images/arrow.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/arrow.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/arrow.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/bdrysh.png b/warehousing-system/project_web_ui-xxs/src/assets/images/bdrysh.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/bdrysh.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/bdrysh.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/btn.png b/warehousing-system/project_web_ui-xxs/src/assets/images/btn.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/btn.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/btn.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/cdgl.png b/warehousing-system/project_web_ui-xxs/src/assets/images/cdgl.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/cdgl.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/cdgl.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/cgsp.png b/warehousing-system/project_web_ui-xxs/src/assets/images/cgsp.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/cgsp.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/cgsp.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/cxjl.png b/warehousing-system/project_web_ui-xxs/src/assets/images/cxjl.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/cxjl.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/cxjl.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/czsc.png b/warehousing-system/project_web_ui-xxs/src/assets/images/czsc.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/czsc.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/czsc.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/dwrysh.png b/warehousing-system/project_web_ui-xxs/src/assets/images/dwrysh.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/dwrysh.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/dwrysh.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/dwxxgl.png b/warehousing-system/project_web_ui-xxs/src/assets/images/dwxxgl.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/dwxxgl.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/dwxxgl.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/dy.png b/warehousing-system/project_web_ui-xxs/src/assets/images/dy.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/dy.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/dy.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/head.png b/warehousing-system/project_web_ui-xxs/src/assets/images/head.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/head.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/head.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/info.png b/warehousing-system/project_web_ui-xxs/src/assets/images/info.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/info.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/info.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/jcxx.png b/warehousing-system/project_web_ui-xxs/src/assets/images/jcxx.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/jcxx.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/jcxx.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/jggl.png b/warehousing-system/project_web_ui-xxs/src/assets/images/jggl.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/jggl.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/jggl.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/jlsc.png b/warehousing-system/project_web_ui-xxs/src/assets/images/jlsc.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/jlsc.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/jlsc.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/jsgl.png b/warehousing-system/project_web_ui-xxs/src/assets/images/jsgl.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/jsgl.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/jsgl.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/jsxd.png b/warehousing-system/project_web_ui-xxs/src/assets/images/jsxd.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/jsxd.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/jsxd.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/login/OAKQ.png b/warehousing-system/project_web_ui-xxs/src/assets/images/login/OAKQ.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/login/OAKQ.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/login/OAKQ.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/login/bg2-img.png b/warehousing-system/project_web_ui-xxs/src/assets/images/login/bg2-img.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/login/bg2-img.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/login/bg2-img.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/login/bgimg.jpg b/warehousing-system/project_web_ui-xxs/src/assets/images/login/bgimg.jpg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/login/bgimg.jpg rename to warehousing-system/project_web_ui-xxs/src/assets/images/login/bgimg.jpg diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/login/nose.png b/warehousing-system/project_web_ui-xxs/src/assets/images/login/nose.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/login/nose.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/login/nose.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/login/pasw.png b/warehousing-system/project_web_ui-xxs/src/assets/images/login/pasw.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/login/pasw.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/login/pasw.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/login/user.png b/warehousing-system/project_web_ui-xxs/src/assets/images/login/user.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/login/user.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/login/user.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/lzrysh.png b/warehousing-system/project_web_ui-xxs/src/assets/images/lzrysh.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/lzrysh.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/lzrysh.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/notAvailable.jpg b/warehousing-system/project_web_ui-xxs/src/assets/images/notAvailable.jpg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/notAvailable.jpg rename to warehousing-system/project_web_ui-xxs/src/assets/images/notAvailable.jpg diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/org/headerimg.png b/warehousing-system/project_web_ui-xxs/src/assets/images/org/headerimg.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/org/headerimg.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/org/headerimg.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/org/jian.png b/warehousing-system/project_web_ui-xxs/src/assets/images/org/jian.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/org/jian.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/org/jian.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/org/sfz.png b/warehousing-system/project_web_ui-xxs/src/assets/images/org/sfz.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/org/sfz.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/org/sfz.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/org/sqs.png b/warehousing-system/project_web_ui-xxs/src/assets/images/org/sqs.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/org/sqs.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/org/sqs.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/org/success.png b/warehousing-system/project_web_ui-xxs/src/assets/images/org/success.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/org/success.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/org/success.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/org/yyzz.png b/warehousing-system/project_web_ui-xxs/src/assets/images/org/yyzz.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/org/yyzz.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/org/yyzz.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/place.png b/warehousing-system/project_web_ui-xxs/src/assets/images/place.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/place.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/place.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/qjsh.png b/warehousing-system/project_web_ui-xxs/src/assets/images/qjsh.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/qjsh.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/qjsh.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/ryda.png b/warehousing-system/project_web_ui-xxs/src/assets/images/ryda.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/ryda.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/ryda.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/rzgl.png b/warehousing-system/project_web_ui-xxs/src/assets/images/rzgl.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/rzgl.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/rzgl.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/select.png b/warehousing-system/project_web_ui-xxs/src/assets/images/select.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/select.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/select.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/sjcc.png b/warehousing-system/project_web_ui-xxs/src/assets/images/sjcc.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/sjcc.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/sjcc.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/sjzd.png b/warehousing-system/project_web_ui-xxs/src/assets/images/sjzd.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/sjzd.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/sjzd.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/tjfx.png b/warehousing-system/project_web_ui-xxs/src/assets/images/tjfx.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/tjfx.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/tjfx.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/tjfx2.png b/warehousing-system/project_web_ui-xxs/src/assets/images/tjfx2.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/tjfx2.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/tjfx2.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/wenjian.png b/warehousing-system/project_web_ui-xxs/src/assets/images/wenjian.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/wenjian.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/wenjian.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/xgmm.png b/warehousing-system/project_web_ui-xxs/src/assets/images/xgmm.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/xgmm.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/xgmm.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/xtbg.png b/warehousing-system/project_web_ui-xxs/src/assets/images/xtbg.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/xtbg.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/xtbg.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/xtgl.png b/warehousing-system/project_web_ui-xxs/src/assets/images/xtgl.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/xtgl.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/xtgl.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/xxzx.png b/warehousing-system/project_web_ui-xxs/src/assets/images/xxzx.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/xxzx.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/xxzx.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/images/zwsm.png b/warehousing-system/project_web_ui-xxs/src/assets/images/zwsm.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/images/zwsm.png rename to warehousing-system/project_web_ui-xxs/src/assets/images/zwsm.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/login/OAKQ.png b/warehousing-system/project_web_ui-xxs/src/assets/login/OAKQ.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/login/OAKQ.png rename to warehousing-system/project_web_ui-xxs/src/assets/login/OAKQ.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/login/bg2-img.png b/warehousing-system/project_web_ui-xxs/src/assets/login/bg2-img.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/login/bg2-img.png rename to warehousing-system/project_web_ui-xxs/src/assets/login/bg2-img.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/login/bgimg.jpg b/warehousing-system/project_web_ui-xxs/src/assets/login/bgimg.jpg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/login/bgimg.jpg rename to warehousing-system/project_web_ui-xxs/src/assets/login/bgimg.jpg diff --git a/warehousing-system/project_web_ui - xxs/src/assets/login/nose.png b/warehousing-system/project_web_ui-xxs/src/assets/login/nose.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/login/nose.png rename to warehousing-system/project_web_ui-xxs/src/assets/login/nose.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/login/pasw.png b/warehousing-system/project_web_ui-xxs/src/assets/login/pasw.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/login/pasw.png rename to warehousing-system/project_web_ui-xxs/src/assets/login/pasw.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/login/user.png b/warehousing-system/project_web_ui-xxs/src/assets/login/user.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/login/user.png rename to warehousing-system/project_web_ui-xxs/src/assets/login/user.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/loginImg/001.jpg b/warehousing-system/project_web_ui-xxs/src/assets/loginImg/001.jpg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/loginImg/001.jpg rename to warehousing-system/project_web_ui-xxs/src/assets/loginImg/001.jpg diff --git a/warehousing-system/project_web_ui - xxs/src/assets/loginImg/002.jpg b/warehousing-system/project_web_ui-xxs/src/assets/loginImg/002.jpg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/loginImg/002.jpg rename to warehousing-system/project_web_ui-xxs/src/assets/loginImg/002.jpg diff --git a/warehousing-system/project_web_ui - xxs/src/assets/loginImg/003.jpg b/warehousing-system/project_web_ui-xxs/src/assets/loginImg/003.jpg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/loginImg/003.jpg rename to warehousing-system/project_web_ui-xxs/src/assets/loginImg/003.jpg diff --git a/warehousing-system/project_web_ui - xxs/src/assets/loginImg/account.png b/warehousing-system/project_web_ui-xxs/src/assets/loginImg/account.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/loginImg/account.png rename to warehousing-system/project_web_ui-xxs/src/assets/loginImg/account.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/loginImg/bgImg.png b/warehousing-system/project_web_ui-xxs/src/assets/loginImg/bgImg.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/loginImg/bgImg.png rename to warehousing-system/project_web_ui-xxs/src/assets/loginImg/bgImg.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/loginImg/logo.png b/warehousing-system/project_web_ui-xxs/src/assets/loginImg/logo.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/loginImg/logo.png rename to warehousing-system/project_web_ui-xxs/src/assets/loginImg/logo.png diff --git a/warehousing-system/project_web_ui - xxs/src/assets/loginImg/password.png b/warehousing-system/project_web_ui-xxs/src/assets/loginImg/password.png similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/assets/loginImg/password.png rename to warehousing-system/project_web_ui-xxs/src/assets/loginImg/password.png diff --git a/warehousing-system/project_web_ui - xxs/src/components/AreaPicker/index.vue b/warehousing-system/project_web_ui-xxs/src/components/AreaPicker/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/AreaPicker/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/AreaPicker/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/Breadcrumb/index.vue b/warehousing-system/project_web_ui-xxs/src/components/Breadcrumb/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/Breadcrumb/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/Breadcrumb/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/ButtonBar/index.vue b/warehousing-system/project_web_ui-xxs/src/components/ButtonBar/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/ButtonBar/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/ButtonBar/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/E-image/index.vue b/warehousing-system/project_web_ui-xxs/src/components/E-image/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/E-image/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/E-image/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/ErrorLog/index.vue b/warehousing-system/project_web_ui-xxs/src/components/ErrorLog/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/ErrorLog/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/ErrorLog/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/Hamburger/index.vue b/warehousing-system/project_web_ui-xxs/src/components/Hamburger/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/Hamburger/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/Hamburger/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/Screenfull/index.vue b/warehousing-system/project_web_ui-xxs/src/components/Screenfull/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/Screenfull/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/Screenfull/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/SizeSelect/index.vue b/warehousing-system/project_web_ui-xxs/src/components/SizeSelect/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/SizeSelect/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/SizeSelect/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/SvgIcon/index.vue b/warehousing-system/project_web_ui-xxs/src/components/SvgIcon/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/SvgIcon/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/SvgIcon/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/ThemePicker/index.vue b/warehousing-system/project_web_ui-xxs/src/components/ThemePicker/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/ThemePicker/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/ThemePicker/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/VehicleConfigurationSub/vehicleconfiguration.vue b/warehousing-system/project_web_ui-xxs/src/components/VehicleConfigurationSub/vehicleconfiguration.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/VehicleConfigurationSub/vehicleconfiguration.vue rename to warehousing-system/project_web_ui-xxs/src/components/VehicleConfigurationSub/vehicleconfiguration.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/amap/amap.vue b/warehousing-system/project_web_ui-xxs/src/components/amap/amap.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/amap/amap.vue rename to warehousing-system/project_web_ui-xxs/src/components/amap/amap.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/imgCodeRole/index.vue b/warehousing-system/project_web_ui-xxs/src/components/imgCodeRole/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/imgCodeRole/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/imgCodeRole/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/pagination/index.vue b/warehousing-system/project_web_ui-xxs/src/components/pagination/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/pagination/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/pagination/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/pagination/pageye.vue b/warehousing-system/project_web_ui-xxs/src/components/pagination/pageye.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/pagination/pageye.vue rename to warehousing-system/project_web_ui-xxs/src/components/pagination/pageye.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/passwordSafe/index.vue b/warehousing-system/project_web_ui-xxs/src/components/passwordSafe/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/passwordSafe/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/passwordSafe/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/tab-search/index.vue b/warehousing-system/project_web_ui-xxs/src/components/tab-search/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/tab-search/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/tab-search/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/FaImages.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/FaImages.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/FaImages.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/FaImages.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/FileUpload.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/FileUpload.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/FileUpload.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/FileUpload.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/ImageUpload.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/ImageUpload.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/ImageUpload.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/ImageUpload.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/ImageUploadChe.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/ImageUploadChe.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/ImageUploadChe.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/ImageUploadChe.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/ManyImageUpload.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/ManyImageUpload.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/ManyImageUpload.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/ManyImageUpload.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/index.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/uploadImg.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/uploadImg.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/uploadImg.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/uploadImg.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_changjiatuku.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_changjiatuku.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_changjiatuku.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_changjiatuku.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_chexing.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_chexing.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_chexing.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_chexing.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_cunfang.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_cunfang.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_cunfang.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_cunfang.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_diaoche.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_diaoche.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_diaoche.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_diaoche.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_jianchabiao.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_jianchabiao.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_jianchabiao.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_jianchabiao.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_maiduan.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_maiduan.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_maiduan.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_maiduan.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_morebypicture.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_morebypicture.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_morebypicture.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_morebypicture.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_picture.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_picture.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_picture.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_picture.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_yanchejiancha.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_yanchejiancha.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_yanchejiancha.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_yanchejiancha.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_yanchejianchaTuBiao.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_yanchejianchaTuBiao.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFile/upload_yanchejianchaTuBiao.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFile/upload_yanchejianchaTuBiao.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFileimg/index.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFileimg/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFileimg/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFileimg/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/uploadFileimg/upload.vue b/warehousing-system/project_web_ui-xxs/src/components/uploadFileimg/upload.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/uploadFileimg/upload.vue rename to warehousing-system/project_web_ui-xxs/src/components/uploadFileimg/upload.vue diff --git a/warehousing-system/project_web_ui - xxs/src/components/viewerjs/index.vue b/warehousing-system/project_web_ui-xxs/src/components/viewerjs/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/components/viewerjs/index.vue rename to warehousing-system/project_web_ui-xxs/src/components/viewerjs/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/icons/index.js b/warehousing-system/project_web_ui-xxs/src/icons/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/index.js rename to warehousing-system/project_web_ui-xxs/src/icons/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/404.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/404.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/404.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/404.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/Import.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/Import.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/Import.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/Import.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/RMB.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/RMB.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/RMB.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/RMB.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/bug.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/bug.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/bug.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/bug.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/build.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/build.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/build.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/build.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/button.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/button.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/button.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/button.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/cascader.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/cascader.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/cascader.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/cascader.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/chart.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/chart.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/chart.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/chart.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/checkbox.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/checkbox.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/checkbox.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/checkbox.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/clipboard.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/clipboard.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/clipboard.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/clipboard.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/code.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/code.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/code.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/code.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/color.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/color.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/color.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/color.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/component.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/component.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/component.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/component.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/cross.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/cross.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/cross.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/cross.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/dashboard.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/dashboard.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/dashboard.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/dashboard.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/date-range.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/date-range.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/date-range.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/date-range.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/date.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/date.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/date.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/date.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/del.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/del.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/del.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/del.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/dict.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/dict.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/dict.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/dict.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/documentation.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/documentation.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/documentation.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/documentation.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/download.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/download.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/download.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/download.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/drag.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/drag.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/drag.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/drag.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/druid.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/druid.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/druid.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/druid.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/edit.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/edit.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/edit.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/edit.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/education.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/education.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/education.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/education.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/email.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/email.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/email.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/email.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/example.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/example.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/example.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/example.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/excel.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/excel.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/excel.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/excel.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/exit-fullscreen.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/exit-fullscreen.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/exit-fullscreen.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/exit-fullscreen.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/export.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/export.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/export.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/export.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/exwarehouse.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/exwarehouse.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/exwarehouse.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/exwarehouse.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/eye-open.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/eye-open.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/eye-open.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/eye-open.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/eye.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/eye.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/eye.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/eye.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/form.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/form.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/form.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/form.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/fullscreen.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/fullscreen.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/fullscreen.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/fullscreen.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/github.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/github.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/github.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/github.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/guide.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/guide.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/guide.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/guide.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/icon.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/icon.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/icon.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/icon.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/input.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/input.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/input.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/input.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/international.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/international.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/international.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/international.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/job.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/job.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/job.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/job.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/language.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/language.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/language.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/language.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/link.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/link.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/link.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/link.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/list.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/list.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/list.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/list.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/lock.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/lock.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/lock.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/lock.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/log.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/log.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/log.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/log.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/logininfor.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/logininfor.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/logininfor.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/logininfor.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/message.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/message.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/message.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/message.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/money.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/money.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/money.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/money.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/monitor.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/monitor.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/monitor.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/monitor.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/nested.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/nested.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/nested.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/nested.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/number.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/number.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/number.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/number.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/online.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/online.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/online.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/online.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/password.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/password.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/password.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/password.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/pdf.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/pdf.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/pdf.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/pdf.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/people.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/people.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/people.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/people.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/peoples.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/peoples.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/peoples.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/peoples.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/phone.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/phone.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/phone.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/phone.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/plus.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/plus.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/plus.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/plus.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/post.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/post.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/post.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/post.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/qq.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/qq.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/qq.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/qq.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/question.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/question.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/question.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/question.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/radio.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/radio.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/radio.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/radio.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/rate.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/rate.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/rate.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/rate.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/redis.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/redis.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/redis.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/redis.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/row.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/row.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/row.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/row.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/search.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/search.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/search.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/search.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/select.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/select.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/select.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/select.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/server.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/server.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/server.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/server.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/shopping.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/shopping.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/shopping.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/shopping.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/size.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/size.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/size.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/size.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/skill.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/skill.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/skill.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/skill.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/slider.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/slider.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/slider.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/slider.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/star.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/star.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/star.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/star.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/submit.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/submit.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/submit.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/submit.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/swagger.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/swagger.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/swagger.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/swagger.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/switch.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/switch.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/switch.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/switch.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/system.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/system.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/system.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/system.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/tab.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/tab.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/tab.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/tab.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/table.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/table.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/table.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/table.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/textarea.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/textarea.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/textarea.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/textarea.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/theme.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/theme.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/theme.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/theme.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/time-range.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/time-range.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/time-range.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/time-range.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/time.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/time.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/time.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/time.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/tool.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/tool.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/tool.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/tool.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/tree-table.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/tree-table.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/tree-table.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/tree-table.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/tree.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/tree.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/tree.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/tree.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/upload.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/upload.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/upload.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/upload.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/user.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/user.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/user.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/user.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/validCode.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/validCode.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/validCode.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/validCode.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/wechat.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/wechat.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/wechat.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/wechat.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svg/zip.svg b/warehousing-system/project_web_ui-xxs/src/icons/svg/zip.svg similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svg/zip.svg rename to warehousing-system/project_web_ui-xxs/src/icons/svg/zip.svg diff --git a/warehousing-system/project_web_ui - xxs/src/icons/svgo.yml b/warehousing-system/project_web_ui-xxs/src/icons/svgo.yml similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/icons/svgo.yml rename to warehousing-system/project_web_ui-xxs/src/icons/svgo.yml diff --git a/warehousing-system/project_web_ui - xxs/src/layout/components/AppMain.vue b/warehousing-system/project_web_ui-xxs/src/layout/components/AppMain.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/layout/components/AppMain.vue rename to warehousing-system/project_web_ui-xxs/src/layout/components/AppMain.vue diff --git a/warehousing-system/project_web_ui - xxs/src/layout/components/Navbar.vue b/warehousing-system/project_web_ui-xxs/src/layout/components/Navbar.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/layout/components/Navbar.vue rename to warehousing-system/project_web_ui-xxs/src/layout/components/Navbar.vue diff --git a/warehousing-system/project_web_ui - xxs/src/layout/components/Sidebar/FixiOSBug.js b/warehousing-system/project_web_ui-xxs/src/layout/components/Sidebar/FixiOSBug.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/layout/components/Sidebar/FixiOSBug.js rename to warehousing-system/project_web_ui-xxs/src/layout/components/Sidebar/FixiOSBug.js diff --git a/warehousing-system/project_web_ui - xxs/src/layout/components/Sidebar/Item.vue b/warehousing-system/project_web_ui-xxs/src/layout/components/Sidebar/Item.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/layout/components/Sidebar/Item.vue rename to warehousing-system/project_web_ui-xxs/src/layout/components/Sidebar/Item.vue diff --git a/warehousing-system/project_web_ui - xxs/src/layout/components/Sidebar/Link.vue b/warehousing-system/project_web_ui-xxs/src/layout/components/Sidebar/Link.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/layout/components/Sidebar/Link.vue rename to warehousing-system/project_web_ui-xxs/src/layout/components/Sidebar/Link.vue diff --git a/warehousing-system/project_web_ui - xxs/src/layout/components/Sidebar/Logo.vue b/warehousing-system/project_web_ui-xxs/src/layout/components/Sidebar/Logo.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/layout/components/Sidebar/Logo.vue rename to warehousing-system/project_web_ui-xxs/src/layout/components/Sidebar/Logo.vue diff --git a/warehousing-system/project_web_ui - xxs/src/layout/components/Sidebar/SidebarItem.vue b/warehousing-system/project_web_ui-xxs/src/layout/components/Sidebar/SidebarItem.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/layout/components/Sidebar/SidebarItem.vue rename to warehousing-system/project_web_ui-xxs/src/layout/components/Sidebar/SidebarItem.vue diff --git a/warehousing-system/project_web_ui - xxs/src/layout/components/Sidebar/index.vue b/warehousing-system/project_web_ui-xxs/src/layout/components/Sidebar/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/layout/components/Sidebar/index.vue rename to warehousing-system/project_web_ui-xxs/src/layout/components/Sidebar/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/layout/components/TagsView/ScrollPane.vue b/warehousing-system/project_web_ui-xxs/src/layout/components/TagsView/ScrollPane.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/layout/components/TagsView/ScrollPane.vue rename to warehousing-system/project_web_ui-xxs/src/layout/components/TagsView/ScrollPane.vue diff --git a/warehousing-system/project_web_ui - xxs/src/layout/components/TagsView/index.vue b/warehousing-system/project_web_ui-xxs/src/layout/components/TagsView/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/layout/components/TagsView/index.vue rename to warehousing-system/project_web_ui-xxs/src/layout/components/TagsView/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/layout/components/index.js b/warehousing-system/project_web_ui-xxs/src/layout/components/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/layout/components/index.js rename to warehousing-system/project_web_ui-xxs/src/layout/components/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/layout/index.vue b/warehousing-system/project_web_ui-xxs/src/layout/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/layout/index.vue rename to warehousing-system/project_web_ui-xxs/src/layout/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/layout/mixin/ResizeHandler.js b/warehousing-system/project_web_ui-xxs/src/layout/mixin/ResizeHandler.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/layout/mixin/ResizeHandler.js rename to warehousing-system/project_web_ui-xxs/src/layout/mixin/ResizeHandler.js diff --git a/warehousing-system/project_web_ui - xxs/src/main.js b/warehousing-system/project_web_ui-xxs/src/main.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/main.js rename to warehousing-system/project_web_ui-xxs/src/main.js diff --git a/warehousing-system/project_web_ui - xxs/src/permission.js b/warehousing-system/project_web_ui-xxs/src/permission.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/permission.js rename to warehousing-system/project_web_ui-xxs/src/permission.js diff --git a/warehousing-system/project_web_ui - xxs/src/router/index.js b/warehousing-system/project_web_ui-xxs/src/router/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/router/index.js rename to warehousing-system/project_web_ui-xxs/src/router/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/router/modules/codemenu.js b/warehousing-system/project_web_ui-xxs/src/router/modules/codemenu.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/router/modules/codemenu.js rename to warehousing-system/project_web_ui-xxs/src/router/modules/codemenu.js diff --git a/warehousing-system/project_web_ui - xxs/src/settings.js b/warehousing-system/project_web_ui-xxs/src/settings.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/settings.js rename to warehousing-system/project_web_ui-xxs/src/settings.js diff --git a/warehousing-system/project_web_ui - xxs/src/store/getters.js b/warehousing-system/project_web_ui-xxs/src/store/getters.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/store/getters.js rename to warehousing-system/project_web_ui-xxs/src/store/getters.js diff --git a/warehousing-system/project_web_ui - xxs/src/store/index.js b/warehousing-system/project_web_ui-xxs/src/store/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/store/index.js rename to warehousing-system/project_web_ui-xxs/src/store/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/store/modules/app.js b/warehousing-system/project_web_ui-xxs/src/store/modules/app.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/store/modules/app.js rename to warehousing-system/project_web_ui-xxs/src/store/modules/app.js diff --git a/warehousing-system/project_web_ui - xxs/src/store/modules/errorLog.js b/warehousing-system/project_web_ui-xxs/src/store/modules/errorLog.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/store/modules/errorLog.js rename to warehousing-system/project_web_ui-xxs/src/store/modules/errorLog.js diff --git a/warehousing-system/project_web_ui - xxs/src/store/modules/permission.js b/warehousing-system/project_web_ui-xxs/src/store/modules/permission.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/store/modules/permission.js rename to warehousing-system/project_web_ui-xxs/src/store/modules/permission.js diff --git a/warehousing-system/project_web_ui - xxs/src/store/modules/settings.js b/warehousing-system/project_web_ui-xxs/src/store/modules/settings.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/store/modules/settings.js rename to warehousing-system/project_web_ui-xxs/src/store/modules/settings.js diff --git a/warehousing-system/project_web_ui - xxs/src/store/modules/tagsView.js b/warehousing-system/project_web_ui-xxs/src/store/modules/tagsView.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/store/modules/tagsView.js rename to warehousing-system/project_web_ui-xxs/src/store/modules/tagsView.js diff --git a/warehousing-system/project_web_ui - xxs/src/store/modules/user.js b/warehousing-system/project_web_ui-xxs/src/store/modules/user.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/store/modules/user.js rename to warehousing-system/project_web_ui-xxs/src/store/modules/user.js diff --git a/warehousing-system/project_web_ui - xxs/src/store/modules/user1.js b/warehousing-system/project_web_ui-xxs/src/store/modules/user1.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/store/modules/user1.js rename to warehousing-system/project_web_ui-xxs/src/store/modules/user1.js diff --git a/warehousing-system/project_web_ui - xxs/src/styles/e-row.scss b/warehousing-system/project_web_ui-xxs/src/styles/e-row.scss similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/styles/e-row.scss rename to warehousing-system/project_web_ui-xxs/src/styles/e-row.scss diff --git a/warehousing-system/project_web_ui - xxs/src/styles/e-table.scss b/warehousing-system/project_web_ui-xxs/src/styles/e-table.scss similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/styles/e-table.scss rename to warehousing-system/project_web_ui-xxs/src/styles/e-table.scss diff --git a/warehousing-system/project_web_ui - xxs/src/styles/el-form.scss b/warehousing-system/project_web_ui-xxs/src/styles/el-form.scss similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/styles/el-form.scss rename to warehousing-system/project_web_ui-xxs/src/styles/el-form.scss diff --git a/warehousing-system/project_web_ui - xxs/src/styles/el-search.scss b/warehousing-system/project_web_ui-xxs/src/styles/el-search.scss similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/styles/el-search.scss rename to warehousing-system/project_web_ui-xxs/src/styles/el-search.scss diff --git a/warehousing-system/project_web_ui - xxs/src/styles/element-table.scss b/warehousing-system/project_web_ui-xxs/src/styles/element-table.scss similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/styles/element-table.scss rename to warehousing-system/project_web_ui-xxs/src/styles/element-table.scss diff --git a/warehousing-system/project_web_ui - xxs/src/styles/element-tabs.scss b/warehousing-system/project_web_ui-xxs/src/styles/element-tabs.scss similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/styles/element-tabs.scss rename to warehousing-system/project_web_ui-xxs/src/styles/element-tabs.scss diff --git a/warehousing-system/project_web_ui - xxs/src/styles/element-ui.scss b/warehousing-system/project_web_ui-xxs/src/styles/element-ui.scss similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/styles/element-ui.scss rename to warehousing-system/project_web_ui-xxs/src/styles/element-ui.scss diff --git a/warehousing-system/project_web_ui - xxs/src/styles/element-variables.scss b/warehousing-system/project_web_ui-xxs/src/styles/element-variables.scss similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/styles/element-variables.scss rename to warehousing-system/project_web_ui-xxs/src/styles/element-variables.scss diff --git a/warehousing-system/project_web_ui - xxs/src/styles/index.scss b/warehousing-system/project_web_ui-xxs/src/styles/index.scss similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/styles/index.scss rename to warehousing-system/project_web_ui-xxs/src/styles/index.scss diff --git a/warehousing-system/project_web_ui - xxs/src/styles/mixin.scss b/warehousing-system/project_web_ui-xxs/src/styles/mixin.scss similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/styles/mixin.scss rename to warehousing-system/project_web_ui-xxs/src/styles/mixin.scss diff --git a/warehousing-system/project_web_ui - xxs/src/styles/sidebar.scss b/warehousing-system/project_web_ui-xxs/src/styles/sidebar.scss similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/styles/sidebar.scss rename to warehousing-system/project_web_ui-xxs/src/styles/sidebar.scss diff --git a/warehousing-system/project_web_ui - xxs/src/styles/table.scss b/warehousing-system/project_web_ui-xxs/src/styles/table.scss similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/styles/table.scss rename to warehousing-system/project_web_ui-xxs/src/styles/table.scss diff --git a/warehousing-system/project_web_ui - xxs/src/styles/transition.scss b/warehousing-system/project_web_ui-xxs/src/styles/transition.scss similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/styles/transition.scss rename to warehousing-system/project_web_ui-xxs/src/styles/transition.scss diff --git a/warehousing-system/project_web_ui - xxs/src/styles/variables.scss b/warehousing-system/project_web_ui-xxs/src/styles/variables.scss similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/styles/variables.scss rename to warehousing-system/project_web_ui-xxs/src/styles/variables.scss diff --git a/warehousing-system/project_web_ui - xxs/src/utils/auth.js b/warehousing-system/project_web_ui-xxs/src/utils/auth.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/utils/auth.js rename to warehousing-system/project_web_ui-xxs/src/utils/auth.js diff --git a/warehousing-system/project_web_ui - xxs/src/utils/axios.js b/warehousing-system/project_web_ui-xxs/src/utils/axios.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/utils/axios.js rename to warehousing-system/project_web_ui-xxs/src/utils/axios.js diff --git a/warehousing-system/project_web_ui - xxs/src/utils/baocun.js b/warehousing-system/project_web_ui-xxs/src/utils/baocun.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/utils/baocun.js rename to warehousing-system/project_web_ui-xxs/src/utils/baocun.js diff --git a/warehousing-system/project_web_ui - xxs/src/utils/get-page-title.js b/warehousing-system/project_web_ui-xxs/src/utils/get-page-title.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/utils/get-page-title.js rename to warehousing-system/project_web_ui-xxs/src/utils/get-page-title.js diff --git a/warehousing-system/project_web_ui - xxs/src/utils/index.js b/warehousing-system/project_web_ui-xxs/src/utils/index.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/utils/index.js rename to warehousing-system/project_web_ui-xxs/src/utils/index.js diff --git a/warehousing-system/project_web_ui - xxs/src/utils/print.js b/warehousing-system/project_web_ui-xxs/src/utils/print.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/utils/print.js rename to warehousing-system/project_web_ui-xxs/src/utils/print.js diff --git a/warehousing-system/project_web_ui - xxs/src/utils/request.js b/warehousing-system/project_web_ui-xxs/src/utils/request.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/utils/request.js rename to warehousing-system/project_web_ui-xxs/src/utils/request.js diff --git a/warehousing-system/project_web_ui - xxs/src/utils/roles.js b/warehousing-system/project_web_ui-xxs/src/utils/roles.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/utils/roles.js rename to warehousing-system/project_web_ui-xxs/src/utils/roles.js diff --git a/warehousing-system/project_web_ui - xxs/src/utils/validate.js b/warehousing-system/project_web_ui-xxs/src/utils/validate.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/utils/validate.js rename to warehousing-system/project_web_ui-xxs/src/utils/validate.js diff --git a/warehousing-system/project_web_ui - xxs/src/views/404.vue b/warehousing-system/project_web_ui-xxs/src/views/404.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/404.vue rename to warehousing-system/project_web_ui-xxs/src/views/404.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/ButtonBar/index.vue b/warehousing-system/project_web_ui-xxs/src/views/component/ButtonBar/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/ButtonBar/index.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/ButtonBar/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/initial_value/add/locationAdd.vue b/warehousing-system/project_web_ui-xxs/src/views/component/initial_value/add/locationAdd.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/initial_value/add/locationAdd.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/initial_value/add/locationAdd.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/initial_value/add/productA.vue b/warehousing-system/project_web_ui-xxs/src/views/component/initial_value/add/productA.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/initial_value/add/productA.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/initial_value/add/productA.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/initial_value/add/productAdd.vue b/warehousing-system/project_web_ui-xxs/src/views/component/initial_value/add/productAdd.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/initial_value/add/productAdd.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/initial_value/add/productAdd.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/initial_value/add/storeAdd.vue b/warehousing-system/project_web_ui-xxs/src/views/component/initial_value/add/storeAdd.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/initial_value/add/storeAdd.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/initial_value/add/storeAdd.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/initial_value/add/storehouseAdd.vue b/warehousing-system/project_web_ui-xxs/src/views/component/initial_value/add/storehouseAdd.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/initial_value/add/storehouseAdd.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/initial_value/add/storehouseAdd.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/initial_value/add/supplierAdd.vue b/warehousing-system/project_web_ui-xxs/src/views/component/initial_value/add/supplierAdd.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/initial_value/add/supplierAdd.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/initial_value/add/supplierAdd.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/initial_value/location.vue b/warehousing-system/project_web_ui-xxs/src/views/component/initial_value/location.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/initial_value/location.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/initial_value/location.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/initial_value/product.vue b/warehousing-system/project_web_ui-xxs/src/views/component/initial_value/product.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/initial_value/product.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/initial_value/product.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/initial_value/storehouse.vue b/warehousing-system/project_web_ui-xxs/src/views/component/initial_value/storehouse.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/initial_value/storehouse.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/initial_value/storehouse.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/initial_value/supplier.vue b/warehousing-system/project_web_ui-xxs/src/views/component/initial_value/supplier.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/initial_value/supplier.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/initial_value/supplier.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/add/purchaseAdd.vue b/warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/add/purchaseAdd.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/add/purchaseAdd.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/add/purchaseAdd.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/add/purchaseShow.vue b/warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/add/purchaseShow.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/add/purchaseShow.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/add/purchaseShow.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/purchase.vue b/warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/purchase.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/purchase.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/purchase.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/putIn.vue b/warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/putIn.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/putIn.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/putIn.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/putInList.vue b/warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/putInList.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/putInList.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/putInList.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/putInManagement.vue b/warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/putInManagement.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/putInManagement.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/putInManagement.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/receiving.vue b/warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/receiving.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/receiving.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/receiving.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/receivingManagement.vue b/warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/receivingManagement.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/instorehouse/receivingManagement.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/instorehouse/receivingManagement.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/outStorehouseManagement/add/outListAdd.vue b/warehousing-system/project_web_ui-xxs/src/views/component/outStorehouseManagement/add/outListAdd.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/outStorehouseManagement/add/outListAdd.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/outStorehouseManagement/add/outListAdd.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/outStorehouseManagement/add/outListShow.vue b/warehousing-system/project_web_ui-xxs/src/views/component/outStorehouseManagement/add/outListShow.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/outStorehouseManagement/add/outListShow.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/outStorehouseManagement/add/outListShow.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/outStorehouseManagement/add/pickingShow.vue b/warehousing-system/project_web_ui-xxs/src/views/component/outStorehouseManagement/add/pickingShow.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/outStorehouseManagement/add/pickingShow.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/outStorehouseManagement/add/pickingShow.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/outStorehouseManagement/outList.vue b/warehousing-system/project_web_ui-xxs/src/views/component/outStorehouseManagement/outList.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/outStorehouseManagement/outList.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/outStorehouseManagement/outList.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/outStorehouseManagement/outStorehouseOrder.vue b/warehousing-system/project_web_ui-xxs/src/views/component/outStorehouseManagement/outStorehouseOrder.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/outStorehouseManagement/outStorehouseOrder.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/outStorehouseManagement/outStorehouseOrder.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/outStorehouseManagement/picking.vue b/warehousing-system/project_web_ui-xxs/src/views/component/outStorehouseManagement/picking.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/outStorehouseManagement/picking.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/outStorehouseManagement/picking.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/outStorehouseManagement/pickingManagement.vue b/warehousing-system/project_web_ui-xxs/src/views/component/outStorehouseManagement/pickingManagement.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/outStorehouseManagement/pickingManagement.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/outStorehouseManagement/pickingManagement.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/pictureList/Map.vue b/warehousing-system/project_web_ui-xxs/src/views/component/pictureList/Map.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/pictureList/Map.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/pictureList/Map.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/pictureList/pictureList.vue b/warehousing-system/project_web_ui-xxs/src/views/component/pictureList/pictureList.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/pictureList/pictureList.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/pictureList/pictureList.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/pictureList/pictureParticulars.vue b/warehousing-system/project_web_ui-xxs/src/views/component/pictureList/pictureParticulars.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/pictureList/pictureParticulars.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/pictureList/pictureParticulars.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/stockManagement/stock.vue b/warehousing-system/project_web_ui-xxs/src/views/component/stockManagement/stock.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/stockManagement/stock.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/stockManagement/stock.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/stockManagement/stockList.vue b/warehousing-system/project_web_ui-xxs/src/views/component/stockManagement/stockList.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/stockManagement/stockList.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/stockManagement/stockList.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/storehouseManage/remove.vue b/warehousing-system/project_web_ui-xxs/src/views/component/storehouseManage/remove.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/storehouseManage/remove.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/storehouseManage/remove.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/storehouseManage/removeManagement.vue b/warehousing-system/project_web_ui-xxs/src/views/component/storehouseManage/removeManagement.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/storehouseManage/removeManagement.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/storehouseManage/removeManagement.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/storehouseManage/shelves.vue b/warehousing-system/project_web_ui-xxs/src/views/component/storehouseManage/shelves.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/storehouseManage/shelves.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/storehouseManage/shelves.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/storehouseManage/shelvesManage.vue b/warehousing-system/project_web_ui-xxs/src/views/component/storehouseManage/shelvesManage.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/storehouseManage/shelvesManage.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/storehouseManage/shelvesManage.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/uploadFile/uploadTwo.vue b/warehousing-system/project_web_ui-xxs/src/views/component/uploadFile/uploadTwo.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/uploadFile/uploadTwo.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/uploadFile/uploadTwo.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/component/uploadFile/upload_yanchejianchaTuBiao.vue b/warehousing-system/project_web_ui-xxs/src/views/component/uploadFile/upload_yanchejianchaTuBiao.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/component/uploadFile/upload_yanchejianchaTuBiao.vue rename to warehousing-system/project_web_ui-xxs/src/views/component/uploadFile/upload_yanchejianchaTuBiao.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/index.vue b/warehousing-system/project_web_ui-xxs/src/views/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/index.vue rename to warehousing-system/project_web_ui-xxs/src/views/index.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/login/login.vue b/warehousing-system/project_web_ui-xxs/src/views/login/login.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/login/login.vue rename to warehousing-system/project_web_ui-xxs/src/views/login/login.vue diff --git a/warehousing-system/project_web_ui - xxs/src/views/redirect/index.vue b/warehousing-system/project_web_ui-xxs/src/views/redirect/index.vue similarity index 100% rename from warehousing-system/project_web_ui - xxs/src/views/redirect/index.vue rename to warehousing-system/project_web_ui-xxs/src/views/redirect/index.vue diff --git a/warehousing-system/project_web_ui - xxs/tests/unit/.eslintrc.js b/warehousing-system/project_web_ui-xxs/tests/unit/.eslintrc.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/tests/unit/.eslintrc.js rename to warehousing-system/project_web_ui-xxs/tests/unit/.eslintrc.js diff --git a/warehousing-system/project_web_ui - xxs/tests/unit/components/Breadcrumb.spec.js b/warehousing-system/project_web_ui-xxs/tests/unit/components/Breadcrumb.spec.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/tests/unit/components/Breadcrumb.spec.js rename to warehousing-system/project_web_ui-xxs/tests/unit/components/Breadcrumb.spec.js diff --git a/warehousing-system/project_web_ui - xxs/tests/unit/components/Hamburger.spec.js b/warehousing-system/project_web_ui-xxs/tests/unit/components/Hamburger.spec.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/tests/unit/components/Hamburger.spec.js rename to warehousing-system/project_web_ui-xxs/tests/unit/components/Hamburger.spec.js diff --git a/warehousing-system/project_web_ui - xxs/tests/unit/components/SvgIcon.spec.js b/warehousing-system/project_web_ui-xxs/tests/unit/components/SvgIcon.spec.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/tests/unit/components/SvgIcon.spec.js rename to warehousing-system/project_web_ui-xxs/tests/unit/components/SvgIcon.spec.js diff --git a/warehousing-system/project_web_ui - xxs/tests/unit/utils/formatTime.spec.js b/warehousing-system/project_web_ui-xxs/tests/unit/utils/formatTime.spec.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/tests/unit/utils/formatTime.spec.js rename to warehousing-system/project_web_ui-xxs/tests/unit/utils/formatTime.spec.js diff --git a/warehousing-system/project_web_ui - xxs/tests/unit/utils/param2Obj.spec.js b/warehousing-system/project_web_ui-xxs/tests/unit/utils/param2Obj.spec.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/tests/unit/utils/param2Obj.spec.js rename to warehousing-system/project_web_ui-xxs/tests/unit/utils/param2Obj.spec.js diff --git a/warehousing-system/project_web_ui - xxs/tests/unit/utils/parseTime.spec.js b/warehousing-system/project_web_ui-xxs/tests/unit/utils/parseTime.spec.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/tests/unit/utils/parseTime.spec.js rename to warehousing-system/project_web_ui-xxs/tests/unit/utils/parseTime.spec.js diff --git a/warehousing-system/project_web_ui - xxs/tests/unit/utils/validate.spec.js b/warehousing-system/project_web_ui-xxs/tests/unit/utils/validate.spec.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/tests/unit/utils/validate.spec.js rename to warehousing-system/project_web_ui-xxs/tests/unit/utils/validate.spec.js diff --git a/warehousing-system/project_web_ui - xxs/vue.config.js b/warehousing-system/project_web_ui-xxs/vue.config.js similarity index 100% rename from warehousing-system/project_web_ui - xxs/vue.config.js rename to warehousing-system/project_web_ui-xxs/vue.config.js