cloud-web-corejs 1.0.54-dev.298 → 1.0.54-dev.299

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,6 +29,12 @@
29
29
  @change="changeWfEnabled"
30
30
  ></el-switch>
31
31
  </el-form-item>
32
+ <el-form-item :label="i18nt('流程主题')">
33
+ <el-input
34
+ type="text"
35
+ v-model="formConfig.wfTheme"
36
+ ></el-input>
37
+ </el-form-item>
32
38
  <el-form-item :label="i18nt('流程启动时自动保存表单数据')">
33
39
  <el-switch v-model="formConfig.wfStartBindSave"></el-switch>
34
40
  </el-form-item>
@@ -849,7 +849,8 @@ export function getDefaultFormConfig() {
849
849
  multiTabEnabled:false,
850
850
  multiTabLabelField:null,
851
851
  addFormCode:null,
852
- addFormName: null
852
+ addFormName: null,
853
+ wfTheme: null
853
854
  };
854
855
  }
855
856