|
@@ -765,7 +765,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- isShow: ['AP'].includes(this.formData1.websitAppeal),
|
|
|
+ isShow: this.openType == -1 ? true : ['AP'].includes(this.formData1.websitAppeal),
|
|
|
md: 24,
|
|
|
name: 'el-input',
|
|
|
attributes: {
|
|
@@ -788,9 +788,10 @@ export default {
|
|
|
rules: []
|
|
|
},
|
|
|
render: (h, { props, onInput }) => {
|
|
|
+ var { value } = props
|
|
|
return (
|
|
|
<div>
|
|
|
- <ImageUpload fileList={this.formData1.appealUrl} limit={100} isEdit={this.openType == 1} />
|
|
|
+ <ImageUpload fileList={value} limit={100} isEdit={this.openType == 1} />
|
|
|
</div>
|
|
|
)
|
|
|
}
|