qq_41295110
2026-01-16 cbc2fe74fb54aad814695982c2987e064696f540
src/views/GyCustomer/index.vue
@@ -366,7 +366,7 @@
    }
  },
  created() {
    this.upload.url = this.baseURL + "Gy_Customer/Gy_Customer_Excel";
    this.upload.url = this.$baseUrl + "Gy_Customer/Gy_Customer_Excel";
    this.fetchData();
  },
  methods: {
@@ -381,7 +381,7 @@
    getTreeData() {
      axios
        .get(this.baseURL + "/Gy_BadReason/Gy_CusTypeTreeListByLevel")
        .get(this.$baseUrl + "/Gy_BadReason/Gy_CusTypeTreeListByLevel")
        .then((response) => {
          if (response.data.count == 1) {
            this.treeData = JSON.parse(response.data.data);
@@ -400,7 +400,7 @@
      console.log(this.page);
      console.log(this.pageSize);
      axios
        .get(this.baseURL + "/Gy_Customer/page", {
        .get(this.$baseUrl + "/Gy_Customer/page", {
          params: {
            sWhere: this.sWhere,
            user: this.user,
@@ -537,7 +537,7 @@
      }
      axios
        .get(this.baseURL + "/Gy_Customer/Gy_CustomerViewApi", {
        .get(this.$baseUrl + "/Gy_Customer/Gy_CustomerViewApi", {
          params: {
            Number: this.queryParams.HNumber2,
            Type: 'KH'
@@ -567,7 +567,7 @@
    handleExport() {
      axios
        .get(this.baseURL + "/LMES/getReportByModRightNameCheck", {
        .get(this.$baseUrl + "/LMES/getReportByModRightNameCheck", {
          params: {
            ModRightNameCheck: "Gy_Customer_ExportExcel",
            user: this.user
@@ -639,7 +639,7 @@
        .confirm("确认要删除吗,删除后不能恢复")
        .then(() => {
          axios
            .get(this.baseURL + "/Gy_Customer/Delete_Json", {
            .get(this.$baseUrl + "/Gy_Customer/Delete_Json", {
              params: {
                HItemID: this.selectedRow.HItemID,
                User: this.user,
@@ -668,7 +668,7 @@
      }
      axios
        .get(this.baseURL + "/Gy_Customer/AuditGy_Customer", {
        .get(this.$baseUrl + "/Gy_Customer/AuditGy_Customer", {
          params: {
            HInterID: this.selectedRow.HItemID,
            IsAudit: isAudit,
@@ -694,7 +694,7 @@
        return;
      }
      axios
        .get(this.baseURL + "/Gy_Customer/StopGy_Customer", {
        .get(this.$baseUrl + "/Gy_Customer/StopGy_Customer", {
          params: {
            HInterID: this.selectedRow.HItemID,
            IsStop: isStop,
@@ -765,7 +765,7 @@
    getRelationUserData(HCusID) {
      this.relationLoading = true;
      axios
        .get(this.baseURL + "/Gy_Customer/RelationUserlist", {
        .get(this.$baseUrl + "/Gy_Customer/RelationUserlist", {
          params: { HCusID: HCusID }
        })
        .then((response) => {
@@ -879,7 +879,7 @@
      var sMainSub = JSON.stringify(this.uploadData) + "&和" + this.user;
      axios({
        method: "post",
        url: this.baseURL + "/Gy_Customer/Gy_Customer_btnSave",
        url: this.$baseUrl + "/Gy_Customer/Gy_Customer_btnSave",
        data: {
          sMainSub: sMainSub,
        },