新增管理员付款总金额
This commit is contained in:
@@ -95,6 +95,10 @@
|
|||||||
allowClear
|
allowClear
|
||||||
show-search
|
show-search
|
||||||
></a-select>
|
></a-select>
|
||||||
|
</div>
|
||||||
|
<div class="admin_state_item">
|
||||||
|
<span>Total Amount:</span>
|
||||||
|
{{totalAmount}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="admin_search">
|
<div class="admin_search">
|
||||||
@@ -190,6 +194,7 @@ export default defineComponent({
|
|||||||
countryList: computed(()=>{
|
countryList: computed(()=>{
|
||||||
return store.state.adminPage.country
|
return store.state.adminPage.country
|
||||||
}),
|
}),
|
||||||
|
totalAmount:'',
|
||||||
});
|
});
|
||||||
let filterData: any = reactive({
|
let filterData: any = reactive({
|
||||||
rangePickerValue: [],
|
rangePickerValue: [],
|
||||||
@@ -288,6 +293,14 @@ export default defineComponent({
|
|||||||
key: "platform",
|
key: "platform",
|
||||||
width:150,
|
width:150,
|
||||||
ellipsis:true,
|
ellipsis:true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Email",
|
||||||
|
align: "center",
|
||||||
|
dataIndex: "email",
|
||||||
|
key: "email",
|
||||||
|
width:200,
|
||||||
|
ellipsis:true,
|
||||||
},{
|
},{
|
||||||
title: "Payment Amount",
|
title: "Payment Amount",
|
||||||
align: "center",
|
align: "center",
|
||||||
@@ -449,7 +462,7 @@ export default defineComponent({
|
|||||||
(rv: any) => {
|
(rv: any) => {
|
||||||
if (rv) {
|
if (rv) {
|
||||||
console.log(rv);
|
console.log(rv);
|
||||||
|
filter.totalAmount = rv.totalAmount
|
||||||
// this.dataList = rv
|
// this.dataList = rv
|
||||||
filter.dataList = rv.content;
|
filter.dataList = rv.content;
|
||||||
filterData.total = rv.total;
|
filterData.total = rv.total;
|
||||||
|
|||||||
Reference in New Issue
Block a user