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.
40 lines
609 B
40 lines
609 B
<template>
|
|
<view>
|
|
<div class="head">
|
|
<image :src="$util.img('/upload/weapp/user/camera.png')" mode=""></image>
|
|
<div class="df jcsa">退款成功</div>
|
|
</div>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.head{
|
|
width: 200rpx;
|
|
height: 200rpx;
|
|
margin: 0 auto;
|
|
margin-top: 200rpx;
|
|
border: 1rpx solid red;
|
|
image{
|
|
width: 200rpx;
|
|
height: 200rpx;
|
|
}
|
|
div{
|
|
font-size: 36rpx;
|
|
font-family: PingFangSC-Semibold, PingFang SC;
|
|
font-weight: 600;
|
|
color: #222222;
|
|
line-height: 50rpx;
|
|
margin-top: 48rpx;
|
|
}
|
|
}
|
|
</style>
|
|
|