修正接口请求

This commit is contained in:
aixianling
2022-08-26 14:24:34 +08:00
parent 44ca30cbf3
commit ce1fd46b7e
53 changed files with 151 additions and 151 deletions

View File

@@ -85,7 +85,7 @@ export default {
},
methods: {
getTableData() {
this.instance.post("/appfinancialorganizationuser/list", null, {
this.instance.post("/app/appfinancialorganizationuser/list", null, {
params: {...this.page, ...this.search}
}).then(res => {
if (res?.data) {
@@ -97,7 +97,7 @@ export default {
submitAddAcount() {
this.$refs.addAccountForm.validate(v => {
if (v) {
this.instance.post("/appfinancialorganizationuser/addOrUpdate", this.form).then(res => {
this.instance.post("/app/appfinancialorganizationuser/addOrUpdate", this.form).then(res => {
if (res?.code == 0) {
this.$message.success("提交成功!")
this.dialog = false
@@ -113,7 +113,7 @@ export default {
},
handleDelete(ids) {
this.$confirm("是否要删除该成员?").then(() => {
this.instance.post("/appfinancialorganizationuser/delete", null, {
this.instance.post("/app/appfinancialorganizationuser/delete", null, {
params: {ids}
}).then(res => {
if (res?.code == 0) {