cloud-web-corejs 1.0.54-dev.302 → 1.0.54-dev.304

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,7 +29,17 @@
29
29
  @change="changeWfEnabled"
30
30
  ></el-switch>
31
31
  </el-form-item>
32
- <el-form-item :label="i18nt('流程主题')"></el-form-item>
32
+ <el-form-item>
33
+ <span slot="label">流程主题
34
+ <el-tooltip effect="light">
35
+ <i class="el-icon-info"></i>
36
+ <div slot="content" style="white-space: pre-wrap;">
37
+ {{tip1}}
38
+ </div>
39
+
40
+ </el-tooltip>
41
+ </span>
42
+ </el-form-item>
33
43
  <div>
34
44
  <el-input style="word-break: break-word" type="textarea" :rows="3" v-model="formConfig.wfTheme" clearable></el-input>
35
45
  </div>
@@ -904,6 +914,37 @@ export default {
904
914
 
905
915
  showBdCompanyEnvDialog1: false,
906
916
  showBdCompanyEnvDialog2: false,
917
+
918
+ tip1:`流程主题表达式设置说明。
919
+
920
+ 1、可使用参数:
921
+ wf:流程对象
922
+ name:流程名称
923
+ objTypeCode:单据类型编码
924
+ objId:对象id
925
+ procInstId:act流程实例id
926
+ procDefId:act流程定义id
927
+ modelId:act流程模板id
928
+ starterId:启动人ID
929
+ starterName:启动人姓名
930
+ uuid:流程实例唯一标识
931
+ identityInfo:身份信息对象
932
+ id:用户ID
933
+ loginAccount:用户登录名
934
+ nickName:用户姓名
935
+ companyCode:企业编码
936
+ parentCompanyCode:集团企业编码
937
+ nowDate:当前时间
938
+ nowDateStr:当前时间字符串(yyyy-MM-dd HH:mm:ss)
939
+ tableName:数据库表名,取表单设计中维护的表名作为参数名称
940
+ tableField1:数据库表字段名1
941
+ tableField2:数据库表字段名2
942
+ tableField3:数据库表字段名3
943
+ ......
944
+
945
+ 2、配置示例
946
+ 比如表名为:pm_product_project,配置如下:
947
+ $\{wf.starterName\}提交的$\{pm_product_project.product_code\}$\{pm_product_project.product_name\}$\{wf.name\}$\{pm_product_project.sn\}`
907
948
  };
908
949
  },
909
950
  created() {