diff --git a/src/component/Administrator/affiliate/affiliateAudit/affiliateAudit.vue b/src/component/Administrator/affiliate/affiliateAudit/affiliateAudit.vue
index 04f5394b..c1d9d698 100644
--- a/src/component/Administrator/affiliate/affiliateAudit/affiliateAudit.vue
+++ b/src/component/Administrator/affiliate/affiliateAudit/affiliateAudit.vue
@@ -69,7 +69,7 @@
Edit
- {{ text }} HDK
+ {{ text }} HKD
@@ -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",
diff --git a/src/component/home/design/tools.vue b/src/component/home/design/tools.vue
index 8bc116ed..09764d2e 100644
--- a/src/component/home/design/tools.vue
+++ b/src/component/home/design/tools.vue
@@ -257,7 +257,7 @@ export default defineComponent({
{value:'disposeMoodboard',name:'Entirety Moodboard',nameCn:'整体情绪版'},
{value:'moodboardFiles',name:'Moodboard',nameCn:'情绪版'},
{value:'printboardFiles',name:'Printboard',nameCn:'印花板'},
- {value:'sketchboardFiles',name:'Sketchboard',nameCn:'整体情绪版'},
+ {value:'sketchboardFiles',name:'Sketchboard',nameCn:'线稿版'},
]
allCollectionStr.forEach((itemStr:any)=>{
let list = [] as any