修改三期优化点

This commit is contained in:
sunFlower
2022-09-28 18:02:27 +08:00
parent adbcd211e4
commit 0cf53352e6
@@ -70,6 +70,22 @@
<span slot="prcType" slot-scope="text,record" :title="prcTypeName[text]">
{{prcTypeName[text]}}
</span>
<span slot="standard" slot-scope="text,record">
<span v-if="record.prcType == '1'" :title="record.serialNumber">
{{record.serialNumber}}
</span>
<span v-else :title="record.prcNum">
{{record.prcNum}}
</span>
</span>
<span slot="titleIndex" slot-scope="text,record">
<span v-if="record.prcType == '1'" :title="record.title">
{{record.title}}
</span>
<span v-else :title="record.prcName">
{{record.prcName}}
</span>
</span>
<span slot="operation" slot-scope="record">
<a @click="dealWith(record)" style="margin-right:8px">{{$t('Processing')}}</a>
</span>
@@ -142,14 +158,16 @@
dataIndex: 'prcNum',
align: 'center',
width: 180,
ellipsis: true
ellipsis: true,
scopedSlots: { customRender: 'standard' }
},
{
title: this.$t('title'),
dataIndex: 'prcName',
align: 'center',
width: 180,
ellipsis: true
ellipsis: true,
scopedSlots: { customRender: 'titleIndex' }
},
{
title: this.$t('ProcessType'),