diff --git a/src/api/app-user.js b/src/api/app-user.js
index 666bf92..656e7a3 100644
--- a/src/api/app-user.js
+++ b/src/api/app-user.js
@@ -604,11 +604,12 @@ export function getUserIdentity(userId) {
// 用户认证身份信息
export function getUserBankIdentityInfo(params) {
return request({
- url: "/user/bank-identity-info/page",
+ url: "/user/withdraw-info/page",
method: "get",
params
});
}
+
// 用户认证身份信息审核
export function auditUserBankIdentityInfo(data) {
return request({
@@ -618,6 +619,24 @@ export function auditUserBankIdentityInfo(data) {
});
}
+// 用户认证身份信息审核(通过)
+export function withdrawInfoPass(data) {
+ return request({
+ url: "/user/withdraw-info/pass",
+ method: "post",
+ data
+ });
+}
+
+// 用户认证身份信息审核(驳回)
+export function withdrawInfoNotPass(data) {
+ return request({
+ url: "/user/withdraw-info/not-pass",
+ method: "post",
+ data
+ });
+}
+
// 用户认证身份信息-导出
export function exportUserBankIdentityInfo(params, excelName) {
return httpGetExport("/user/bank-identity-info/export", params, excelName);
@@ -640,3 +659,12 @@ export function pageUserDiamondBalance(params) {
params
});
}
+
+// 更新货运代理账户信息(支持的国家和联系方式)
+export function updateInfoCP(data) {
+ return request({
+ url: "/freight/update-info",
+ method: "post",
+ data
+ });
+}
diff --git a/src/views/user/bank-identity/index.vue b/src/views/user/bank-identity/index.vue
index b9eb270..47ed2d3 100644
--- a/src/views/user/bank-identity/index.vue
+++ b/src/views/user/bank-identity/index.vue
@@ -14,12 +14,18 @@
:label="item.label"
:value="item.value"
>
-