bug
This commit is contained in:
		| @@ -118,7 +118,7 @@ export default { | ||||
|   }, | ||||
|   methods: { | ||||
|     getTableData() { | ||||
|       this.instance.post("/appSaas/page", null, { | ||||
|       this.instance.post("/api/appSaas/page", null, { | ||||
|         params: {...this.page, ...this.search} | ||||
|       }).then(res => { | ||||
|         if (res?.data) { | ||||
| @@ -170,7 +170,7 @@ export default { | ||||
|     }, | ||||
|     handleDelete(ids) { | ||||
|       this.$confirm("是否要删除该Saas信息?").then(() => { | ||||
|         this.instance.post("/appSaas/delete", null, { | ||||
|         this.instance.post("/api/appSaas/delete", null, { | ||||
|           params: {ids} | ||||
|         }).then(res => { | ||||
|           if (res?.code == 0) { | ||||
|   | ||||
| @@ -168,7 +168,7 @@ export default { | ||||
|  | ||||
|     getInfo() { | ||||
|       this.info = {} | ||||
|       this.instance.post(`/appCorpStat/getLatestInfo?areaId=${this.areaId}`).then(res => { | ||||
|       this.instance.post(`/api/appCorpStat/getLatestInfo?areaId=${this.areaId}`).then(res => { | ||||
|         if (res.code === 0) { | ||||
|           this.info = res.data | ||||
|         } | ||||
| @@ -176,7 +176,7 @@ export default { | ||||
|     }, | ||||
|  | ||||
|     getTableData() { | ||||
|       this.instance.post(`/appCorp/page?areaId=${this.areaId}¤t=${this.page.current}&size=${this.page.size}&name=${this.name}`,).then(res => { | ||||
|       this.instance.post(`/api/appCorp/page?areaId=${this.areaId}¤t=${this.page.current}&size=${this.page.size}&name=${this.name}`,).then(res => { | ||||
|         if (res.code === 0) { | ||||
|           if(res.data) { | ||||
|             this.gropList = res.data.records | ||||
|   | ||||
		Reference in New Issue
	
	Block a user