Merge remote-tracking branch 'origin/pet' into pet

liujun-相关方离职流程简化
shanao 2024-12-03 19:22:46 +08:00
commit 4e25db0c0b
2 changed files with 8 additions and 1 deletions

View File

@ -55,7 +55,7 @@ export default {
this.EW_RU_JOB_ID = options.EW_RU_JOB_ID
this.vernier = options.vernier
this.type = options.type
this.form.CORP_ID = options.CORPINFO_ID
this.form.CORP_ID = options.CORP_ID
this.form.CORP_NAME = options.CORP_NAME
},
methods: {

View File

@ -14,6 +14,7 @@
height="200rpx"
:src="$filePath + item1.ITEM_VALUE"
mode="widthFix"
@click="fnPreviewImage($filePath + item1.ITEM_VALUE)"
/>
</view>
</view>
@ -140,6 +141,12 @@ export default {
},
goBack(){
uni.navigateBack()
},
fnPreviewImage(src){
uni.previewImage({
urls: [src],
current: src,
});
}
},
}