affiliate页面新家参数

This commit is contained in:
X1627315083
2025-10-15 16:31:02 +08:00
parent 5fe66e95fd
commit 4e53a99c9d
2 changed files with 23 additions and 10 deletions

View File

@@ -69,7 +69,7 @@
<div class="operate_item" @click="editAffiliate(record)">Edit</div>
</div>
<div v-else-if="column?.openType" @click="openDetail(record,column?.openType)">
{{ text }} HDK
{{ text }} HKD
</div>
</template>
</a-table>
@@ -109,20 +109,26 @@ export default defineComponent({
key: "username",
},
{
title: 'Create Time',
align: "center",
width: 200,
dataIndex: "createTime",
key: "createTime",
sorter: true,
},{
title: 'State',
align: "center",
ellipsis: true,
width: 100,
dataIndex: "status",
key: "status",
},{
title: 'Commission Percent',
align: "center",
ellipsis: true,
width: 100,
dataIndex: "commissionPercent",
key: "commissionPercent",
customRender: (record: any) => {
if(record.text){
return record.text+'%'
}else{
return '-'
}
},
},{
title: 'Total income',
align: "center",
@@ -154,6 +160,13 @@ export default defineComponent({
width: 250,
dataIndex: "link",
key: "link",
},{
title: 'Create Time',
align: "center",
width: 200,
dataIndex: "createTime",
key: "createTime",
sorter: true,
},{
title: 'Updata Time',
align: "center",