This commit is contained in:
qsh
2024-11-11 15:19:53 +08:00
parent af84640a4b
commit 9cdfa01d33
4 changed files with 16 additions and 2 deletions

View File

@@ -9,6 +9,18 @@
:label="col.label"
:width="col.width"
/>
<el-table-column label="状态" key="status">
<template #default="scope">
<el-switch
v-model="scope.row.status"
:active-value="0"
active-text="在职"
inactive-text="离职"
:inactive-value="1"
disabled
/>
</template>
</el-table-column>
</el-table>
<Pagination
v-model:limit="pageSize"

View File

@@ -19,6 +19,7 @@
:props="defaultProps"
check-strictly
clearable
filterable
node-key="sourceId"
placeholder="请选择渠道"
@change="sourceChange"

View File

@@ -22,6 +22,7 @@
:props="defaultProps"
check-strictly
clearable
filterable
node-key="sourceId"
placeholder="请选择渠道"
/>