wangyi
2026-01-19 7fb0a8f0ab16c149484bf043754cd10cfa94de2f
src/views/gyMaterial/GyMaterialCorrection.vue
@@ -418,7 +418,7 @@
    // 获取组织列表
    async getOrganizations() {
      try {
        const response = await axios.get(`${this.baseURL}/Web/GetOrganizations`)
        const response = await axios.get(`${this.$baseUrl}/Web/GetOrganizations`)
        if (response.data.count === 1) {
          this.organizationOptions = response.data.data
          if (this.organizationOptions.length > 0) {
@@ -473,7 +473,7 @@
      try {
        const sWhere = this.buildWhereCondition()
        const response = await axios.get(`${this.baseURL}/Gy_Material/page`, {
        const response = await axios.get(`${this.$baseUrl}/Gy_Material/page`, {
          params: {
            sWhere: sWhere,
            user: this.user,
@@ -656,7 +656,7 @@
        }
        const dataStr = JSON.stringify(saveData)
        const response = await axios.post(`${this.baseURL}/Gy_Material/SaveGy_MaterialList_Batch`, {
        const response = await axios.post(`${this.$baseUrl}/Gy_Material/SaveGy_MaterialList_Batch`, {
          msg: dataStr + ';' + this.user + ';' + this.queryParams.HOrgID
        })
@@ -686,7 +686,7 @@
          type: 'warning'
        })
        for (const row of this.selectedRows) {
          await axios.get(`${this.baseURL}/Gy_Material/Delete`, {
          await axios.get(`${this.$baseUrl}/Gy_Material/Delete`, {
            params: {
              HItemID: row.HItemID,
              user: this.user