1 line
18 KiB
JSON
1 line
18 KiB
JSON
{"remainingRequest":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\babel-loader\\lib\\index.js!C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!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\\views\\modules\\activiti\\process.vue?vue&type=script&lang=js&","dependencies":[{"path":"C:\\Users\\27446\\Desktop\\up\\front\\dkha-web-sz-main\\src\\views\\modules\\activiti\\process.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//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport mixinViewModule from '@/mixins/view-module';\nimport Deploy from \"./process-deploy\";\nimport ProcessBizRoute from \"./process-biz-route\";\nimport Cookies from 'js-cookie';\nimport qs from 'qs';\nexport default {\n mixins: [mixinViewModule],\n data: function data() {\n return {\n mixinViewModuleOptions: {\n getDataListURL: '/activiti/process/page',\n getDataListIsPage: true,\n deleteURL: '/activiti/process',\n deleteIsBatch: true,\n deleteIsBatchKey: 'deploymentId'\n },\n dataForm: {\n processName: '',\n key: ''\n },\n deployVisible: false,\n setBizRouteVisible: false\n };\n },\n components: {\n Deploy: Deploy,\n ProcessBizRoute: ProcessBizRoute\n },\n methods: {\n // 获取流程(xml/image)url地址\n getResourceURL: function getResourceURL(id, name) {\n var params = qs.stringify({\n 'access_token': Cookies.get('access_token'),\n 'deploymentId': id,\n 'resourceName': name\n });\n return \"\".concat(window.SITE_CONFIG['apiURL'], \"/activiti/process/resource?\").concat(params);\n },\n // 部署流程文件\n deployHandle: function deployHandle() {\n var _this = this;\n\n this.deployVisible = true;\n this.$nextTick(function () {\n _this.$refs.deploy.init();\n });\n },\n setBizRoute: function setBizRoute(row) {\n var _this2 = this;\n\n this.setBizRouteVisible = true;\n this.$nextTick(function () {\n _this2.$refs.processBizRoute.dataForm.procDefId = row.id;\n _this2.$refs.processBizRoute.dataForm.procDefKey = row.key;\n _this2.$refs.processBizRoute.dataForm.version = row.version;\n\n _this2.$refs.processBizRoute.init();\n });\n },\n // 激活\n activeHandle: function activeHandle(id) {\n var _this3 = this;\n\n this.$confirm(this.$t('prompt.info', {\n 'handle': this.$t('process.active')\n }), this.$t('prompt.title'), {\n confirmButtonText: this.$t('confirm'),\n cancelButtonText: this.$t('cancel'),\n type: 'warning'\n }).then(function () {\n _this3.$http.put(\"/activiti/process/active/\".concat(id)).then(function (_ref) {\n var res = _ref.data;\n\n if (res.code !== 0) {\n return _this3.$message.error(res.msg);\n }\n\n _this3.$message({\n message: _this3.$t('prompt.success'),\n type: 'success',\n duration: 500,\n onClose: function onClose() {\n _this3.getDataList();\n }\n });\n }).catch(function () {});\n }).catch(function () {});\n },\n // 挂起\n suspendHandle: function suspendHandle(id) {\n var _this4 = this;\n\n this.$confirm(this.$t('prompt.info', {\n 'handle': this.$t('process.suspend')\n }), this.$t('prompt.title'), {\n confirmButtonText: this.$t('confirm'),\n cancelButtonText: this.$t('cancel'),\n type: 'warning'\n }).then(function () {\n _this4.$http.put(\"/activiti/process/suspend/\".concat(id)).then(function (_ref2) {\n var res = _ref2.data;\n\n if (res.code !== 0) {\n return _this4.$message.error(res.msg);\n }\n\n _this4.$message({\n message: _this4.$t('prompt.success'),\n type: 'success',\n duration: 500,\n onClose: function onClose() {\n _this4.getDataList();\n }\n });\n }).catch(function () {});\n }).catch(function () {});\n },\n // 转换为模型\n convertToModelHandle: function convertToModelHandle(id) {\n var _this5 = this;\n\n this.$confirm(this.$t('prompt.info', {\n 'handle': this.$t('process.convertToModel')\n }), this.$t('prompt.title'), {\n confirmButtonText: this.$t('confirm'),\n cancelButtonText: this.$t('cancel'),\n type: 'warning'\n }).then(function () {\n _this5.$http.post(\"/activiti/process/convertToModel/\".concat(id)).then(function (_ref3) {\n var res = _ref3.data;\n\n if (res.code !== 0) {\n return _this5.$message.error(res.msg);\n }\n\n _this5.$message({\n message: _this5.$t('prompt.success'),\n type: 'success',\n duration: 500,\n onClose: function onClose() {\n _this5.getDataList();\n }\n });\n }).catch(function () {});\n }).catch(function () {});\n }\n }\n};",{"version":3,"sources":["process.vue"],"names":[],"mappings":"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","sourcesContent":["<template>\n <el-card shadow=\"never\" class=\"aui-card--fill\">\n <div class=\"mod-activiti__process\">\n <el-form :inline=\"true\" :model=\"dataForm\" @keyup.enter.native=\"getDataList()\">\n <el-form-item>\n <el-input v-model=\"dataForm.processName\" :placeholder=\"$t('process.name')\" clearable></el-input>\n </el-form-item>\n <el-form-item>\n <el-input v-model=\"dataForm.key\" :placeholder=\"$t('process.key')\" clearable></el-input>\n </el-form-item>\n <el-form-item>\n <el-button @click=\"getDataList()\">{{ $t('query') }}</el-button>\n </el-form-item>\n <el-form-item>\n <el-button type=\"primary\" @click=\"deployHandle()\">{{ $t('process.deployFile') }}</el-button>\n </el-form-item>\n <el-form-item>\n <el-button type=\"danger\" @click=\"deleteHandle()\">{{ $t('deleteBatch') }}</el-button>\n </el-form-item>\n </el-form>\n <el-table\n v-loading=\"dataListLoading\"\n :data=\"dataList\"\n border\n @selection-change=\"dataListSelectionChangeHandle\"\n @sort-change=\"dataListSortChangeHandle\"\n style=\"width: 100%;\">\n <el-table-column type=\"selection\" header-align=\"center\" align=\"center\" width=\"50\"></el-table-column>\n <el-table-column prop=\"id\" :label=\"$t('process.id')\" header-align=\"center\" align=\"center\"></el-table-column>\n <el-table-column prop=\"deploymentId\" :label=\"$t('process.deploymentId')\" header-align=\"center\" align=\"center\" width=\"80\"></el-table-column>\n <el-table-column prop=\"name\" :label=\"$t('process.name')\" header-align=\"center\" align=\"center\"></el-table-column>\n <el-table-column prop=\"key\" :label=\"$t('process.key')\" header-align=\"center\" align=\"center\"></el-table-column>\n <el-table-column prop=\"version\" :label=\"$t('process.version')\" header-align=\"center\" align=\"center\"></el-table-column>\n <el-table-column prop=\"resourceName\" :label=\"$t('process.resourceName')\" header-align=\"center\" align=\"center\" :show-overflow-tooltip=\"true\" width=\"100\">\n <template slot-scope=\"scope\">\n <a :href=\"getResourceURL(scope.row.deploymentId, scope.row.resourceName)\" target=\"_blank\">{{ scope.row.resourceName }}</a>\n </template>\n </el-table-column>\n <el-table-column prop=\"diagramResourceName\" :label=\"$t('process.diagramResourceName')\" header-align=\"center\" align=\"center\" :show-overflow-tooltip=\"true\" width=\"100\">\n <template slot-scope=\"scope\">\n <a :href=\"getResourceURL(scope.row.deploymentId, scope.row.diagramResourceName)\" target=\"_blank\">{{ scope.row.diagramResourceName }}</a>\n </template>\n </el-table-column>\n <el-table-column prop=\"deploymentTime\" :label=\"$t('process.deploymentTime')\" header-align=\"center\" align=\"center\" width=\"180\"></el-table-column>\n <el-table-column :label=\"$t('handle')\" fixed=\"right\" header-align=\"center\" align=\"center\" width=\"150\">\n <template slot-scope=\"scope\">\n <el-button v-if=\"scope.row.suspended\" type=\"text\" size=\"small\" @click=\"activeHandle(scope.row.id)\">{{ $t('process.active') }}</el-button>\n <el-button v-else type=\"text\" size=\"small\" @click=\"suspendHandle(scope.row.id)\">{{ $t('process.suspend') }}</el-button>\n <el-button type=\"text\" size=\"small\" @click=\"deleteHandle(scope.row.deploymentId)\">{{ $t('delete') }}</el-button>\n <el-button type=\"text\" size=\"small\" @click=\"convertToModelHandle(scope.row.id)\">{{ $t('process.convertToModel') }}</el-button>\n <el-button type=\"text\" size=\"small\" @click=\"setBizRoute(scope.row)\">{{ $t('process.bizRouteSet') }}</el-button>\n </template>\n </el-table-column>\n </el-table>\n <el-pagination\n :current-page=\"page\"\n :page-sizes=\"[10, 20, 50, 100]\"\n :page-size=\"limit\"\n :total=\"total\"\n layout=\"total, sizes, prev, pager, next, jumper\"\n @size-change=\"pageSizeChangeHandle\"\n @current-change=\"pageCurrentChangeHandle\">\n </el-pagination>\n <!-- 弹窗, 部署流程文件 -->\n <deploy v-if=\"deployVisible\" ref=\"deploy\" @refreshDataList=\"getDataList\"></deploy>\n <process-biz-route v-if=\"setBizRouteVisible\" ref=\"processBizRoute\" @refreshDataList=\"getDataList\"></process-biz-route>\n </div>\n </el-card>\n</template>\n\n<script>\nimport mixinViewModule from '@/mixins/view-module'\nimport Deploy from './process-deploy'\nimport ProcessBizRoute from './process-biz-route'\nimport Cookies from 'js-cookie'\nimport qs from 'qs'\nexport default {\n mixins: [mixinViewModule],\n data () {\n return {\n mixinViewModuleOptions: {\n getDataListURL: '/activiti/process/page',\n getDataListIsPage: true,\n deleteURL: '/activiti/process',\n deleteIsBatch: true,\n deleteIsBatchKey: 'deploymentId'\n },\n dataForm: {\n processName: '',\n key: ''\n },\n deployVisible: false,\n setBizRouteVisible: false\n }\n },\n components: {\n Deploy,\n ProcessBizRoute\n },\n methods: {\n // 获取流程(xml/image)url地址\n getResourceURL (id, name) {\n var params = qs.stringify({\n 'access_token': Cookies.get('access_token'),\n 'deploymentId': id,\n 'resourceName': name\n })\n return `${window.SITE_CONFIG['apiURL']}/activiti/process/resource?${params}`\n },\n // 部署流程文件\n deployHandle () {\n this.deployVisible = true\n this.$nextTick(() => {\n this.$refs.deploy.init()\n })\n },\n setBizRoute (row) {\n this.setBizRouteVisible = true\n this.$nextTick(() => {\n this.$refs.processBizRoute.dataForm.procDefId = row.id\n this.$refs.processBizRoute.dataForm.procDefKey = row.key\n this.$refs.processBizRoute.dataForm.version = row.version\n this.$refs.processBizRoute.init()\n })\n },\n // 激活\n activeHandle (id) {\n this.$confirm(this.$t('prompt.info', { 'handle': this.$t('process.active') }), this.$t('prompt.title'), {\n confirmButtonText: this.$t('confirm'),\n cancelButtonText: this.$t('cancel'),\n type: 'warning'\n }).then(() => {\n this.$http.put(`/activiti/process/active/${id}`).then(({ data: res }) => {\n if (res.code !== 0) {\n return this.$message.error(res.msg)\n }\n this.$message({\n message: this.$t('prompt.success'),\n type: 'success',\n duration: 500,\n onClose: () => {\n this.getDataList()\n }\n })\n }).catch(() => {})\n }).catch(() => {})\n },\n // 挂起\n suspendHandle (id) {\n this.$confirm(this.$t('prompt.info', { 'handle': this.$t('process.suspend') }), this.$t('prompt.title'), {\n confirmButtonText: this.$t('confirm'),\n cancelButtonText: this.$t('cancel'),\n type: 'warning'\n }).then(() => {\n this.$http.put(`/activiti/process/suspend/${id}`).then(({ data: res }) => {\n if (res.code !== 0) {\n return this.$message.error(res.msg)\n }\n this.$message({\n message: this.$t('prompt.success'),\n type: 'success',\n duration: 500,\n onClose: () => {\n this.getDataList()\n }\n })\n }).catch(() => {})\n }).catch(() => {})\n },\n // 转换为模型\n convertToModelHandle (id) {\n this.$confirm(this.$t('prompt.info', { 'handle': this.$t('process.convertToModel') }), this.$t('prompt.title'), {\n confirmButtonText: this.$t('confirm'),\n cancelButtonText: this.$t('cancel'),\n type: 'warning'\n }).then(() => {\n this.$http.post(`/activiti/process/convertToModel/${id}`).then(({ data: res }) => {\n if (res.code !== 0) {\n return this.$message.error(res.msg)\n }\n this.$message({\n message: this.$t('prompt.success'),\n type: 'success',\n duration: 500,\n onClose: () => {\n this.getDataList()\n }\n })\n }).catch(() => {})\n }).catch(() => {})\n }\n }\n}\n</script>\n"],"sourceRoot":"src/views/modules/activiti"}]} |