1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/.cache/vue-loader/00e4d333a534ee09f106a881351...

1 line
12 KiB
JSON
Raw Normal View History

2023-12-18 13:12:25 +08:00
{"remainingRequest":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\src\\components\\ren-process-running\\src\\ren-task-handle.vue?vue&type=script&lang=js&","dependencies":[{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\src\\components\\ren-process-running\\src\\ren-task-handle.vue","mtime":1614735254000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\babel-loader\\lib\\index.js","mtime":499162500000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n\nimport debounce from 'lodash/debounce'\nimport qs from 'qs'\nexport default {\n data () {\n return {\n visible: false,\n handleType: '',\n handleTitle: '',\n dataForm: {\n comment: '',\n taskId: ''\n },\n // 回调函数\n callbacks: {\n taskHandleSuccessCallback: null,\n taskHandleErrorCallback: null\n }\n }\n },\n computed: {\n dataRule () {\n return {\n comment: [\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\n ]\n }\n }\n },\n methods: {\n init () {\n this.visible = true\n if (this.handleType === 'complete') {\n this.handleTitle = this.$t('process.completeTask')\n } else if (this.handleType === 'reject') {\n this.handleTitle = this.$t('process.rejectTask')\n } else if (this.handleType === 'termination') {\n this.handleTitle = this.$t('process.terminationTask')\n }\n this.$nextTick(() => {\n this.$refs['dataForm'].resetFields()\n })\n },\n // 表单提交\n dataFormSubmitHandle () {\n if (this.handleType === 'complete') {\n this.completeTask()\n } else if (this.handleType === 'reject') {\n this.rejectTask()\n } else if (this.handleType === 'termination') {\n this.terminationTask()\n }\n },\n // 驳回\n rejectTask: debounce(function () {\n this.$refs['dataForm'].validate((valid) => {\n if (!valid) {\n return false\n }\n if (!this.dataForm.taskId) {\n return false\n }\n var params = qs.stringify({\n 'taskId': this.dataForm.taskId,\n 'comment': this.dataForm.comment\n })\n this.$http['post']('/activiti/task/backToFirst?', params).then(({ data: res }) => {\n if (res.code !== 0) {\n this.$message.error(res.msg)\n if (this.callbacks.taskHandleErrorCallback) {\n this.callbacks.taskHandleErrorCallback(res)\n }\n return\n }\n this.$message({\n message: this.$t('prompt.success'),\n type: 'success',\n duration: 500,\n onClose: () => {\n this.visible = false\n if (this.callbacks.taskHandleSuccessCallback) {\n this.callbacks.taskHandleSuccessCallback(res)\n }\n }\n })\n })\n })\n }, 1000, { 'leading': true, 'trailing': false }),\n // 通过\n completeTask: debounce(function () {\n this.$refs['dataForm'].validate((valid) => {\n if (!valid) {\n return false\n }\n if (!this.dataForm.taskId) {\n return false\n }\n var params = qs.stringify({\n 'taskId': this.dataForm.taskId,\n 'comment': this.dataForm.comment\n })\n this.$http.post('/activiti/task/complete?' + params).then(({ data: res }) => {\n if (res.code !== 0) {\n