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 @@
-
+
-
导入
@@ -67,7 +67,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appcreditdishonestperson/list", null, {
+ this.instance.post("/app/appcreditdishonestperson/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(`/appcreditdishonestperson/delete?ids=${id}`).then(res => {
+ this.instance.post(`/app/appcreditdishonestperson/delete?ids=${id}`).then(res => {
if (res.code == 0) {
this.$message.success("删除成功")
this.getTableData()
@@ -111,4 +111,4 @@ export default {
height: 100%;
background: #f3f4f5;
}
-
\ No newline at end of file
+
diff --git a/project/xiushan/apps/AppGroupShareholders/components/Add.vue b/project/xiushan/apps/AppGroupShareholders/components/Add.vue
index c0cd198c..1771782b 100644
--- a/project/xiushan/apps/AppGroupShareholders/components/Add.vue
+++ b/project/xiushan/apps/AppGroupShareholders/components/Add.vue
@@ -34,7 +34,7 @@
-
+
@@ -56,7 +56,7 @@
-
+
编辑
@@ -114,7 +114,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 @@
添加
-
@@ -70,7 +70,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appcollectiveeconomyequity/list", null, {
+ this.instance.post("/app/appcollectiveeconomyequity/list", null, {
params: {...this.page, ...this.search,...this.select}
}).then(res => {
if (res?.data) {
@@ -89,7 +89,7 @@ export default {
},
handleDelete(id) {
this.$confirm("是否要删除?").then(() => {
- this.instance.post(`/appcollectiveeconomyequity/delete?ids=${id}`).then(res => {
+ this.instance.post(`/app/appcollectiveeconomyequity/delete?ids=${id}`).then(res => {
if (res.code == 0) {
this.$message.success("删除成功")
this.getTableData()
@@ -106,4 +106,4 @@ export default {
height: 100%;
background: #f3f4f5;
}
-
\ No newline at end of file
+
diff --git a/project/xiushan/apps/AppHouseManagement/components/Add.vue b/project/xiushan/apps/AppHouseManagement/components/Add.vue
index 5e1df2e3..627df761 100644
--- a/project/xiushan/apps/AppHouseManagement/components/Add.vue
+++ b/project/xiushan/apps/AppHouseManagement/components/Add.vue
@@ -115,7 +115,7 @@ export default {
params: Object,
},
data() {
- return {
+ return {
id: '',
form: {
useCertificate: '',
@@ -134,7 +134,7 @@ export default {
radioFrom: '',
data: {},
}
- },
+ },
computed: {
rules() {
return {
@@ -175,7 +175,7 @@ export default {
this.form = JSON.parse(JSON.stringify(this.data))
},
getDetail(id) {
- this.instance.post(`/apphomesteadinfo/queryDetailById?id=${id}`).then(res => {
+ this.instance.post(`/app/apphomesteadinfo/queryDetailById?id=${id}`).then(res => {
if (res.code === 0) {
this.data = res.data
}
@@ -184,7 +184,7 @@ export default {
confirm() {
this.$refs.form.validate((valid) => {
if (valid) {
- this.instance.post(`/apphomesteadinfo/addOrUpdate`, {
+ this.instance.post(`/app/apphomesteadinfo/addOrUpdate`, {
...this.form,
id: this.params.id || '',
}).then(res => {
@@ -219,4 +219,4 @@ export default {
-moz-appearance: textfield !important;
}
}
-
\ No newline at end of file
+
diff --git a/project/xiushan/apps/AppHouseManagement/components/List.vue b/project/xiushan/apps/AppHouseManagement/components/List.vue
index 28c65ac9..4edc218a 100644
--- a/project/xiushan/apps/AppHouseManagement/components/List.vue
+++ b/project/xiushan/apps/AppHouseManagement/components/List.vue
@@ -9,7 +9,7 @@
添加
-
@@ -74,7 +74,7 @@ export default {
methods: {
changeArea() {},
getTableData() {
- this.instance.post("/apphomesteadinfo/list", null, {
+ this.instance.post("/app/apphomesteadinfo/list", null, {
params: {...this.page, ...this.search,...this.select}
}).then(res => {
if (res?.data) {
@@ -93,7 +93,7 @@ export default {
},
handleDelete(id) {
this.$confirm("是否要删除?").then(() => {
- this.instance.post(`/apphomesteadinfo/delete?ids=${id}`).then(res => {
+ this.instance.post(`/app/apphomesteadinfo/delete?ids=${id}`).then(res => {
if (res.code == 0) {
this.$message.success("删除成功")
this.getTableData()
@@ -110,4 +110,4 @@ export default {
height: 100%;
background: #f3f4f5;
}
-
\ No newline at end of file
+
diff --git a/project/xiushan/apps/AppLandTransfer/components/Add.vue b/project/xiushan/apps/AppLandTransfer/components/Add.vue
index ead46b33..a03d471c 100644
--- a/project/xiushan/apps/AppLandTransfer/components/Add.vue
+++ b/project/xiushan/apps/AppLandTransfer/components/Add.vue
@@ -28,7 +28,7 @@
-
+
@@ -174,7 +174,7 @@ export default {
return (
time.getTime() < new Date(this.form.startDate).getTime()
);
- }
+ }
}
},
}
@@ -200,7 +200,7 @@ export default {
}
},
-
+
},
created() {
this.$dict.load('landCirculateType')
@@ -221,7 +221,7 @@ export default {
this.form = JSON.parse(JSON.stringify(this.data))
},
getDetail(id) {
- this.instance.post(`/applandcirculateinfo/queryDetailById?id=${id}`).then(res => {
+ this.instance.post(`/app/applandcirculateinfo/queryDetailById?id=${id}`).then(res => {
if (res.code === 0) {
this.data = res.data
}
@@ -230,7 +230,7 @@ export default {
confirm() {
this.$refs.form.validate((valid) => {
if (valid) {
- this.instance.post(`/applandcirculateinfo/addOrUpdate`, {
+ this.instance.post(`/app/applandcirculateinfo/addOrUpdate`, {
...this.form,
id: this.params.id || '',
}).then(res => {
@@ -261,4 +261,4 @@ export default {
// width: 130px;
// }
}
-
\ No newline at end of file
+
diff --git a/project/xiushan/apps/AppLandTransfer/components/List.vue b/project/xiushan/apps/AppLandTransfer/components/List.vue
index 2d4c2ea4..e595a61c 100644
--- a/project/xiushan/apps/AppLandTransfer/components/List.vue
+++ b/project/xiushan/apps/AppLandTransfer/components/List.vue
@@ -9,7 +9,7 @@
-
@@ -82,7 +82,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/applandcirculateinfo/list", null, {
+ this.instance.post("/app/applandcirculateinfo/list", null, {
params: {...this.page, ...this.search,...this.select}
}).then(res => {
if (res?.data) {
@@ -106,7 +106,7 @@ export default {
},
handleDelete(id) {
this.$confirm("是否要删除?").then(() => {
- this.instance.post(`/applandcirculateinfo/delete?ids=${id}`).then(res => {
+ this.instance.post(`/app/applandcirculateinfo/delete?ids=${id}`).then(res => {
if (res.code == 0) {
this.$message.success("删除成功")
this.getTableData()
@@ -123,4 +123,4 @@ export default {
height: 100%;
background: #f3f4f5;
}
-
\ No newline at end of file
+
diff --git a/project/xiushan/apps/AppMassMessage/mmDetail.vue b/project/xiushan/apps/AppMassMessage/mmDetail.vue
index 15bc1c88..79596f92 100644
--- a/project/xiushan/apps/AppMassMessage/mmDetail.vue
+++ b/project/xiushan/apps/AppMassMessage/mmDetail.vue
@@ -91,7 +91,7 @@ export default {
methods: {
getDetail() {
let {id} = this.$route.query
- this.instance.post("/appleavemessage/queryDetailById", null, {
+ this.instance.post("/app/appleavemessage/queryDetailById", null, {
params: {id}
}).then(res => {
if (res?.data) {
@@ -105,7 +105,7 @@ export default {
},
handleCloseMass(id) {
this.$confirm("是否要关闭留言?").then(() => {
- this.instance.post("/appleavemessage/close", null, {
+ this.instance.post("/app/appleavemessage/close", null, {
params: {id}
}).then(res => {
if (res?.code == 0) {
@@ -119,7 +119,7 @@ export default {
this.$refs.ReplyForm.validate(v => {
if (v) {
let {id: messageId} = this.detail
- this.instance.post("/appleavemessagereply/addOrUpdate", {...this.form, messageId, userType: 1}).then(res => {
+ this.instance.post("/app/appleavemessagereply/addOrUpdate", {...this.form, messageId, userType: 1}).then(res => {
if (res?.code == 0) {
this.$message.success("提交成功!")
this.back()
diff --git a/project/xiushan/apps/AppMassMessage/mmList.vue b/project/xiushan/apps/AppMassMessage/mmList.vue
index 6daa9d77..b0da0ee8 100644
--- a/project/xiushan/apps/AppMassMessage/mmList.vue
+++ b/project/xiushan/apps/AppMassMessage/mmList.vue
@@ -63,7 +63,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appleavemessage/list", null, {
+ this.instance.post("/app/appleavemessage/list", null, {
params: {...this.page, ...this.search}
}).then(res => {
if (res?.data) {
@@ -78,7 +78,7 @@ export default {
handleEnable(row) {
let openLabel = row.isOpen == 1 ? "取消公示" : "公示", isOpen = (Number(row.isOpen) + 1) % 2
this.$confirm(`是否要${openLabel}留言?`).then(() => {
- this.instance.post("/appleavemessage/setIsOpen", null, {
+ this.instance.post("/app/appleavemessage/setIsOpen", null, {
params: {id: row.id, isOpen}
}).then(res => {
if (res?.code == 0) {
diff --git a/project/xiushan/apps/AppPolicyBid/AppPolicyBid.vue b/project/xiushan/apps/AppPolicyBid/AppPolicyBid.vue
index f78107a2..e08b11c7 100644
--- a/project/xiushan/apps/AppPolicyBid/AppPolicyBid.vue
+++ b/project/xiushan/apps/AppPolicyBid/AppPolicyBid.vue
@@ -88,7 +88,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appzwspstatistics/list", null, {
+ this.instance.post("/app/appzwspstatistics/list", null, {
params: {...this.page, ...this.search}
}).then(res => {
if (res?.data) {
@@ -112,7 +112,7 @@ export default {
this.classList = res.data.records
}
})
- this.instance.post("/appfinancialorganization/list?size=100").then(res => {
+ this.instance.post("/app/appfinancialorganization/list?size=100").then(res => {
if (res?.data) {
res.data.records.map((item) => {
item.dictName = item.organizationName
diff --git a/project/xiushan/apps/AppPortalAccount/paDetail.vue b/project/xiushan/apps/AppPortalAccount/paDetail.vue
index cdfbbfbd..1b35be9f 100644
--- a/project/xiushan/apps/AppPortalAccount/paDetail.vue
+++ b/project/xiushan/apps/AppPortalAccount/paDetail.vue
@@ -60,7 +60,7 @@ export default {
methods: {
getDetail() {
let {id} = this.$route.query
- this.instance.post("/appportaluser/queryDetailByPortalUserId", null, {
+ this.instance.post("/app/appportaluser/queryDetailByPortalUserId", null, {
params: {id}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/AppPortalAccount/paList.vue b/project/xiushan/apps/AppPortalAccount/paList.vue
index ee63d838..7272d3dc 100644
--- a/project/xiushan/apps/AppPortalAccount/paList.vue
+++ b/project/xiushan/apps/AppPortalAccount/paList.vue
@@ -55,7 +55,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appportaluser/listPortalUser", null, {
+ this.instance.post("/app/appportaluser/listPortalUser", null, {
params: {...this.page, ...this.search}
}).then(res => {
if (res?.data) {
@@ -67,7 +67,7 @@ export default {
handleEnable(row) {
let status = (Number(row.status) + 1) % 2
this.$confirm(`是否要${this.dict.getLabel('portalUserStatus', status)}账号?`).then(() => {
- this.instance.post("/appportaluser/addOrUpdate", {...row, status}).then(res => {
+ this.instance.post("/app/appportaluser/addOrUpdate", {...row, status}).then(res => {
if (res?.code == 0) {
this.$message.success(this.dict.getLabel('portalUserStatus', status) + "成功!")
this.getTableData()
diff --git a/project/xiushan/apps/AppPortalUser/pumDetail.vue b/project/xiushan/apps/AppPortalUser/pumDetail.vue
index 40b6ee21..3f51cc95 100644
--- a/project/xiushan/apps/AppPortalUser/pumDetail.vue
+++ b/project/xiushan/apps/AppPortalUser/pumDetail.vue
@@ -134,7 +134,7 @@ export default {
methods: {
getDetail() {
let {id} = this.$route.query
- this.instance.post("/appportaluserenterprise/queryDetailById", null, {
+ this.instance.post("/app/appportaluserenterprise/queryDetailById", null, {
params: {id}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/AppPortalUser/pumList.vue b/project/xiushan/apps/AppPortalUser/pumList.vue
index 67dc259e..7482d1c9 100644
--- a/project/xiushan/apps/AppPortalUser/pumList.vue
+++ b/project/xiushan/apps/AppPortalUser/pumList.vue
@@ -60,7 +60,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appportaluserenterprise/list", null, {
+ this.instance.post("/app/appportaluserenterprise/list", null, {
params: {...this.page, ...this.search, status: 1,...this.select}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/AppPortalUserManager/pumDetail.vue b/project/xiushan/apps/AppPortalUserManager/pumDetail.vue
index 0478b948..32f82442 100644
--- a/project/xiushan/apps/AppPortalUserManager/pumDetail.vue
+++ b/project/xiushan/apps/AppPortalUserManager/pumDetail.vue
@@ -90,7 +90,7 @@ export default {
methods: {
getDetail() {
let {id} = this.$route.query
- this.instance.post("/appportaluserenterprise/queryDetailById", null, {
+ this.instance.post("/app/appportaluserenterprise/queryDetailById", null, {
params: {id}
}).then(res => {
if (res?.data) {
@@ -102,7 +102,7 @@ export default {
this.$refs.AuditForm.validate(v => {
if (v) {
let {id} = this.detail
- this.instance.post("/appportaluserenterprise/auditEnterprise", null, {
+ this.instance.post("/app/appportaluserenterprise/auditEnterprise", null, {
params: {id, ...this.form}
}).then(res => {
if (res?.code == 0) {
diff --git a/project/xiushan/apps/AppPortalUserManager/pumList.vue b/project/xiushan/apps/AppPortalUserManager/pumList.vue
index da287025..0b34d586 100644
--- a/project/xiushan/apps/AppPortalUserManager/pumList.vue
+++ b/project/xiushan/apps/AppPortalUserManager/pumList.vue
@@ -63,7 +63,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appportaluserenterprise/list", null, {
+ this.instance.post("/app/appportaluserenterprise/list", null, {
params: {...this.page, ...this.search, enterpriseStatus: 0}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/AppPublicArrearage/components/Add.vue b/project/xiushan/apps/AppPublicArrearage/components/Add.vue
index 54d14560..d51e3d3c 100644
--- a/project/xiushan/apps/AppPublicArrearage/components/Add.vue
+++ b/project/xiushan/apps/AppPublicArrearage/components/Add.vue
@@ -144,7 +144,7 @@ export default {
this.forms = JSON.parse(JSON.stringify(this.data))
},
getDetail(id) {
- this.instance.post(`/appcreditpublicutilitiesarrears/queryDetailById?id=${id}`).then(res => {
+ this.instance.post(`/app/appcreditpublicutilitiesarrears/queryDetailById?id=${id}`).then(res => {
if (res.code === 0) {
this.data = res.data
}
@@ -153,7 +153,7 @@ export default {
confirm( ) {
this.$refs.forms.validate((valid) => {
if (valid) {
- this.instance.post(`/appcreditpublicutilitiesarrears/addOrUpdate`, {
+ this.instance.post(`/app/appcreditpublicutilitiesarrears/addOrUpdate`, {
...this.forms,
id: this.params.id || '',
}).then(res => {
@@ -243,4 +243,4 @@ export default {
float: left;
}
}
-
\ No newline at end of file
+
diff --git a/project/xiushan/apps/AppPublicArrearage/components/List.vue b/project/xiushan/apps/AppPublicArrearage/components/List.vue
index 5c37df95..cfd50ee9 100644
--- a/project/xiushan/apps/AppPublicArrearage/components/List.vue
+++ b/project/xiushan/apps/AppPublicArrearage/components/List.vue
@@ -8,7 +8,7 @@
添加
-
导入
@@ -69,7 +69,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appcreditpublicutilitiesarrears/list", null, {
+ this.instance.post("/app/appcreditpublicutilitiesarrears/list", null, {
params: {...this.page, ...this.search,...this.select}
}).then(res => {
if (res?.data) {
@@ -88,7 +88,7 @@ export default {
},
handleDelete(id) {
this.$confirm("是否要删除?").then(() => {
- this.instance.post(`/appcreditpublicutilitiesarrears/delete?ids=${id}`).then(res => {
+ this.instance.post(`/app/appcreditpublicutilitiesarrears/delete?ids=${id}`).then(res => {
if (res.code == 0) {
this.$message.success("删除成功")
this.getTableData()
@@ -105,4 +105,4 @@ export default {
height: 100%;
background: #f3f4f5;
}
-
\ No newline at end of file
+
diff --git a/project/xiushan/apps/AppRatepayingInfo/components/Add.vue b/project/xiushan/apps/AppRatepayingInfo/components/Add.vue
index 9ec95984..2592b0d4 100644
--- a/project/xiushan/apps/AppRatepayingInfo/components/Add.vue
+++ b/project/xiushan/apps/AppRatepayingInfo/components/Add.vue
@@ -147,7 +147,7 @@ export default {
this.forms = JSON.parse(JSON.stringify(this.data))
},
getDetail(id) {
- this.instance.post(`/appcredittaxinfo/queryDetailById?id=${id}`).then(res => {
+ this.instance.post(`/app/appcredittaxinfo/queryDetailById?id=${id}`).then(res => {
if (res.code === 0) {
this.data = res.data
}
@@ -156,7 +156,7 @@ export default {
confirm() {
this.$refs.forms.validate((valid) => {
if (valid) {
- this.instance.post(`/appcredittaxinfo/addOrUpdate`, {
+ this.instance.post(`/app/appcredittaxinfo/addOrUpdate`, {
...this.forms,
id: this.params.id || '',
}).then(res => {
@@ -238,4 +238,4 @@ export default {
padding-bottom: 80px;
}
}
-
\ No newline at end of file
+
diff --git a/project/xiushan/apps/AppRatepayingInfo/components/List.vue b/project/xiushan/apps/AppRatepayingInfo/components/List.vue
index 8d43060b..b59966e2 100644
--- a/project/xiushan/apps/AppRatepayingInfo/components/List.vue
+++ b/project/xiushan/apps/AppRatepayingInfo/components/List.vue
@@ -68,7 +68,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appcredittaxinfo/list", null, {
+ this.instance.post("/app/appcredittaxinfo/list", null, {
params: {...this.page, ...this.search, ...this.select}
}).then(res => {
if (res?.data) {
@@ -87,7 +87,7 @@ export default {
},
handleDelete(id) {
this.$confirm("是否要删除?").then(() => {
- this.instance.post(`/appcredittaxinfo/delete?ids=${id}`).then(res => {
+ this.instance.post(`/app/appcredittaxinfo/delete?ids=${id}`).then(res => {
if (res.code == 0) {
this.$message.success("删除成功")
this.getTableData()
@@ -104,4 +104,4 @@ export default {
height: 100%;
background: #f3f4f5;
}
-
\ No newline at end of file
+
diff --git a/project/xiushan/apps/AppVideoPublic/vpAdd.vue b/project/xiushan/apps/AppVideoPublic/vpAdd.vue
index 22303248..0ffa7ebc 100644
--- a/project/xiushan/apps/AppVideoPublic/vpAdd.vue
+++ b/project/xiushan/apps/AppVideoPublic/vpAdd.vue
@@ -84,7 +84,7 @@ export default {
methods: {
getDetail() {
let {id} = this.$route.query
- id && this.instance.post("/appvideonews/getById", null, {
+ id && this.instance.post("/app/appvideonews/getById", null, {
params: {id}
}).then(res => {
if (res?.data) {
@@ -96,7 +96,7 @@ export default {
this.$refs.VideoForm.validate(v => {
if (v) {
let {form} = this
- this.instance.post("/appvideonews/addOrUpdate", form).then(res => {
+ this.instance.post("/app/appvideonews/addOrUpdate", form).then(res => {
if (res?.code == 0) {
this.$message.success("提交成功!")
this.back()
diff --git a/project/xiushan/apps/AppVideoPublic/vpList.vue b/project/xiushan/apps/AppVideoPublic/vpList.vue
index 3e307426..9c94cee7 100644
--- a/project/xiushan/apps/AppVideoPublic/vpList.vue
+++ b/project/xiushan/apps/AppVideoPublic/vpList.vue
@@ -61,7 +61,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appvideonews/list", null, {
+ this.instance.post("/app/appvideonews/list", null, {
params: {...this.page, ...this.search}
}).then(res => {
if (res?.data) {
@@ -78,7 +78,7 @@ export default {
},
handleDelete(ids) {
this.$confirm("是否要删除该视频?").then(() => {
- this.instance.post("/appvideonews/delete", null, {
+ this.instance.post("/app/appvideonews/delete", null, {
params: {ids}
}).then(res => {
if (res?.code == 0) {
@@ -104,7 +104,7 @@ export default {
handlePublic(row) {
let openLabel = row.status == 1 ? "取消发布" : "发布", status = (Number(row.status) + 1) % 2
this.$confirm(`是否要${openLabel}视频?`).then(() => {
- this.instance.post("/appvideonews/setStatus", null, {
+ this.instance.post("/app/appvideonews/setStatus", null, {
params: {id: row.id, status}
}).then(res => {
if (res?.code == 0) {
diff --git a/project/xiushan/apps/AppXsBanner/AppXsBanner.vue b/project/xiushan/apps/AppXsBanner/AppXsBanner.vue
index b5fde196..741765aa 100644
--- a/project/xiushan/apps/AppXsBanner/AppXsBanner.vue
+++ b/project/xiushan/apps/AppXsBanner/AppXsBanner.vue
@@ -179,7 +179,7 @@ export default {
methods: {
getList() {
this.instance
- .post(`/appbanner/list`, null, {
+ .post(`/app/appbanner/list`, null, {
params: {
...this.search,
...this.page,
@@ -212,7 +212,7 @@ export default {
addConfirm() {
this.$refs.DialogForm.validate(v => {
if (v) {
- this.instance.post(`/appbanner/addOrUpdate`, {
+ this.instance.post(`/app/appbanner/addOrUpdate`, {
imgUrl: this.dialogInfo.imgUrl?.[0]?.url,
linkUrl: this.dialogInfo.linkUrl,
status: this.status,
@@ -233,7 +233,7 @@ export default {
release(row) {
this.$confirm('确定此操作?').then(() => {
let status = row.status == 1 ? '0' : '1'
- this.instance.post(`/appbanner/setStatus?id=${row.id}&status=${status}`).then((res) => {
+ this.instance.post(`/app/appbanner/setStatus?id=${row.id}&status=${status}`).then((res) => {
if (res?.code == 0) {
this.$message.success("操作成功!")
this.getList()
@@ -244,7 +244,7 @@ export default {
// 详情
detail(row) {
this.detailDialog = true
- this.instance.post(`/appbanner/detail?id=${row.id}`, {
+ this.instance.post(`/app/appbanner/detail?id=${row.id}`, {
// imgUrl: this.dialogInfo.imgUrl[0].url
})
.then((res) => {
@@ -267,7 +267,7 @@ export default {
this.$confirm('删除后不可恢复,是否要删除该记录?', {
type: 'error',
}).then(() => {
- this.instance.post(`/appbanner/delete?ids=${id}`).then((res) => {
+ this.instance.post(`/app/appbanner/delete?ids=${id}`).then((res) => {
if (res.code == 0) {
this.$message.success('删除成功!')
this.getList()
diff --git a/project/xiushan/apps/creditReport/AppCreditReport/home.vue b/project/xiushan/apps/creditReport/AppCreditReport/home.vue
index e84a8dc6..569678af 100644
--- a/project/xiushan/apps/creditReport/AppCreditReport/home.vue
+++ b/project/xiushan/apps/creditReport/AppCreditReport/home.vue
@@ -86,7 +86,7 @@ export default {
},
methods: {
handleSearch() {
- this.search.param && this.instance.post("/appcreditreport/listForWeb", null, {
+ this.search.param && this.instance.post("/app/appcreditreport/listForWeb", null, {
params: {...this.search, ...this.page}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/creditScore/scorePersonal/detail.vue b/project/xiushan/apps/creditScore/scorePersonal/detail.vue
index 65f97dfe..4bce9b67 100644
--- a/project/xiushan/apps/creditScore/scorePersonal/detail.vue
+++ b/project/xiushan/apps/creditScore/scorePersonal/detail.vue
@@ -90,7 +90,7 @@ export default {
},
getList() {
let {id: portalUserId} = this.$route.query
- this.instance.post(`/appvillagerintegraldetail/list`, null, {
+ this.instance.post(`/app/appvillagerintegraldetail/list`, null, {
params: {...this.page, portalUserId, doType: this.doType}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/finance/AppFinanceOrg/AppFinanceOrg.vue b/project/xiushan/apps/finance/AppFinanceOrg/AppFinanceOrg.vue
index a6dbf790..ed6c50aa 100644
--- a/project/xiushan/apps/finance/AppFinanceOrg/AppFinanceOrg.vue
+++ b/project/xiushan/apps/finance/AppFinanceOrg/AppFinanceOrg.vue
@@ -86,7 +86,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appfinancialorganization/list", null, {
+ this.instance.post("/app/appfinancialorganization/list", null, {
params: {...this.page, ...this.search}
}).then(res => {
if (res?.data) {
@@ -100,7 +100,7 @@ export default {
this.$refs.addAccountForm.validate(v => {
if (v) {
let {form: {logoUrl: logo}} = this, logoUrl = logo?.[0]?.url
- this.instance.post("/appfinancialorganization/addOrUpdate", {...this.form, logoUrl}).then(res => {
+ this.instance.post("/app/appfinancialorganization/addOrUpdate", {...this.form, logoUrl}).then(res => {
if (res?.code == 0) {
this.$message.success("提交成功!")
this.dialog = false
@@ -117,7 +117,7 @@ export default {
},
handleDelete(ids) {
this.$confirm("是否要删除该机构?").then(() => {
- this.instance.post("/appfinancialorganization/delete", null, {
+ this.instance.post("/app/appfinancialorganization/delete", null, {
params: {ids}
}).then(res => {
if (res?.code == 0) {
diff --git a/project/xiushan/apps/finance/AppFinanceOrgMember/AppFinanceOrgMember.vue b/project/xiushan/apps/finance/AppFinanceOrgMember/AppFinanceOrgMember.vue
index 0ee7a45d..7a94e178 100644
--- a/project/xiushan/apps/finance/AppFinanceOrgMember/AppFinanceOrgMember.vue
+++ b/project/xiushan/apps/finance/AppFinanceOrgMember/AppFinanceOrgMember.vue
@@ -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) {
diff --git a/project/xiushan/apps/finance/AppFinanceProduct/productAdd.vue b/project/xiushan/apps/finance/AppFinanceProduct/productAdd.vue
index a8090729..ae47d606 100644
--- a/project/xiushan/apps/finance/AppFinanceProduct/productAdd.vue
+++ b/project/xiushan/apps/finance/AppFinanceProduct/productAdd.vue
@@ -155,7 +155,7 @@ export default {
methods: {
getDetail() {
let {id} = this.$route.query
- id && this.instance.post("/appfinancialproduct/queryDetailById", null, {
+ id && this.instance.post("/app/appfinancialproduct/queryDetailById", null, {
params: {id}
}).then(res => {
if (res?.data) {
@@ -171,7 +171,7 @@ export default {
let {form} = this
form.faceUser = form.faceUser?.toString()
form.guaranteeMode = form.guaranteeMode?.toString()
- this.instance.post("/appfinancialproduct/addOrUpdate", form).then(res => {
+ this.instance.post("/app/appfinancialproduct/addOrUpdate", form).then(res => {
if (res?.code == 0) {
this.$message.success("提交成功!")
this.back()
diff --git a/project/xiushan/apps/finance/AppFinanceProduct/productDetail.vue b/project/xiushan/apps/finance/AppFinanceProduct/productDetail.vue
index b48b498b..eee1b03c 100644
--- a/project/xiushan/apps/finance/AppFinanceProduct/productDetail.vue
+++ b/project/xiushan/apps/finance/AppFinanceProduct/productDetail.vue
@@ -118,7 +118,7 @@ export default {
methods: {
getDetail() {
let {id} = this.$route.query
- this.instance.post("/appfinancialproduct/queryDetailById", null, {
+ this.instance.post("/app/appfinancialproduct/queryDetailById", null, {
params: {id}
}).then(res => {
if (res?.data) {
@@ -135,7 +135,7 @@ export default {
},
getZWSP(id) {
//贷款联审信息
- return this.instance.post("/approval-process-def/info-id", null, {params: {id}}).then(res => {
+ return this.instance.post("/app/approval-process-def/info-id", null, {params: {id}}).then(res => {
if (res?.data) {
return res.data
}
@@ -145,7 +145,7 @@ export default {
this.$refs.AuditForm.validate(v => {
if (v) {
let {id} = this.detail
- this.instance.post("/appfinancialproduct/auditProduct", null, {
+ this.instance.post("/app/appfinancialproduct/auditProduct", null, {
params: {id, ...this.form}
}).then(res => {
if (res?.code == 0) {
diff --git a/project/xiushan/apps/finance/AppFinanceProduct/productList.vue b/project/xiushan/apps/finance/AppFinanceProduct/productList.vue
index f3ed3e6e..f7833770 100644
--- a/project/xiushan/apps/finance/AppFinanceProduct/productList.vue
+++ b/project/xiushan/apps/finance/AppFinanceProduct/productList.vue
@@ -99,7 +99,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appfinancialproduct/list", null, {
+ this.instance.post("/app/appfinancialproduct/list", null, {
params: {...this.page, ...this.search}
}).then(res => {
if (res?.data) {
@@ -119,7 +119,7 @@ export default {
},
handleDelete(ids) {
this.$confirm("是否要删除该产品?").then(() => {
- this.instance.post("/appfinancialproduct/delete", null, {
+ this.instance.post("/app/appfinancialproduct/delete", null, {
params: {ids}
}).then(res => {
if (res?.code == 0) {
diff --git a/project/xiushan/apps/finance/AppFinanceProduct/productRecommend.vue b/project/xiushan/apps/finance/AppFinanceProduct/productRecommend.vue
index b0e87321..72ebae44 100644
--- a/project/xiushan/apps/finance/AppFinanceProduct/productRecommend.vue
+++ b/project/xiushan/apps/finance/AppFinanceProduct/productRecommend.vue
@@ -87,7 +87,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appfinancialproductrecommend/list", null, {
+ this.instance.post("/app/appfinancialproductrecommend/list", null, {
params: {...this.page, ...this.search}
}).then(res => {
if (res?.data) {
@@ -103,7 +103,7 @@ export default {
},
handleDelete(ids) {
this.$confirm("是否要删除该推荐?").then(() => {
- this.instance.post("/appfinancialproductrecommend/delete", null, {
+ this.instance.post("/app/appfinancialproductrecommend/delete", null, {
params: {ids}
}).then(res => {
if (res?.code == 0) {
@@ -116,7 +116,7 @@ export default {
submitAudit() {
this.$refs.PRForm.validate(v => {
if (v) {
- this.instance.post("/appfinancialproductrecommend/addOrUpdate", this.form).then(res => {
+ this.instance.post("/app/appfinancialproductrecommend/addOrUpdate", this.form).then(res => {
if (res?.code == 0) {
this.$message.success("提交成功!")
this.getTableData()
@@ -128,7 +128,7 @@ export default {
},
getProducts() {
let {organizationType} = this.form
- this.instance.post("/appfinancialproduct/list", null, {
+ this.instance.post("/app/appfinancialproduct/list", null, {
params: {organizationType, size: 999, status: 1}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/finance/AppGuaranteeProduct/productAdd.vue b/project/xiushan/apps/finance/AppGuaranteeProduct/productAdd.vue
index d7ef2406..b6b3d89a 100644
--- a/project/xiushan/apps/finance/AppGuaranteeProduct/productAdd.vue
+++ b/project/xiushan/apps/finance/AppGuaranteeProduct/productAdd.vue
@@ -97,7 +97,7 @@ export default {
methods: {
getDetail() {
let {id} = this.$route.query
- id && this.instance.post("/appfinancialproduct/queryDetailById", null, {
+ id && this.instance.post("/app/appfinancialproduct/queryDetailById", null, {
params: {id}
}).then(res => {
if (res?.data) {
@@ -113,7 +113,7 @@ export default {
let {form} = this
form.faceUser = form.faceUser?.toString()
form.guaranteeMode = form.guaranteeMode?.toString()
- this.instance.post("/appfinancialproduct/addOrUpdate", form).then(res => {
+ this.instance.post("/app/appfinancialproduct/addOrUpdate", form).then(res => {
if (res?.code == 0) {
this.$message.success("提交成功!")
this.back()
diff --git a/project/xiushan/apps/finance/AppGuaranteeProduct/productDetail.vue b/project/xiushan/apps/finance/AppGuaranteeProduct/productDetail.vue
index 47b60d53..efb22180 100644
--- a/project/xiushan/apps/finance/AppGuaranteeProduct/productDetail.vue
+++ b/project/xiushan/apps/finance/AppGuaranteeProduct/productDetail.vue
@@ -90,7 +90,7 @@ export default {
methods: {
getDetail() {
let {id} = this.$route.query
- this.instance.post("/appfinancialproduct/queryDetailById", null, {
+ this.instance.post("/app/appfinancialproduct/queryDetailById", null, {
params: {id}
}).then(res => {
if (res?.data) {
@@ -107,7 +107,7 @@ export default {
},
getZWSP(id) {
//贷款联审信息
- return this.instance.post("/approval-process-def/info-id", null, {params: {id}}).then(res => {
+ return this.instance.post("/app/approval-process-def/info-id", null, {params: {id}}).then(res => {
if (res?.data) {
return res.data
}
@@ -117,7 +117,7 @@ export default {
this.$refs.AuditForm.validate(v => {
if (v) {
let {id} = this.detail
- this.instance.post("/appfinancialproduct/auditProduct", null, {
+ this.instance.post("/app/appfinancialproduct/auditProduct", null, {
params: {id, ...this.form}
}).then(res => {
if (res?.code == 0) {
diff --git a/project/xiushan/apps/finance/AppGuaranteeProduct/productList.vue b/project/xiushan/apps/finance/AppGuaranteeProduct/productList.vue
index 998a7904..ee5594fa 100644
--- a/project/xiushan/apps/finance/AppGuaranteeProduct/productList.vue
+++ b/project/xiushan/apps/finance/AppGuaranteeProduct/productList.vue
@@ -80,7 +80,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appfinancialproduct/list", null, {
+ this.instance.post("/app/appfinancialproduct/list", null, {
params: {...this.page, ...this.search}
}).then(res => {
if (res?.data) {
@@ -100,7 +100,7 @@ export default {
},
handleDelete(ids) {
this.$confirm("是否要删除该产品?").then(() => {
- this.instance.post("/appfinancialproduct/delete", null, {
+ this.instance.post("/app/appfinancialproduct/delete", null, {
params: {ids}
}).then(res => {
if (res?.code == 0) {
diff --git a/project/xiushan/apps/finance/AppGuaranteeProduct/productRecommend.vue b/project/xiushan/apps/finance/AppGuaranteeProduct/productRecommend.vue
index b0e87321..72ebae44 100644
--- a/project/xiushan/apps/finance/AppGuaranteeProduct/productRecommend.vue
+++ b/project/xiushan/apps/finance/AppGuaranteeProduct/productRecommend.vue
@@ -87,7 +87,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appfinancialproductrecommend/list", null, {
+ this.instance.post("/app/appfinancialproductrecommend/list", null, {
params: {...this.page, ...this.search}
}).then(res => {
if (res?.data) {
@@ -103,7 +103,7 @@ export default {
},
handleDelete(ids) {
this.$confirm("是否要删除该推荐?").then(() => {
- this.instance.post("/appfinancialproductrecommend/delete", null, {
+ this.instance.post("/app/appfinancialproductrecommend/delete", null, {
params: {ids}
}).then(res => {
if (res?.code == 0) {
@@ -116,7 +116,7 @@ export default {
submitAudit() {
this.$refs.PRForm.validate(v => {
if (v) {
- this.instance.post("/appfinancialproductrecommend/addOrUpdate", this.form).then(res => {
+ this.instance.post("/app/appfinancialproductrecommend/addOrUpdate", this.form).then(res => {
if (res?.code == 0) {
this.$message.success("提交成功!")
this.getTableData()
@@ -128,7 +128,7 @@ export default {
},
getProducts() {
let {organizationType} = this.form
- this.instance.post("/appfinancialproduct/list", null, {
+ this.instance.post("/app/appfinancialproduct/list", null, {
params: {organizationType, size: 999, status: 1}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/finance/AppLoanAudit/loanDetail.vue b/project/xiushan/apps/finance/AppLoanAudit/loanDetail.vue
index 10a164eb..e62abb9c 100644
--- a/project/xiushan/apps/finance/AppLoanAudit/loanDetail.vue
+++ b/project/xiushan/apps/finance/AppLoanAudit/loanDetail.vue
@@ -214,7 +214,7 @@ export default {
methods: {
getDetail() {
let {id} = this.$route.query
- this.instance.post("/appfinancialloanapply/queryDetailById", null, {
+ this.instance.post("/app/appfinancialloanapply/queryDetailById", null, {
params: {id}
}).then(res => {
if (res?.data) {
@@ -226,7 +226,7 @@ export default {
this.$refs.AuditForm.validate(v => {
if (v) {
let {id} = this.detail
- this.instance.post("/appfinancialloanapply/auditLoanApply", null, {
+ this.instance.post("/app/appfinancialloanapply/auditLoanApply", null, {
params: {id, ...this.form}
}).then(res => {
if (res?.code == 0) {
diff --git a/project/xiushan/apps/finance/AppLoanAudit/loanList.vue b/project/xiushan/apps/finance/AppLoanAudit/loanList.vue
index 49003d76..313881fd 100644
--- a/project/xiushan/apps/finance/AppLoanAudit/loanList.vue
+++ b/project/xiushan/apps/finance/AppLoanAudit/loanList.vue
@@ -104,7 +104,7 @@ export default {
methods: {
getTableData() {
let status = this.search.status || 999
- this.instance.post("/appfinancialloanapply/list", null, {
+ this.instance.post("/app/appfinancialloanapply/list", null, {
params: {...this.page, ...this.search, status}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/finance/AppLoanAudit/loanSta.vue b/project/xiushan/apps/finance/AppLoanAudit/loanSta.vue
index 4af2b000..552fb9f4 100644
--- a/project/xiushan/apps/finance/AppLoanAudit/loanSta.vue
+++ b/project/xiushan/apps/finance/AppLoanAudit/loanSta.vue
@@ -192,7 +192,7 @@ export default {
this.getApply()
},
getApply() {
- this.instance.post("/appfinancialloanapply/staticFinancialLoanApplyByMainbody", null, {
+ this.instance.post("/app/appfinancialloanapply/staticFinancialLoanApplyByMainbody", null, {
params: {...this.search}
}).then(res => {
if (res?.data) {
@@ -201,7 +201,7 @@ export default {
})
},
getOverviews() {
- this.instance.post("/appfinancialloanapply/staticFinancialLoanApplyByOrganization", null, {
+ this.instance.post("/app/appfinancialloanapply/staticFinancialLoanApplyByOrganization", null, {
params: {...this.search}
}).then(res => {
if (res?.data) {
@@ -210,7 +210,7 @@ export default {
})
},
getProductTop10() {
- this.instance.post("/appfinancialloanapply/queryHotFinancialProduct", null, {
+ this.instance.post("/app/appfinancialloanapply/queryHotFinancialProduct", null, {
params: {...this.search}
}).then(res => {
if (res?.data) {
@@ -219,7 +219,7 @@ export default {
})
},
getTradeTrend() {
- this.instance.post("/appfinancialloanapply/queryFinancialLoanApplyByMonth", null, {
+ this.instance.post("/app/appfinancialloanapply/queryFinancialLoanApplyByMonth", null, {
params: {...this.search}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/financing/AppFinancingNeeds/needsDetail.vue b/project/xiushan/apps/financing/AppFinancingNeeds/needsDetail.vue
index 90985ba5..7d755578 100644
--- a/project/xiushan/apps/financing/AppFinancingNeeds/needsDetail.vue
+++ b/project/xiushan/apps/financing/AppFinancingNeeds/needsDetail.vue
@@ -82,7 +82,7 @@ export default {
methods: {
getDetail() {
let {id} = this.$route.query
- this.instance.post("/appfinancingdemand/queryDetailById", null, {
+ this.instance.post("/app/appfinancingdemand/queryDetailById", null, {
params: {id}
}).then(res => {
if (res?.data) {
@@ -91,7 +91,7 @@ export default {
})
},
handleGrab() {
- this.instance.post("/appfinancingdemand/obtain", null, {
+ this.instance.post("/app/appfinancingdemand/obtain", null, {
params: {id: this.detail.id}
}).then(res => {
if (res.code == 0) {
@@ -102,7 +102,7 @@ export default {
},
handleCancel() {
this.$confirm("是否要取消本次融资需求发布?").then(() => {
- this.instance.post("/appfinancingdemand/cancelObtain", null, {
+ this.instance.post("/app/appfinancingdemand/cancelObtain", null, {
params: {id: this.detail.id}
}).then(res => {
if (res.code == 0) {
diff --git a/project/xiushan/apps/financing/AppFinancingNeeds/needsList.vue b/project/xiushan/apps/financing/AppFinancingNeeds/needsList.vue
index 7c41c23c..94a9798d 100644
--- a/project/xiushan/apps/financing/AppFinancingNeeds/needsList.vue
+++ b/project/xiushan/apps/financing/AppFinancingNeeds/needsList.vue
@@ -58,7 +58,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post("/appfinancingdemand/list", null, {
+ this.instance.post("/app/appfinancingdemand/list", null, {
params: {...this.page, ...this.search, status: 0}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/financing/AppGrabLog/grabDetail.vue b/project/xiushan/apps/financing/AppGrabLog/grabDetail.vue
index 1b8dc87a..a986cdb1 100644
--- a/project/xiushan/apps/financing/AppGrabLog/grabDetail.vue
+++ b/project/xiushan/apps/financing/AppGrabLog/grabDetail.vue
@@ -115,7 +115,7 @@ export default {
methods: {
getDetail() {
let {id} = this.$route.query
- this.instance.post("/appfinancingdemand/queryDetailById", null, {
+ this.instance.post("/app/appfinancingdemand/queryDetailById", null, {
params: {id}
}).then(res => {
if (res?.data) {
@@ -125,7 +125,7 @@ export default {
},
handleCancel() {
this.$confirm("是否要回退本次融资需求订单?").then(() => {
- this.instance.post("/appfinancingdemand/cancelObtain", null, {
+ this.instance.post("/app/appfinancingdemand/cancelObtain", null, {
params: {id: this.detail.id}
}).then(res => {
if (res?.code == 0) {
@@ -139,7 +139,7 @@ export default {
this.$refs.AuditForm.validate(v => {
if (v) {
let {id} = this.detail
- this.instance.post("/appfinancingdemand/confirmLoan", null, {
+ this.instance.post("/app/appfinancingdemand/confirmLoan", null, {
params: {id, ...this.form}
}).then(res => {
if (res?.code == 0) {
diff --git a/project/xiushan/apps/financing/AppGrabLog/grabList.vue b/project/xiushan/apps/financing/AppGrabLog/grabList.vue
index 4e048d01..e3c8a287 100644
--- a/project/xiushan/apps/financing/AppGrabLog/grabList.vue
+++ b/project/xiushan/apps/financing/AppGrabLog/grabList.vue
@@ -82,7 +82,7 @@ export default {
methods: {
getTableData() {
let status = this.search.status || 999
- this.instance.post("/appfinancingdemand/list", null, {
+ this.instance.post("/app/appfinancingdemand/list", null, {
params: {...this.page, ...this.search, organizationId: this.user.financeUser?.organizationId, status}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/financing/AppGrabLog/needsStatistics.vue b/project/xiushan/apps/financing/AppGrabLog/needsStatistics.vue
index a6887914..1191bdb2 100644
--- a/project/xiushan/apps/financing/AppGrabLog/needsStatistics.vue
+++ b/project/xiushan/apps/financing/AppGrabLog/needsStatistics.vue
@@ -134,7 +134,7 @@ export default {
},
methods: {
getTableData() {
- this.instance.post(`/appfinancingdemand/staticFinancialDemandByOrganization?areaId=${this.search.areaId}&organizationId=${this.search.organizationId}`).then(res => {
+ this.instance.post(`/app/appfinancingdemand/staticFinancialDemandByOrganization?areaId=${this.search.areaId}&organizationId=${this.search.organizationId}`).then(res => {
if (res?.data) {
// if (res.data['对接成功率(%)']) {
// res.data['对接成功率(%)'] = Number(res.data['对接成功率(%)'] * 100) + '%'
@@ -142,13 +142,13 @@ export default {
this.cloList = res.data
}
})
- this.instance.post(`/appfinancingdemand/staticFinancialDemandByApplyType?areaId=${this.search.areaId}&organizationId=${this.search.organizationId}`).then(res => {
+ this.instance.post(`/app/appfinancingdemand/staticFinancialDemandByApplyType?areaId=${this.search.areaId}&organizationId=${this.search.organizationId}`).then(res => {
if (res?.data) {
this.applyInfo = res.data
this.circleChartInit(this.applyInfo)
}
})
- this.instance.post(`/appfinancingdemand/staticFinancialDemandByHot?areaId=${this.search.areaId}&organizationId=${this.search.organizationId}`).then(res => {
+ this.instance.post(`/app/appfinancingdemand/staticFinancialDemandByHot?areaId=${this.search.areaId}&organizationId=${this.search.organizationId}`).then(res => {
if (res?.data) {
var nameList = [], applyList = [], auditList = []
res.data.map((item) => {
@@ -159,7 +159,7 @@ export default {
this.columnChartInit(nameList, applyList, auditList)
}
})
- this.instance.post(`/appfinancingdemand/staticFinancialDemandByMonth?areaId=${this.search.areaId}&organizationId=${this.search.organizationId}`).then(res => {
+ this.instance.post(`/app/appfinancingdemand/staticFinancialDemandByMonth?areaId=${this.search.areaId}&organizationId=${this.search.organizationId}`).then(res => {
if (res?.data) {
var monthList = [], applyList = [], auditList = []
res.data.map((item) => {
@@ -174,7 +174,7 @@ export default {
},
getList() {
let status = this.search.status || 999
- this.instance.post("/appfinancingdemand/list", null, {
+ this.instance.post("/app/appfinancingdemand/list", null, {
params: {...this.page, ...this.search, status}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/loanStatement/AppLoanSta.vue b/project/xiushan/apps/loanStatement/AppLoanSta.vue
index 3a578500..dfff4053 100644
--- a/project/xiushan/apps/loanStatement/AppLoanSta.vue
+++ b/project/xiushan/apps/loanStatement/AppLoanSta.vue
@@ -68,7 +68,7 @@ export default {
methods: {
getTableData() {
let status = this.search.status || 999
- this.instance.post("/appfinancialloanapply/list", null, {
+ this.instance.post("/app/appfinancialloanapply/list", null, {
params: {...this.page, ...this.search, status}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/loanStatement/AppNeedSta.vue b/project/xiushan/apps/loanStatement/AppNeedSta.vue
index 0dfd15c0..793bef8d 100644
--- a/project/xiushan/apps/loanStatement/AppNeedSta.vue
+++ b/project/xiushan/apps/loanStatement/AppNeedSta.vue
@@ -75,7 +75,7 @@ export default {
methods: {
getTableData() {
let status = this.search.status || 888
- this.instance.post("/appfinancingdemand/list", null, {
+ this.instance.post("/app/appfinancingdemand/list", null, {
params: {...this.page, ...this.search, status}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/apps/processManagement/mattersConfig/components/addConfig.vue b/project/xiushan/apps/processManagement/mattersConfig/components/addConfig.vue
index 1a6fb72f..1ac1c841 100644
--- a/project/xiushan/apps/processManagement/mattersConfig/components/addConfig.vue
+++ b/project/xiushan/apps/processManagement/mattersConfig/components/addConfig.vue
@@ -115,7 +115,7 @@ export default {
*/
save() {
this.$refs.processApproval?.handleProcessApproval().then(res => {
- this.instance.post(`/approval-process-def/add-update`, {
+ this.instance.post(`/app/approval-process-def/add-update`, {
...this.detailObj,
...this.baseInfo,
processDefStatus: Number(this.baseInfo.processDefStatus),
@@ -135,7 +135,7 @@ export default {
})
},
getDetail(id) {
- this.instance.post(`/approval-process-def/info-id`, null, {params: {id}}).then(res => {
+ this.instance.post(`/app/approval-process-def/info-id`, null, {params: {id}}).then(res => {
if (res?.data) {
this.detailObj = res.data
}
diff --git a/project/xiushan/components/enterpriseDialog.vue b/project/xiushan/components/enterpriseDialog.vue
index 8dc17807..c54655bb 100644
--- a/project/xiushan/components/enterpriseDialog.vue
+++ b/project/xiushan/components/enterpriseDialog.vue
@@ -103,7 +103,7 @@ export default {
methods: {
getCompanyInfo() {
let {enterpriseId: id} = this
- this.instance.post(`/appcreditreport/info`, null, {
+ this.instance.post(`/app/appcreditreport/info`, null, {
params: {id, type: 1}
}).then(res => {
if (res?.data) {
@@ -113,7 +113,7 @@ export default {
},
handleDownload(id) {
this.$confirm("是否要下载报告?").then(() => {
- this.instance.post("/appcreditreport/downloadCreditReport", null, {
+ this.instance.post("/app/appcreditreport/downloadCreditReport", null, {
params: {id, type: 1}
}).then(res => {
if (res?.data) {
diff --git a/project/xiushan/components/personCreditReport.vue b/project/xiushan/components/personCreditReport.vue
index 5a4bd131..36852eac 100644
--- a/project/xiushan/components/personCreditReport.vue
+++ b/project/xiushan/components/personCreditReport.vue
@@ -113,7 +113,7 @@ export default {
methods: {
getPCR() {
let {personId: id} = this
- return this.instance.post(`/appcreditreport/info`, null, {
+ return this.instance.post(`/app/appcreditreport/info`, null, {
params: {id, type: 0}
}).then(res => {
if (res?.data) {
@@ -123,7 +123,7 @@ export default {
},
handleDownload(id) {
this.$confirm("是否要下载报告?").then(() => {
- this.instance.post("/appcreditreport/downloadCreditReport", null, {
+ this.instance.post("/app/appcreditreport/downloadCreditReport", null, {
params: {id, type: 0}
}).then(res => {
if (res?.data) {