Initial commit: queue workspace
Made-with: Cursor
This commit is contained in:
72
pro_v3.5.1/view/uniapp/pages/annex/offline_result/index.vue
Normal file
72
pro_v3.5.1/view/uniapp/pages/annex/offline_result/index.vue
Normal file
@@ -0,0 +1,72 @@
|
||||
<template>
|
||||
<view>
|
||||
<view class="result">
|
||||
<view class="image-wrap">
|
||||
<image class="image" :src="imgHost + '/statics/images/offline-result.png'" ></image>
|
||||
</view>
|
||||
<view class="text">支付成功</view>
|
||||
</view>
|
||||
<navigator class="link" url="/pages/index/index" open-type="switchTab">进入商城</navigator>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {HTTP_REQUEST_URL} from '@/config/app.js';
|
||||
export default {
|
||||
data(){
|
||||
return {
|
||||
imgHost:HTTP_REQUEST_URL,
|
||||
}
|
||||
},
|
||||
onLoad(options) {
|
||||
let site_name = options.site_name || '';
|
||||
if (site_name) {
|
||||
uni.setNavigationBarTitle({
|
||||
title: site_name
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
page {
|
||||
background-color: #fff;
|
||||
}
|
||||
</style>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.result {
|
||||
margin-top: 200rpx;
|
||||
|
||||
.image-wrap {
|
||||
width: 267rpx;
|
||||
height: 223rpx;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.image {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.text {
|
||||
margin-top: 46rpx;
|
||||
font-size: 34rpx;
|
||||
text-align: center;
|
||||
color: #282828;
|
||||
}
|
||||
}
|
||||
|
||||
.link {
|
||||
width: 560rpx;
|
||||
height: 86rpx;
|
||||
border: 1rpx solid #F19D2F;
|
||||
border-radius: 43rpx;
|
||||
margin: 90rpx auto 0;
|
||||
font-size: 30rpx;
|
||||
line-height: 86rpx;
|
||||
text-align: center;
|
||||
color: #F19D2F;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user