| | |
| | | left-arrow |
| | | @click-left="onClickLeft" |
| | | /> |
| | | <div style="padding-top: 20px;" v-html="manualCon"></div> |
| | | <div style="padding-top: 20px" v-html="manualCon"></div> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | data() { |
| | | return { |
| | | manualCon: "", |
| | | |
| | | }; |
| | | }, |
| | | created() { |
| | | this.getOperating() |
| | | this.getOperating(); |
| | | }, |
| | | methods: { |
| | | onClickLeft() { |
| | |
| | | }) |
| | | .then((res) => { |
| | | if (res.datas.length > 0) { |
| | | res.datas.forEach((item) => { |
| | | item.tourism_content = item.tourism_content.replace( |
| | | /<img/g, |
| | | '<img style="max-width:100%;height:auto"' |
| | | ); |
| | | item.tourism_content = item.tourism_content.replace( |
| | | /\..\/file/g, |
| | | this.config.requestCtx + "/file" |
| | | ); |
| | | }); |
| | | this.manualCon = res.datas[0].tourism_content; |
| | | } |
| | | }); |
| | | }, |
| | | |
| | | |
| | | } |
| | | }, |
| | | }; |
| | | </script> |
| | | <style scoped> |
| | |
| | | width:100%; |
| | | height:100%; |
| | | padding: 15px; |
| | | |
| | | } |
| | | |
| | | |
| | | </style> |