This commit is contained in:
X1627315083
2025-09-01 14:03:30 +08:00
parent c387a71ba8
commit 89639aaec9
49 changed files with 819 additions and 232 deletions

View File

@@ -109,7 +109,7 @@
</template>
</a-table>
</div>
<editReferral ref="editReferral" :stateList="[...state].splice(1,state.length-1)" @searchHistoryList="searchHistoryList"></editReferral>
<editReferral ref="editReferral" :stateList="[...state].filter((_, index) => ![0,3].includes(index))" @searchHistoryList="searchHistoryList"></editReferral>
</div>
</template>
<script lang="ts">
@@ -175,8 +175,8 @@ export default defineComponent({
value:'Pending',
},
{
label:'Access',
value:'Access',
label:'Accept',
value:'Accept',
},
{
label: "Rejected",
@@ -200,7 +200,12 @@ export default defineComponent({
dataIndex: "commission",
key: "commission",
width:200,
ellipsis:true
ellipsis:true,
customRender: (record: any) => {
return `${record.text}%`
},
},
{
title: "User Name",