|
@@ -28,7 +28,7 @@
|
|
|
<el-button :type="sortFlag ? 'info' : 'primary'" icon="Plus" :disabled="sortFlag" @click="createProcessEv('index')">创建审批</el-button>
|
|
|
</div>
|
|
|
</header>
|
|
|
- <el-alert title="长按流程或分组可拖拽排序" type="warning" show-icon />
|
|
|
+ <el-alert title="长按流程或分组可拖拽排序" type="warning" show-icon @close="ls.set('tipFlag', false)" v-if="ls.get('tipFlag')"/>
|
|
|
<div class="mt-4">
|
|
|
<component :is="typeComponentMap[pageType]" ref="dyncComponent"></component>
|
|
|
</div>
|
|
@@ -41,6 +41,7 @@ import { CircleCheck } from '@element-plus/icons-vue'
|
|
|
import SortGroup from './components/sortGroup'
|
|
|
import ListGroup from './components/listGroup'
|
|
|
import router from '@/router'
|
|
|
+import { ls } from '@/utils'
|
|
|
import useFlowStore from '@/store/modules/flow'
|
|
|
const flowStore = useFlowStore()
|
|
|
|