邀请类型 反了
This commit is contained in:
@@ -169,7 +169,7 @@
|
|||||||
<el-table-column :label="$t('employee.hostsLevel')" align="center" prop="hostsLevel" />
|
<el-table-column :label="$t('employee.hostsLevel')" align="center" prop="hostsLevel" />
|
||||||
<el-table-column :label="t('newHosts.invitationType')" align="center" prop="invitationType" width="200">
|
<el-table-column :label="t('newHosts.invitationType')" align="center" prop="invitationType" width="200">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-tag size="small" :type="scope.row.invitationType == 1 ? 'warning' : 'primary'">
|
<el-tag size="small" :type="scope.row.invitationType == 1 ? 'primary' : 'warning'">
|
||||||
{{ dictLabelI18n(DICT_TYPE.HOSTS_INVITATION_TYPE, scope.row.invitationType) || '-' }}
|
{{ dictLabelI18n(DICT_TYPE.HOSTS_INVITATION_TYPE, scope.row.invitationType) || '-' }}
|
||||||
</el-tag>
|
</el-tag>
|
||||||
</template>
|
</template>
|
||||||
@@ -270,9 +270,9 @@
|
|||||||
<div class="card-row"><b>{{ $t('employee.updateTime') }}:</b>{{ formatTimestamp(item.updateTime) }}</div>
|
<div class="card-row"><b>{{ $t('employee.updateTime') }}:</b>{{ formatTimestamp(item.updateTime) }}</div>
|
||||||
<div class="card-row action-row">
|
<div class="card-row action-row">
|
||||||
<el-button link type="primary" @click="openForm('update', item.id, index)">{{ $t('employee.edit')
|
<el-button link type="primary" @click="openForm('update', item.id, index)">{{ $t('employee.edit')
|
||||||
}}</el-button>
|
}}</el-button>
|
||||||
<el-button link type="danger" @click="handleDelete(item.id)">{{ $t('employee.delete')
|
<el-button link type="danger" @click="handleDelete(item.id)">{{ $t('employee.delete')
|
||||||
}}</el-button>
|
}}</el-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -156,7 +156,7 @@
|
|||||||
<el-table-column :label="$t('employee.hostsLevel')" align="center" prop="hostsLevel" />
|
<el-table-column :label="$t('employee.hostsLevel')" align="center" prop="hostsLevel" />
|
||||||
<el-table-column :label="t('newHosts.invitationType')" align="center" prop="invitationType" width="200">
|
<el-table-column :label="t('newHosts.invitationType')" align="center" prop="invitationType" width="200">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-tag size="small" :type="scope.row.invitationType == 1 ? 'warning' : 'primary'">
|
<el-tag size="small" :type="scope.row.invitationType == 1 ? 'primary' : 'warning'">
|
||||||
{{ dictLabelI18n(DICT_TYPE.HOSTS_INVITATION_TYPE, scope.row.invitationType) || '-' }}
|
{{ dictLabelI18n(DICT_TYPE.HOSTS_INVITATION_TYPE, scope.row.invitationType) || '-' }}
|
||||||
</el-tag>
|
</el-tag>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -181,7 +181,7 @@
|
|||||||
|
|
||||||
<el-table-column :label="t('newHosts.invitationType')" align="center" prop="invitationType" width="200">
|
<el-table-column :label="t('newHosts.invitationType')" align="center" prop="invitationType" width="200">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-tag size="small" :type="scope.row.invitationType == 1 ? 'warning' : 'primary'">
|
<el-tag size="small" :type="scope.row.invitationType == 1 ? 'primary' : 'warning'">
|
||||||
{{ dictLabelI18n(DICT_TYPE.HOSTS_INVITATION_TYPE, scope.row.invitationType) || '-' }}
|
{{ dictLabelI18n(DICT_TYPE.HOSTS_INVITATION_TYPE, scope.row.invitationType) || '-' }}
|
||||||
</el-tag>
|
</el-tag>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user