adtec-core-package 1.9.6 → 1.9.7
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.
package/package.json
CHANGED
|
@@ -295,16 +295,17 @@ watchEffect(() => {
|
|
|
295
295
|
</el-radio-group>
|
|
296
296
|
</el-form-item>
|
|
297
297
|
<el-form-item prop="subject" label="消息主题">
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
298
|
+
<template #label>
|
|
299
|
+
<el-flex align="center">
|
|
300
|
+
<span style="margin-right: 3px">消息主题</span>
|
|
301
|
+
<el-tooltip
|
|
302
|
+
content="可以使用 ${流程变量} 填充内容"
|
|
303
|
+
placement="top"
|
|
304
|
+
>
|
|
305
|
+
<el-icons model-value="adtec-info"></el-icons>
|
|
306
|
+
</el-tooltip>
|
|
307
|
+
</el-flex>
|
|
308
|
+
</template>
|
|
308
309
|
<el-input
|
|
309
310
|
v-model="activeData.msgSubject"
|
|
310
311
|
:maxlength="255"
|
|
@@ -333,6 +334,25 @@ watchEffect(() => {
|
|
|
333
334
|
>
|
|
334
335
|
</el-input>
|
|
335
336
|
</el-form-item>
|
|
337
|
+
<el-form-item prop="content" label="完成时通知申报人">
|
|
338
|
+
<template #label>
|
|
339
|
+
<el-flex align="center">
|
|
340
|
+
<span style="margin-right: 3px">完成时通知申报人</span>
|
|
341
|
+
<el-tooltip
|
|
342
|
+
content="可以使用 ${流程变量} 填充内容"
|
|
343
|
+
placement="top"
|
|
344
|
+
>
|
|
345
|
+
<el-icons model-value="adtec-info"></el-icons>
|
|
346
|
+
</el-tooltip>
|
|
347
|
+
</el-flex>
|
|
348
|
+
</template>
|
|
349
|
+
<el-input
|
|
350
|
+
v-model="activeData.msgApplyUser"
|
|
351
|
+
:maxlength="255"
|
|
352
|
+
clearable
|
|
353
|
+
placeholder="请输入消息主题"
|
|
354
|
+
/>
|
|
355
|
+
</el-form-item>
|
|
336
356
|
</el-form>
|
|
337
357
|
</el-tab-pane>
|
|
338
358
|
<el-tab-pane label="参数设置" name="formPermissions">
|