|
@@ -255,6 +255,7 @@
|
|
|
import { mapGetters } from "vuex";
|
|
|
import pathCard from "@/components/model/file/pathCard"
|
|
|
import nodeDialog from "@/components/model/file/nodeDialog"
|
|
|
+import Bus from '@/utils/bus.js'
|
|
|
export default {
|
|
|
components: {
|
|
|
pathCard,
|
|
@@ -268,9 +269,22 @@ export default {
|
|
|
loading: false, //
|
|
|
}
|
|
|
},
|
|
|
+ mounted() {
|
|
|
+ Bus.$on('messageListUpdate', message => {
|
|
|
+ this.getMessage()
|
|
|
+ })
|
|
|
+ },
|
|
|
methods: {
|
|
|
+ // 弹窗
|
|
|
getNodeDes() {
|
|
|
this.$refs.nodeDialog.showDialog()
|
|
|
+ },
|
|
|
+ // 获取流转状态
|
|
|
+ getMessage() { },
|
|
|
+ // 处理时间工具
|
|
|
+ formatTime(time) {
|
|
|
+ let str = '';
|
|
|
+ return str;
|
|
|
}
|
|
|
},
|
|
|
};
|