{"remainingRequest":"D:\\jenkins\\workspace\\damDance-fvue\\node_modules\\thread-loader\\dist\\cjs.js!D:\\jenkins\\workspace\\damDance-fvue\\node_modules\\babel-loader\\lib\\index.js!D:\\jenkins\\workspace\\damDance-fvue\\node_modules\\cache-loader\\dist\\cjs.js??ref--0-0!D:\\jenkins\\workspace\\damDance-fvue\\node_modules\\vue-loader\\lib\\index.js??vue-loader-options!D:\\jenkins\\workspace\\damDance-fvue\\src\\views\\RegistrationManage\\EventRegistration.vue?vue&type=script&lang=js&","dependencies":[{"path":"D:\\jenkins\\workspace\\damDance-fvue\\src\\views\\RegistrationManage\\EventRegistration.vue","mtime":1704772733859},{"path":"D:\\jenkins\\workspace\\damDance-fvue\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\damDance-fvue\\node_modules\\thread-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\damDance-fvue\\node_modules\\babel-loader\\lib\\index.js","mtime":315532800000},{"path":"D:\\jenkins\\workspace\\damDance-fvue\\node_modules\\cache-loader\\dist\\cjs.js","mtime":499162500000},{"path":"D:\\jenkins\\workspace\\damDance-fvue\\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//\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//\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//\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 pagination from '@/components/pagination';\nimport { TableMixin } from '@/mixins/tableMixin';\nimport RegistrationManage from '@/api/RegistrationManage/RegistrationManage.js';\nimport EventRegistrationDialog from \"./components/EventRegistrationDialog\";\nimport utils from '@/utils.js';\nexport default {\n name: 'EventRegistration',\n components: {\n pagination: pagination,\n EventRegistrationDialog: EventRegistrationDialog\n },\n mixins: [TableMixin],\n data: function data() {\n return {\n markLoading: false,\n tableLoading: false,\n tableData: [],\n pageResult: {\n page: 1,\n pageSize: 20,\n total: 0\n },\n reqData: {\n querys: [{\n group: 'main',\n operation: 'LIKE',\n parentGroup: '',\n property: 'eventCode',\n relation: 'AND',\n value: ''\n }, {\n group: 'main',\n operation: 'EQUAL',\n parentGroup: '',\n property: 'eventUrgency',\n relation: 'AND',\n value: ''\n }, {\n group: 'main',\n operation: 'EQUAL',\n parentGroup: '',\n property: 'eventType',\n relation: 'AND',\n value: ''\n }, {\n group: 'main',\n operation: 'EQUAL',\n parentGroup: '',\n property: 'eventSource',\n relation: 'AND',\n value: ''\n }],\n pageBean: {\n page: 1,\n pageSize: 20,\n total: 0,\n showTotal: true\n }\n },\n rejectObj: {\n res: ''\n },\n rejectVisible: false\n };\n },\n created: function created() {\n this.getData(1);\n },\n methods: {\n //获取数据\n getData: function getData(page) {\n var _this = this;\n\n page ? this.reqData.pageBean.page = page : null;\n RegistrationManage.queryEventsList(this.reqData).then(function (res) {\n _this.reqData.pageBean.total = res.total;\n _this.tableLoading = false;\n _this.tableData = res.rows;\n });\n },\n handleDelete: function handleDelete(row) {\n var _this2 = this;\n\n this.$confirm('确认删除数据吗?', this.$t('common.tips'), {\n confirmButtonText: this.$t('common.confirm'),\n cancelButtonText: this.$t('common.cancel'),\n type: 'warning'\n }).then(function () {\n var ids = row ? row.id : _this2.deleteIds;\n RegistrationManage.batchDelete(ids).then(function (res) {\n if (res.state) {\n _this2.$notify({\n type: 'success',\n message: '删除成功',\n duration: 2000\n });\n\n _this2.getData(1);\n } else {\n _this2.$message.warning(response.message);\n }\n });\n });\n },\n handleSubmit: function handleSubmit(row) {\n var _this3 = this;\n\n this.$confirm('确认提交到三级城运中心?', this.$t('common.tips'), {\n confirmButtonText: this.$t('common.confirm'),\n cancelButtonText: this.$t('common.cancel'),\n type: 'warning'\n }).then(function () {\n var ids = row && row.id ? row.id : _this3.deleteIds;\n RegistrationManage.batchSubmit(ids).then(function (res) {\n if (res.state) {\n _this3.$notify({\n type: 'success',\n message: '提交成功',\n duration: 2000\n });\n\n _this3.getData(1);\n } else {\n _this3.$message.warning(response.message);\n }\n });\n });\n }\n }\n};",null]}