wangyi
2025-11-27 86d627eecb14597a338ee402eab5a0c05ce1bdeb
src/views/basic/gyEmployee/gyEmployee.vue
@@ -34,7 +34,7 @@
              v-for="(item, index) in organizationList"
              :key="index"
              :label="item.Name"
              :value="item.ID"
              :value="item.ID.toString()"
            >
            </el-option>
          </el-select>
@@ -562,7 +562,7 @@
      openData: false, //数据弹窗
      dialogTitle: "",
      zuzhiId: "",
      organizationList: [], //组织列表
      organizationList: JSON.parse(sessionStorage["organizationList"]), //组织列表
      subDisabled: false, //编辑页面保存按钮是否禁用(true禁用,false可用)
      OperationType: null, //保存类型(新增1修改3)
      HInterID: null,
@@ -586,7 +586,7 @@
      dateRange: [],
      // 查询参数
      queryParams: {
        HOrgID: null,
        HOrgID: sessionStorage["OrganizationID"],
        HName: null,
        HNumber: null,
        Comparator1: "",
@@ -778,13 +778,15 @@
      }
      // this.queryParams.HOrgID = 100038
      this.sWhere += " and HUSEORGID = '" + this.queryParams.HOrgID + "'";
      let OrgName =
        this.organizationList.find((e) => e.ID == this.queryParams.HOrgID)?.Name || "";
      //生产资料列表
      axios
        .get(this.baseURL + "/Gy_Employee/listPage", {
          params: {
            sWhere: this.sWhere,
            user: sessionStorage["HUserName"],
            Organization: "浙江智云迈思",
            Organization: OrgName,
            page: this.page,
            size: this.pageSize,
          },