管理员页面调整

This commit is contained in:
X1627315083
2024-04-22 13:15:18 +08:00
parent 4d514bde18
commit 2a5cde138e
6 changed files with 65 additions and 85 deletions

View File

@@ -111,8 +111,57 @@ export default defineComponent({
title: 'Frequency',
align: "center",
ellipsis: true,
dataIndex: "useDesignTimes",
key: "useDesignTimes",
dataIndex: "designTimes",
key: "designTimes",
},
{
title: 'Country',
align: "center",
ellipsis: true,
dataIndex: "country",
key: "country",
},
{
title: 'Title',
align: "center",
ellipsis: true,
dataIndex: "title",
key: "title",
},
{
title: 'Surname',
align: "center",
ellipsis: true,
dataIndex: "surname",
key: "surname",
},
{
title: 'Given Name',
align: "center",
ellipsis: true,
dataIndex: "givenName",
key: "givenName",
},
{
title: 'Create Time',
align: "center",
ellipsis: true,
dataIndex: "createTime",
key: "createTime",
},
{
title: 'Occupation',
align: "center",
ellipsis: true,
dataIndex: "occupation",
key: "occupation",
},
{
title: 'Trial Order Id',
align: "center",
ellipsis: true,
dataIndex: "trialOrderId",
key: "trialOrderId",
},
];
});
@@ -157,7 +206,7 @@ export default defineComponent({
},
mounted() {
let historyTable: any = this.$refs.historyTable;
this.historyTableHeight = historyTable.clientHeight - 130;
this.historyTableHeight = historyTable.clientHeight - 200;
this.gettrialList();
},
methods: {