12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <view class="container clearfix rich-text-temp">
- <rich-text-template ref="childTemplate"></rich-text-template>
- </view>
- </template>
- <script>
- import richTextTemplate from '@/components/cm-module/listTemplate/richTextTemplate'
-
- var self;
- export default{
- components: {
- richTextTemplate
- },
- data() {
- return{
- serverUrl: '',
- type: 'introduction'
- }
- },
- onLoad(){
- this.initData()
- },
- methods:{
- initData(){
- this.CommonService.QueryAfterSale().then(response =>{
- let _data =response.data,
- type = this.type;
- if(type) {
- let html = this.$api.adaptRichTextImg(_data[type]);
- this.$refs.childTemplate.html = html;
- }
- }).catch(error =>{
- this.$util.msg(error.msg,2000);
- })
- }
- }
- }
- </script>
- <style lang="scss">
- </style>
|