You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
588 B
34 lines
588 B
<template>
|
|
<view>
|
|
<image src="../static/coupsucces.png" mode="widthFix" class="sucimg mart40"></image>
|
|
<view class="width90 clor4cd964 mart30 font18 fotct">支付成功</view>
|
|
<view class="width90 fcor333 mart30 font48 fotct">¥ {{sucprice}}</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
sucprice:''
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
this.sucprice = options.price;
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
.sucimg {
|
|
width: 20%;
|
|
margin-left: 40%;
|
|
}
|
|
|
|
.clor4cd964 {
|
|
color: #76b554;
|
|
}
|
|
</style>
|
|
|