|
|
@@ -375,10 +375,10 @@
|
|
|
fileSettings: {
|
|
|
// 文件配置信息
|
|
|
fileSize: 52428800,
|
|
|
- fileTypes: '.doc,.docx,.zip,.xls,.xlsx,.rar,.jpg,.jpeg,.gif,.png,.jfif,.txt',
|
|
|
+ fileTypes: '.pdf,.doc,.docx,.zip,.xls,.xlsx,.rar,.jpg,.jpeg,.gif,.png,.jfif,.txt',
|
|
|
pictureSize: 52428800,
|
|
|
pictureTypes: '.jpg,.jpeg,.gif,.png,.jfif,.txt',
|
|
|
- types: '.doc,.docx,.zip,.xls,.xlsx,.rar,.jpg,.jpeg,.gif,.png,.jfif,.mp4,.txt',
|
|
|
+ types: '.pdf,.doc,.docx,.zip,.xls,.xlsx,.rar,.jpg,.jpeg,.gif,.png,.jfif,.mp4,.txt',
|
|
|
videoSize: 104857600,
|
|
|
videoType: '.mp4',
|
|
|
},
|
|
|
@@ -477,7 +477,8 @@
|
|
|
this.form.contactId = val[0].id
|
|
|
this.form.contactName = val.map((item) => item.cuctName).join()
|
|
|
this.form.contactPostion = val.map((item) => item.postion).join()
|
|
|
- this.form.contactTelephone = val.map((item) => {
|
|
|
+ this.form.contactTelephone = val
|
|
|
+ .map((item) => {
|
|
|
if (item.telephone !== '' && item.wechat !== '') {
|
|
|
return item.telephone + '/' + item.wechat
|
|
|
}
|
|
|
@@ -487,7 +488,8 @@
|
|
|
if (item.wechat !== '') {
|
|
|
return item.wechat
|
|
|
}
|
|
|
- }).join()
|
|
|
+ })
|
|
|
+ .join()
|
|
|
}
|
|
|
},
|
|
|
handleSelectDistributorContact() {
|