noticeDetail.vue 792 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <view class="content">
  3. <view class="title">{{pageData.title}}</view>
  4. <view class="container">{{pageData.container}}</view>
  5. </view>
  6. </template>
  7. <script>
  8. import $api from '@/static/js/api.js'
  9. export default {
  10. data() {
  11. return{
  12. pageData: {
  13. title: '扫码就能取款,真的是太方便了',
  14. container: '根据《中华人民共和国价格法》《中华人民共和国商业银行法》'
  15. }
  16. }
  17. },
  18. onLoad() {
  19. },
  20. methods: {
  21. }
  22. }
  23. </script>
  24. <style scoped lang="scss">
  25. .content {
  26. background-color: #fff;
  27. padding: 0 30rpx;
  28. .title {
  29. width: 100%;
  30. margin: 40rpx 0 24rpx;
  31. font-size: 40rpx;
  32. line-height: 56rpx;
  33. color: #222;
  34. }
  35. .container {
  36. font-size: 36rpx;
  37. color: #444;
  38. line-height: 50rpx;
  39. }
  40. }
  41. </style>