|
|
@@ -0,0 +1,19 @@
|
|
|
+<template>
|
|
|
+ <div class="app-container">
|
|
|
+ <iframe :src="wordUrl" width='100%' height='1000' frameborder='0'/>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { getToken } from "@/utils/auth";
|
|
|
+export default {
|
|
|
+ name: "myCompanyTask",
|
|
|
+ components: {},
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ // wordUrl:'http://192.168.0.127/flowablePc/#/myStartFlow?token='+getToken(),
|
|
|
+ wordUrl:window.location.protocol+'//'+window.location.host+'/flowablePc/#/myCompanyTask?token='+getToken(),
|
|
|
+ };
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|