Commit be77f7dc authored by jingnan's avatar jingnan 👀

装配执行下附件增加备注字段

parent f677ba43
......@@ -39,6 +39,7 @@ import { post } from '@/utils/http'
export default {
name: 'StorageExperimentDialog',
data() {
const _that = this
return {
visible: false,
loading: false,
......@@ -71,7 +72,30 @@ export default {
'show': true,
'headerAlign': 'center',
'align': 'left'
},
{
align: 'center',
headerAlign: 'center',
key: 'target.contentType',
parentKey: 'target',
level: 1,
show: true,
title: '备注',
component: {
componentType: 'render',
render: (h, data, column, index) => {
return <el-input v-model={data.target.contentType} class='modify-state-select' size='small'
v-on:change={(val) => {
data.operator = 'MODIFY'
data.contentType = data.target.contentType
_that.$set(_that.process.fileList, index, data)
}}
>
</el-input>
}
}
}
],
tableConfig: {
component: {
......@@ -96,6 +120,7 @@ export default {
taleType: 'single',
url: '/dfs/fileManager/feign/uploadFile'
},
isAttachmentUsedSecret: true,
descriptionShowMode: 'text',
hidden: false,
key: 'objFileLinks',
......
......@@ -214,6 +214,12 @@
label="扩展名"
align="center"
/>
<el-table-column
min-width="120"
prop="contentType"
label="备注"
align="center"
/>
</el-table>
</div>
<!-- <span
......
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