* fix -- 修改获取流程节点信息接口(供前端渲染流程跟踪图着色使用) * fix -- 修复流程跟踪着色问题 * fix -- 采用ProcessViewer组件显示流程跟踪信息 * fix -- 整合表单设计代码 * fix -- 简易实现用户任务选择用户下拉框内容 * fix -- 修改项目介绍及sql文件 * del -- 移除未使用的文件 * fix -- 修复组件无法显示和修改的问题 * add -- 整合 Rtony/RuoYi-flowable 工作流 * add -- 添加process-designer流程设计插件 * !3 同步ruoyi-vue-plus更新 * !2 登录认证用户信息添加nickName字段(流程任务需要使用到)
58 lines
1.0 KiB
Vue
58 lines
1.0 KiB
Vue
<template>
|
|
<div>
|
|
<svg-icon :icon-class="isFullscreen?'exit-fullscreen':'fullscreen'" @click="click" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import screenfull from 'screenfull'
|
|
|
|
export default {
|
|
name: 'Screenfull',
|
|
data() {
|
|
return {
|
|
isFullscreen: false
|
|
}
|
|
},
|
|
mounted() {
|
|
this.init()
|
|
},
|
|
beforeDestroy() {
|
|
this.destroy()
|
|
},
|
|
methods: {
|
|
click() {
|
|
if (!screenfull.isEnabled) {
|
|
this.$message({ message: '你的浏览器不支持全屏', type: 'warning' })
|
|
return false
|
|
}
|
|
screenfull.toggle()
|
|
},
|
|
change() {
|
|
this.isFullscreen = screenfull.isFullscreen
|
|
},
|
|
init() {
|
|
if (screenfull.isEnabled) {
|
|
screenfull.on('change', this.change)
|
|
}
|
|
},
|
|
destroy() {
|
|
if (screenfull.isEnabled) {
|
|
screenfull.off('change', this.change)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.screenfull-svg {
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
fill: #5a5e66;;
|
|
width: 20px;
|
|
height: 20px;
|
|
vertical-align: 10px;
|
|
}
|
|
</style>
|