附件格式
This commit is contained in:
@@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'file',
|
name: 'file',
|
||||||
props: ['disableds', 'disabled', 'thisFileUploadUrl', 'readonly', 'thisFileType', 'isUploadFile', 'isMultiple', 'restrictUploads', 'Uploadable'],
|
props: ['disableds', 'disabled', 'thisFileUploadUrl','accept', 'readonly', 'thisFileType', 'isUploadFile', 'isMultiple', 'restrictUploads', 'Uploadable'],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
@@ -88,6 +88,16 @@
|
|||||||
// let thisFileType = this.thisFileType.replace(/\s+/g, "");
|
// let thisFileType = this.thisFileType.replace(/\s+/g, "");
|
||||||
console.log(file)
|
console.log(file)
|
||||||
this.fileTypeSatus = true
|
this.fileTypeSatus = true
|
||||||
|
//根据格式拦截
|
||||||
|
if(this.accept){
|
||||||
|
let fileNames = file.name.split('.')
|
||||||
|
let fileType = fileNames[fileNames.length - 1].toLocaleLowerCase()
|
||||||
|
let extList = this.accept.split(',')
|
||||||
|
if (!extList.find((item) => item == fileType)) {
|
||||||
|
this.$message.error(this.$t('uploadOnly') + this.accept + this.$t('type'))
|
||||||
|
reject(false)
|
||||||
|
}
|
||||||
|
}
|
||||||
if (this.isMultiple) {
|
if (this.isMultiple) {
|
||||||
if ((this.myfileList && this.myfileList.length == 1) || this.myfileList && this.myfileList.length > 1) {
|
if ((this.myfileList && this.myfileList.length == 1) || this.myfileList && this.myfileList.length > 1) {
|
||||||
this.$message.warning(this.$t('onlyOnefileUploaded'))
|
this.$message.warning(this.$t('onlyOnefileUploaded'))
|
||||||
@@ -121,6 +131,7 @@
|
|||||||
// }else{
|
// }else{
|
||||||
// this.fileTypeSatus = false;
|
// this.fileTypeSatus = false;
|
||||||
// }
|
// }
|
||||||
|
// }
|
||||||
// }
|
// }
|
||||||
this.$message.destroy()
|
this.$message.destroy()
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
:placeholder="$t('PleaseSelect')"
|
:placeholder="$t('PleaseSelect')"
|
||||||
:type="'select'"
|
:type="'select'"
|
||||||
:triggerChange="false"
|
:triggerChange="false"
|
||||||
:dictCode="record.dictCode"
|
:dictCode="'driving_automation_level'"
|
||||||
v-model="record.jszdhjb"/>
|
v-model="record.jszdhjb"/>
|
||||||
</span>
|
</span>
|
||||||
<!-- 技术参数-->
|
<!-- 技术参数-->
|
||||||
|
|||||||
+1
-1
@@ -34,7 +34,7 @@
|
|||||||
<a-button type="primary" style='width: 73px;margin-right: 50px' @click="last">{{ $t('last') }}</a-button>
|
<a-button type="primary" style='width: 73px;margin-right: 50px' @click="last">{{ $t('last') }}</a-button>
|
||||||
<a-button type="primary" style='width: 73px' @click='next'>{{ $t('next') }}</a-button>
|
<a-button type="primary" style='width: 73px' @click='next'>{{ $t('next') }}</a-button>
|
||||||
</div>
|
</div>
|
||||||
<uploadFile ref="uploadFile" @uploadSuccess="uploadSuccess"></uploadFile>
|
<uploadFile ref="uploadFile" :accept="'.doc,.docx,.pdf'" @uploadSuccess="uploadSuccess"></uploadFile>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user