123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <view class="content">
- <view class="title">{{pageData.title}}</view>
- <view class="container">{{pageData.container}}</view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- export default {
- data() {
- return{
- pageData: {
- title: '扫码就能取款,真的是太方便了',
- container: '根据《中华人民共和国价格法》《中华人民共和国商业银行法》'
- }
- }
- },
- onLoad() {
-
- },
- methods: {
-
- }
- }
- </script>
- <style scoped lang="scss">
- .content {
- background-color: #fff;
- padding: 0 30rpx;
- .title {
- width: 100%;
- margin: 40rpx 0 24rpx;
- font-size: 40rpx;
- line-height: 56rpx;
- color: #222;
- }
- .container {
- font-size: 36rpx;
- color: #444;
- line-height: 50rpx;
- }
- }
- </style>
|