diff --git a/project/xiushan/apps/AppAdministrativeLicense/components/Add.vue b/project/xiushan/apps/AppAdministrativeLicense/components/Add.vue index 6da05d7f..51658cbf 100644 --- a/project/xiushan/apps/AppAdministrativeLicense/components/Add.vue +++ b/project/xiushan/apps/AppAdministrativeLicense/components/Add.vue @@ -161,7 +161,7 @@ export default { this.forms = JSON.parse(JSON.stringify(this.data)) }, getDetail(id) { - this.instance.post(`/appcreditadminstrativelicense/queryDetailById?id=${id}`).then(res => { + this.instance.post(`/app/appcreditadminstrativelicense/queryDetailById?id=${id}`).then(res => { if (res.code === 0) { this.data = res.data } @@ -170,7 +170,7 @@ export default { confirm() { this.$refs.forms.validate((valid) => { if (valid) { - this.instance.post(`/appcreditadminstrativelicense/addOrUpdate`, { + this.instance.post(`/app/appcreditadminstrativelicense/addOrUpdate`, { ...this.forms, id: this.params.id || '', }).then(res => { @@ -252,4 +252,4 @@ export default { padding-bottom: 80px; } } - \ No newline at end of file + diff --git a/project/xiushan/apps/AppAdministrativeLicense/components/List.vue b/project/xiushan/apps/AppAdministrativeLicense/components/List.vue index 085c346d..1dd9450a 100644 --- a/project/xiushan/apps/AppAdministrativeLicense/components/List.vue +++ b/project/xiushan/apps/AppAdministrativeLicense/components/List.vue @@ -74,7 +74,7 @@ export default { // this.getTableData() // }, getTableData() { - this.instance.post("/appcreditadminstrativelicense/list", null, { + this.instance.post("/app/appcreditadminstrativelicense/list", null, { params: {...this.page, ...this.search, ...this.select} }).then(res => { if (res?.data) { @@ -94,7 +94,7 @@ export default { }, handleDelete(id) { this.$confirm("是否要删除?").then(() => { - this.instance.post(`/appcreditadminstrativelicense/delete?ids=${id}`).then(res => { + this.instance.post(`/app/appcreditadminstrativelicense/delete?ids=${id}`).then(res => { if (res.code == 0) { this.$message.success("删除成功") this.getTableData() diff --git a/project/xiushan/apps/AppAdministrativePenalty/components/Add.vue b/project/xiushan/apps/AppAdministrativePenalty/components/Add.vue index ca474b3f..b135cb3a 100644 --- a/project/xiushan/apps/AppAdministrativePenalty/components/Add.vue +++ b/project/xiushan/apps/AppAdministrativePenalty/components/Add.vue @@ -70,7 +70,7 @@ - + @@ -155,7 +155,7 @@ export default { params: Object, }, data() { - return { + return { id: '', form: { organizationName: '', @@ -179,7 +179,7 @@ export default { isEditSys: false, sysIndex: '' } - }, + }, computed: { rules() { return { @@ -240,7 +240,7 @@ export default { this.tableData.splice(index, 1) }, getDetail(id) { - this.instance.post(`/appcollectiveeconomyequity/queryDetailById`,null, { + this.instance.post(`/app/appcollectiveeconomyequity/queryDetailById`,null, { params: { id: id, ...this.page, @@ -262,7 +262,7 @@ export default { }else{//新增 this.tableData.push(this.table) } - + this.sysInfoDialog = false this.$forceUpdate() } @@ -271,7 +271,7 @@ export default { confirm() { this.$refs.form.validate((valid) => { if (valid) { - this.instance.post(`/appcollectiveeconomyequity/addOrUpdate`, { + this.instance.post(`/app/appcollectiveeconomyequity/addOrUpdate`, { ...this.form, id: this.params.id || '', shareholderList: this.tableData, @@ -291,7 +291,7 @@ export default { this.table = JSON.parse(JSON.stringify(row)) this.sysInfoDialog = true this.isEditSys = true - this.sysIndex = index + this.sysIndex = index } }, } @@ -306,4 +306,4 @@ export default { background: #FFF; } } - \ No newline at end of file + diff --git a/project/xiushan/apps/AppGroupShareholders/components/List.vue b/project/xiushan/apps/AppGroupShareholders/components/List.vue index 9b44c932..ccb20a3d 100644 --- a/project/xiushan/apps/AppGroupShareholders/components/List.vue +++ b/project/xiushan/apps/AppGroupShareholders/components/List.vue @@ -9,7 +9,7 @@ 添加