mark
2022-10-25 f20a554bdb24e9dfde9dc6a69d78595944f61d15
src/views/register/components/SelectType.vue
@@ -177,6 +177,14 @@
          });
          this.info.provinceId = this.info.address[0];
          this.info.areaId = this.info.address[1];
          for (const key in this.info) {
            if (this.info[key] === "") {
              delete this.info[key];
            }
          }
          if (this.info.userType == 2) {
            this.info.trueName = this.info.companyName;
          }
          entireUserInfo(this.info)
            .then(() => {
              this.loading.close();
@@ -193,11 +201,6 @@
            })
            .catch((err) => {
              this.loading.close();
              //后门
              this.$router.push({
                path: "/register/success",
                query: { info: this.userInfo },
              });
              this.$notify({
                type: "error",
                message: err.msg,
@@ -318,8 +321,8 @@
}
</style>
<style lang="scss">
.industrySelect.el-select-dropdown.el-popper {
<style lang="scss" >
.industrySelect.el-select-dropdown.el-popper ::v-deep {
  margin: 0;
  .el-scrollbar {
@@ -361,10 +364,14 @@
.el-popper.el-cascader__dropdown.selectCascader {
  border: none;
  margin: 0;
  width: auto !important;
  * {
    color: #3d3d3d;
    border-color: rgba(255, 255, 2555, 0.1);
  }
  .el-cascader-panel {
    height: 158px !important;
  }
  .in-active-path {
@@ -415,5 +422,9 @@
  .el-scrollbar__view {
    overflow: hidden;
  }
  .el-cascader-node__postfix::before {
    display: none !important;
  }
}
</style>