|
@@ -723,7 +723,6 @@ export default {
|
|
|
getApply(id).then(response => {
|
|
|
this.dataForm = response.data;
|
|
|
this.getFileList()
|
|
|
- this.dataForm.applicantDept = Number(this.dataForm.applicantDept);
|
|
|
this.inspector1 = this.dataForm.applicant;
|
|
|
if (this.dataForm.inspectors != null) {
|
|
|
let inspectors = this.dataForm.inspectors.split(",");
|
|
@@ -1090,18 +1089,21 @@ export default {
|
|
|
},
|
|
|
/** 加载登记人部门列表 */
|
|
|
getApplicantDeptOptions() {
|
|
|
- listDept(null).then(response => {
|
|
|
- let deptList = response.data;
|
|
|
- this.applicantDeptOptions = [];
|
|
|
- for (let i = 0; i < deptList.length; i++) {
|
|
|
- if (deptList[i].deptId == 103 || deptList[i].deptId == 10058 || deptList[i].deptId == 10042) {
|
|
|
- this.applicantDeptOptions.push({
|
|
|
- dictLabel: deptList[i].deptName,
|
|
|
- dictValue: deptList[i].deptId
|
|
|
- });
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
+ // listDept(null).then(response => {
|
|
|
+ // let deptList = response.data;
|
|
|
+ // this.applicantDeptOptions = [];
|
|
|
+ // for (let i = 0; i < deptList.length; i++) {
|
|
|
+ // if (deptList[i].deptId == 103 || deptList[i].deptId == 10058 || deptList[i].deptId == 10042) {
|
|
|
+ // this.applicantDeptOptions.push({
|
|
|
+ // dictLabel: deptList[i].deptName,
|
|
|
+ // dictValue: deptList[i].deptId
|
|
|
+ // });
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ this.applicantDeptOptions.push({ dictLabel: "CBP/C", dictValue: '10' });
|
|
|
+ this.applicantDeptOptions.push({ dictLabel: "CTA/B", dictValue: '12' });
|
|
|
+ this.applicantDeptOptions.push({ dictLabel: "CTM/B", dictValue: '14' });
|
|
|
},
|
|
|
/** 加载登记人列表 */
|
|
|
listStaffmgrByDeptAndTeam(applicantDept, applicantTeam) {
|