123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <template>
- <view>
- <view class="main">
- <view>
- <image src="https://rl-zk-image.oss-cn-hangzhou.aliyuncs.com/vehicle-pic/2023-06/dfc15b9438624ded97bee786d915a4f7-uploadFile"></image>
- </view>
- <view class="tip">{{verifyInfo}}</view>
- <!-- <view class="descript">{{tipdata[2]}}</view> -->
- <view><button type="primary" @click="goHome" class="index">返回首页</button></view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- verifyInfo:''
- }
- },
- methods: {
- goHome() {
- this.$utils.switchTab("index/index");
- }
- },
- onLoad(options) {
- this.verifyInfo = options.error
- // uni.setNavigationBarTitle({
- // title: '提示信息'
- // })
- }
- }
- </script>
- <style lang="scss" scoped>
- .main {
- width: 588rpx;
- display: flex;
- flex-direction: column;
- margin: 0 auto;
- text-align: center;
- font-size: 32rpx;
- color: #1D2129;
- padding-top: 100rpx;
- image {
- width: 547rpx;
- height: 511rpx;
- }
- .tip {
- margin-bottom: 38rpx;
- font-size: 28rpx;
- font-weight: 600;
- color: #1D2129;
- }
- .descript {
- font-weight: 400;
- color: #88909B;
- font-size: 28rpx;
- margin-bottom: 98rpx;
- }
- .index {
- width: 400rpx;
- height: 88rpx;
- background: #58BE6B;
- border-radius: 58rpx 58rpx 58rpx 58rpx;
- opacity: 1;
- font-size: 32rpx;
- color: #fff;
- font-weight: 600;
- line-height: 88rpx;
- font-family: Noto Sans SC-Regular, Noto Sans SC;
- }
- }
- </style>
|