mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-11 18:42:54 +00:00
97 lines
2.5 KiB
Vue
97 lines
2.5 KiB
Vue
<template>
|
|
<div class="single-file">
|
|
<PageTitle :title="pageName"/>
|
|
<Loading v-if="loadIng > 0"/>
|
|
<template v-else-if="fileInfo">
|
|
<FilePreview v-if="isPreview" :code="code" :file="fileInfo" :historyId="historyId" :headerShow="!$isEEUiApp"/>
|
|
<FileContent v-else v-model="fileShow" :file="fileInfo"/>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.single-file {
|
|
display: flex;
|
|
align-items: center;
|
|
.file-content,
|
|
.file-preview {
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
</style>
|
|
<script>
|
|
import FileContent from "../manage/components/FileContent";
|
|
import FilePreview from "../manage/components/FilePreview";
|
|
|
|
export default {
|
|
components: {FilePreview, FileContent},
|
|
data() {
|
|
return {
|
|
loadIng: 0,
|
|
|
|
code: null,
|
|
|
|
fileShow: true,
|
|
fileInfo: null,
|
|
}
|
|
},
|
|
mounted() {
|
|
//
|
|
},
|
|
computed: {
|
|
historyId() {
|
|
return this.$route.query ? $A.runNum(this.$route.query.history_id) : 0;
|
|
},
|
|
isPreview() {
|
|
return this.windowPortrait || this.code || this.historyId > 0 || (this.fileInfo && this.fileInfo.permission === 0)
|
|
},
|
|
pageName() {
|
|
let name = this.fileInfo ? this.fileInfo.name : '';
|
|
if (this.$route.query && this.$route.query.history_at) {
|
|
name += ` [${this.$route.query.history_at}]`
|
|
}
|
|
return name;
|
|
}
|
|
},
|
|
watch: {
|
|
'$route': {
|
|
handler() {
|
|
this.getInfo();
|
|
},
|
|
immediate: true
|
|
},
|
|
},
|
|
methods: {
|
|
getInfo() {
|
|
let {codeOrFileId} = this.$route.params;
|
|
let data = {id: codeOrFileId};
|
|
if (/^\d+$/.test(codeOrFileId)) {
|
|
this.code = null;
|
|
} else if (codeOrFileId) {
|
|
this.code = codeOrFileId;
|
|
} else {
|
|
return;
|
|
}
|
|
setTimeout(_ => {
|
|
this.loadIng++;
|
|
}, 600)
|
|
this.$store.dispatch("call", {
|
|
url: 'file/one',
|
|
data,
|
|
}).then(({data}) => {
|
|
this.fileInfo = data;
|
|
}).catch(({msg}) => {
|
|
$A.modalError({
|
|
content: msg,
|
|
onOk: () => {
|
|
window.close();
|
|
}
|
|
});
|
|
}).finally(_ => {
|
|
this.loadIng--;
|
|
});
|
|
}
|
|
}
|
|
}
|
|
</script>
|