qq_41295110
2026-01-16 cbc2fe74fb54aad814695982c2987e064696f540
src/views/GyCustomer/CustomerEdit/index.vue
@@ -557,7 +557,7 @@
    },
    loadOrganizations() {
      axios.get(`${this.baseURL}/Web/GetOrganizations`)
      axios.get(`${this.$baseUrl}/Web/GetOrganizations`)
        .then(response => {
          if (response.data.count === 1) {
            this.organizationList = response.data.data
@@ -617,7 +617,7 @@
    getMaxBillID() {
      axios.get(`${this.baseURL}/Gy_Customer/GetMAXBillID`)
      axios.get(`${this.$baseUrl}/Gy_Customer/GetMAXBillID`)
        .then(response => {
          console.log('Max Bill ID:', response.data)
        })
@@ -628,7 +628,7 @@
    // 设置流水号
    setHNumber(typeID) {
      axios.get(`${this.baseURL}/Gy_Customer/getMaxNum`, {
      axios.get(`${this.$baseUrl}/Gy_Customer/getMaxNum`, {
        params: {
          HCusTypeID: typeID,
          user: this.user,
@@ -646,7 +646,7 @@
    },
    loadEditData(interId) {
      axios.get(`${this.baseURL}/Gy_Customer/xg_extendCheckEmp`, {
      axios.get(`${this.$baseUrl}/Gy_Customer/xg_extendCheckEmp`, {
        params: { HInterID: interId }
      })
        .then(response => {
@@ -729,12 +729,12 @@
        const formData = { ...this.formData }
        formData.HStopflag = formData.HStopflag ? 'true' : 'false'
        let url = `${this.baseURL}/Gy_Customer/AddBill`
        let url = `${this.$baseUrl}/Gy_Customer/AddBill`
        let params = { oMain: JSON.stringify(formData) + ';' + this.user }
        if (this.operationType === 3) {
          // 编辑保存
          url = `${this.baseURL}/Gy_Customer/AddBill1`
          url = `${this.$baseUrl}/Gy_Customer/AddBill1`
          params = {
            oMain: JSON.stringify(formData) + ';' + this.linterid + ';' + this.user + ';Gy_Customer_Edit'
          }
@@ -829,7 +829,7 @@
    // 审核
    handleAudit() {
      axios.get(`${this.baseURL}/Gy_Customer/AuditGy_Customer`, {
      axios.get(`${this.$baseUrl}/Gy_Customer/AuditGy_Customer`, {
        params: {
          HInterID: this.linterid,
          IsAudit: 0,