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.
41 lines
745 B
41 lines
745 B
1 year ago
|
<template>
|
||
|
<u-navbar title="离线上传" placeholder border=true :autoBack="true" leftIconSize='35'></u-navbar>
|
||
|
<scroll-view scroll-y="true" class="scview">
|
||
|
|
||
|
</scroll-view>
|
||
|
<view class="buts">
|
||
|
<view>创建任务</view>
|
||
|
<view>一键上传</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
.scview{
|
||
|
width: 100%;
|
||
|
height: 70vh;
|
||
|
background-color: #ffffff;
|
||
|
}
|
||
|
.buts{
|
||
|
width: 100%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-around;
|
||
|
>view{
|
||
|
width: 320upx;
|
||
|
height: 88upx;
|
||
|
background: #D3832A;
|
||
|
border-radius: 8upx;
|
||
|
font-size: 32upx;
|
||
|
font-weight: 400;
|
||
|
color: #FFFFFF;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
}
|
||
|
</style>
|