n20-common-lib 2.9.71 → 2.9.73
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
|
@@ -223,7 +223,15 @@
|
|
|
223
223
|
>
|
|
224
224
|
<el-radio-group v-model="isJump">
|
|
225
225
|
<el-radio label="0">{{ '重走流程' | $lc }}</el-radio>
|
|
226
|
-
<el-radio label="1"
|
|
226
|
+
<el-radio label="1"
|
|
227
|
+
>{{ '不重走流程' | $lc }}
|
|
228
|
+
<el-alert
|
|
229
|
+
:title="`此模式下被回退节点提交后将绕过中间已办节点,造成流程不严谨,谨慎使用!` | $lc"
|
|
230
|
+
type="warning"
|
|
231
|
+
show-icon
|
|
232
|
+
>
|
|
233
|
+
</el-alert
|
|
234
|
+
></el-radio>
|
|
227
235
|
</el-radio-group>
|
|
228
236
|
<div slot="footer">
|
|
229
237
|
<el-button type="primary" @click="handleIsJumpSave">{{ '确定' | $lc }}</el-button>
|
|
@@ -680,6 +688,7 @@ export default {
|
|
|
680
688
|
})
|
|
681
689
|
},
|
|
682
690
|
handleIsJumpSave() {
|
|
691
|
+
this.showFlowDialog = false
|
|
683
692
|
this.beforeFn(this.beforeReject, () => {
|
|
684
693
|
axios.post('/bems/activiti/admin/todo/reject', this.getParam()).then(({ data }) => {
|
|
685
694
|
this.thenMsg(data, $lc('驳回至发起人'))
|
|
@@ -45,7 +45,15 @@
|
|
|
45
45
|
<div v-if="showRetraceFlowC">
|
|
46
46
|
<el-radio-group v-model="isJump">
|
|
47
47
|
<el-radio label="0">{{ '重走流程' | $lc }}</el-radio>
|
|
48
|
-
<el-radio label="1"
|
|
48
|
+
<el-radio label="1"
|
|
49
|
+
>{{ '不重走流程' | $lc }}
|
|
50
|
+
<el-alert
|
|
51
|
+
:title="`此模式下被回退节点提交后将绕过中间已办节点,造成流程不严谨,谨慎使用!` | $lc"
|
|
52
|
+
type="warning"
|
|
53
|
+
show-icon
|
|
54
|
+
>
|
|
55
|
+
</el-alert
|
|
56
|
+
></el-radio>
|
|
49
57
|
</el-radio-group>
|
|
50
58
|
</div>
|
|
51
59
|
<div class="text-c">
|
package/src/i18n.json
CHANGED
|
@@ -3469,5 +3469,10 @@
|
|
|
3469
3469
|
"en": "Do not re-run the process",
|
|
3470
3470
|
"th": "ไม่ทำการรีรันด้วยขั้นตอนเดิม",
|
|
3471
3471
|
"vi": "Không làm lại quy trình"
|
|
3472
|
+
},
|
|
3473
|
+
"此模式下被回退节点提交后将绕过中间已办节点,造成流程不严谨,谨慎使用!": {
|
|
3474
|
+
"en": "This mode will bypass the middle nodes that have been completed after the node is returned, causing the process to be non-standard. Use with caution!",
|
|
3475
|
+
"th": "เมื่อมีการย้อนกลับไปยังโครงการที่มีการเสร็จสิ้นแล้ว จะทำให้โครงการไม่สมบูรณ์ โปรดใช้ด้วยระวัง!",
|
|
3476
|
+
"vi": "Trong chế độ này, sau khi trả lại, các bước đã hoàn thành sẽ bị bỏ qua, làm cho quy trình không chuẩn xác. Sử dụng với cẩn thận!"
|
|
3472
3477
|
}
|
|
3473
3478
|
}
|