Standard.vue 527 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class="stores">
  3. <view class="title">交易规范</view>
  4. </view>
  5. </template>
  6. <script>
  7. import { mapState } from 'vuex';
  8. export default {
  9. data() {
  10. return {
  11. checked: false
  12. };
  13. },
  14. computed: {
  15. ...mapState(['systemInfo'])
  16. },
  17. methods: {}
  18. };
  19. </script>
  20. <style lang="scss" scoped>
  21. .topImg {
  22. width: 28px;
  23. height: 28px;
  24. margin-left: 8px;
  25. }
  26. .stores {
  27. margin: 10px 20px 0;
  28. .title {
  29. font-size: 24px;
  30. font-weight: bold;
  31. color: #000000;
  32. line-height: 33px;
  33. margin-bottom: 10px;
  34. }
  35. }
  36. </style>