30 lines
510 B
Vue
30 lines
510 B
Vue
<template>
|
|
<view>
|
|
<u-navbar :is-back="true" title="" :title-bold="true" :background="{background: '#ffffff'}" :border-bottom="false" z-index="1001">
|
|
</u-navbar>
|
|
<image class="page-image" src="/static/image/wx/wallet/qinshuka-page.png" mode="widthFix"></image>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.page-image{
|
|
margin-top: 20rpx;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
<style>
|
|
page{
|
|
background-color: #ffffff;
|
|
}
|
|
</style>
|