123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <template>
- <view class="content">
- <image src="../../static/img/success.png" mode="" class="okimg"></image>
- <text class="tit">{{$t('hea.tjcg')}}</text>
- <text class="tit1">{{$t('hea.qdd')}}</text>
- <view class="btn-wrapper" >
- <navigator url="/pages/index/index" open-type="switchTab" class="bank">{{$t('hea.backhome')}}</navigator>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- orderId:'',
- money: '',
- }
- },
- onLoad() {
- },
- methods: {
-
- }
- }
- </script>
- <style lang='scss'>
- .content{
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding-top: 277rpx;
- }
- .success-icon{
- font-size: 160upx;
- color: #5dbc7c;
- margin-top: 100upx;
- }
- .tit{
- margin-top: -50rpx;
- font-size: 40rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 1.5;
- }
- .tit1 {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #B3B3B3;
- }
- .btn-group{
- padding-top: 100upx;
- }
- .mix-btn {
- margin-top: 30upx;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 600upx;
- height: 80upx;
- font-size: $font-lg;
- color: #fff;
- background-color: $base-color;
- border-radius: 10upx;
- &.hollow{
- background: #fff;
- color: #303133;
- border: 1px solid #ccc;
- }
- }
- .okimg {
- width: 362rpx;
- height: 267rpx;
- }
- .btn-wrapper {
- margin-top: 46rpx;
- display: flex;
- .look-btn {
- width: 301rpx;
- height: 78rpx;
- background: #901b21;
- text-align: center;
- line-height: 78rpx;
- border-radius: 10rpx;
- color: #fff;
- margin-right: 37rpx;
- }
- .bank {
- /* width: 301rpx;
- height: 78rpx;
- text-align: center;
- line-height: 78rpx;
- background: #FFFFFF;
- border: 2px solid #901B21;
- border-radius: 10rpx;
- color: #901b21; */
- width: 350rpx;
- line-height: 80rpx;
- text-align: center;
- background: linear-gradient(-74deg, #CE9C6D, #FFECD6);
- box-shadow: 3rpx 4rpx 5rpx 0px rgba(151, 118, 74, 0.5);
- border-radius: 40rpx;
-
- font-size: 34rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #874B19;
- }
- }
- </style>
|