diff --git a/src/api/user/coin.js b/src/api/user/coin.js
new file mode 100644
index 0000000..9a3d833
--- /dev/null
+++ b/src/api/user/coin.js
@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询币种配置列表
+export function listCoin(query) {
+ return request({
+ url: '/user/coin/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询币种配置详细
+export function getCoin(id) {
+ return request({
+ url: '/user/coin/' + id,
+ method: 'get'
+ })
+}
+
+// 新增币种配置
+export function addCoin(data) {
+ return request({
+ url: '/user/coin',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改币种配置
+export function updateCoin(data) {
+ return request({
+ url: '/user/coin',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除币种配置
+export function delCoin(id) {
+ return request({
+ url: '/user/coin/' + id,
+ method: 'delete'
+ })
+}
+
+// 导出币种配置
+export function exportCoin(query) {
+ return request({
+ url: '/user/coin/export',
+ method: 'get',
+ params: query
+ })
+}
\ No newline at end of file
diff --git a/src/api/user/mail.js b/src/api/user/mail.js
new file mode 100644
index 0000000..07e4b1b
--- /dev/null
+++ b/src/api/user/mail.js
@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询站内信列表
+export function listMail(query) {
+ return request({
+ url: '/user/mail/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询站内信详细
+export function getMail(mailId) {
+ return request({
+ url: '/user/mail/' + mailId,
+ method: 'get'
+ })
+}
+
+// 新增站内信
+export function addMail(data) {
+ return request({
+ url: '/user/mail',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改站内信
+export function updateMail(data) {
+ return request({
+ url: '/user/mail',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除站内信
+export function delMail(mailId) {
+ return request({
+ url: '/user/mail/' + mailId,
+ method: 'delete'
+ })
+}
+
+// 导出站内信
+export function exportMail(query) {
+ return request({
+ url: '/user/mail/export',
+ method: 'get',
+ params: query
+ })
+}
\ No newline at end of file
diff --git a/src/api/user/type.js b/src/api/user/type.js
new file mode 100644
index 0000000..aa5b608
--- /dev/null
+++ b/src/api/user/type.js
@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询证件类型列表
+export function listType(query) {
+ return request({
+ url: '/user/type/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询证件类型详细
+export function getType(id) {
+ return request({
+ url: '/user/type/' + id,
+ method: 'get'
+ })
+}
+
+// 新增证件类型
+export function addType(data) {
+ return request({
+ url: '/user/type',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改证件类型
+export function updateType(data) {
+ return request({
+ url: '/user/type',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除证件类型
+export function delType(id) {
+ return request({
+ url: '/user/type/' + id,
+ method: 'delete'
+ })
+}
+
+// 导出证件类型
+export function exportType(query) {
+ return request({
+ url: '/user/type/export',
+ method: 'get',
+ params: query
+ })
+}
\ No newline at end of file
diff --git a/src/views/login.vue b/src/views/login.vue
index 95cff50..b6fbaa3 100644
--- a/src/views/login.vue
+++ b/src/views/login.vue
@@ -27,15 +27,14 @@
-
-
![]()
-
+
+
+
记住密码
@@ -104,7 +103,7 @@ export default {
}
},
created() {
- this.getCode();
+ // this.getCode();
this.getCookie();
},
methods: {
diff --git a/src/views/otc/otcAppealOrder/index.vue b/src/views/otc/otcAppealOrder/index.vue
index e1818a5..5883cd1 100644
--- a/src/views/otc/otcAppealOrder/index.vue
+++ b/src/views/otc/otcAppealOrder/index.vue
@@ -114,13 +114,13 @@
- 查询图片
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
申诉成功
@@ -256,6 +279,8 @@ export default {
otcAppealOrderList: [],
appealStatusOptions: [],
terminalSourceOptions:[],
+ appealTradeTypeOptions:[],
+
// 弹出层标题
title: "",
titleApple: "",
@@ -304,6 +329,9 @@ export default {
this.getDicts("terminal_source").then(response => {
this.terminalSourceOptions = response.data;
});
+ this.getDicts("appeal_trade_type").then(response => {
+ this.appealTradeTypeOptions = response.data;
+ });
},
methods: {
// 预览图片
@@ -370,7 +398,11 @@ export default {
terminalSource: null,
appealUserId: null,
beAppealUserId: null,
- appealDesc: null
+ appealDesc: null,
+ appealUserName:null,
+ beAppealUserName:null,
+ tradeType:null,
+
};
this.resetForm("formApple");
},
diff --git a/src/views/user/UserCertification/index.vue b/src/views/user/UserCertification/index.vue
index 1a6a979..3497554 100644
--- a/src/views/user/UserCertification/index.vue
+++ b/src/views/user/UserCertification/index.vue
@@ -114,6 +114,7 @@
+
@@ -357,7 +358,7 @@ export default {
this.resetForm("form");
},
-
+
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
diff --git a/src/views/user/coin/index.vue b/src/views/user/coin/index.vue
new file mode 100644
index 0000000..2a9fab6
--- /dev/null
+++ b/src/views/user/coin/index.vue
@@ -0,0 +1,406 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/user/mail/index.vue b/src/views/user/mail/index.vue
new file mode 100644
index 0000000..2cc19d9
--- /dev/null
+++ b/src/views/user/mail/index.vue
@@ -0,0 +1,501 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/user/type/index.vue b/src/views/user/type/index.vue
new file mode 100644
index 0000000..95456bd
--- /dev/null
+++ b/src/views/user/type/index.vue
@@ -0,0 +1,286 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/user/userCustomer/index.vue b/src/views/user/userCustomer/index.vue
index 59c4d1f..7072674 100644
--- a/src/views/user/userCustomer/index.vue
+++ b/src/views/user/userCustomer/index.vue
@@ -126,10 +126,9 @@
- 修改认证级别
-
-->
@@ -143,8 +142,9 @@
- 初级认证
- 高级认证
+ KYC认证
+ 商户认证
+ pro认证
@@ -288,13 +288,13 @@ export default {
// 用户状态修改
handleStatusChange(row) {
- let text = row.status === "0" ? "启用" : "停用";
+ let text = row.status === "normal" ? "启用" : "停用";
this.$modal.confirm('确认要"' + text + '""' + row.name + '"用户吗?').then(function () {
return changeUserStatus(row.userId, row.status);
}).then(() => {
this.$modal.msgSuccess(text + "成功");
}).catch(function () {
- row.status = row.status === "0" ? "1" : "0";
+ row.status = row.status === "frozen" ? "normal" : "frozen";
});
},
// 预览图片
diff --git a/src/views/user/wallet/index.vue b/src/views/user/wallet/index.vue
index e122faa..69b0a84 100644
--- a/src/views/user/wallet/index.vue
+++ b/src/views/user/wallet/index.vue
@@ -1,7 +1,7 @@
-
+
-
+
+
+