添加新文件

This commit is contained in:
hejiangming
2025-05-07 10:09:55 +08:00
parent 007b002b81
commit 7e7a096151
776 changed files with 92603 additions and 0 deletions
@@ -0,0 +1,59 @@
<template>
<view class="order_sumbit_ok_warp">
<Header leftTitle="" left-path-type="switchTab" left-path="/pages/mine/mine"/>
<view class="order_sumbit_ok_content">
<view class="ok_img">
<up-image src="/static/product/error.png" width="120" height="120" bgColor="#f1f6ff00"></up-image>
<view class="ok_img_msg">支付失败</view>
</view>
<view class="ok_but" @click="jumpHome">确认</view>
</view>
</view>
</template>
<script>
import Header from '@/components/header.vue';
export default {
components:{Header},
data() {
return {
}
},
methods: {
jumpHome(){
uni.switchTab({
url: '/pages/home/home',
})
}
}
}
</script>
<style lang="scss" scoped>
.order_sumbit_ok_warp{
height: calc(100vh - 80rpx);
text-align: center;
.order_sumbit_ok_content{
padding: 40rpx;
}
.ok_img{
display: grid;
.ok_img_msg{
font-weight: bold;
font-size: 36rpx;
color: #222222;
}
}
.ok_but{
margin-top: 100rpx;
background: $app-bt-bj;
border-radius: 16rpx;
text-align: center;
padding: 20rpx 0;
height: 46rpx;
color: #FFF;
}
}
</style>