语言适配加部分布局修改

This commit is contained in:
X1627315083
2024-12-23 16:23:18 +08:00
parent fd69caff94
commit 570b5f97e9
16 changed files with 505 additions and 188 deletions

View File

@@ -96,6 +96,13 @@ export default defineComponent({
dataIndex: "id",
key: "id",
fixed: "left",
},
{
title: 'User Name',
align: "center",
width: 100,
dataIndex: "username",
key: "username",
},
{
title: 'Create Time',
@@ -112,13 +119,6 @@ export default defineComponent({
dataIndex: "status",
key: "status",
},{
title: 'Updata Time',
align: "center",
width: 200,
dataIndex: "updateTime",
key: "updateTime",
},{
title: 'Total income',
align: "center",
@@ -135,6 +135,13 @@ export default defineComponent({
dataIndex: "monthlyEarnings",
key: "monthlyEarnings",
openType:'all',
},{
title: 'Unpaid amount',
align: "center",
ellipsis: true,
width: 100,
dataIndex: "unpaidEarnings",
key: "unpaidEarnings",
},{
title: 'Invitation Link',
align: "center",
@@ -143,12 +150,12 @@ export default defineComponent({
dataIndex: "link",
key: "link",
},{
title: 'Unpaid amount',
title: 'Updata Time',
align: "center",
ellipsis: true,
width: 100,
dataIndex: "unpaidEarnings",
key: "unpaidEarnings",
width: 200,
dataIndex: "updateTime",
key: "updateTime",
},
{
title: 'Operations',
@@ -263,7 +270,7 @@ export default defineComponent({
};
Https.axiosPost(Https.httpUrls.affiliateList, data).then(
(rv: any) => {
this.collectionList = rv.records;
this.collectionList = rv.content;
this.total=rv.total
}
);