Browse Source

Merge branch 'qin_v4'

yjf_v2
超级管理员 1 year ago
parent
commit
0e189162fe
  1. 5
      src/components/DesignForm/app/formPage.vue
  2. 3
      src/components/DesignForm/public/form/formItem.vue
  3. 2
      src/views/demo/wangEditor.vue

5
src/components/DesignForm/app/formPage.vue

@ -1083,11 +1083,12 @@ function optionsValue3Get2(data: any,fieldName: string){
}" }"
> >
<FormGroup :tableinfo="formData.form" :numrun="numrun" :data="formData.list" :alldata="formData" :purview="formData.powerstr" :node-key="nodeKey" /> <!-- <FormGroup :tableinfo="formData.form" :numrun="numrun" :data="formData.list" :alldata="formData" :purview="formData.powerstr" :node-key="nodeKey" /> -->
<FormGroup :tableinfo="formData.form" :numrun="numrun" :data="formData.list" :alldata="formData" :node-key="nodeKey" />
<slot></slot> <slot></slot>
</el-form> </el-form>
</el-main> </el-main>
<el-aside class="flowBox"> <el-aside class="flowBox">
<el-text size="large">审批流程</el-text> <el-text size="large">审批流程</el-text>

3
src/components/DesignForm/public/form/formItem.vue

@ -545,6 +545,7 @@ const judgeIsShow = (key:string) => {
return true; return true;
}else{ }else{
let isShow = false; let isShow = false;
if(Array.isArray(props.purview)){
props.purview.forEach((item)=>{ props.purview.forEach((item)=>{
if(item.nodeKey == props.nodeKey){ if(item.nodeKey == props.nodeKey){
@ -560,6 +561,8 @@ const judgeIsShow = (key:string) => {
} }
}) })
}
return isShow return isShow
} }
}else{ }else{

2
src/views/demo/wangEditor.vue

@ -6,6 +6,6 @@ const value = ref("初始内容");
<template> <template>
<div class="app-container"> <div class="app-container">
<editor v-model="value" style="height: calc(100vh - 124px)" /> <editor v-model="value" style="height: calc(100vh - 124px); z-index:9999" />
</div> </div>
</template> </template>

Loading…
Cancel
Save