mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-11 18:42:54 +00:00
26 lines
557 B
Vue
26 lines
557 B
Vue
<template>
|
|
<div>
|
|
<p><b>{{$L(msg.desc)}}</b></p>
|
|
<p> </p>
|
|
|
|
<p>{{$L('文件名')}}: {{msg.name}}</p>
|
|
<p>{{$L('文件大小')}}: {{$A.bytesToSize(msg.size)}}</p>
|
|
<p style="margin-top:10px">
|
|
<Button :to="msg.url" target="_blank" type="warning" class="no-dark-content">{{$L('立即下载')}}</Button>
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
props: {
|
|
msg: Object,
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
}
|
|
</script>
|