初始提交

This commit is contained in:
2026-01-04 11:09:06 +08:00
commit 8fa31df250
1326 changed files with 213907 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<template>
<view>
<web-view :src="fileUrl"></web-view>
</view>
</template>
<script>
import {
getDownloadUrl
} from '@/api/common'
export default {
data() {
return {
fileUrl: ''
}
},
onLoad(e) {
uni.setNavigationBarTitle({
title: e.name
})
this.getFileUrl(e.fileId)
},
methods: {
getFileUrl(fileId) {
getDownloadUrl('workFlow', fileId).then(res => {
this.fileUrl = this.define.baseURL + res.data.url;
})
}
}
}
</script>