da1d5f4dfb1cfc16eeefd583c44a424b.json 9.3 KB

1
  1. {"remainingRequest":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\babel-loader\\lib\\index.js!D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\HTC\\program\\善行少年\\security-enterprise-admin\\src\\views\\modules\\activiti\\process-biz-route.vue?vue&type=script&lang=js","dependencies":[{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\src\\views\\modules\\activiti\\process-biz-route.vue","mtime":1581948666000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\babel.config.js","mtime":1581948662000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\babel-loader\\lib\\index.js","mtime":456789000000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\HTC\\program\\善行少年\\security-enterprise-admin\\node_modules\\vue-loader\\lib\\index.js","mtime":499162500000}],"contextDependencies":[],"result":["import \"core-js/modules/es7.object.get-own-property-descriptors\";\nimport \"core-js/modules/web.dom.iterable\";\nimport \"core-js/modules/es6.object.keys\";\nimport _defineProperty from \"D:/HTC/program/\\u5584\\u884C\\u5C11\\u5E74/security-enterprise-admin/node_modules/@babel/runtime/helpers/esm/defineProperty.js\";\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\nimport debounce from 'lodash/debounce';\nexport default {\n data: function data() {\n return {\n visible: false,\n dataForm: {\n id: '',\n bizRoute: '',\n procDefId: '',\n procDefKey: '',\n version: null\n }\n };\n },\n computed: {\n dataRule: function dataRule() {\n return {\n bizRoute: [{\n required: true,\n message: this.$t('validate.required'),\n trigger: 'blur'\n }]\n };\n }\n },\n methods: {\n init: function init() {\n var _this = this;\n this.visible = true;\n this.$nextTick(function () {\n _this.$refs['dataForm'].resetFields();\n _this.dataForm.id = null;\n if (_this.dataForm.procDefId) {\n _this.getInfo();\n }\n });\n },\n // 获取信息\n getInfo: function getInfo() {\n var _this2 = this;\n this.$http.get(\"/act/process/getProcDefBizRoute/\".concat(this.dataForm.procDefId)).then(function (_ref) {\n var res = _ref.data;\n if (res.code !== 0) {\n return _this2.$message.error(res.msg);\n }\n _this2.dataForm = _objectSpread(_objectSpread({}, _this2.dataForm), res.data);\n console.log(_this2.dataForm);\n }).catch(function () {});\n },\n // 表单提交\n dataFormSubmitHandle: debounce(function () {\n var _this3 = this;\n this.$refs['dataForm'].validate(function (valid) {\n if (!valid) {\n return false;\n }\n _this3.$http[!_this3.dataForm.id ? 'post' : 'put']('/act/process/saveProcBizRoute', _this3.dataForm).then(function (_ref2) {\n var res = _ref2.data;\n if (res.code !== 0) {\n return _this3.$message.error(res.msg);\n }\n _this3.$message({\n message: _this3.$t('prompt.success'),\n type: 'success',\n duration: 500,\n onClose: function onClose() {\n _this3.visible = false;\n _this3.$emit('refreshDataList');\n }\n });\n }).catch(function () {});\n });\n }, 1000, {\n 'leading': true,\n 'trailing': false\n })\n }\n};",{"version":3,"names":["debounce","data","visible","dataForm","id","bizRoute","procDefId","procDefKey","version","computed","dataRule","required","message","$t","trigger","methods","init","_this","$nextTick","$refs","resetFields","getInfo","_this2","$http","get","concat","then","_ref","res","code","$message","error","msg","_objectSpread","console","log","catch","dataFormSubmitHandle","_this3","validate","valid","_ref2","type","duration","onClose","$emit"],"sources":["src/views/modules/activiti/process-biz-route.vue"],"sourcesContent":["<template>\r\n <el-dialog :visible.sync=\"visible\" :title=\"$t('process.bizRouteSet')\" :close-on-click-modal=\"false\" :close-on-press-escape=\"false\">\r\n <el-form :model=\"dataForm\" :rules=\"dataRule\" ref=\"dataForm\" @keyup.enter.native=\"dataFormSubmitHandle()\" :label-width=\"$i18n.locale === 'en-US' ? '120px' : '80px'\">\r\n <el-form-item :label=\"$t('process.bizRoute')\" prop=\"bizRoute\">\r\n <el-input v-model=\"dataForm.bizRoute\" :placeholder=\"$t('process.bizRoute')\"></el-input>\r\n </el-form-item>\r\n </el-form>\r\n <template slot=\"footer\">\r\n <el-button @click=\"visible = false\">{{ $t('cancel') }}</el-button>\r\n <el-button type=\"primary\" @click=\"dataFormSubmitHandle()\">{{ $t('confirm') }}</el-button>\r\n </template>\r\n </el-dialog>\r\n</template>\r\n\r\n<script>\r\nimport debounce from 'lodash/debounce'\r\nexport default {\r\n data () {\r\n return {\r\n visible: false,\r\n dataForm: {\r\n id: '',\r\n bizRoute: '',\r\n procDefId: '',\r\n procDefKey: '',\r\n version: null\r\n }\r\n }\r\n },\r\n computed: {\r\n dataRule () {\r\n return {\r\n bizRoute: [\r\n { required: true, message: this.$t('validate.required'), trigger: 'blur' }\r\n ]\r\n }\r\n }\r\n },\r\n methods: {\r\n init () {\r\n this.visible = true\r\n this.$nextTick(() => {\r\n this.$refs['dataForm'].resetFields()\r\n this.dataForm.id = null\r\n if (this.dataForm.procDefId) {\r\n this.getInfo()\r\n }\r\n })\r\n },\r\n // 获取信息\r\n getInfo () {\r\n this.$http.get(`/act/process/getProcDefBizRoute/${this.dataForm.procDefId}`).then(({ data: res }) => {\r\n if (res.code !== 0) {\r\n return this.$message.error(res.msg)\r\n }\r\n this.dataForm = {\r\n ...this.dataForm,\r\n ...res.data\r\n }\r\n console.log(this.dataForm)\r\n }).catch(() => {})\r\n },\r\n // 表单提交\r\n dataFormSubmitHandle: debounce(function () {\r\n this.$refs['dataForm'].validate((valid) => {\r\n if (!valid) {\r\n return false\r\n }\r\n this.$http[!this.dataForm.id ? 'post' : 'put']('/act/process/saveProcBizRoute', this.dataForm).then(({ data: res }) => {\r\n if (res.code !== 0) {\r\n return this.$message.error(res.msg)\r\n }\r\n this.$message({\r\n message: this.$t('prompt.success'),\r\n type: 'success',\r\n duration: 500,\r\n onClose: () => {\r\n this.visible = false\r\n this.$emit('refreshDataList')\r\n }\r\n })\r\n }).catch(() => {})\r\n })\r\n }, 1000, { 'leading': true, 'trailing': false })\r\n }\r\n}\r\n</script>\r\n"],"mappings":";;;;;;AAeA,OAAAA,QAAA;AACA;EACAC,IAAA,WAAAA,KAAA;IACA;MACAC,OAAA;MACAC,QAAA;QACAC,EAAA;QACAC,QAAA;QACAC,SAAA;QACAC,UAAA;QACAC,OAAA;MACA;IACA;EACA;EACAC,QAAA;IACAC,QAAA,WAAAA,SAAA;MACA;QACAL,QAAA,GACA;UAAAM,QAAA;UAAAC,OAAA,OAAAC,EAAA;UAAAC,OAAA;QAAA;MAEA;IACA;EACA;EACAC,OAAA;IACAC,IAAA,WAAAA,KAAA;MAAA,IAAAC,KAAA;MACA,KAAAf,OAAA;MACA,KAAAgB,SAAA;QACAD,KAAA,CAAAE,KAAA,aAAAC,WAAA;QACAH,KAAA,CAAAd,QAAA,CAAAC,EAAA;QACA,IAAAa,KAAA,CAAAd,QAAA,CAAAG,SAAA;UACAW,KAAA,CAAAI,OAAA;QACA;MACA;IACA;IACA;IACAA,OAAA,WAAAA,QAAA;MAAA,IAAAC,MAAA;MACA,KAAAC,KAAA,CAAAC,GAAA,oCAAAC,MAAA,MAAAtB,QAAA,CAAAG,SAAA,GAAAoB,IAAA,WAAAC,IAAA;QAAA,IAAAC,GAAA,GAAAD,IAAA,CAAA1B,IAAA;QACA,IAAA2B,GAAA,CAAAC,IAAA;UACA,OAAAP,MAAA,CAAAQ,QAAA,CAAAC,KAAA,CAAAH,GAAA,CAAAI,GAAA;QACA;QACAV,MAAA,CAAAnB,QAAA,GAAA8B,aAAA,CAAAA,aAAA,KACAX,MAAA,CAAAnB,QAAA,GACAyB,GAAA,CAAA3B,IAAA,CACA;QACAiC,OAAA,CAAAC,GAAA,CAAAb,MAAA,CAAAnB,QAAA;MACA,GAAAiC,KAAA;IACA;IACA;IACAC,oBAAA,EAAArC,QAAA;MAAA,IAAAsC,MAAA;MACA,KAAAnB,KAAA,aAAAoB,QAAA,WAAAC,KAAA;QACA,KAAAA,KAAA;UACA;QACA;QACAF,MAAA,CAAAf,KAAA,EAAAe,MAAA,CAAAnC,QAAA,CAAAC,EAAA,oDAAAkC,MAAA,CAAAnC,QAAA,EAAAuB,IAAA,WAAAe,KAAA;UAAA,IAAAb,GAAA,GAAAa,KAAA,CAAAxC,IAAA;UACA,IAAA2B,GAAA,CAAAC,IAAA;YACA,OAAAS,MAAA,CAAAR,QAAA,CAAAC,KAAA,CAAAH,GAAA,CAAAI,GAAA;UACA;UACAM,MAAA,CAAAR,QAAA;YACAlB,OAAA,EAAA0B,MAAA,CAAAzB,EAAA;YACA6B,IAAA;YACAC,QAAA;YACAC,OAAA,WAAAA,QAAA;cACAN,MAAA,CAAApC,OAAA;cACAoC,MAAA,CAAAO,KAAA;YACA;UACA;QACA,GAAAT,KAAA;MACA;IACA;MAAA;MAAA;IAAA;EACA;AACA","ignoreList":[]}]}