Commit a21604ae authored by 沈翠玲's avatar 沈翠玲

修改样式

parent 6b59aa72
......@@ -408,3 +408,15 @@ body {
.text-blue-400 {
color: #234ca3 !important;
}
.el-form-item__label {
display: flex;
align-items: center;
& > div {
display: flex;
align-items: center;
justify-content: flex-end;
}
.el-space__item {
line-height: 16px;
}
}
\ No newline at end of file
......@@ -326,6 +326,46 @@
},
},
},
{
field: 'lastFollowStatus',
showOverflow: 'tooltip',
title: '最近一次跟进结果',
width: 80,
enum: FollowStatus,
search: { el: 'select', props: { filterable: true }, labelWidth: 90 },
fieldNames: { label: 'label', value: 'value' },
slots: {
default: ({ row }) => {
return (
<>
{row.lastFollowStatus
? FollowStatus.value?.find((v) => v.value === row.lastFollowStatus)?.label
: ''}
</>
);
},
},
},
{
field: 'lastPhoneResultStatus',
showOverflow: 'tooltip',
title: '最近一次跟进状态',
width: 80,
enum: PhoneResultStatus,
search: { el: 'select', props: { filterable: true }, labelWidth: 90 },
fieldNames: { label: 'label', value: 'value' },
slots: {
default: ({ row }) => {
return (
<>
{row.lastPhoneResultStatus
? PhoneResultStatus.value?.find((v) => v.value === row.lastPhoneResultStatus)?.label
: ''}
</>
);
},
},
},
{
field: 'isfollowStatus',
showOverflow: 'tooltip',
......
......@@ -409,6 +409,46 @@
},
},
},
{
field: 'lastFollowStatus',
showOverflow: 'tooltip',
title: '最近一次跟进结果',
width: 80,
enum: FollowStatus,
search: { el: 'select', props: { filterable: true }, labelWidth: 90 },
fieldNames: { label: 'label', value: 'value' },
slots: {
default: ({ row }) => {
return (
<>
{row.lastFollowStatus
? FollowStatus.value?.find((v) => v.value === row.lastFollowStatus)?.label
: ''}
</>
);
},
},
},
{
field: 'lastPhoneResultStatus',
showOverflow: 'tooltip',
title: '最近一次跟进状态',
width: 80,
enum: PhoneResultStatus,
search: { el: 'select', props: { filterable: true }, labelWidth: 90 },
fieldNames: { label: 'label', value: 'value' },
slots: {
default: ({ row }) => {
return (
<>
{row.lastPhoneResultStatus
? PhoneResultStatus.value?.find((v) => v.value === row.lastPhoneResultStatus)?.label
: ''}
</>
);
},
},
},
{
field: 'caseStatus',
showOverflow: 'tooltip',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment