update 文档对比

This commit is contained in:
赵霄
2023-09-20 09:38:51 +08:00
parent aab24bc7e7
commit 02385bd805
6 changed files with 58 additions and 56 deletions
@@ -112,7 +112,7 @@
</div>
<a-form-model-item class="item-model" prop="remark">
<a-textarea :placeholder="$t('pleaseEnter')+$t('docTool.comparison.remarkInfo')"
:maxLength="300"
:maxLength="500"
v-model="formInline.remark"
:rows="4" />
</a-form-model-item>
@@ -200,77 +200,67 @@ export default {
columns: [
{
title: this.$t('number'),
align: 'left',
width: 70,
width: 30,
customRender: function (t, r, index) {
return parseInt(index) + 1
}
},
{
title: this.$t('number'),
align: 'left',
ellipsis: true,
dataIndex: 'serialNumber',
width: 79
width: 100
},
{
title: this.$t('title'),
align: 'left',
ellipsis: true,
dataIndex: 'title',
width: 79
width: 100
},
{
title: this.$t('docTool.comparison.textStatus'),
align: 'left',
ellipsis: true,
dataIndex: 'fileType',
width: 79
width: 100
},
{
title: this.$t('fileName'),
align: 'left',
ellipsis: true,
dataIndex: 'fileName',
width: 79
width: 100
}
],
tableColumns: [
{
title: this.$t('number'),
align: 'left',
width: 70,
width: 30,
customRender: function (t, r, index) {
return parseInt(index) + 1
}
},
{
title: this.$t('number'),
align: 'left',
ellipsis: true,
dataIndex: 'serialNumber',
width: 79
width: 100
},
{
title: this.$t('title'),
align: 'left',
ellipsis: true,
dataIndex: 'title',
width: 79
width: 100
},
{
title: this.$t('docTool.comparison.textStatus'),
align: 'left',
ellipsis: true,
dataIndex: 'fileType',
width: 79
width: 100
},
{
title: this.$t('fileName'),
align: 'left',
ellipsis: true,
dataIndex: 'fileName',
width: 79
width: 100
}
],
image: false,