fix
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user