提交 39e63a41 authored 作者: 劳广强's avatar 劳广强

feat: 完成 已提交审核 页面

上级 731a7d99
......@@ -63,6 +63,13 @@
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
},
{
"path": "pages/record-finish/index",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
],
"tabBar": {
......
.success {
margin-top: 182rpx;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.img {
width: 302rpx;
height: 308rpx;
}
.title {
margin-top: 102rpx;
font-size: 40rpx;
font-weight: 500;
text-align: center;
color: #000000;
letter-spacing: 0rpx;
}
.tip {
margin-top: 20rpx;
font-size: 32rpx;
font-weight: 400;
color: #000000;
letter-spacing: 0rpx;
}
.submit_btn_box {
padding: 0 30rpx;
}
.btn {
width: 314rpx;
height: 92rpx;
margin-top: 78rpx;
background: linear-gradient(270deg, #8171fc, #a471fc);
border-radius: 46rpx;
color: #fff !important;
font-size: 32rpx;
font-weight: 500;
display: flex;
justify-content: center;
align-items: center;
}
<template>
<view>
<view class="success">
<image mode="aspectFill" class="img" src="/static/pic_ytj@2x.png" />
<view class="title">已提交审核</view>
<view class="tip">{{ path }}</view>
<view class="submit_btn_box" @click="backIndex">
<button type="default" class="btn">返回首页</button>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
backType: 0,
path: '可在“我的随手拍-审核中”查看',
};
},
methods: {
async backIndex() {
if (this.backType === 0) {
uni.navigateTo({ url: 'pages/index/index' });
}
},
},
};
</script>
<style scoped lang="scss">
@import 'index.scss';
</style>
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论