eoss-mobiles 0.3.61 → 0.3.62
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/lib/eoss-mobile.common.js +11 -8
- package/lib/flow.js +10 -7
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/packages/flow/src/components/Handle.vue +3 -0
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -1891,6 +1891,7 @@ export default {
|
|
|
1891
1891
|
message,
|
|
1892
1892
|
data: { isCanFenyue, taskExamine, taskReadOpinionRequired }
|
|
1893
1893
|
} = res;
|
|
1894
|
+
this.showFlowBtn = true
|
|
1894
1895
|
if (status === 'success') {
|
|
1895
1896
|
this.taskExamineInfo = taskExamine;
|
|
1896
1897
|
this.isCanFenyue = isCanFenyue;
|
|
@@ -1905,6 +1906,8 @@ export default {
|
|
|
1905
1906
|
})
|
|
1906
1907
|
.catch((err) => {
|
|
1907
1908
|
this.$toast.clear();
|
|
1909
|
+
|
|
1910
|
+
this.showFlowBtn = true
|
|
1908
1911
|
if (err.message && err.message !== 'canceled') {
|
|
1909
1912
|
this.$toast(err.message);
|
|
1910
1913
|
}
|