diff --git a/src/component/Administrator/Transaction/TransactionTable.vue b/src/component/Administrator/Transaction/TransactionTable.vue
index 2df967cf..b955fd23 100644
--- a/src/component/Administrator/Transaction/TransactionTable.vue
+++ b/src/component/Administrator/Transaction/TransactionTable.vue
@@ -95,6 +95,10 @@
allowClear
show-search
>
+
+
+ Total Amount:
+ {{totalAmount}}
@@ -190,6 +194,7 @@ export default defineComponent({
countryList: computed(()=>{
return store.state.adminPage.country
}),
+ totalAmount:'',
});
let filterData: any = reactive({
rangePickerValue: [],
@@ -288,6 +293,14 @@ export default defineComponent({
key: "platform",
width:150,
ellipsis:true,
+ },
+ {
+ title: "Email",
+ align: "center",
+ dataIndex: "email",
+ key: "email",
+ width:200,
+ ellipsis:true,
},{
title: "Payment Amount",
align: "center",
@@ -449,7 +462,7 @@ export default defineComponent({
(rv: any) => {
if (rv) {
console.log(rv);
-
+ filter.totalAmount = rv.totalAmount
// this.dataList = rv
filter.dataList = rv.content;
filterData.total = rv.total;