|
@@ -49,7 +49,6 @@
|
|
|
<el-icon><zoom-in /></el-icon>
|
|
|
</span>
|
|
|
<span
|
|
|
- v-if="!disabled"
|
|
|
class="el-upload-list__item-delete"
|
|
|
@click="handleDownload(file)"
|
|
|
>
|
|
@@ -105,7 +104,6 @@
|
|
|
<el-icon><zoom-in /></el-icon>
|
|
|
</span>
|
|
|
<span
|
|
|
- v-if="!disabled"
|
|
|
class="el-upload-list__item-delete"
|
|
|
@click="handleDownload2(file)"
|
|
|
>
|
|
@@ -174,7 +172,6 @@
|
|
|
<el-icon><zoom-in /></el-icon>
|
|
|
</span>
|
|
|
<span
|
|
|
- v-if="!disabled"
|
|
|
class="el-upload-list__item-delete"
|
|
|
@click="gsHandleDownload(file)"
|
|
|
>
|
|
@@ -230,7 +227,6 @@
|
|
|
<el-icon><zoom-in /></el-icon>
|
|
|
</span>
|
|
|
<span
|
|
|
- v-if="!disabled"
|
|
|
class="el-upload-list__item-delete"
|
|
|
@click="gsHandleDownload2(file)"
|
|
|
>
|
|
@@ -515,6 +511,17 @@
|
|
|
this.inputForm.id = id
|
|
|
this.visible = true
|
|
|
this.loading = false
|
|
|
+
|
|
|
+ this.testFlag = false,
|
|
|
+ this.testDisabledFlag = false,
|
|
|
+ this.dialogVisible = false,
|
|
|
+ this.dialogVisible2 = false,
|
|
|
+ this.hideUploadEdit = false, //控制上传点击
|
|
|
+ this.hideUploadEdit2 = false, //控制上传点击
|
|
|
+ this.gsDialogVisible = false,
|
|
|
+ this.gsDialogVisible2 = false,
|
|
|
+ this.gsHideUploadEdit = false, //控制上传点击
|
|
|
+ this.gsHideUploadEdit2 = false, //控制上传点击
|
|
|
this.$nextTick(() => {
|
|
|
this.loading = true
|
|
|
enrollmentWageCardService.findWageCardById(this.inputForm.id).then( async (data) => {
|
|
@@ -537,7 +544,8 @@
|
|
|
let file = {
|
|
|
url: data
|
|
|
}
|
|
|
- this.fileList.push(file)
|
|
|
+ this.hideUploadEdit = true, //控制上传点击
|
|
|
+ this.fileList.push(file)
|
|
|
// this.inputForm.socialSecurityPictureFrontUrl = data
|
|
|
})
|
|
|
}
|
|
@@ -547,6 +555,7 @@
|
|
|
let file = {
|
|
|
url: data
|
|
|
}
|
|
|
+ this.hideUploadEdit2 = true, //控制上传点击
|
|
|
this.fileList2.push(file)
|
|
|
// this.inputForm.socialSecurityPictureFrontUrl = data
|
|
|
})
|
|
@@ -556,6 +565,7 @@
|
|
|
let file = {
|
|
|
url: data
|
|
|
}
|
|
|
+ this.gsHideUploadEdit = true, //控制上传点击
|
|
|
this.gsFileList.push(file)
|
|
|
// this.inputForm.socialSecurityPictureFrontUrl = data
|
|
|
})
|
|
@@ -565,6 +575,7 @@
|
|
|
let file = {
|
|
|
url: data
|
|
|
}
|
|
|
+ this.gsHideUploadEdit2 = true, //控制上传点击
|
|
|
this.gsFileList2.push(file)
|
|
|
// this.inputForm.socialSecurityPictureFrontUrl = data
|
|
|
})
|
|
@@ -606,6 +617,17 @@
|
|
|
this.fileList2 = []
|
|
|
this.gsFileList = []
|
|
|
this.gsFileList2 = []
|
|
|
+
|
|
|
+ this.testFlag = false,
|
|
|
+ this.testDisabledFlag = false,
|
|
|
+ this.dialogVisible = false,
|
|
|
+ this.dialogVisible2 = false,
|
|
|
+ this.hideUploadEdit = false, //控制上传点击
|
|
|
+ this.hideUploadEdit2 = false, //控制上传点击
|
|
|
+ this.gsDialogVisible = false,
|
|
|
+ this.gsDialogVisible2 = false,
|
|
|
+ this.gsHideUploadEdit = false, //控制上传点击
|
|
|
+ this.gsHideUploadEdit2 = false, //控制上传点击
|
|
|
this.visible = false
|
|
|
},
|
|
|
reapplyForm (callback) {
|