| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <view class="stores">
- <view class="title">交易规范</view>
- </view>
- </template>
- <script>
- import { mapState } from 'vuex';
- export default {
- data() {
- return {
- checked: false
- };
- },
- computed: {
- ...mapState(['systemInfo'])
- },
- methods: {}
- };
- </script>
- <style lang="scss" scoped>
- .topImg {
- width: 28px;
- height: 28px;
- margin-left: 8px;
- }
- .stores {
- margin: 10px 20px 0;
- .title {
- font-size: 24px;
- font-weight: bold;
- color: #000000;
- line-height: 33px;
- margin-bottom: 10px;
- }
- }
- </style>
|