@@ -75,14 +80,24 @@ export default {
\ No newline at end of file
diff --git a/src/views/enterpriseLibrary/enterprise/components/child/LegalPersonDetail.vue b/src/views/enterpriseLibrary/enterprise/components/child/LegalPersonDetail.vue
index 16954b4..b32c85f 100644
--- a/src/views/enterpriseLibrary/enterprise/components/child/LegalPersonDetail.vue
+++ b/src/views/enterpriseLibrary/enterprise/components/child/LegalPersonDetail.vue
@@ -6,20 +6,41 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -41,16 +62,16 @@ export default {
},
data() {
return {
- form:{
- legalPersonName:'',
- legalPersonIdCard:'',
- idCardStartDate:'',
- legalPersonPosition:'',
- legalPersonPhone:'',
- url:null,
- url2:null,
- fileList:[],
- fileList2:[],
+ form: {
+ legalPersonName: '',
+ legalPersonIdCard: '',
+ idCardStartDate: '',
+ legalPersonPosition: '',
+ legalPersonPhone: '',
+ url: null,
+ url2: null,
+ fileList: [],
+ fileList2: [],
}
}
},
@@ -64,19 +85,19 @@ export default {
idCardStartDate: this.detailData.idCardStartDate,
legalPersonPosition: this.detailData.legalPersonPosition,
legalPersonPhone: this.detailData.legalPersonPhone,
- url:fileList[0]?.fileType === '1'? fileList[0]?.lsFilePath : null,
- url2:fileList2[0]?.fileType === '1'? fileList2[0]?.lsFilePath : null,
- fileList:fileList,
- fileList2:fileList2,
+ url: fileList[0]?.fileType === '1' ? fileList[0]?.lsFilePath : null,
+ url2: fileList2[0]?.fileType === '1' ? fileList2[0]?.lsFilePath : null,
+ fileList: fileList,
+ fileList2: fileList2,
}
},
- getFileList(businessType){
+ getFileList(businessType) {
return this.detailData.fileList.filter(item => item.businessType === businessType).map(item => {
return {
name: item.fileName,
filePath: item.filePath,
- lsFilePath:item.lsFilePath,
- fileType:item.fileType
+ lsFilePath: item.lsFilePath,
+ fileType: item.fileType
};
});
}
@@ -106,5 +127,4 @@ export default {
font-size: 20px;
}
}
-
\ No newline at end of file