修正接口请求
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user