12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <view class="content vflex acenter">
- <image src="static/success.png" mode="aspectFill"></image>
- <text>简历上传成功</text>
- <view class="btn" @click="toback">返回</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- toback() {
- uni.navigateBack()
- }
- }
- }
- </script>
- <style lang="scss">
- .content {
- background: #FFFFFF;
- image {
- width: 104rpx;
- height: 104rpx;
- margin: 110rpx 0 48rpx;
- }
- text {
- font-size: 36rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- color: #222222;
- }
- .btn {
- margin: 88rpx 0;
- width: 272rpx;
- height: 84rpx;
- border-radius: 42rpx;
- border: 2rpx solid #00B0B0;
- font-size: 32rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- color: #00B0B0;
- line-height: 84rpx;
- text-align: center;
- }
- }
- </style>
|