h5/pages/driver/reservedGuide.vue
对比新文件 @@ -0,0 +1,27 @@ <template> <view class="box"> <mp-html :content="content" /> </view> </template> <script> export default { data() { return { content: '' }; }, onLoad(option) { this.content = uni.getStorageSync('driverGuide')[option.str] }, methods: { } } </script> <style lang="scss"> .box{ padding: 0 30rpx; } </style>