fix : 修复页面细节
This commit is contained in:
@@ -63,27 +63,27 @@ const nullBlockClick = (e) => {
|
||||
disVisible()
|
||||
}
|
||||
}
|
||||
const addApprovalNode = debounce(() => {
|
||||
const addApprovalNode = () => {
|
||||
emit('insertNode', "APPROVAL")
|
||||
disVisible()
|
||||
})
|
||||
}
|
||||
|
||||
const addCcNode = debounce(() => {
|
||||
const addCcNode = () => {
|
||||
emit('insertNode', "CC")
|
||||
disVisible()
|
||||
})
|
||||
const addDelayNode = debounce(() => {
|
||||
}
|
||||
const addDelayNode =() => {
|
||||
emit('insertNode', "DELAY")
|
||||
disVisible()
|
||||
})
|
||||
const addConditionsNode = debounce(() => {
|
||||
}
|
||||
const addConditionsNode = () => {
|
||||
emit('insertNode', "CONDITIONS")
|
||||
disVisible()
|
||||
})
|
||||
const addConcurrentsNode = debounce(() => {
|
||||
}
|
||||
const addConcurrentsNode = () => {
|
||||
emit('insertNode', "CONCURRENTS")
|
||||
disVisible()
|
||||
})
|
||||
}
|
||||
const addTriggerNode = () => {
|
||||
emit('insertNode', "TRIGGER")
|
||||
disVisible()
|
||||
|
||||
@@ -91,7 +91,6 @@ const formPermsLoadMosr = (oldPermMap, perms) => {
|
||||
old.required = perm.required;
|
||||
formPerms.value.push(old);
|
||||
} else {
|
||||
console.log(perm)
|
||||
if (perm.id === 'fileList'){
|
||||
formPerms.value.push({
|
||||
id: perm.id, //todo ,id 就是字段名称
|
||||
|
||||
@@ -16,9 +16,9 @@
|
||||
<!-- </el-form-item>-->
|
||||
<el-form-item>
|
||||
<el-button type="primary" @click="getList" :icon="Search">搜索</el-button>
|
||||
<el-button type="primary" v-perm="['rapid:regular:add']" @click="handleAdd" :icon="Plus">新增</el-button>
|
||||
<el-button type="primary" @click="handleAdd" :icon="Plus">新增</el-button>
|
||||
<el-button type="primary" @click="handleReset" :icon="Refresh" plain>重置</el-button>
|
||||
<el-button type="primary" v-perm="['rapid:regular:export']" @click="handleExport" :icon="Download" plain>导出
|
||||
<el-button type="primary" @click="handleExport" :icon="Download" plain>导出
|
||||
</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
Reference in New Issue
Block a user