This commit is contained in:
yanran200730
2023-06-09 16:06:55 +08:00
parent 164fe19a4a
commit a1dfc6483c
2 changed files with 4 additions and 4 deletions

View File

@@ -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) {

View File

@@ -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}&current=${this.page.current}&size=${this.page.size}&name=${this.name}`,).then(res => {
this.instance.post(`/api/appCorp/page?areaId=${this.areaId}&current=${this.page.current}&size=${this.page.size}&name=${this.name}`,).then(res => {
if (res.code === 0) {
if(res.data) {
this.gropList = res.data.records