1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view>
- <view class="align-items" style="margin-top: 80rpx;">
- <back></back>
- <view class="title-text" style="margin-left: 20rpx;">
- {{title}}
- </view>
- </view>
- <rich-text :nodes="string"></rich-text>
- </view>
- </template>
- <script>
- import service from '@/api/index.js'
- export default {
- data() {
- return {
- title:'',
- string:''
- }
- },
- onLoad() {
- this.about()
- },
- methods: {
- back() {
- uni.navigateBack()
- },
- about() {
- service.getAboutUs().then(res => {
- this.string = res.text;
- this.title = res.title;
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .back {
- width: 50rpx;
- height: 50rpx;
- }
- </style>
|