flowDiagram.vue 333 B

12345678910111213141516171819202122
  1. <template>
  2. <web-view :src="`${webviewServer}/mobile/flowDiagram?id=${id}&fromMobile=true`"></web-view>
  3. </template>
  4. <script>
  5. import webview from './webview'
  6. export default {
  7. mixins: [webview],
  8. data() {
  9. return {
  10. id: ''
  11. }
  12. },
  13. onLoad(options) {
  14. this.id = options.id
  15. }
  16. }
  17. </script>
  18. <style lang="scss">
  19. </style>