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