多了个分号

This commit is contained in:
shijingjing
2023-01-09 11:29:57 +08:00
parent 14abc276c3
commit 825c7210e2

View File

@@ -71,14 +71,14 @@
<template #content>
<div>
<el-steps direction="vertical">
<el-stepJ
<el-step
v-for="(item, ind) in info.orgChangeLogs" :key="ind">
<template slot="title">
<p style="color: #333; font-size:14px;">{{ item.createTime }}</p>
<p style="color: #333; font-size:14px;">原组织{{ item.oldPartyOrgName }}</p>
<p style="color: #333; font-size:14px;">新组织{{ item.newPartyOrgName }}</p>
<p style="color: #333; font-size:14px">{{ item.createTime }}</p>
<p style="color: #333; font-size:14px">原组织{{ item.oldPartyOrgName }}</p>
<p style="color: #333; font-size:14px">新组织{{ item.newPartyOrgName }}</p>
</template>
</el-stepJ>
</el-step>
</el-steps>
</div>
</template>
@@ -307,7 +307,7 @@ export default {
activeName: '五星党员',
textlist: ['一星党员', '二星党员', '三星党员', '四星党员', '五星党员'],
colConfigs1: [
{prop: 'starTime', label: '评定时间', align: 'center', format: v => v ? v.split(' ')[0] : '-'},
{prop: 'starTime', label: '评定时间', align: 'center', formart: v => v ? v.split(' ')[0] : '-'},
{slot: 'level'}
],
colConfigs2: [
@@ -316,7 +316,7 @@ export default {
{prop: 'position', label: '职务', align: 'center'}
],
colConfigs3: [
{prop: 'starTime', label: '时间', align: 'center', format: v => v ? v.split(' ')[0] : '-'},
{prop: 'starTime', label: '时间', align: 'center', formart: v => v ? v.split(' ')[0] : '-'},
{prop: 'disciplinaryInfo', label: '违纪原因', align: 'center'},
{prop: 'result', label: '处理结果', align: 'center'}
]