Shannon_mu 2 years ago
parent
commit
ffdf6c7675

+ 2 - 2
operationSupport/src/views/businessManagement/opportunityManagement/index.vue

@@ -146,7 +146,7 @@ export default {
     };
   },
   created () {
-    this.mixins_dataUrl = '/sc-community-web/business/page';
+    this.mixins_dataUrl = '/sc-community/business/page';
     this.mixins_query = {};
     this.mixins_search();
     this.getUserList();
@@ -203,7 +203,7 @@ export default {
       });
     },
     exportExcel () {
-      this.__exportExcel('/sc-community-web/business/excel', this.mixins_query);
+      this.__exportExcel('/sc-community/business/excel', this.mixins_query);
     },
     getUserList () {
       this.$http.get('/sc-user-center/user/findUserList').then(({ data, status, msg }) => {

+ 3 - 3
operationSupport/src/views/businessManagement/opportunityManagement/setpPage/add.vue

@@ -307,9 +307,9 @@ export default {
             console.log('this.formData.intentionLevel', this.formData.intentionLevel);
             this.$refs.formData.validate((valid) => {
                 if (valid) {
-                    let url = '/sc-community-web/business/add';
+                    let url = '/sc-community/business/add';
                     if (this.params.todo == 'edit') {
-                        url = '/sc-community-web/business/edit';
+                        url = '/sc-community/business/edit';
                     }
                     // let houseIds = [];
                     this.timePeriod.map((item) => {
@@ -430,7 +430,7 @@ export default {
         });
         if (this.params.todo == 'edit') {
             console.log(this.params.data);
-            let url = `/sc-community-web/business/find/${this.params.data}`;
+            let url = `/sc-community/business/find/${this.params.data}`;
             this.$http.get(url).then(({ status, msg, data }) => {
                 if (status == 0) {
                     this.close();

+ 1 - 1
operationSupport/src/views/businessManagement/opportunityManagement/setpPage/details.vue

@@ -159,7 +159,7 @@ export default {
   methods: {
     getDatali (id) {
       this.$http
-        .get('/sc-community-web/business/find/' + id)
+        .get('/sc-community/business/find/' + id)
         .then(({ data, msg, status }) => {
           if (status == 0) {
             this.thisItem = data;

+ 1 - 1
operationSupport/src/views/ownerManagement/houselessHolds/add.vue

@@ -357,7 +357,7 @@ export default {
 
 
     submit () {
-      this.$http.post('/sc-community-web/scResident/unboundHouse/save', { houseList: this.formData.houseList, id: this.params.row.id }).then(({ data, msg, status }) => {
+      this.$http.post('/sc-community/scResident/unboundHouse/save', { houseList: this.formData.houseList, id: this.params.row.id }).then(({ data, msg, status }) => {
         if (status == 0) {
           this.$message.success('修改成功');
         } else {

+ 3 - 3
operationSupport/src/views/ownerManagement/houselessHolds/index.vue

@@ -112,7 +112,7 @@ export default {
           type: 'success',
           message: '删除成功!'
         });
-        this.$http.post('/sc-community-web/scResident/unboundHouse/batchDelete', [row.id]).then(({ data, msg, status }) => {
+        this.$http.post('/sc-community/scResident/unboundHouse/batchDelete', [row.id]).then(({ data, msg, status }) => {
           this.mixins_search();
         }).catch(() => { });
 
@@ -139,7 +139,7 @@ export default {
       });
       this.$msgBox(`删除`, '删除后将无法恢复,请问是否继续?')
         .then((_) => {
-          this.$http.post('/sc-community-web/scResident/unboundHouse/batchDelete', ids).then(({ status, data, msg }) => {
+          this.$http.post('/sc-community/scResident/unboundHouse/batchDelete', ids).then(({ status, data, msg }) => {
             if (0 === status) {
               this.$message({
                 type: 'success',
@@ -177,7 +177,7 @@ export default {
     },
   },
   created () {
-    this.mixins_dataUrl = '/sc-community-web/scResident/unboundHouse/page';
+    this.mixins_dataUrl = '/sc-community/scResident/unboundHouse/page';
     this.mixins_query = {};
     this.mixins_search();
   }