You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

35 lines
491 B

<template>
<view>
<uni-card :is-shadow="false" :border="false" is-full>
<view class="tool">
<view class="download" @click="toPage">下载</view>
</view>
<view class="content">
</view>
</uni-card>
</view>
</template>
<script>
export default {
data() {
return {
// 跳转
toPage() {
this.$util.to('../send/send')
}
};
}
}
</script>
<style scoped lang="scss">
.tool {
.download {
font-size: 13px;
color: #1f83ff;
}
}
</style>