n20-common-lib 2.9.73 → 2.9.75

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n20-common-lib",
3
- "version": "2.9.73",
3
+ "version": "2.9.75",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -225,12 +225,7 @@
225
225
  <el-radio label="0">{{ '重走流程' | $lc }}</el-radio>
226
226
  <el-radio label="1"
227
227
  >{{ '不重走流程' | $lc }}
228
- <el-alert
229
- :title="`此模式下被回退节点提交后将绕过中间已办节点,造成流程不严谨,谨慎使用!` | $lc"
230
- type="warning"
231
- show-icon
232
- >
233
- </el-alert
228
+ <i class="n20-icon-xinxitishi" v-title="tips" style="color: var(--color-warning)"></i
234
229
  ></el-radio>
235
230
  </el-radio-group>
236
231
  <div slot="footer">
@@ -449,6 +444,9 @@ export default {
449
444
  get() {
450
445
  return window.fileKit
451
446
  }
447
+ },
448
+ tips() {
449
+ return $lc(`此模式下被回退节点提交后将绕过中间已办节点,造成流程不严谨,谨慎使用!`)
452
450
  }
453
451
  },
454
452
  created() {
@@ -668,7 +666,12 @@ export default {
668
666
  let procInstId = this.$route.query.processInstanceId
669
667
  let taskId = this.taskId
670
668
  const { code, data } = await axios.get(
671
- `/bems/activiti/admin/todo/isShowRetraceFlowOptions/${procInstId}/${taskId}`
669
+ `/bems/activiti/admin/todo/isShowRetraceFlowOptions/${procInstId}/${taskId}`,
670
+ null,
671
+ {
672
+ loading: false,
673
+ noMsg: true
674
+ }
672
675
  )
673
676
  return code === 200 && data
674
677
  },
@@ -43,16 +43,11 @@
43
43
 
44
44
  <div slot="footer" class="m-t">
45
45
  <div v-if="showRetraceFlowC">
46
- <el-radio-group v-model="isJump">
46
+ <el-radio-group v-model="isJump" class="flex-column">
47
47
  <el-radio label="0">{{ '重走流程' | $lc }}</el-radio>
48
48
  <el-radio label="1"
49
49
  >{{ '不重走流程' | $lc }}
50
- <el-alert
51
- :title="`此模式下被回退节点提交后将绕过中间已办节点,造成流程不严谨,谨慎使用!` | $lc"
52
- type="warning"
53
- show-icon
54
- >
55
- </el-alert
50
+ <i class="n20-icon-xinxitishi" v-title="tips" style="color: var(--color-warning)"></i
56
51
  ></el-radio>
57
52
  </el-radio-group>
58
53
  </div>
@@ -109,6 +104,9 @@ export default {
109
104
  computed: {
110
105
  showRetraceFlowC() {
111
106
  return this.showRetraceFlow
107
+ },
108
+ tips() {
109
+ return $lc(`此模式下被回退节点提交后将绕过中间已办节点,造成流程不严谨,谨慎使用!`)
112
110
  }
113
111
  },
114
112
  mounted() {