|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <template>
- <view class="oderPage">
- <view class="content">
- <image src="../static/image/failed.png" mode="aspectFill"></image>
- <view class="title">
- 办理失败
- </view>
- <view class="">
- 您办理的业务不成功
- </view>
- </view>
- </view>
-
-
- <view class="btns">
- <button class="back">返回首页</button>
- <button class="next">继续办理</button>
- </view>
- </template>
-
- <script setup lang="ts">
- import navBar from "./components/nav-bar.vue"
- import {
- ref,
- reactive
- } from "vue";
- import {
- navTo
- } from "@/utils/utils"
- let model1 = reactive({
- uname: '输入验证码',
- phone: '135****9090',
- code: ''
- })
-
- const getCode = () => {
- console.log(123);
- }
-
- const submit = () => {
- console.log(11);
- uni.redirectTo({
- // url: '/pages/service/service'
- });
- }
- </script>
-
-
- <style>
- page {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- </style>
- <style lang="scss" scoped>
- .oderPage {
- flex: 1;
- width: 100%;
-
- .content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding: 130rpx;
-
- image {
- width: 690rpx;
- height: 300rpx;
- margin-bottom: 20rpx;
- }
-
- .title {
- font-size: 38rpx;
- font-weight: 600;
- font-size: 40rpx;
- font-family: Microsoft YaHei UI;
- color: #2A2A2A;
- }
-
- view {
- margin: 15rpx 0;
- font-size: 28rpx;
- font-family: Microsoft YaHei UI;
- font-weight: 400;
- color: #717171;
- }
- }
- }
-
- .btns {
-
- width: 100%;
-
- position: fixed;
- bottom: 60rpx;
- left: 50%;
- transform: translate(-50%);
- display: flex;
- justify-content: space-between;
-
- .back {
- width: 311rpx;
- height: 81rpx;
- background: #FFFFFF;
- border: 1px solid #DCDCDC;
- box-shadow: 0rpx 4rpx 11rpx 1rpx rgba(223, 223, 223, 0.5);
- border-radius: 40rpx;
- font-size: 32rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #333333;
- line-height: 81rpx;
- }
-
- .next {
- width: 310rpx;
- height: 80rpx;
- background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
- box-shadow: 0rpx 4rpx 11rpx 1rpx rgba(223, 223, 223, 0.5);
- border-radius: 40rpx;
- font-size: 32rpx;
- font-family: Microsoft YaHei;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 80rpx;
- }
- }
- </style>
|