BUG 29095
This commit is contained in:
@@ -153,17 +153,13 @@
|
||||
</div>
|
||||
</template>
|
||||
</ai-card>
|
||||
<ai-card title="审核状态" v-if="isEdit">
|
||||
<template #content>
|
||||
<el-form-item label="审核状态" style="width: 100%">
|
||||
<span
|
||||
style="padding-left: 24px"
|
||||
:class="'audit-' + form.auditStatus"
|
||||
>{{ dict.getLabel("auditStatus", form.auditStatus) }}</span
|
||||
>
|
||||
</el-form-item>
|
||||
</template>
|
||||
</ai-card>
|
||||
<!-- <ai-card title="审核状态" v-if="isEdit">-->
|
||||
<!-- <template #content>-->
|
||||
<!-- <el-form-item label="审核状态" style="width: 100%">-->
|
||||
<!-- <span :class="'audit-' + form.auditStatus" v-text="dict.getLabel('auditStatus', form.auditStatus)"/>-->
|
||||
<!-- </el-form-item>-->
|
||||
<!-- </template>-->
|
||||
<!-- </ai-card>-->
|
||||
<ai-card title="联络信息">
|
||||
<div class="ai-form" slot="content">
|
||||
<el-form-item label="联系方式" prop="phone">
|
||||
|
||||
@@ -172,10 +172,10 @@ export default {
|
||||
{prop: 'name', label: '姓名', align: 'center'},
|
||||
{prop: 'sex', label: '性别', align: 'center', dict: 'sex'},
|
||||
{prop: 'age', label: '年龄', align: 'center'},
|
||||
{
|
||||
prop: 'auditStatus', label: '审核状态', align: 'center',
|
||||
render: (h, {row}) => h('span', {class: `audit-${row.auditStatus}`}, this.dict.getLabel('auditStatus', row.auditStatus))
|
||||
},
|
||||
// {
|
||||
// prop: 'auditStatus', label: '审核状态', align: 'center',
|
||||
// render: (h, {row}) => h('span', {class: `audit-${row.auditStatus}`}, this.dict.getLabel('auditStatus', row.auditStatus))
|
||||
// },
|
||||
{prop: 'partyStatus', label: '党籍状态', align: 'center', dict: 'partyStatus'},
|
||||
{prop: 'joinPartyTime', label: '入党日期', align: 'center', formart: v => v ? v.split(' ')[0] : '-'},
|
||||
{prop: 'partyPosition', label: '党内职务', align: 'center', dict: 'partyPosition'},
|
||||
|
||||
Reference in New Issue
Block a user