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