n20-common-lib 2.9.73 → 2.9.74

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.74",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -668,7 +668,12 @@ export default {
668
668
  let procInstId = this.$route.query.processInstanceId
669
669
  let taskId = this.taskId
670
670
  const { code, data } = await axios.get(
671
- `/bems/activiti/admin/todo/isShowRetraceFlowOptions/${procInstId}/${taskId}`
671
+ `/bems/activiti/admin/todo/isShowRetraceFlowOptions/${procInstId}/${taskId}`,
672
+ null,
673
+ {
674
+ loading: false,
675
+ noMsg: true
676
+ }
672
677
  )
673
678
  return code === 200 && data
674
679
  },