diff --git a/.env.development b/.env.development index 74eb4a1..8461720 100644 --- a/.env.development +++ b/.env.development @@ -2,8 +2,8 @@ ENV = 'development' # base api -#VUE_APP_BASE_API='http://192.167.20.118:8080/' -VUE_APP_BASE_API='https://cz-hjjc-test.115.langye.net' +VUE_APP_BASE_API='http://192.167.20.118:8080/' +#VUE_APP_BASE_API='https://cz-hjjc-test.115.langye.net' VUE_APP_UPLOAD_API='https://cz-hjjc-test.115.langye.net/api/upload-file' VUE_APP_PREVIEW=//view.langye.net/preview/onlinePreview VUE_APP_MODULE_NAME=oa diff --git a/package.json b/package.json index b581d62..b5a383f 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,7 @@ "element-ui": "^2.15.14", "exceljs": "^4.4.0", "js-cookie": "2.2.0", + "json-bigint": "^1.0.0", "moment": "^2.29.4", "normalize.css": "7.0.0", "nprogress": "0.2.0", diff --git a/src/views/flow/components/assign.vue b/src/views/flow/components/assign.vue index 16008be..f2eaf27 100644 --- a/src/views/flow/components/assign.vue +++ b/src/views/flow/components/assign.vue @@ -241,12 +241,14 @@ export default { await Promise.all(this.multipleIds.map(i => assign(i))) } else { await assign(this.result.id) + this.$router.push("/flow/list/handled"); } } else { if (this.multiple) { await Promise.all(this.multipleIds.map(i => assign(i, this.form))) } else { await assign(this.result.id, this.form) + this.$router.push("/flow/list/handled"); } } this.$emit('update:visible', false) diff --git a/src/views/flow/create.vue b/src/views/flow/create.vue index 751735a..e3f6025 100644 --- a/src/views/flow/create.vue +++ b/src/views/flow/create.vue @@ -19,7 +19,7 @@