diff --git a/components/common/bank/account/records.vue b/components/common/bank/account/records.vue
new file mode 100644
index 0000000..6772688
--- /dev/null
+++ b/components/common/bank/account/records.vue
@@ -0,0 +1,186 @@
+
+
+
+ 交易记录
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 开户银行: {{ scope.row.formBankAccountInfo.bankName }}
+
+
+ 银行账号: {{ scope.row.formBankAccountInfo.bankAccount }}
+
+
+ 所属用户: {{ scope.row.formBankAccountInfo.accountOwnerName }}
+
+ {{ scope.row.formBankAccount }}
+
+
+
+
+
+
+
+ 开户银行: {{ scope.row.toBankAccountInfo.bankName }}
+
+
+ 银行账号: {{ scope.row.toBankAccountInfo.bankAccount }}
+
+
+ 所属用户: {{ scope.row.toBankAccountInfo.accountOwnerName }}
+
+ {{ scope.row.toBankAccount }}
+
+
+
+
+
+
+
+
+
+
+ - {{ scope.row.money }}
+
+ + {{ scope.row.money }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/components/widget/portfolios.vue b/components/widget/portfolios.vue
index 677f44b..f6fb7d8 100644
--- a/components/widget/portfolios.vue
+++ b/components/widget/portfolios.vue
@@ -1,6 +1,5 @@
-
所属作品集
diff --git a/pages/wallet.vue b/pages/wallet.vue
index b723fc8..4651be1 100644
--- a/pages/wallet.vue
+++ b/pages/wallet.vue
@@ -11,110 +11,18 @@
style="font-size: 24px;">巴旦木
- 交易记录
-
-
-
-
-
-
-
-
-
-
-
-
-
- 开户银行: {{ scope.row.formBankAccountInfo.bankName }}
-
-
- 银行账号: {{ scope.row.formBankAccountInfo.bankAccount }}
-
-
- 所属用户: {{ scope.row.formBankAccountInfo.accountOwnerName }}
-
- {{ scope.row.formBankAccount }}
-
-
-
-
-
-
-
- 开户银行: {{ scope.row.toBankAccountInfo.bankName }}
-
-
- 银行账号: {{ scope.row.toBankAccountInfo.bankAccount }}
-
-
- 所属用户: {{ scope.row.toBankAccountInfo.accountOwnerName }}
-
- {{ scope.row.toBankAccount }}
-
-
-
-
-
-
-
-
-
-
- - {{ scope.row.money }}
-
- + {{ scope.row.money }}
-
-
-
-
-
-
-
+
diff --git a/store/wallet.js b/store/wallet.js
index 030f444..10ecda9 100644
--- a/store/wallet.js
+++ b/store/wallet.js
@@ -58,7 +58,7 @@ export const actions = {
return Promise.reject(error)
})
},
- // 获取账户详情
+ // 获取账户交易记录
fetchTransactionRecordList({commit}, params = {}) {
commit('updateTransactionRecordListFetching', true)
return this.$axios
@@ -66,7 +66,8 @@ export const actions = {
params: {
idUser: params.idUser,
startDate: params.startDate,
- endDate: params.endDate
+ endDate: params.endDate,
+ page: params.page || 1
}
})
.then(response => {